diff --git a/go.mod b/go.mod index 92946fb6..db97edbd 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/cloudbase/garm-provider-gcp go 1.25.0 require ( - cloud.google.com/go/compute v1.60.0 + cloud.google.com/go/compute v1.61.0 github.com/BurntSushi/toml v1.6.0 github.com/cloudbase/garm-provider-common v0.1.9 github.com/googleapis/gax-go/v2 v2.22.0 diff --git a/go.sum b/go.sum index 08360576..bbd2e3ac 100644 --- a/go.sum +++ b/go.sum @@ -4,8 +4,8 @@ cloud.google.com/go/auth v0.20.0 h1:kXTssoVb4azsVDoUiF8KvxAqrsQcQtB53DcSgta74CA= cloud.google.com/go/auth v0.20.0/go.mod h1:942/yi/itH1SsmpyrbnTMDgGfdy2BUqIKyd0cyYLc5Q= 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 v1.60.0 h1:CqGt23ysz990ZZe1vq/9aDPKKnmwM6kcC7Y1Q05H2kI= -cloud.google.com/go/compute v1.60.0/go.mod h1:Xm6PbsLgBpAg4va77ljbBdpMjzuU+uPp5Ze2dnZq7lw= +cloud.google.com/go/compute v1.61.0 h1:EEmWRSTwKzAy7uK97BFopgJu2Jgh2QHQVCc/uM7Cskw= +cloud.google.com/go/compute v1.61.0/go.mod h1:Xm6PbsLgBpAg4va77ljbBdpMjzuU+uPp5Ze2dnZq7lw= cloud.google.com/go/compute/metadata v0.9.0 h1:pDUj4QMoPejqq20dK0Pg2N4yG9zIkYGdBtwLoEkH9Zs= cloud.google.com/go/compute/metadata v0.9.0/go.mod h1:E0bWwX5wTnLPedCKqk3pJmVgCBSM6qQI1yTBdEb3C10= github.com/BurntSushi/toml v1.6.0 h1:dRaEfpa2VI55EwlIW72hMRHdWouJeRF7TPYhI+AUQjk= diff --git a/vendor/cloud.google.com/go/compute/apiv1/auxiliary.go b/vendor/cloud.google.com/go/compute/apiv1/auxiliary.go index dfe2c69f..075a962c 100644 --- a/vendor/cloud.google.com/go/compute/apiv1/auxiliary.go +++ b/vendor/cloud.google.com/go/compute/apiv1/auxiliary.go @@ -368,6 +368,59 @@ func (it *BackendBucketIterator) takeBuf() interface{} { return b } +// BackendBucketsScopedListPair is a holder type for string/*computepb.BackendBucketsScopedList map entries +type BackendBucketsScopedListPair struct { + Key string + Value *computepb.BackendBucketsScopedList +} + +// BackendBucketsScopedListPairIterator manages a stream of BackendBucketsScopedListPair. +type BackendBucketsScopedListPairIterator struct { + items []BackendBucketsScopedListPair + pageInfo *iterator.PageInfo + nextFunc func() error + + // Response is the raw response for the current page. + // It must be cast to the RPC response type. + // Calling Next() or InternalFetch() updates this value. + Response interface{} + + // InternalFetch is for use by the Google Cloud Libraries only. + // It is not part of the stable interface of this package. + // + // InternalFetch returns results from a single call to the underlying RPC. + // The number of results is no greater than pageSize. + // If there are no more results, nextPageToken is empty and err is nil. + InternalFetch func(pageSize int, pageToken string) (results []BackendBucketsScopedListPair, nextPageToken string, err error) +} + +// PageInfo supports pagination. See the [google.golang.org/api/iterator] package for details. +func (it *BackendBucketsScopedListPairIterator) PageInfo() *iterator.PageInfo { + return it.pageInfo +} + +// Next returns the next result. Its second return value is iterator.Done if there are no more +// results. Once Next returns Done, all subsequent calls will return Done. +func (it *BackendBucketsScopedListPairIterator) Next() (BackendBucketsScopedListPair, error) { + var item BackendBucketsScopedListPair + if err := it.nextFunc(); err != nil { + return item, err + } + item = it.items[0] + it.items = it.items[1:] + return item, nil +} + +func (it *BackendBucketsScopedListPairIterator) bufLen() int { + return len(it.items) +} + +func (it *BackendBucketsScopedListPairIterator) takeBuf() interface{} { + b := it.items + it.items = nil + return b +} + // BackendServiceIterator manages a stream of *computepb.BackendService. type BackendServiceIterator struct { items []*computepb.BackendService @@ -2391,6 +2444,53 @@ func (it *InstancesScopedListPairIterator) takeBuf() interface{} { return b } +// InstantSnapshotGroupIterator manages a stream of *computepb.InstantSnapshotGroup. +type InstantSnapshotGroupIterator struct { + items []*computepb.InstantSnapshotGroup + pageInfo *iterator.PageInfo + nextFunc func() error + + // Response is the raw response for the current page. + // It must be cast to the RPC response type. + // Calling Next() or InternalFetch() updates this value. + Response interface{} + + // InternalFetch is for use by the Google Cloud Libraries only. + // It is not part of the stable interface of this package. + // + // InternalFetch returns results from a single call to the underlying RPC. + // The number of results is no greater than pageSize. + // If there are no more results, nextPageToken is empty and err is nil. + InternalFetch func(pageSize int, pageToken string) (results []*computepb.InstantSnapshotGroup, nextPageToken string, err error) +} + +// PageInfo supports pagination. See the [google.golang.org/api/iterator] package for details. +func (it *InstantSnapshotGroupIterator) PageInfo() *iterator.PageInfo { + return it.pageInfo +} + +// Next returns the next result. Its second return value is iterator.Done if there are no more +// results. Once Next returns Done, all subsequent calls will return Done. +func (it *InstantSnapshotGroupIterator) Next() (*computepb.InstantSnapshotGroup, error) { + var item *computepb.InstantSnapshotGroup + if err := it.nextFunc(); err != nil { + return item, err + } + item = it.items[0] + it.items = it.items[1:] + return item, nil +} + +func (it *InstantSnapshotGroupIterator) bufLen() int { + return len(it.items) +} + +func (it *InstantSnapshotGroupIterator) takeBuf() interface{} { + b := it.items + it.items = nil + return b +} + // InstantSnapshotIterator manages a stream of *computepb.InstantSnapshot. type InstantSnapshotIterator struct { items []*computepb.InstantSnapshot @@ -6707,6 +6807,53 @@ func (it *VmEndpointNatMappingsIterator) takeBuf() interface{} { return b } +// VmExtensionPolicyIterator manages a stream of *computepb.VmExtensionPolicy. +type VmExtensionPolicyIterator struct { + items []*computepb.VmExtensionPolicy + pageInfo *iterator.PageInfo + nextFunc func() error + + // Response is the raw response for the current page. + // It must be cast to the RPC response type. + // Calling Next() or InternalFetch() updates this value. + Response interface{} + + // InternalFetch is for use by the Google Cloud Libraries only. + // It is not part of the stable interface of this package. + // + // InternalFetch returns results from a single call to the underlying RPC. + // The number of results is no greater than pageSize. + // If there are no more results, nextPageToken is empty and err is nil. + InternalFetch func(pageSize int, pageToken string) (results []*computepb.VmExtensionPolicy, nextPageToken string, err error) +} + +// PageInfo supports pagination. See the [google.golang.org/api/iterator] package for details. +func (it *VmExtensionPolicyIterator) PageInfo() *iterator.PageInfo { + return it.pageInfo +} + +// Next returns the next result. Its second return value is iterator.Done if there are no more +// results. Once Next returns Done, all subsequent calls will return Done. +func (it *VmExtensionPolicyIterator) Next() (*computepb.VmExtensionPolicy, error) { + var item *computepb.VmExtensionPolicy + if err := it.nextFunc(); err != nil { + return item, err + } + item = it.items[0] + it.items = it.items[1:] + return item, nil +} + +func (it *VmExtensionPolicyIterator) bufLen() int { + return len(it.items) +} + +func (it *VmExtensionPolicyIterator) takeBuf() interface{} { + b := it.items + it.items = nil + return b +} + // VpnGatewayIterator manages a stream of *computepb.VpnGateway. type VpnGatewayIterator struct { items []*computepb.VpnGateway diff --git a/vendor/cloud.google.com/go/compute/apiv1/auxiliary_go123.go b/vendor/cloud.google.com/go/compute/apiv1/auxiliary_go123.go index f1e78bb2..ebd73c38 100644 --- a/vendor/cloud.google.com/go/compute/apiv1/auxiliary_go123.go +++ b/vendor/cloud.google.com/go/compute/apiv1/auxiliary_go123.go @@ -67,6 +67,12 @@ func (it *BackendBucketIterator) All() iter.Seq2[*computepb.BackendBucket, error return iterator.RangeAdapter(it.Next) } +// All returns an iterator. If an error is returned by the iterator, the +// iterator will stop after that iteration. +func (it *BackendBucketsScopedListPairIterator) All() iter.Seq2[BackendBucketsScopedListPair, error] { + return iterator.RangeAdapter(it.Next) +} + // All returns an iterator. If an error is returned by the iterator, the // iterator will stop after that iteration. func (it *BackendServiceIterator) All() iter.Seq2[*computepb.BackendService, error] { @@ -313,6 +319,12 @@ func (it *InstancesScopedListPairIterator) All() iter.Seq2[InstancesScopedListPa return iterator.RangeAdapter(it.Next) } +// All returns an iterator. If an error is returned by the iterator, the +// iterator will stop after that iteration. +func (it *InstantSnapshotGroupIterator) All() iter.Seq2[*computepb.InstantSnapshotGroup, error] { + return iterator.RangeAdapter(it.Next) +} + // All returns an iterator. If an error is returned by the iterator, the // iterator will stop after that iteration. func (it *InstantSnapshotIterator) All() iter.Seq2[*computepb.InstantSnapshot, error] { @@ -841,6 +853,12 @@ func (it *VmEndpointNatMappingsIterator) All() iter.Seq2[*computepb.VmEndpointNa return iterator.RangeAdapter(it.Next) } +// All returns an iterator. If an error is returned by the iterator, the +// iterator will stop after that iteration. +func (it *VmExtensionPolicyIterator) All() iter.Seq2[*computepb.VmExtensionPolicy, error] { + return iterator.RangeAdapter(it.Next) +} + // All returns an iterator. If an error is returned by the iterator, the // iterator will stop after that iteration. func (it *VpnGatewayIterator) All() iter.Seq2[*computepb.VpnGateway, error] { diff --git a/vendor/cloud.google.com/go/compute/apiv1/backend_buckets_client.go b/vendor/cloud.google.com/go/compute/apiv1/backend_buckets_client.go index e70ddbfb..72c5b8c6 100644 --- a/vendor/cloud.google.com/go/compute/apiv1/backend_buckets_client.go +++ b/vendor/cloud.google.com/go/compute/apiv1/backend_buckets_client.go @@ -24,6 +24,7 @@ import ( "math" "net/http" "net/url" + "sort" "time" computepb "cloud.google.com/go/compute/apiv1/computepb" @@ -43,12 +44,14 @@ var newBackendBucketsClientHook clientHook // BackendBucketsCallOptions contains the retry settings for each method of BackendBucketsClient. type BackendBucketsCallOptions struct { AddSignedUrlKey []gax.CallOption + AggregatedList []gax.CallOption Delete []gax.CallOption DeleteSignedUrlKey []gax.CallOption Get []gax.CallOption GetIamPolicy []gax.CallOption Insert []gax.CallOption List []gax.CallOption + ListUsable []gax.CallOption Patch []gax.CallOption SetEdgeSecurityPolicy []gax.CallOption SetIamPolicy []gax.CallOption @@ -61,6 +64,18 @@ func defaultBackendBucketsRESTCallOptions() *BackendBucketsCallOptions { AddSignedUrlKey: []gax.CallOption{ gax.WithTimeout(600000 * time.Millisecond), }, + AggregatedList: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, Delete: []gax.CallOption{ gax.WithTimeout(600000 * time.Millisecond), }, @@ -106,6 +121,18 @@ func defaultBackendBucketsRESTCallOptions() *BackendBucketsCallOptions { http.StatusServiceUnavailable) }), }, + ListUsable: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, Patch: []gax.CallOption{ gax.WithTimeout(600000 * time.Millisecond), }, @@ -130,12 +157,14 @@ type internalBackendBucketsClient interface { setGoogleClientInfo(...string) Connection() *grpc.ClientConn AddSignedUrlKey(context.Context, *computepb.AddSignedUrlKeyBackendBucketRequest, ...gax.CallOption) (*Operation, error) + AggregatedList(context.Context, *computepb.AggregatedListBackendBucketsRequest, ...gax.CallOption) *BackendBucketsScopedListPairIterator Delete(context.Context, *computepb.DeleteBackendBucketRequest, ...gax.CallOption) (*Operation, error) DeleteSignedUrlKey(context.Context, *computepb.DeleteSignedUrlKeyBackendBucketRequest, ...gax.CallOption) (*Operation, error) Get(context.Context, *computepb.GetBackendBucketRequest, ...gax.CallOption) (*computepb.BackendBucket, error) GetIamPolicy(context.Context, *computepb.GetIamPolicyBackendBucketRequest, ...gax.CallOption) (*computepb.Policy, error) Insert(context.Context, *computepb.InsertBackendBucketRequest, ...gax.CallOption) (*Operation, error) List(context.Context, *computepb.ListBackendBucketsRequest, ...gax.CallOption) *BackendBucketIterator + ListUsable(context.Context, *computepb.ListUsableBackendBucketsRequest, ...gax.CallOption) *BackendBucketIterator Patch(context.Context, *computepb.PatchBackendBucketRequest, ...gax.CallOption) (*Operation, error) SetEdgeSecurityPolicy(context.Context, *computepb.SetEdgeSecurityPolicyBackendBucketRequest, ...gax.CallOption) (*Operation, error) SetIamPolicy(context.Context, *computepb.SetIamPolicyBackendBucketRequest, ...gax.CallOption) (*computepb.Policy, error) @@ -184,6 +213,15 @@ func (c *BackendBucketsClient) AddSignedUrlKey(ctx context.Context, req *compute return c.internalClient.AddSignedUrlKey(ctx, req, opts...) } +// AggregatedList retrieves the list of all BackendBucket resources, regional and global, +// available to the specified project. +// +// To prevent failure, it is recommended that you set the +// returnPartialSuccess parameter to true. +func (c *BackendBucketsClient) AggregatedList(ctx context.Context, req *computepb.AggregatedListBackendBucketsRequest, opts ...gax.CallOption) *BackendBucketsScopedListPairIterator { + return c.internalClient.AggregatedList(ctx, req, opts...) +} + // Delete deletes the specified BackendBucket resource. func (c *BackendBucketsClient) Delete(ctx context.Context, req *computepb.DeleteBackendBucketRequest, opts ...gax.CallOption) (*Operation, error) { return c.internalClient.Delete(ctx, req, opts...) @@ -218,6 +256,11 @@ func (c *BackendBucketsClient) List(ctx context.Context, req *computepb.ListBack return c.internalClient.List(ctx, req, opts...) } +// ListUsable retrieves a list of all usable backend buckets in the specified project. +func (c *BackendBucketsClient) ListUsable(ctx context.Context, req *computepb.ListUsableBackendBucketsRequest, opts ...gax.CallOption) *BackendBucketIterator { + return c.internalClient.ListUsable(ctx, req, opts...) +} + // Patch updates the specified BackendBucket resource with the data included in the // request. This method supportsPATCH // semantics and uses theJSON merge @@ -310,12 +353,14 @@ func NewBackendBucketsRESTClient(ctx context.Context, opts ...option.ClientOptio ) callOpts.AddSignedUrlKey = append(callOpts.AddSignedUrlKey, gax.WithClientMetrics(metrics)) + callOpts.AggregatedList = append(callOpts.AggregatedList, gax.WithClientMetrics(metrics)) callOpts.Delete = append(callOpts.Delete, gax.WithClientMetrics(metrics)) callOpts.DeleteSignedUrlKey = append(callOpts.DeleteSignedUrlKey, gax.WithClientMetrics(metrics)) callOpts.Get = append(callOpts.Get, gax.WithClientMetrics(metrics)) callOpts.GetIamPolicy = append(callOpts.GetIamPolicy, gax.WithClientMetrics(metrics)) callOpts.Insert = append(callOpts.Insert, gax.WithClientMetrics(metrics)) callOpts.List = append(callOpts.List, gax.WithClientMetrics(metrics)) + callOpts.ListUsable = append(callOpts.ListUsable, gax.WithClientMetrics(metrics)) callOpts.Patch = append(callOpts.Patch, gax.WithClientMetrics(metrics)) callOpts.SetEdgeSecurityPolicy = append(callOpts.SetEdgeSecurityPolicy, gax.WithClientMetrics(metrics)) callOpts.SetIamPolicy = append(callOpts.SetIamPolicy, gax.WithClientMetrics(metrics)) @@ -451,6 +496,109 @@ func (c *backendBucketsRESTClient) AddSignedUrlKey(ctx context.Context, req *com return op, nil } +// AggregatedList retrieves the list of all BackendBucket resources, regional and global, +// available to the specified project. +// +// To prevent failure, it is recommended that you set the +// returnPartialSuccess parameter to true. +func (c *backendBucketsRESTClient) AggregatedList(ctx context.Context, req *computepb.AggregatedListBackendBucketsRequest, opts ...gax.CallOption) *BackendBucketsScopedListPairIterator { + it := &BackendBucketsScopedListPairIterator{} + req = proto.Clone(req).(*computepb.AggregatedListBackendBucketsRequest) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + it.InternalFetch = func(pageSize int, pageToken string) ([]BackendBucketsScopedListPair, string, error) { + resp := &computepb.BackendBucketAggregatedList{} + if pageToken != "" { + req.PageToken = proto.String(pageToken) + } + if pageSize > math.MaxInt32 { + req.MaxResults = proto.Uint32(uint32(math.MaxInt32)) + } else if pageSize != 0 { + req.MaxResults = proto.Uint32(uint32(pageSize)) + } + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, "", err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/aggregated/backendBuckets", req.GetProject()) + + params := url.Values{} + if req != nil && req.Filter != nil { + params.Add("filter", fmt.Sprintf("%v", req.GetFilter())) + } + if req != nil && req.IncludeAllScopes != nil { + params.Add("includeAllScopes", fmt.Sprintf("%v", req.GetIncludeAllScopes())) + } + if req != nil && req.MaxResults != nil { + params.Add("maxResults", fmt.Sprintf("%v", req.GetMaxResults())) + } + if req != nil && req.OrderBy != nil { + params.Add("orderBy", fmt.Sprintf("%v", req.GetOrderBy())) + } + if req != nil && req.PageToken != nil { + params.Add("pageToken", fmt.Sprintf("%v", req.GetPageToken())) + } + if req != nil && req.ReturnPartialSuccess != nil { + params.Add("returnPartialSuccess", fmt.Sprintf("%v", req.GetReturnPartialSuccess())) + } + if req != nil && req.ServiceProjectNumber != nil { + params.Add("serviceProjectNumber", fmt.Sprintf("%v", req.GetServiceProjectNumber())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := append(c.xGoogHeaders, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "AggregatedList") + if err != nil { + return err + } + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, "", e + } + it.Response = resp + + elems := make([]BackendBucketsScopedListPair, 0, len(resp.GetItems())) + for k, v := range resp.GetItems() { + elems = append(elems, BackendBucketsScopedListPair{k, v}) + } + sort.Slice(elems, func(i, j int) bool { return elems[i].Key < elems[j].Key }) + + return elems, resp.GetNextPageToken(), nil + } + + fetch := func(pageSize int, pageToken string) (string, error) { + items, nextPageToken, err := it.InternalFetch(pageSize, pageToken) + if err != nil { + return "", err + } + it.items = append(it.items, items...) + return nextPageToken, nil + } + + it.pageInfo, it.nextFunc = iterator.NewPageInfo(fetch, it.bufLen, it.takeBuf) + it.pageInfo.MaxSize = int(req.GetMaxResults()) + it.pageInfo.Token = req.GetPageToken() + + return it +} + // Delete deletes the specified BackendBucket resource. func (c *backendBucketsRESTClient) Delete(ctx context.Context, req *computepb.DeleteBackendBucketRequest, opts ...gax.CallOption) (*Operation, error) { baseUrl, err := url.Parse(c.endpoint) @@ -858,6 +1006,92 @@ func (c *backendBucketsRESTClient) List(ctx context.Context, req *computepb.List return it } +// ListUsable retrieves a list of all usable backend buckets in the specified project. +func (c *backendBucketsRESTClient) ListUsable(ctx context.Context, req *computepb.ListUsableBackendBucketsRequest, opts ...gax.CallOption) *BackendBucketIterator { + it := &BackendBucketIterator{} + req = proto.Clone(req).(*computepb.ListUsableBackendBucketsRequest) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.BackendBucket, string, error) { + resp := &computepb.BackendBucketListUsable{} + if pageToken != "" { + req.PageToken = proto.String(pageToken) + } + if pageSize > math.MaxInt32 { + req.MaxResults = proto.Uint32(uint32(math.MaxInt32)) + } else if pageSize != 0 { + req.MaxResults = proto.Uint32(uint32(pageSize)) + } + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, "", err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/global/backendBuckets/listUsable", req.GetProject()) + + params := url.Values{} + if req != nil && req.Filter != nil { + params.Add("filter", fmt.Sprintf("%v", req.GetFilter())) + } + if req != nil && req.MaxResults != nil { + params.Add("maxResults", fmt.Sprintf("%v", req.GetMaxResults())) + } + if req != nil && req.OrderBy != nil { + params.Add("orderBy", fmt.Sprintf("%v", req.GetOrderBy())) + } + if req != nil && req.PageToken != nil { + params.Add("pageToken", fmt.Sprintf("%v", req.GetPageToken())) + } + if req != nil && req.ReturnPartialSuccess != nil { + params.Add("returnPartialSuccess", fmt.Sprintf("%v", req.GetReturnPartialSuccess())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := append(c.xGoogHeaders, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "ListUsable") + if err != nil { + return err + } + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, "", e + } + it.Response = resp + return resp.GetItems(), resp.GetNextPageToken(), nil + } + + fetch := func(pageSize int, pageToken string) (string, error) { + items, nextPageToken, err := it.InternalFetch(pageSize, pageToken) + if err != nil { + return "", err + } + it.items = append(it.items, items...) + return nextPageToken, nil + } + + it.pageInfo, it.nextFunc = iterator.NewPageInfo(fetch, it.bufLen, it.takeBuf) + it.pageInfo.MaxSize = int(req.GetMaxResults()) + it.pageInfo.Token = req.GetPageToken() + + return it +} + // Patch updates the specified BackendBucket resource with the data included in the // request. This method supportsPATCH // semantics and uses theJSON merge diff --git a/vendor/cloud.google.com/go/compute/apiv1/computepb/compute.pb.go b/vendor/cloud.google.com/go/compute/apiv1/computepb/compute.pb.go index 7ceca3b1..827a928f 100644 --- a/vendor/cloud.google.com/go/compute/apiv1/computepb/compute.pb.go +++ b/vendor/cloud.google.com/go/compute/apiv1/computepb/compute.pb.go @@ -14,14 +14,14 @@ // Generated by the disco-to-proto3-converter. DO NOT EDIT! // Source Discovery file: compute.v1.json -// Source file revision: 20260227 +// Source file revision: 20260410 // API name: compute // API version: v1 // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.36.11 -// protoc v6.31.0 +// protoc v6.33.2 // source: google/cloud/compute/v1/compute.proto package computepb @@ -759,7 +759,7 @@ func (x AggregatedListSubnetworksRequest_Views) Number() protoreflect.EnumNumber // Deprecated: Use AggregatedListSubnetworksRequest_Views.Descriptor instead. func (AggregatedListSubnetworksRequest_Views) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{82, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{83, 0} } // The VM family that all instances scheduled against this reservation must @@ -829,7 +829,7 @@ func (x AllocationAggregateReservation_VmFamily) Number() protoreflect.EnumNumbe // Deprecated: Use AllocationAggregateReservation_VmFamily.Descriptor instead. func (AllocationAggregateReservation_VmFamily) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{93, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{94, 0} } // The workload type of the instances that will target this reservation. @@ -887,7 +887,7 @@ func (x AllocationAggregateReservation_WorkloadType) Number() protoreflect.EnumN // Deprecated: Use AllocationAggregateReservation_WorkloadType.Descriptor instead. func (AllocationAggregateReservation_WorkloadType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{93, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{94, 1} } // Sharing config for all Google Cloud services. @@ -943,7 +943,7 @@ func (x AllocationReservationSharingPolicy_ServiceShareType) Number() protorefle // Deprecated: Use AllocationReservationSharingPolicy_ServiceShareType.Descriptor instead. func (AllocationReservationSharingPolicy_ServiceShareType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{96, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{97, 0} } // The health status of the reservation. @@ -1000,7 +1000,7 @@ func (x AllocationResourceStatusHealthInfo_HealthStatus) Number() protoreflect.E // Deprecated: Use AllocationResourceStatusHealthInfo_HealthStatus.Descriptor instead. func (AllocationResourceStatusHealthInfo_HealthStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{98, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{99, 0} } // Specifies the disk interface to use for attaching this disk, which is @@ -1053,7 +1053,7 @@ func (x AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk_I // Deprecated: Use AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk_Interface.Descriptor instead. func (AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk_Interface) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{100, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{101, 0} } // Output only. [Output Only] The architecture of the attached disk. Valid values are ARM64 @@ -1111,7 +1111,7 @@ func (x AttachedDisk_Architecture) Number() protoreflect.EnumNumber { // Deprecated: Use AttachedDisk_Architecture.Descriptor instead. func (AttachedDisk_Architecture) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{112, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{113, 0} } // Specifies the disk interface to use for attaching this disk, which is @@ -1167,7 +1167,7 @@ func (x AttachedDisk_Interface) Number() protoreflect.EnumNumber { // Deprecated: Use AttachedDisk_Interface.Descriptor instead. func (AttachedDisk_Interface) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{112, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{113, 1} } // The mode in which to attach this disk, either READ_WRITE orREAD_ONLY. If not specified, the default is to attach the disk @@ -1223,7 +1223,7 @@ func (x AttachedDisk_Mode) Number() protoreflect.EnumNumber { // Deprecated: Use AttachedDisk_Mode.Descriptor instead. func (AttachedDisk_Mode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{112, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{113, 2} } // Output only. For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this @@ -1280,7 +1280,7 @@ func (x AttachedDisk_SavedState) Number() protoreflect.EnumNumber { // Deprecated: Use AttachedDisk_SavedState.Descriptor instead. func (AttachedDisk_SavedState) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{112, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{113, 3} } // Specifies the type of the disk, either SCRATCH orPERSISTENT. If not specified, the default isPERSISTENT. @@ -1331,7 +1331,7 @@ func (x AttachedDisk_Type) Number() protoreflect.EnumNumber { // Deprecated: Use AttachedDisk_Type.Descriptor instead. func (AttachedDisk_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{112, 4} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{113, 4} } // The architecture of the attached disk. Valid values are @@ -1389,7 +1389,7 @@ func (x AttachedDiskInitializeParams_Architecture) Number() protoreflect.EnumNum // Deprecated: Use AttachedDiskInitializeParams_Architecture.Descriptor instead. func (AttachedDiskInitializeParams_Architecture) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{113, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{114, 0} } // Specifies which action to take on instance update with this disk. Default @@ -1448,7 +1448,7 @@ func (x AttachedDiskInitializeParams_OnUpdateAction) Number() protoreflect.EnumN // Deprecated: Use AttachedDiskInitializeParams_OnUpdateAction.Descriptor instead. func (AttachedDiskInitializeParams_OnUpdateAction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{113, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{114, 1} } // The log type that this config enables. @@ -1509,7 +1509,7 @@ func (x AuditLogConfig_LogType) Number() protoreflect.EnumNumber { // Deprecated: Use AuditLogConfig_LogType.Descriptor instead. func (AuditLogConfig_LogType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{115, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{116, 0} } // [Output Only] The status of the autoscaler configuration. Current set of @@ -1584,7 +1584,7 @@ func (x Autoscaler_Status) Number() protoreflect.EnumNumber { // Deprecated: Use Autoscaler_Status.Descriptor instead. func (Autoscaler_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{116, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{117, 0} } // The type of error, warning, or notice returned. Current set of possible @@ -1779,7 +1779,7 @@ func (x AutoscalerStatusDetails_Type) Number() protoreflect.EnumNumber { // Deprecated: Use AutoscalerStatusDetails_Type.Descriptor instead. func (AutoscalerStatusDetails_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{119, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{120, 0} } // Defines the operating mode for this policy. @@ -1855,7 +1855,7 @@ func (x AutoscalingPolicy_Mode) Number() protoreflect.EnumNumber { // Deprecated: Use AutoscalingPolicy_Mode.Descriptor instead. func (AutoscalingPolicy_Mode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{121, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{122, 0} } // Indicates whether predictive autoscaling based on CPU metric is enabled. @@ -1917,7 +1917,7 @@ func (x AutoscalingPolicyCpuUtilization_PredictiveMethod) Number() protoreflect. // Deprecated: Use AutoscalingPolicyCpuUtilization_PredictiveMethod.Descriptor instead. func (AutoscalingPolicyCpuUtilization_PredictiveMethod) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{122, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{123, 0} } // Defines how target utilization value is expressed for a Stackdriver @@ -1980,7 +1980,7 @@ func (x AutoscalingPolicyCustomMetricUtilization_UtilizationTargetType) Number() // Deprecated: Use AutoscalingPolicyCustomMetricUtilization_UtilizationTargetType.Descriptor instead. func (AutoscalingPolicyCustomMetricUtilization_UtilizationTargetType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{123, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{124, 0} } // Specifies how to determine whether the backend of a load balancer can @@ -2005,6 +2005,8 @@ const ( Backend_CONNECTION Backend_BalancingMode = 246311646 // Based on custom defined and reported metrics. Backend_CUSTOM_METRICS Backend_BalancingMode = 331575765 + // Balance based on the number of in-flight requests. + Backend_IN_FLIGHT Backend_BalancingMode = 190040266 // Balance based on requests per second (RPS). Backend_RATE Backend_BalancingMode = 2508000 // Balance based on the backend utilization. @@ -2017,6 +2019,7 @@ var ( 0: "UNDEFINED_BALANCING_MODE", 246311646: "CONNECTION", 331575765: "CUSTOM_METRICS", + 190040266: "IN_FLIGHT", 2508000: "RATE", 157008386: "UTILIZATION", } @@ -2024,6 +2027,7 @@ var ( "UNDEFINED_BALANCING_MODE": 0, "CONNECTION": 246311646, "CUSTOM_METRICS": 331575765, + "IN_FLIGHT": 190040266, "RATE": 2508000, "UTILIZATION": 157008386, } @@ -2053,7 +2057,7 @@ func (x Backend_BalancingMode) Number() protoreflect.EnumNumber { // Deprecated: Use Backend_BalancingMode.Descriptor instead. func (Backend_BalancingMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{127, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{128, 0} } // This field indicates whether this backend should be fully utilized before @@ -2119,7 +2123,64 @@ func (x Backend_Preference) Number() protoreflect.EnumNumber { // Deprecated: Use Backend_Preference.Descriptor instead. func (Backend_Preference) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{127, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{128, 1} +} + +type Backend_TrafficDuration int32 + +const ( + // A value indicating that the enum field is not set. + Backend_UNDEFINED_TRAFFIC_DURATION Backend_TrafficDuration = 0 + // Most of the requests are expected to take more than multiple seconds to + // finish. + Backend_LONG Backend_TrafficDuration = 2342524 + // Most requests are expected to finish with a sub-second latency. + Backend_SHORT Backend_TrafficDuration = 78875740 + // Traffic duration is unspecified. + Backend_TRAFFIC_DURATION_UNSPECIFIED Backend_TrafficDuration = 265201166 +) + +// Enum value maps for Backend_TrafficDuration. +var ( + Backend_TrafficDuration_name = map[int32]string{ + 0: "UNDEFINED_TRAFFIC_DURATION", + 2342524: "LONG", + 78875740: "SHORT", + 265201166: "TRAFFIC_DURATION_UNSPECIFIED", + } + Backend_TrafficDuration_value = map[string]int32{ + "UNDEFINED_TRAFFIC_DURATION": 0, + "LONG": 2342524, + "SHORT": 78875740, + "TRAFFIC_DURATION_UNSPECIFIED": 265201166, + } +) + +func (x Backend_TrafficDuration) Enum() *Backend_TrafficDuration { + p := new(Backend_TrafficDuration) + *p = x + return p +} + +func (x Backend_TrafficDuration) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (Backend_TrafficDuration) Descriptor() protoreflect.EnumDescriptor { + return file_google_cloud_compute_v1_compute_proto_enumTypes[31].Descriptor() +} + +func (Backend_TrafficDuration) Type() protoreflect.EnumType { + return &file_google_cloud_compute_v1_compute_proto_enumTypes[31] +} + +func (x Backend_TrafficDuration) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use Backend_TrafficDuration.Descriptor instead. +func (Backend_TrafficDuration) EnumDescriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{128, 2} } // Compress text responses using Brotli or gzip compression, based on @@ -2162,11 +2223,11 @@ func (x BackendBucket_CompressionMode) String() string { } func (BackendBucket_CompressionMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[31].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[32].Descriptor() } func (BackendBucket_CompressionMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[31] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[32] } func (x BackendBucket_CompressionMode) Number() protoreflect.EnumNumber { @@ -2175,7 +2236,7 @@ func (x BackendBucket_CompressionMode) Number() protoreflect.EnumNumber { // Deprecated: Use BackendBucket_CompressionMode.Descriptor instead. func (BackendBucket_CompressionMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{129, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{130, 0} } // The value can only be INTERNAL_MANAGED for cross-region internal layer 7 @@ -2189,6 +2250,9 @@ type BackendBucket_LoadBalancingScheme int32 const ( // A value indicating that the enum field is not set. BackendBucket_UNDEFINED_LOAD_BALANCING_SCHEME BackendBucket_LoadBalancingScheme = 0 + // Signifies that this will be used for regional external Application Load + // Balancers. + BackendBucket_EXTERNAL_MANAGED BackendBucket_LoadBalancingScheme = 512006923 // Signifies that this will be used for internal Application Load Balancers. BackendBucket_INTERNAL_MANAGED BackendBucket_LoadBalancingScheme = 37350397 ) @@ -2196,11 +2260,13 @@ const ( // Enum value maps for BackendBucket_LoadBalancingScheme. var ( BackendBucket_LoadBalancingScheme_name = map[int32]string{ - 0: "UNDEFINED_LOAD_BALANCING_SCHEME", - 37350397: "INTERNAL_MANAGED", + 0: "UNDEFINED_LOAD_BALANCING_SCHEME", + 512006923: "EXTERNAL_MANAGED", + 37350397: "INTERNAL_MANAGED", } BackendBucket_LoadBalancingScheme_value = map[string]int32{ "UNDEFINED_LOAD_BALANCING_SCHEME": 0, + "EXTERNAL_MANAGED": 512006923, "INTERNAL_MANAGED": 37350397, } ) @@ -2216,11 +2282,11 @@ func (x BackendBucket_LoadBalancingScheme) String() string { } func (BackendBucket_LoadBalancingScheme) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[32].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[33].Descriptor() } func (BackendBucket_LoadBalancingScheme) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[32] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[33] } func (x BackendBucket_LoadBalancingScheme) Number() protoreflect.EnumNumber { @@ -2229,7 +2295,7 @@ func (x BackendBucket_LoadBalancingScheme) Number() protoreflect.EnumNumber { // Deprecated: Use BackendBucket_LoadBalancingScheme.Descriptor instead. func (BackendBucket_LoadBalancingScheme) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{129, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{130, 1} } // Specifies the cache setting for all responses from this backend. @@ -2301,11 +2367,11 @@ func (x BackendBucketCdnPolicy_CacheMode) String() string { } func (BackendBucketCdnPolicy_CacheMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[33].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[34].Descriptor() } func (BackendBucketCdnPolicy_CacheMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[33] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[34] } func (x BackendBucketCdnPolicy_CacheMode) Number() protoreflect.EnumNumber { @@ -2314,7 +2380,7 @@ func (x BackendBucketCdnPolicy_CacheMode) Number() protoreflect.EnumNumber { // Deprecated: Use BackendBucketCdnPolicy_CacheMode.Descriptor instead. func (BackendBucketCdnPolicy_CacheMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{130, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{132, 0} } // Compress text responses using Brotli or gzip compression, based on @@ -2357,11 +2423,11 @@ func (x BackendService_CompressionMode) String() string { } func (BackendService_CompressionMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[34].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[35].Descriptor() } func (BackendService_CompressionMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[34] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[35] } func (x BackendService_CompressionMode) Number() protoreflect.EnumNumber { @@ -2370,7 +2436,7 @@ func (x BackendService_CompressionMode) Number() protoreflect.EnumNumber { // Deprecated: Use BackendService_CompressionMode.Descriptor instead. func (BackendService_CompressionMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{138, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{142, 0} } // Specifies the canary migration state. Possible values are PREPARE, @@ -2424,11 +2490,11 @@ func (x BackendService_ExternalManagedMigrationState) String() string { } func (BackendService_ExternalManagedMigrationState) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[35].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[36].Descriptor() } func (BackendService_ExternalManagedMigrationState) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[35] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[36] } func (x BackendService_ExternalManagedMigrationState) Number() protoreflect.EnumNumber { @@ -2437,7 +2503,7 @@ func (x BackendService_ExternalManagedMigrationState) Number() protoreflect.Enum // Deprecated: Use BackendService_ExternalManagedMigrationState.Descriptor instead. func (BackendService_ExternalManagedMigrationState) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{138, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{142, 1} } // Specifies a preference for traffic sent from the proxy to the backend (or @@ -2522,11 +2588,11 @@ func (x BackendService_IpAddressSelectionPolicy) String() string { } func (BackendService_IpAddressSelectionPolicy) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[36].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[37].Descriptor() } func (BackendService_IpAddressSelectionPolicy) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[36] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[37] } func (x BackendService_IpAddressSelectionPolicy) Number() protoreflect.EnumNumber { @@ -2535,7 +2601,7 @@ func (x BackendService_IpAddressSelectionPolicy) Number() protoreflect.EnumNumbe // Deprecated: Use BackendService_IpAddressSelectionPolicy.Descriptor instead. func (BackendService_IpAddressSelectionPolicy) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{138, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{142, 2} } // Specifies the load balancer type. A backend service @@ -2598,11 +2664,11 @@ func (x BackendService_LoadBalancingScheme) String() string { } func (BackendService_LoadBalancingScheme) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[37].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[38].Descriptor() } func (BackendService_LoadBalancingScheme) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[37] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[38] } func (x BackendService_LoadBalancingScheme) Number() protoreflect.EnumNumber { @@ -2611,7 +2677,7 @@ func (x BackendService_LoadBalancingScheme) Number() protoreflect.EnumNumber { // Deprecated: Use BackendService_LoadBalancingScheme.Descriptor instead. func (BackendService_LoadBalancingScheme) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{138, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{142, 3} } // The load balancing algorithm used within the scope of the locality. The @@ -2651,7 +2717,7 @@ func (BackendService_LoadBalancingScheme) EnumDescriptor() ([]byte, []int) { // // This field is applicable to either: // -// - A regional backend service with the service_protocol set to HTTP, +// - A regional backend service with the service protocol set to HTTP, // HTTPS, HTTP2 or H2C, and load_balancing_scheme set to // INTERNAL_MANAGED. // @@ -2767,11 +2833,11 @@ func (x BackendService_LocalityLbPolicy) String() string { } func (BackendService_LocalityLbPolicy) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[38].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[39].Descriptor() } func (BackendService_LocalityLbPolicy) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[38] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[39] } func (x BackendService_LocalityLbPolicy) Number() protoreflect.EnumNumber { @@ -2780,7 +2846,7 @@ func (x BackendService_LocalityLbPolicy) Number() protoreflect.EnumNumber { // Deprecated: Use BackendService_LocalityLbPolicy.Descriptor instead. func (BackendService_LocalityLbPolicy) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{138, 4} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{142, 4} } // The protocol this BackendService uses to communicate @@ -2856,11 +2922,11 @@ func (x BackendService_Protocol) String() string { } func (BackendService_Protocol) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[39].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[40].Descriptor() } func (BackendService_Protocol) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[39] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[40] } func (x BackendService_Protocol) Number() protoreflect.EnumNumber { @@ -2869,7 +2935,7 @@ func (x BackendService_Protocol) Number() protoreflect.EnumNumber { // Deprecated: Use BackendService_Protocol.Descriptor instead. func (BackendService_Protocol) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{138, 5} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{142, 5} } // Type of session affinity to use. The default is NONE. @@ -2964,11 +3030,11 @@ func (x BackendService_SessionAffinity) String() string { } func (BackendService_SessionAffinity) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[40].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[41].Descriptor() } func (BackendService_SessionAffinity) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[40] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[41] } func (x BackendService_SessionAffinity) Number() protoreflect.EnumNumber { @@ -2977,7 +3043,7 @@ func (x BackendService_SessionAffinity) Number() protoreflect.EnumNumber { // Deprecated: Use BackendService_SessionAffinity.Descriptor instead. func (BackendService_SessionAffinity) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{138, 6} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{142, 6} } // Specifies the cache setting for all responses from this backend. @@ -3049,11 +3115,11 @@ func (x BackendServiceCdnPolicy_CacheMode) String() string { } func (BackendServiceCdnPolicy_CacheMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[41].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[42].Descriptor() } func (BackendServiceCdnPolicy_CacheMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[41] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[42] } func (x BackendServiceCdnPolicy_CacheMode) Number() protoreflect.EnumNumber { @@ -3062,7 +3128,7 @@ func (x BackendServiceCdnPolicy_CacheMode) Number() protoreflect.EnumNumber { // Deprecated: Use BackendServiceCdnPolicy_CacheMode.Descriptor instead. func (BackendServiceCdnPolicy_CacheMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{140, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{144, 0} } // Specifies connection persistence when backends are unhealthy. The default @@ -3124,11 +3190,11 @@ func (x BackendServiceConnectionTrackingPolicy_ConnectionPersistenceOnUnhealthyB } func (BackendServiceConnectionTrackingPolicy_ConnectionPersistenceOnUnhealthyBackends) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[42].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[43].Descriptor() } func (BackendServiceConnectionTrackingPolicy_ConnectionPersistenceOnUnhealthyBackends) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[42] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[43] } func (x BackendServiceConnectionTrackingPolicy_ConnectionPersistenceOnUnhealthyBackends) Number() protoreflect.EnumNumber { @@ -3137,7 +3203,7 @@ func (x BackendServiceConnectionTrackingPolicy_ConnectionPersistenceOnUnhealthyB // Deprecated: Use BackendServiceConnectionTrackingPolicy_ConnectionPersistenceOnUnhealthyBackends.Descriptor instead. func (BackendServiceConnectionTrackingPolicy_ConnectionPersistenceOnUnhealthyBackends) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{143, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{147, 0} } // Specifies the key used for connection tracking. There are two @@ -3191,11 +3257,11 @@ func (x BackendServiceConnectionTrackingPolicy_TrackingMode) String() string { } func (BackendServiceConnectionTrackingPolicy_TrackingMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[43].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[44].Descriptor() } func (BackendServiceConnectionTrackingPolicy_TrackingMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[43] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[44] } func (x BackendServiceConnectionTrackingPolicy_TrackingMode) Number() protoreflect.EnumNumber { @@ -3204,7 +3270,7 @@ func (x BackendServiceConnectionTrackingPolicy_TrackingMode) Number() protorefle // Deprecated: Use BackendServiceConnectionTrackingPolicy_TrackingMode.Descriptor instead. func (BackendServiceConnectionTrackingPolicy_TrackingMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{143, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{147, 1} } // Specifies whether fast IP move is enabled, and if so, the mechanism to @@ -3311,11 +3377,11 @@ func (x BackendServiceHAPolicy_FastIPMove) String() string { } func (BackendServiceHAPolicy_FastIPMove) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[44].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[45].Descriptor() } func (BackendServiceHAPolicy_FastIPMove) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[44] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[45] } func (x BackendServiceHAPolicy_FastIPMove) Number() protoreflect.EnumNumber { @@ -3324,7 +3390,7 @@ func (x BackendServiceHAPolicy_FastIPMove) Number() protoreflect.EnumNumber { // Deprecated: Use BackendServiceHAPolicy_FastIPMove.Descriptor instead. func (BackendServiceHAPolicy_FastIPMove) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{147, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{151, 0} } // The name of a locality load-balancing policy. Valid values include @@ -3429,11 +3495,11 @@ func (x BackendServiceLocalityLoadBalancingPolicyConfigPolicy_Name) String() str } func (BackendServiceLocalityLoadBalancingPolicyConfigPolicy_Name) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[45].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[46].Descriptor() } func (BackendServiceLocalityLoadBalancingPolicyConfigPolicy_Name) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[45] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[46] } func (x BackendServiceLocalityLoadBalancingPolicyConfigPolicy_Name) Number() protoreflect.EnumNumber { @@ -3442,7 +3508,7 @@ func (x BackendServiceLocalityLoadBalancingPolicyConfigPolicy_Name) Number() pro // Deprecated: Use BackendServiceLocalityLoadBalancingPolicyConfigPolicy_Name.Descriptor instead. func (BackendServiceLocalityLoadBalancingPolicyConfigPolicy_Name) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{156, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{160, 0} } // This field can only be specified if logging is enabled for this backend @@ -3489,11 +3555,11 @@ func (x BackendServiceLogConfig_OptionalMode) String() string { } func (BackendServiceLogConfig_OptionalMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[46].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[47].Descriptor() } func (BackendServiceLogConfig_OptionalMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[46] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[47] } func (x BackendServiceLogConfig_OptionalMode) Number() protoreflect.EnumNumber { @@ -3502,7 +3568,7 @@ func (x BackendServiceLogConfig_OptionalMode) Number() protoreflect.EnumNumber { // Deprecated: Use BackendServiceLogConfig_OptionalMode.Descriptor instead. func (BackendServiceLogConfig_OptionalMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{157, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{161, 0} } // This field indicates whether zonal affinity is enabled or not. The @@ -3559,11 +3625,11 @@ func (x BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity_Spillover) } func (BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity_Spillover) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[47].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[48].Descriptor() } func (BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity_Spillover) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[47] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[48] } func (x BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity_Spillover) Number() protoreflect.EnumNumber { @@ -3572,7 +3638,7 @@ func (x BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity_Spillover) // Deprecated: Use BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity_Spillover.Descriptor instead. func (BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity_Spillover) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{159, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{163, 0} } // The diagnostic code specifies the local system's reason for the last change @@ -3637,11 +3703,11 @@ func (x BfdPacket_Diagnostic) String() string { } func (BfdPacket_Diagnostic) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[48].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[49].Descriptor() } func (BfdPacket_Diagnostic) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[48] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[49] } func (x BfdPacket_Diagnostic) Number() protoreflect.EnumNumber { @@ -3650,7 +3716,7 @@ func (x BfdPacket_Diagnostic) Number() protoreflect.EnumNumber { // Deprecated: Use BfdPacket_Diagnostic.Descriptor instead. func (BfdPacket_Diagnostic) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{167, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{171, 0} } // The current BFD session state as seen by the transmitting system. These @@ -3698,11 +3764,11 @@ func (x BfdPacket_State) String() string { } func (BfdPacket_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[49].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[50].Descriptor() } func (BfdPacket_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[49] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[50] } func (x BfdPacket_State) Number() protoreflect.EnumNumber { @@ -3711,7 +3777,7 @@ func (x BfdPacket_State) Number() protoreflect.EnumNumber { // Deprecated: Use BfdPacket_State.Descriptor instead. func (BfdPacket_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{167, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{171, 1} } // The BFD session initialization mode for this BGP peer. @@ -3756,11 +3822,11 @@ func (x BfdStatus_BfdSessionInitializationMode) String() string { } func (BfdStatus_BfdSessionInitializationMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[50].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[51].Descriptor() } func (BfdStatus_BfdSessionInitializationMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[50] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[51] } func (x BfdStatus_BfdSessionInitializationMode) Number() protoreflect.EnumNumber { @@ -3769,7 +3835,7 @@ func (x BfdStatus_BfdSessionInitializationMode) Number() protoreflect.EnumNumber // Deprecated: Use BfdStatus_BfdSessionInitializationMode.Descriptor instead. func (BfdStatus_BfdSessionInitializationMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{168, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{172, 0} } // The diagnostic code specifies the local system's reason for the last change @@ -3834,11 +3900,11 @@ func (x BfdStatus_LocalDiagnostic) String() string { } func (BfdStatus_LocalDiagnostic) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[51].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[52].Descriptor() } func (BfdStatus_LocalDiagnostic) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[51] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[52] } func (x BfdStatus_LocalDiagnostic) Number() protoreflect.EnumNumber { @@ -3847,7 +3913,7 @@ func (x BfdStatus_LocalDiagnostic) Number() protoreflect.EnumNumber { // Deprecated: Use BfdStatus_LocalDiagnostic.Descriptor instead. func (BfdStatus_LocalDiagnostic) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{168, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{172, 1} } // The current BFD session state as seen by the transmitting system. These @@ -3895,11 +3961,11 @@ func (x BfdStatus_LocalState) String() string { } func (BfdStatus_LocalState) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[52].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[53].Descriptor() } func (BfdStatus_LocalState) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[52] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[53] } func (x BfdStatus_LocalState) Number() protoreflect.EnumNumber { @@ -3908,7 +3974,7 @@ func (x BfdStatus_LocalState) Number() protoreflect.EnumNumber { // Deprecated: Use BfdStatus_LocalState.Descriptor instead. func (BfdStatus_LocalState) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{168, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{172, 2} } // Output only. [Output only] BGP origin (EGP, IGP or INCOMPLETE) @@ -3949,11 +4015,11 @@ func (x BgpRoute_Origin) String() string { } func (BgpRoute_Origin) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[53].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[54].Descriptor() } func (BgpRoute_Origin) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[53] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[54] } func (x BgpRoute_Origin) Number() protoreflect.EnumNumber { @@ -3962,7 +4028,7 @@ func (x BgpRoute_Origin) Number() protoreflect.EnumNumber { // Deprecated: Use BgpRoute_Origin.Descriptor instead. func (BgpRoute_Origin) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{170, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{174, 0} } // Output only. [Output only] Type of AS-PATH segment (SEQUENCE or SET) @@ -4000,11 +4066,11 @@ func (x BgpRouteAsPath_Type) String() string { } func (BgpRouteAsPath_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[54].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[55].Descriptor() } func (BgpRouteAsPath_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[54] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[55] } func (x BgpRouteAsPath_Type) Number() protoreflect.EnumNumber { @@ -4013,7 +4079,7 @@ func (x BgpRouteAsPath_Type) Number() protoreflect.EnumNumber { // Deprecated: Use BgpRouteAsPath_Type.Descriptor instead. func (BgpRouteAsPath_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{171, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{175, 0} } // [Output Only] Creation status of BulkInsert operation - information @@ -4061,11 +4127,11 @@ func (x BulkInsertOperationStatus_Status) String() string { } func (BulkInsertOperationStatus_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[55].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[56].Descriptor() } func (BulkInsertOperationStatus_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[55] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[56] } func (x BulkInsertOperationStatus_Status) Number() protoreflect.EnumNumber { @@ -4074,7 +4140,74 @@ func (x BulkInsertOperationStatus_Status) Number() protoreflect.EnumNumber { // Deprecated: Use BulkInsertOperationStatus_Status.Descriptor instead. func (BulkInsertOperationStatus_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{179, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{183, 0} +} + +// Specifies the cache setting for all responses from this route. If not +// specified, Cloud CDN uses `CACHE_ALL_STATIC` mode. +type CachePolicy_CacheMode int32 + +const ( + // A value indicating that the enum field is not set. + CachePolicy_UNDEFINED_CACHE_MODE CachePolicy_CacheMode = 0 + // Automatically cache static content, including common image formats, + // media (video and audio), and web assets (JavaScript and CSS). + // Requests and responses that are marked as uncacheable, as well as + // dynamic content (including HTML), will not be cached. + CachePolicy_CACHE_ALL_STATIC CachePolicy_CacheMode = 355027945 + // Cache all content, ignoring any "private", "no-store" or "no-cache" + // directives in Cache-Control response headers. + // Warning: this may result in Cloud CDN caching private, + // per-user (user identifiable) content. + CachePolicy_FORCE_CACHE_ALL CachePolicy_CacheMode = 486026928 + // Requires the origin to set valid caching headers to cache content. + // Responses without these headers will not be cached at the edge, and will + // require a full trip to the origin on every request, potentially impacting + // performance and increasing load on the origin server. + CachePolicy_USE_ORIGIN_HEADERS CachePolicy_CacheMode = 55380261 +) + +// Enum value maps for CachePolicy_CacheMode. +var ( + CachePolicy_CacheMode_name = map[int32]string{ + 0: "UNDEFINED_CACHE_MODE", + 355027945: "CACHE_ALL_STATIC", + 486026928: "FORCE_CACHE_ALL", + 55380261: "USE_ORIGIN_HEADERS", + } + CachePolicy_CacheMode_value = map[string]int32{ + "UNDEFINED_CACHE_MODE": 0, + "CACHE_ALL_STATIC": 355027945, + "FORCE_CACHE_ALL": 486026928, + "USE_ORIGIN_HEADERS": 55380261, + } +) + +func (x CachePolicy_CacheMode) Enum() *CachePolicy_CacheMode { + p := new(CachePolicy_CacheMode) + *p = x + return p +} + +func (x CachePolicy_CacheMode) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (CachePolicy_CacheMode) Descriptor() protoreflect.EnumDescriptor { + return file_google_cloud_compute_v1_compute_proto_enumTypes[57].Descriptor() +} + +func (CachePolicy_CacheMode) Type() protoreflect.EnumType { + return &file_google_cloud_compute_v1_compute_proto_enumTypes[57] +} + +func (x CachePolicy_CacheMode) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use CachePolicy_CacheMode.Descriptor instead. +func (CachePolicy_CacheMode) EnumDescriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{192, 0} } // The category of the commitment; specifies whether the commitment is for @@ -4122,11 +4255,11 @@ func (x Commitment_Category) String() string { } func (Commitment_Category) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[56].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[58].Descriptor() } func (Commitment_Category) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[56] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[58] } func (x Commitment_Category) Number() protoreflect.EnumNumber { @@ -4135,7 +4268,7 @@ func (x Commitment_Category) Number() protoreflect.EnumNumber { // Deprecated: Use Commitment_Category.Descriptor instead. func (Commitment_Category) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{198, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{206, 0} } // The minimum time duration that you commit to purchasing resources. @@ -4181,11 +4314,11 @@ func (x Commitment_Plan) String() string { } func (Commitment_Plan) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[57].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[59].Descriptor() } func (Commitment_Plan) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[57] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[59] } func (x Commitment_Plan) Number() protoreflect.EnumNumber { @@ -4194,7 +4327,7 @@ func (x Commitment_Plan) Number() protoreflect.EnumNumber { // Deprecated: Use Commitment_Plan.Descriptor instead. func (Commitment_Plan) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{198, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{206, 1} } // Output only. [Output Only] Status of the commitment with regards to eventual expiration @@ -4245,11 +4378,11 @@ func (x Commitment_Status) String() string { } func (Commitment_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[58].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[60].Descriptor() } func (Commitment_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[58] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[60] } func (x Commitment_Status) Number() protoreflect.EnumNumber { @@ -4258,7 +4391,7 @@ func (x Commitment_Status) Number() protoreflect.EnumNumber { // Deprecated: Use Commitment_Status.Descriptor instead. func (Commitment_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{198, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{206, 2} } // The type of commitment; specifies the @@ -4427,11 +4560,11 @@ func (x Commitment_Type) String() string { } func (Commitment_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[59].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[61].Descriptor() } func (Commitment_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[59] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[61] } func (x Commitment_Type) Number() protoreflect.EnumNumber { @@ -4440,7 +4573,115 @@ func (x Commitment_Type) Number() protoreflect.EnumNumber { // Deprecated: Use Commitment_Type.Descriptor instead. func (Commitment_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{198, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{206, 3} +} + +// Health state of the CompositeHealthCheck. +type CompositeHealthCheckHealth_HealthState int32 + +const ( + // A value indicating that the enum field is not set. + CompositeHealthCheckHealth_UNDEFINED_HEALTH_STATE CompositeHealthCheckHealth_HealthState = 0 + CompositeHealthCheckHealth_HEALTHY CompositeHealthCheckHealth_HealthState = 439801213 + CompositeHealthCheckHealth_UNHEALTHY CompositeHealthCheckHealth_HealthState = 462118084 + CompositeHealthCheckHealth_UNKNOWN CompositeHealthCheckHealth_HealthState = 433141802 +) + +// Enum value maps for CompositeHealthCheckHealth_HealthState. +var ( + CompositeHealthCheckHealth_HealthState_name = map[int32]string{ + 0: "UNDEFINED_HEALTH_STATE", + 439801213: "HEALTHY", + 462118084: "UNHEALTHY", + 433141802: "UNKNOWN", + } + CompositeHealthCheckHealth_HealthState_value = map[string]int32{ + "UNDEFINED_HEALTH_STATE": 0, + "HEALTHY": 439801213, + "UNHEALTHY": 462118084, + "UNKNOWN": 433141802, + } +) + +func (x CompositeHealthCheckHealth_HealthState) Enum() *CompositeHealthCheckHealth_HealthState { + p := new(CompositeHealthCheckHealth_HealthState) + *p = x + return p +} + +func (x CompositeHealthCheckHealth_HealthState) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (CompositeHealthCheckHealth_HealthState) Descriptor() protoreflect.EnumDescriptor { + return file_google_cloud_compute_v1_compute_proto_enumTypes[62].Descriptor() +} + +func (CompositeHealthCheckHealth_HealthState) Type() protoreflect.EnumType { + return &file_google_cloud_compute_v1_compute_proto_enumTypes[62] +} + +func (x CompositeHealthCheckHealth_HealthState) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use CompositeHealthCheckHealth_HealthState.Descriptor instead. +func (CompositeHealthCheckHealth_HealthState) EnumDescriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{214, 0} +} + +// Health state of the associated HealthSource resource. +type CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState int32 + +const ( + // A value indicating that the enum field is not set. + CompositeHealthChecksGetHealthResponseHealthSourceHealth_UNDEFINED_HEALTH_STATE CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState = 0 + CompositeHealthChecksGetHealthResponseHealthSourceHealth_HEALTHY CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState = 439801213 + CompositeHealthChecksGetHealthResponseHealthSourceHealth_UNHEALTHY CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState = 462118084 + CompositeHealthChecksGetHealthResponseHealthSourceHealth_UNKNOWN CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState = 433141802 +) + +// Enum value maps for CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState. +var ( + CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState_name = map[int32]string{ + 0: "UNDEFINED_HEALTH_STATE", + 439801213: "HEALTHY", + 462118084: "UNHEALTHY", + 433141802: "UNKNOWN", + } + CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState_value = map[string]int32{ + "UNDEFINED_HEALTH_STATE": 0, + "HEALTHY": 439801213, + "UNHEALTHY": 462118084, + "UNKNOWN": 433141802, + } +) + +func (x CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState) Enum() *CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState { + p := new(CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState) + *p = x + return p +} + +func (x CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState) Descriptor() protoreflect.EnumDescriptor { + return file_google_cloud_compute_v1_compute_proto_enumTypes[63].Descriptor() +} + +func (CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState) Type() protoreflect.EnumType { + return &file_google_cloud_compute_v1_compute_proto_enumTypes[63] +} + +func (x CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState.Descriptor instead. +func (CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState) EnumDescriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{216, 0} } // Defines the type of technology used by the confidential instance. @@ -4488,11 +4729,11 @@ func (x ConfidentialInstanceConfig_ConfidentialInstanceType) String() string { } func (ConfidentialInstanceConfig_ConfidentialInstanceType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[60].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[64].Descriptor() } func (ConfidentialInstanceConfig_ConfidentialInstanceType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[60] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[64] } func (x ConfidentialInstanceConfig_ConfidentialInstanceType) Number() protoreflect.EnumNumber { @@ -4501,7 +4742,7 @@ func (x ConfidentialInstanceConfig_ConfidentialInstanceType) Number() protorefle // Deprecated: Use ConfidentialInstanceConfig_ConfidentialInstanceType.Descriptor instead. func (ConfidentialInstanceConfig_ConfidentialInstanceType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{207, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{218, 0} } // The deprecation state of this resource. This can be ACTIVE,DEPRECATED, OBSOLETE, or DELETED. @@ -4548,11 +4789,11 @@ func (x DeprecationStatus_State) String() string { } func (DeprecationStatus_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[61].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[65].Descriptor() } func (DeprecationStatus_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[61] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[65] } func (x DeprecationStatus_State) Number() protoreflect.EnumNumber { @@ -4561,7 +4802,7 @@ func (x DeprecationStatus_State) Number() protoreflect.EnumNumber { // Deprecated: Use DeprecationStatus_State.Descriptor instead. func (DeprecationStatus_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{330, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{347, 0} } // The access mode of the disk. @@ -4617,11 +4858,11 @@ func (x Disk_AccessMode) String() string { } func (Disk_AccessMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[62].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[66].Descriptor() } func (Disk_AccessMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[62] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[66] } func (x Disk_AccessMode) Number() protoreflect.EnumNumber { @@ -4630,7 +4871,7 @@ func (x Disk_AccessMode) Number() protoreflect.EnumNumber { // Deprecated: Use Disk_AccessMode.Descriptor instead. func (Disk_AccessMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{337, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{354, 0} } // The architecture of the disk. Valid values are @@ -4675,11 +4916,11 @@ func (x Disk_Architecture) String() string { } func (Disk_Architecture) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[63].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[67].Descriptor() } func (Disk_Architecture) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[63] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[67] } func (x Disk_Architecture) Number() protoreflect.EnumNumber { @@ -4688,7 +4929,7 @@ func (x Disk_Architecture) Number() protoreflect.EnumNumber { // Deprecated: Use Disk_Architecture.Descriptor instead. func (Disk_Architecture) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{337, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{354, 1} } // Output only. [Output Only] The status of disk creation. @@ -4752,11 +4993,11 @@ func (x Disk_Status) String() string { } func (Disk_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[64].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[68].Descriptor() } func (Disk_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[64] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[68] } func (x Disk_Status) Number() protoreflect.EnumNumber { @@ -4765,7 +5006,7 @@ func (x Disk_Status) Number() protoreflect.EnumNumber { // Deprecated: Use Disk_Status.Descriptor instead. func (Disk_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{337, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{354, 2} } // Specifies whether to include the disk and what image to use. Possible @@ -4855,11 +5096,11 @@ func (x DiskInstantiationConfig_InstantiateFrom) String() string { } func (DiskInstantiationConfig_InstantiateFrom) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[65].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[69].Descriptor() } func (DiskInstantiationConfig_InstantiateFrom) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[65] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[69] } func (x DiskInstantiationConfig_InstantiateFrom) Number() protoreflect.EnumNumber { @@ -4868,7 +5109,7 @@ func (x DiskInstantiationConfig_InstantiateFrom) Number() protoreflect.EnumNumbe // Deprecated: Use DiskInstantiationConfig_InstantiateFrom.Descriptor instead. func (DiskInstantiationConfig_InstantiateFrom) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{341, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{358, 0} } type DiskResourceStatusAsyncReplicationStatus_State int32 @@ -4922,11 +5163,11 @@ func (x DiskResourceStatusAsyncReplicationStatus_State) String() string { } func (DiskResourceStatusAsyncReplicationStatus_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[66].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[70].Descriptor() } func (DiskResourceStatusAsyncReplicationStatus_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[66] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[70] } func (x DiskResourceStatusAsyncReplicationStatus_State) Number() protoreflect.EnumNumber { @@ -4935,7 +5176,7 @@ func (x DiskResourceStatusAsyncReplicationStatus_State) Number() protoreflect.En // Deprecated: Use DiskResourceStatusAsyncReplicationStatus_State.Descriptor instead. func (DiskResourceStatusAsyncReplicationStatus_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{346, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{363, 0} } // The distribution shape to which the group converges either proactively or @@ -4997,11 +5238,11 @@ func (x DistributionPolicy_TargetShape) String() string { } func (DistributionPolicy_TargetShape) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[67].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[71].Descriptor() } func (DistributionPolicy_TargetShape) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[67] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[71] } func (x DistributionPolicy_TargetShape) Number() protoreflect.EnumNumber { @@ -5010,7 +5251,7 @@ func (x DistributionPolicy_TargetShape) Number() protoreflect.EnumNumber { // Deprecated: Use DistributionPolicy_TargetShape.Descriptor instead. func (DistributionPolicy_TargetShape) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{358, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{376, 0} } // The type of the peering route. @@ -5054,11 +5295,11 @@ func (x ExchangedPeeringRoute_Type) String() string { } func (ExchangedPeeringRoute_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[68].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[72].Descriptor() } func (ExchangedPeeringRoute_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[68] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[72] } func (x ExchangedPeeringRoute_Type) Number() protoreflect.EnumNumber { @@ -5067,7 +5308,7 @@ func (x ExchangedPeeringRoute_Type) Number() protoreflect.EnumNumber { // Deprecated: Use ExchangedPeeringRoute_Type.Descriptor instead. func (ExchangedPeeringRoute_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{367, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{385, 0} } // Indicates the user-supplied redundancy type of this external VPN gateway. @@ -5134,11 +5375,11 @@ func (x ExternalVpnGateway_RedundancyType) String() string { } func (ExternalVpnGateway_RedundancyType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[69].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[73].Descriptor() } func (ExternalVpnGateway_RedundancyType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[69] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[73] } func (x ExternalVpnGateway_RedundancyType) Number() protoreflect.EnumNumber { @@ -5147,7 +5388,7 @@ func (x ExternalVpnGateway_RedundancyType) Number() protoreflect.EnumNumber { // Deprecated: Use ExternalVpnGateway_RedundancyType.Descriptor instead. func (ExternalVpnGateway_RedundancyType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{371, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{389, 0} } // The file type of source file. @@ -5188,11 +5429,11 @@ func (x FileContentBuffer_FileType) String() string { } func (FileContentBuffer_FileType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[70].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[74].Descriptor() } func (FileContentBuffer_FileType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[70] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[74] } func (x FileContentBuffer_FileType) Number() protoreflect.EnumNumber { @@ -5201,7 +5442,7 @@ func (x FileContentBuffer_FileType) Number() protoreflect.EnumNumber { // Deprecated: Use FileContentBuffer_FileType.Descriptor instead. func (FileContentBuffer_FileType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{375, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{393, 0} } // Direction of traffic to which this firewall applies, either `INGRESS` or @@ -5243,11 +5484,11 @@ func (x Firewall_Direction) String() string { } func (Firewall_Direction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[71].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[75].Descriptor() } func (Firewall_Direction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[71] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[75] } func (x Firewall_Direction) Number() protoreflect.EnumNumber { @@ -5256,7 +5497,7 @@ func (x Firewall_Direction) Number() protoreflect.EnumNumber { // Deprecated: Use Firewall_Direction.Descriptor instead. func (Firewall_Direction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{376, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{394, 0} } // This field can only be specified for a particular firewall rule if @@ -5296,11 +5537,11 @@ func (x FirewallLogConfig_Metadata) String() string { } func (FirewallLogConfig_Metadata) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[72].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[76].Descriptor() } func (FirewallLogConfig_Metadata) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[72] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[76] } func (x FirewallLogConfig_Metadata) Number() protoreflect.EnumNumber { @@ -5309,7 +5550,7 @@ func (x FirewallLogConfig_Metadata) Number() protoreflect.EnumNumber { // Deprecated: Use FirewallLogConfig_Metadata.Descriptor instead. func (FirewallLogConfig_Metadata) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{378, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{396, 0} } // The type of the firewall policy. This field can be eitherVPC_POLICY or RDMA_ROCE_POLICY. @@ -5349,11 +5590,11 @@ func (x FirewallPolicy_PolicyType) String() string { } func (FirewallPolicy_PolicyType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[73].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[77].Descriptor() } func (FirewallPolicy_PolicyType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[73] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[77] } func (x FirewallPolicy_PolicyType) Number() protoreflect.EnumNumber { @@ -5362,7 +5603,7 @@ func (x FirewallPolicy_PolicyType) Number() protoreflect.EnumNumber { // Deprecated: Use FirewallPolicy_PolicyType.Descriptor instead. func (FirewallPolicy_PolicyType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{382, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{400, 0} } // The direction in which this rule applies. @@ -5400,11 +5641,11 @@ func (x FirewallPolicyRule_Direction) String() string { } func (FirewallPolicyRule_Direction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[74].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[78].Descriptor() } func (FirewallPolicyRule_Direction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[74] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[78] } func (x FirewallPolicyRule_Direction) Number() protoreflect.EnumNumber { @@ -5413,7 +5654,7 @@ func (x FirewallPolicyRule_Direction) Number() protoreflect.EnumNumber { // Deprecated: Use FirewallPolicyRule_Direction.Descriptor instead. func (FirewallPolicyRule_Direction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{385, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{403, 0} } // Network context of the traffic destination. Allowed values are: @@ -5456,11 +5697,11 @@ func (x FirewallPolicyRuleMatcher_DestNetworkContext) String() string { } func (FirewallPolicyRuleMatcher_DestNetworkContext) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[75].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[79].Descriptor() } func (FirewallPolicyRuleMatcher_DestNetworkContext) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[75] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[79] } func (x FirewallPolicyRuleMatcher_DestNetworkContext) Number() protoreflect.EnumNumber { @@ -5469,7 +5710,7 @@ func (x FirewallPolicyRuleMatcher_DestNetworkContext) Number() protoreflect.Enum // Deprecated: Use FirewallPolicyRuleMatcher_DestNetworkContext.Descriptor instead. func (FirewallPolicyRuleMatcher_DestNetworkContext) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{386, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{404, 0} } // Network type of the traffic destination. Allowed values are: @@ -5512,11 +5753,11 @@ func (x FirewallPolicyRuleMatcher_DestNetworkType) String() string { } func (FirewallPolicyRuleMatcher_DestNetworkType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[76].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[80].Descriptor() } func (FirewallPolicyRuleMatcher_DestNetworkType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[76] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[80] } func (x FirewallPolicyRuleMatcher_DestNetworkType) Number() protoreflect.EnumNumber { @@ -5525,7 +5766,7 @@ func (x FirewallPolicyRuleMatcher_DestNetworkType) Number() protoreflect.EnumNum // Deprecated: Use FirewallPolicyRuleMatcher_DestNetworkType.Descriptor instead. func (FirewallPolicyRuleMatcher_DestNetworkType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{386, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{404, 1} } // Network context of the traffic source. Allowed values are: @@ -5570,11 +5811,11 @@ func (x FirewallPolicyRuleMatcher_SrcNetworkContext) String() string { } func (FirewallPolicyRuleMatcher_SrcNetworkContext) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[77].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[81].Descriptor() } func (FirewallPolicyRuleMatcher_SrcNetworkContext) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[77] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[81] } func (x FirewallPolicyRuleMatcher_SrcNetworkContext) Number() protoreflect.EnumNumber { @@ -5583,7 +5824,7 @@ func (x FirewallPolicyRuleMatcher_SrcNetworkContext) Number() protoreflect.EnumN // Deprecated: Use FirewallPolicyRuleMatcher_SrcNetworkContext.Descriptor instead. func (FirewallPolicyRuleMatcher_SrcNetworkContext) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{386, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{404, 2} } // Network type of the traffic source. Allowed values are: @@ -5628,11 +5869,11 @@ func (x FirewallPolicyRuleMatcher_SrcNetworkType) String() string { } func (FirewallPolicyRuleMatcher_SrcNetworkType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[78].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[82].Descriptor() } func (FirewallPolicyRuleMatcher_SrcNetworkType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[78] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[82] } func (x FirewallPolicyRuleMatcher_SrcNetworkType) Number() protoreflect.EnumNumber { @@ -5641,7 +5882,7 @@ func (x FirewallPolicyRuleMatcher_SrcNetworkType) Number() protoreflect.EnumNumb // Deprecated: Use FirewallPolicyRuleMatcher_SrcNetworkType.Descriptor instead. func (FirewallPolicyRuleMatcher_SrcNetworkType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{386, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{404, 3} } // Output only. [Output Only] State of the secure tag, either `EFFECTIVE` or @@ -5681,11 +5922,11 @@ func (x FirewallPolicyRuleSecureTag_State) String() string { } func (FirewallPolicyRuleSecureTag_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[79].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[83].Descriptor() } func (FirewallPolicyRuleSecureTag_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[79] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[83] } func (x FirewallPolicyRuleSecureTag_State) Number() protoreflect.EnumNumber { @@ -5694,7 +5935,7 @@ func (x FirewallPolicyRuleSecureTag_State) Number() protoreflect.EnumNumber { // Deprecated: Use FirewallPolicyRuleSecureTag_State.Descriptor instead. func (FirewallPolicyRuleSecureTag_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{388, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{406, 0} } // Specifies the canary migration state for the backend buckets attached to @@ -5750,11 +5991,11 @@ func (x ForwardingRule_ExternalManagedBackendBucketMigrationState) String() stri } func (ForwardingRule_ExternalManagedBackendBucketMigrationState) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[80].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[84].Descriptor() } func (ForwardingRule_ExternalManagedBackendBucketMigrationState) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[80] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[84] } func (x ForwardingRule_ExternalManagedBackendBucketMigrationState) Number() protoreflect.EnumNumber { @@ -5763,7 +6004,7 @@ func (x ForwardingRule_ExternalManagedBackendBucketMigrationState) Number() prot // Deprecated: Use ForwardingRule_ExternalManagedBackendBucketMigrationState.Descriptor instead. func (ForwardingRule_ExternalManagedBackendBucketMigrationState) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{391, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{409, 0} } // The IP protocol to which this rule applies. @@ -5823,11 +6064,11 @@ func (x ForwardingRule_IPProtocolEnum) String() string { } func (ForwardingRule_IPProtocolEnum) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[81].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[85].Descriptor() } func (ForwardingRule_IPProtocolEnum) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[81] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[85] } func (x ForwardingRule_IPProtocolEnum) Number() protoreflect.EnumNumber { @@ -5836,7 +6077,7 @@ func (x ForwardingRule_IPProtocolEnum) Number() protoreflect.EnumNumber { // Deprecated: Use ForwardingRule_IPProtocolEnum.Descriptor instead. func (ForwardingRule_IPProtocolEnum) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{391, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{409, 1} } // The IP Version that will be used by this forwarding rule. Valid options @@ -5878,11 +6119,11 @@ func (x ForwardingRule_IpVersion) String() string { } func (ForwardingRule_IpVersion) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[82].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[86].Descriptor() } func (ForwardingRule_IpVersion) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[82] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[86] } func (x ForwardingRule_IpVersion) Number() protoreflect.EnumNumber { @@ -5891,7 +6132,7 @@ func (x ForwardingRule_IpVersion) Number() protoreflect.EnumNumber { // Deprecated: Use ForwardingRule_IpVersion.Descriptor instead. func (ForwardingRule_IpVersion) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{391, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{409, 2} } // Specifies the forwarding rule type. @@ -5944,11 +6185,11 @@ func (x ForwardingRule_LoadBalancingScheme) String() string { } func (ForwardingRule_LoadBalancingScheme) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[83].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[87].Descriptor() } func (ForwardingRule_LoadBalancingScheme) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[83] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[87] } func (x ForwardingRule_LoadBalancingScheme) Number() protoreflect.EnumNumber { @@ -5957,7 +6198,7 @@ func (x ForwardingRule_LoadBalancingScheme) Number() protoreflect.EnumNumber { // Deprecated: Use ForwardingRule_LoadBalancingScheme.Descriptor instead. func (ForwardingRule_LoadBalancingScheme) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{391, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{409, 3} } // This signifies the networking tier used for configuring @@ -6015,11 +6256,11 @@ func (x ForwardingRule_NetworkTier) String() string { } func (ForwardingRule_NetworkTier) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[84].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[88].Descriptor() } func (ForwardingRule_NetworkTier) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[84] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[88] } func (x ForwardingRule_NetworkTier) Number() protoreflect.EnumNumber { @@ -6028,7 +6269,7 @@ func (x ForwardingRule_NetworkTier) Number() protoreflect.EnumNumber { // Deprecated: Use ForwardingRule_NetworkTier.Descriptor instead. func (ForwardingRule_NetworkTier) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{391, 4} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{409, 4} } type ForwardingRule_PscConnectionStatus int32 @@ -6084,11 +6325,11 @@ func (x ForwardingRule_PscConnectionStatus) String() string { } func (ForwardingRule_PscConnectionStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[85].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[89].Descriptor() } func (ForwardingRule_PscConnectionStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[85] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[89] } func (x ForwardingRule_PscConnectionStatus) Number() protoreflect.EnumNumber { @@ -6097,7 +6338,58 @@ func (x ForwardingRule_PscConnectionStatus) Number() protoreflect.EnumNumber { // Deprecated: Use ForwardingRule_PscConnectionStatus.Descriptor instead. func (ForwardingRule_PscConnectionStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{391, 5} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{409, 5} +} + +type FutureReservation_ConfidentialComputeType int32 + +const ( + // A value indicating that the enum field is not set. + FutureReservation_UNDEFINED_CONFIDENTIAL_COMPUTE_TYPE FutureReservation_ConfidentialComputeType = 0 + // Intel Trust Domain Extensions. + FutureReservation_CONFIDENTIAL_COMPUTE_TYPE_TDX FutureReservation_ConfidentialComputeType = 301241954 + FutureReservation_CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED FutureReservation_ConfidentialComputeType = 42227601 +) + +// Enum value maps for FutureReservation_ConfidentialComputeType. +var ( + FutureReservation_ConfidentialComputeType_name = map[int32]string{ + 0: "UNDEFINED_CONFIDENTIAL_COMPUTE_TYPE", + 301241954: "CONFIDENTIAL_COMPUTE_TYPE_TDX", + 42227601: "CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED", + } + FutureReservation_ConfidentialComputeType_value = map[string]int32{ + "UNDEFINED_CONFIDENTIAL_COMPUTE_TYPE": 0, + "CONFIDENTIAL_COMPUTE_TYPE_TDX": 301241954, + "CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED": 42227601, + } +) + +func (x FutureReservation_ConfidentialComputeType) Enum() *FutureReservation_ConfidentialComputeType { + p := new(FutureReservation_ConfidentialComputeType) + *p = x + return p +} + +func (x FutureReservation_ConfidentialComputeType) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (FutureReservation_ConfidentialComputeType) Descriptor() protoreflect.EnumDescriptor { + return file_google_cloud_compute_v1_compute_proto_enumTypes[90].Descriptor() +} + +func (FutureReservation_ConfidentialComputeType) Type() protoreflect.EnumType { + return &file_google_cloud_compute_v1_compute_proto_enumTypes[90] +} + +func (x FutureReservation_ConfidentialComputeType) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use FutureReservation_ConfidentialComputeType.Descriptor instead. +func (FutureReservation_ConfidentialComputeType) EnumDescriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{415, 0} } // Type of the deployment requested as part of future reservation. @@ -6136,11 +6428,11 @@ func (x FutureReservation_DeploymentType) String() string { } func (FutureReservation_DeploymentType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[86].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[91].Descriptor() } func (FutureReservation_DeploymentType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[86] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[91] } func (x FutureReservation_DeploymentType) Number() protoreflect.EnumNumber { @@ -6149,7 +6441,7 @@ func (x FutureReservation_DeploymentType) Number() protoreflect.EnumNumber { // Deprecated: Use FutureReservation_DeploymentType.Descriptor instead. func (FutureReservation_DeploymentType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{397, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{415, 1} } // Planning state before being submitted for evaluation @@ -6192,11 +6484,11 @@ func (x FutureReservation_PlanningStatus) String() string { } func (FutureReservation_PlanningStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[87].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[92].Descriptor() } func (FutureReservation_PlanningStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[87] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[92] } func (x FutureReservation_PlanningStatus) Number() protoreflect.EnumNumber { @@ -6205,7 +6497,7 @@ func (x FutureReservation_PlanningStatus) Number() protoreflect.EnumNumber { // Deprecated: Use FutureReservation_PlanningStatus.Descriptor instead. func (FutureReservation_PlanningStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{397, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{415, 2} } // The reservation mode which determines reservation-termination behavior and @@ -6252,11 +6544,11 @@ func (x FutureReservation_ReservationMode) String() string { } func (FutureReservation_ReservationMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[88].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[93].Descriptor() } func (FutureReservation_ReservationMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[88] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[93] } func (x FutureReservation_ReservationMode) Number() protoreflect.EnumNumber { @@ -6265,7 +6557,7 @@ func (x FutureReservation_ReservationMode) Number() protoreflect.EnumNumber { // Deprecated: Use FutureReservation_ReservationMode.Descriptor instead. func (FutureReservation_ReservationMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{397, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{415, 3} } // Maintenance information for this reservation @@ -6310,11 +6602,11 @@ func (x FutureReservation_SchedulingType) String() string { } func (FutureReservation_SchedulingType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[89].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[94].Descriptor() } func (FutureReservation_SchedulingType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[89] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[94] } func (x FutureReservation_SchedulingType) Number() protoreflect.EnumNumber { @@ -6323,7 +6615,7 @@ func (x FutureReservation_SchedulingType) Number() protoreflect.EnumNumber { // Deprecated: Use FutureReservation_SchedulingType.Descriptor instead. func (FutureReservation_SchedulingType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{397, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{415, 4} } // Indicates if a Commitment needs to be created as part of FR delivery. If @@ -6366,11 +6658,11 @@ func (x FutureReservationCommitmentInfo_CommitmentPlan) String() string { } func (FutureReservationCommitmentInfo_CommitmentPlan) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[90].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[95].Descriptor() } func (FutureReservationCommitmentInfo_CommitmentPlan) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[90] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[95] } func (x FutureReservationCommitmentInfo_CommitmentPlan) Number() protoreflect.EnumNumber { @@ -6379,7 +6671,7 @@ func (x FutureReservationCommitmentInfo_CommitmentPlan) Number() protoreflect.En // Deprecated: Use FutureReservationCommitmentInfo_CommitmentPlan.Descriptor instead. func (FutureReservationCommitmentInfo_CommitmentPlan) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{398, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{416, 0} } // Only applicable if FR is delivering to the same reservation. If set, all @@ -6423,11 +6715,11 @@ func (x FutureReservationCommitmentInfo_PreviousCommitmentTerms) String() string } func (FutureReservationCommitmentInfo_PreviousCommitmentTerms) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[91].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[96].Descriptor() } func (FutureReservationCommitmentInfo_PreviousCommitmentTerms) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[91] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[96] } func (x FutureReservationCommitmentInfo_PreviousCommitmentTerms) Number() protoreflect.EnumNumber { @@ -6436,7 +6728,7 @@ func (x FutureReservationCommitmentInfo_PreviousCommitmentTerms) Number() protor // Deprecated: Use FutureReservationCommitmentInfo_PreviousCommitmentTerms.Descriptor instead. func (FutureReservationCommitmentInfo_PreviousCommitmentTerms) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{398, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{416, 1} } // Output only. [Output Only] The current status of the requested amendment. @@ -6486,11 +6778,11 @@ func (x FutureReservationStatus_AmendmentStatus) String() string { } func (FutureReservationStatus_AmendmentStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[92].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[97].Descriptor() } func (FutureReservationStatus_AmendmentStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[92] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[97] } func (x FutureReservationStatus_AmendmentStatus) Number() protoreflect.EnumNumber { @@ -6499,7 +6791,7 @@ func (x FutureReservationStatus_AmendmentStatus) Number() protoreflect.EnumNumbe // Deprecated: Use FutureReservationStatus_AmendmentStatus.Descriptor instead. func (FutureReservationStatus_AmendmentStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{400, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{419, 0} } // Output only. Current state of this Future Reservation @@ -6590,11 +6882,11 @@ func (x FutureReservationStatus_ProcurementStatus) String() string { } func (FutureReservationStatus_ProcurementStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[93].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[98].Descriptor() } func (FutureReservationStatus_ProcurementStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[93] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[98] } func (x FutureReservationStatus_ProcurementStatus) Number() protoreflect.EnumNumber { @@ -6603,7 +6895,7 @@ func (x FutureReservationStatus_ProcurementStatus) Number() protoreflect.EnumNum // Deprecated: Use FutureReservationStatus_ProcurementStatus.Descriptor instead. func (FutureReservationStatus_ProcurementStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{400, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{419, 1} } // Output only. [Output Only] The status of the last known good state for the Future @@ -6695,11 +6987,11 @@ func (x FutureReservationStatusLastKnownGoodState_ProcurementStatus) String() st } func (FutureReservationStatusLastKnownGoodState_ProcurementStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[94].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[99].Descriptor() } func (FutureReservationStatusLastKnownGoodState_ProcurementStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[94] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[99] } func (x FutureReservationStatusLastKnownGoodState_ProcurementStatus) Number() protoreflect.EnumNumber { @@ -6708,7 +7000,7 @@ func (x FutureReservationStatusLastKnownGoodState_ProcurementStatus) Number() pr // Deprecated: Use FutureReservationStatusLastKnownGoodState_ProcurementStatus.Descriptor instead. func (FutureReservationStatusLastKnownGoodState_ProcurementStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{402, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{421, 0} } // Type of recommendation. Currently only FUTURE_RESERVATION is supported. @@ -6748,11 +7040,11 @@ func (x FutureResourcesRecommendation_RecommendationType) String() string { } func (FutureResourcesRecommendation_RecommendationType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[95].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[100].Descriptor() } func (FutureResourcesRecommendation_RecommendationType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[95] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[100] } func (x FutureResourcesRecommendation_RecommendationType) Number() protoreflect.EnumNumber { @@ -6761,7 +7053,7 @@ func (x FutureResourcesRecommendation_RecommendationType) Number() protoreflect. // Deprecated: Use FutureResourcesRecommendation_RecommendationType.Descriptor instead. func (FutureResourcesRecommendation_RecommendationType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{409, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{428, 0} } // Status of recommendation in this location. @@ -6819,11 +7111,11 @@ func (x FutureResourcesRecommendationOtherLocation_Status) String() string { } func (FutureResourcesRecommendationOtherLocation_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[96].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[101].Descriptor() } func (FutureResourcesRecommendationOtherLocation_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[96] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[101] } func (x FutureResourcesRecommendationOtherLocation_Status) Number() protoreflect.EnumNumber { @@ -6832,7 +7124,7 @@ func (x FutureResourcesRecommendationOtherLocation_Status) Number() protoreflect // Deprecated: Use FutureResourcesRecommendationOtherLocation_Status.Descriptor instead. func (FutureResourcesRecommendationOtherLocation_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{410, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{429, 0} } // Indicates if the reservation allocation strategy is static (DENSE) or @@ -6872,11 +7164,11 @@ func (x FutureResourcesSpec_DeploymentType) String() string { } func (FutureResourcesSpec_DeploymentType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[97].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[102].Descriptor() } func (FutureResourcesSpec_DeploymentType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[97] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[102] } func (x FutureResourcesSpec_DeploymentType) Number() protoreflect.EnumNumber { @@ -6885,7 +7177,7 @@ func (x FutureResourcesSpec_DeploymentType) Number() protoreflect.EnumNumber { // Deprecated: Use FutureResourcesSpec_DeploymentType.Descriptor instead. func (FutureResourcesSpec_DeploymentType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{411, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{430, 0} } // The VM family that all instances scheduled against this reservation @@ -6942,11 +7234,11 @@ func (x FutureResourcesSpecAggregateResources_VmFamily) String() string { } func (FutureResourcesSpecAggregateResources_VmFamily) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[98].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[103].Descriptor() } func (FutureResourcesSpecAggregateResources_VmFamily) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[98] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[103] } func (x FutureResourcesSpecAggregateResources_VmFamily) Number() protoreflect.EnumNumber { @@ -6955,7 +7247,7 @@ func (x FutureResourcesSpecAggregateResources_VmFamily) Number() protoreflect.En // Deprecated: Use FutureResourcesSpecAggregateResources_VmFamily.Descriptor instead. func (FutureResourcesSpecAggregateResources_VmFamily) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{412, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{431, 0} } // Workload type. Use for TPU reservations. @@ -7000,11 +7292,11 @@ func (x FutureResourcesSpecAggregateResources_WorkloadType) String() string { } func (FutureResourcesSpecAggregateResources_WorkloadType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[99].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[104].Descriptor() } func (FutureResourcesSpecAggregateResources_WorkloadType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[99] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[104] } func (x FutureResourcesSpecAggregateResources_WorkloadType) Number() protoreflect.EnumNumber { @@ -7013,7 +7305,7 @@ func (x FutureResourcesSpecAggregateResources_WorkloadType) Number() protoreflec // Deprecated: Use FutureResourcesSpecAggregateResources_WorkloadType.Descriptor instead. func (FutureResourcesSpecAggregateResources_WorkloadType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{412, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{431, 1} } // Disk interface. Defaults to SCSI. @@ -7051,11 +7343,11 @@ func (x FutureResourcesSpecLocalSsdPartition_DiskInterface) String() string { } func (FutureResourcesSpecLocalSsdPartition_DiskInterface) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[100].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[105].Descriptor() } func (FutureResourcesSpecLocalSsdPartition_DiskInterface) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[100] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[105] } func (x FutureResourcesSpecLocalSsdPartition_DiskInterface) Number() protoreflect.EnumNumber { @@ -7064,7 +7356,7 @@ func (x FutureResourcesSpecLocalSsdPartition_DiskInterface) Number() protoreflec // Deprecated: Use FutureResourcesSpecLocalSsdPartition_DiskInterface.Descriptor instead. func (FutureResourcesSpecLocalSsdPartition_DiskInterface) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{413, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{432, 0} } // Preference for this location. @@ -7108,11 +7400,11 @@ func (x FutureResourcesSpecLocationPolicyLocation_Preference) String() string { } func (FutureResourcesSpecLocationPolicyLocation_Preference) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[101].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[106].Descriptor() } func (FutureResourcesSpecLocationPolicyLocation_Preference) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[101] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[106] } func (x FutureResourcesSpecLocationPolicyLocation_Preference) Number() protoreflect.EnumNumber { @@ -7121,7 +7413,7 @@ func (x FutureResourcesSpecLocationPolicyLocation_Preference) Number() protorefl // Deprecated: Use FutureResourcesSpecLocationPolicyLocation_Preference.Descriptor instead. func (FutureResourcesSpecLocationPolicyLocation_Preference) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{415, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{434, 0} } // Specifies how a port is selected for health checking. Can be one of the @@ -7192,11 +7484,11 @@ func (x GRPCHealthCheck_PortSpecification) String() string { } func (GRPCHealthCheck_PortSpecification) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[102].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[107].Descriptor() } func (GRPCHealthCheck_PortSpecification) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[102] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[107] } func (x GRPCHealthCheck_PortSpecification) Number() protoreflect.EnumNumber { @@ -7205,7 +7497,7 @@ func (x GRPCHealthCheck_PortSpecification) Number() protoreflect.EnumNumber { // Deprecated: Use GRPCHealthCheck_PortSpecification.Descriptor instead. func (GRPCHealthCheck_PortSpecification) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{418, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{437, 0} } // Specifies how a port is selected for health checking. Can be one of the @@ -7276,11 +7568,11 @@ func (x GRPCTLSHealthCheck_PortSpecification) String() string { } func (GRPCTLSHealthCheck_PortSpecification) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[103].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[108].Descriptor() } func (GRPCTLSHealthCheck_PortSpecification) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[103] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[108] } func (x GRPCTLSHealthCheck_PortSpecification) Number() protoreflect.EnumNumber { @@ -7289,7 +7581,7 @@ func (x GRPCTLSHealthCheck_PortSpecification) Number() protoreflect.EnumNumber { // Deprecated: Use GRPCTLSHealthCheck_PortSpecification.Descriptor instead. func (GRPCTLSHealthCheck_PortSpecification) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{419, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{438, 0} } // View of the Block. @@ -7333,11 +7625,11 @@ func (x GetReservationBlockRequest_View) String() string { } func (GetReservationBlockRequest_View) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[104].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[109].Descriptor() } func (GetReservationBlockRequest_View) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[104] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[109] } func (x GetReservationBlockRequest_View) Number() protoreflect.EnumNumber { @@ -7346,7 +7638,7 @@ func (x GetReservationBlockRequest_View) Number() protoreflect.EnumNumber { // Deprecated: Use GetReservationBlockRequest_View.Descriptor instead. func (GetReservationBlockRequest_View) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{549, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{580, 0} } // View of the subBlock. @@ -7390,11 +7682,11 @@ func (x GetReservationSubBlockRequest_View) String() string { } func (GetReservationSubBlockRequest_View) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[105].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[110].Descriptor() } func (GetReservationSubBlockRequest_View) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[105] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[110] } func (x GetReservationSubBlockRequest_View) Number() protoreflect.EnumNumber { @@ -7403,7 +7695,7 @@ func (x GetReservationSubBlockRequest_View) Number() protoreflect.EnumNumber { // Deprecated: Use GetReservationSubBlockRequest_View.Descriptor instead. func (GetReservationSubBlockRequest_View) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{552, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{583, 0} } // Defines the extra views returned back in the subnetwork resource. @@ -7446,11 +7738,11 @@ func (x GetSubnetworkRequest_Views) String() string { } func (GetSubnetworkRequest_Views) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[106].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[111].Descriptor() } func (GetSubnetworkRequest_Views) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[106] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[111] } func (x GetSubnetworkRequest_Views) Number() protoreflect.EnumNumber { @@ -7459,7 +7751,7 @@ func (x GetSubnetworkRequest_Views) Number() protoreflect.EnumNumber { // Deprecated: Use GetSubnetworkRequest_Views.Descriptor instead. func (GetSubnetworkRequest_Views) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{576, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{607, 0} } // The type of maintenance for the reservation. @@ -7504,11 +7796,11 @@ func (x GroupMaintenanceInfo_SchedulingType) String() string { } func (GroupMaintenanceInfo_SchedulingType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[107].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[112].Descriptor() } func (GroupMaintenanceInfo_SchedulingType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[107] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[112] } func (x GroupMaintenanceInfo_SchedulingType) Number() protoreflect.EnumNumber { @@ -7517,7 +7809,7 @@ func (x GroupMaintenanceInfo_SchedulingType) Number() protoreflect.EnumNumber { // Deprecated: Use GroupMaintenanceInfo_SchedulingType.Descriptor instead. func (GroupMaintenanceInfo_SchedulingType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{603, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{635, 0} } // The ID of a supported feature. To add multiple values, use commas to @@ -7535,6 +7827,7 @@ func (GroupMaintenanceInfo_SchedulingType) EnumDescriptor() ([]byte, []int) { // - TDX_CAPABLE // - IDPF // - SNP_SVSM_CAPABLE +// - CCA_CAPABLE // // For more information, see // Enabling guest operating system features. @@ -7611,11 +7904,11 @@ func (x GuestOsFeature_Type) String() string { } func (GuestOsFeature_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[108].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[113].Descriptor() } func (GuestOsFeature_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[108] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[113] } func (x GuestOsFeature_Type) Number() protoreflect.EnumNumber { @@ -7624,7 +7917,7 @@ func (x GuestOsFeature_Type) Number() protoreflect.EnumNumber { // Deprecated: Use GuestOsFeature_Type.Descriptor instead. func (GuestOsFeature_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{607, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{639, 0} } // Specifies how a port is selected for health checking. Can be one of the @@ -7695,11 +7988,11 @@ func (x HTTP2HealthCheck_PortSpecification) String() string { } func (HTTP2HealthCheck_PortSpecification) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[109].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[114].Descriptor() } func (HTTP2HealthCheck_PortSpecification) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[109] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[114] } func (x HTTP2HealthCheck_PortSpecification) Number() protoreflect.EnumNumber { @@ -7708,7 +8001,7 @@ func (x HTTP2HealthCheck_PortSpecification) Number() protoreflect.EnumNumber { // Deprecated: Use HTTP2HealthCheck_PortSpecification.Descriptor instead. func (HTTP2HealthCheck_PortSpecification) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{608, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{640, 0} } // Specifies the type of proxy header to append before sending data to the @@ -7748,11 +8041,11 @@ func (x HTTP2HealthCheck_ProxyHeader) String() string { } func (HTTP2HealthCheck_ProxyHeader) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[110].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[115].Descriptor() } func (HTTP2HealthCheck_ProxyHeader) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[110] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[115] } func (x HTTP2HealthCheck_ProxyHeader) Number() protoreflect.EnumNumber { @@ -7761,7 +8054,7 @@ func (x HTTP2HealthCheck_ProxyHeader) Number() protoreflect.EnumNumber { // Deprecated: Use HTTP2HealthCheck_ProxyHeader.Descriptor instead. func (HTTP2HealthCheck_ProxyHeader) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{608, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{640, 1} } // Specifies how a port is selected for health checking. Can be one of the @@ -7829,11 +8122,11 @@ func (x HTTPHealthCheck_PortSpecification) String() string { } func (HTTPHealthCheck_PortSpecification) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[111].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[116].Descriptor() } func (HTTPHealthCheck_PortSpecification) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[111] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[116] } func (x HTTPHealthCheck_PortSpecification) Number() protoreflect.EnumNumber { @@ -7842,7 +8135,7 @@ func (x HTTPHealthCheck_PortSpecification) Number() protoreflect.EnumNumber { // Deprecated: Use HTTPHealthCheck_PortSpecification.Descriptor instead. func (HTTPHealthCheck_PortSpecification) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{609, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{641, 0} } // Specifies the type of proxy header to append before sending data to the @@ -7882,11 +8175,11 @@ func (x HTTPHealthCheck_ProxyHeader) String() string { } func (HTTPHealthCheck_ProxyHeader) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[112].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[117].Descriptor() } func (HTTPHealthCheck_ProxyHeader) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[112] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[117] } func (x HTTPHealthCheck_ProxyHeader) Number() protoreflect.EnumNumber { @@ -7895,7 +8188,7 @@ func (x HTTPHealthCheck_ProxyHeader) Number() protoreflect.EnumNumber { // Deprecated: Use HTTPHealthCheck_ProxyHeader.Descriptor instead. func (HTTPHealthCheck_ProxyHeader) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{609, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{641, 1} } // Specifies how a port is selected for health checking. Can be one of the @@ -7966,11 +8259,11 @@ func (x HTTPSHealthCheck_PortSpecification) String() string { } func (HTTPSHealthCheck_PortSpecification) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[113].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[118].Descriptor() } func (HTTPSHealthCheck_PortSpecification) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[113] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[118] } func (x HTTPSHealthCheck_PortSpecification) Number() protoreflect.EnumNumber { @@ -7979,7 +8272,7 @@ func (x HTTPSHealthCheck_PortSpecification) Number() protoreflect.EnumNumber { // Deprecated: Use HTTPSHealthCheck_PortSpecification.Descriptor instead. func (HTTPSHealthCheck_PortSpecification) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{610, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{642, 0} } // Specifies the type of proxy header to append before sending data to the @@ -8019,11 +8312,11 @@ func (x HTTPSHealthCheck_ProxyHeader) String() string { } func (HTTPSHealthCheck_ProxyHeader) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[114].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[119].Descriptor() } func (HTTPSHealthCheck_ProxyHeader) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[114] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[119] } func (x HTTPSHealthCheck_ProxyHeader) Number() protoreflect.EnumNumber { @@ -8032,7 +8325,7 @@ func (x HTTPSHealthCheck_ProxyHeader) Number() protoreflect.EnumNumber { // Deprecated: Use HTTPSHealthCheck_ProxyHeader.Descriptor instead. func (HTTPSHealthCheck_ProxyHeader) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{610, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{642, 1} } // Specifies the type of the healthAggregationPolicy. The only allowed value @@ -8074,11 +8367,11 @@ func (x HealthAggregationPolicy_PolicyType) String() string { } func (HealthAggregationPolicy_PolicyType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[115].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[120].Descriptor() } func (HealthAggregationPolicy_PolicyType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[115] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[120] } func (x HealthAggregationPolicy_PolicyType) Number() protoreflect.EnumNumber { @@ -8087,7 +8380,7 @@ func (x HealthAggregationPolicy_PolicyType) Number() protoreflect.EnumNumber { // Deprecated: Use HealthAggregationPolicy_PolicyType.Descriptor instead. func (HealthAggregationPolicy_PolicyType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{612, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{644, 0} } // Specifies the type of the healthCheck, either TCP,SSL, HTTP, HTTPS,HTTP2 or GRPC. Exactly one of the @@ -8144,11 +8437,11 @@ func (x HealthCheck_Type) String() string { } func (HealthCheck_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[116].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[121].Descriptor() } func (HealthCheck_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[116] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[121] } func (x HealthCheck_Type) Number() protoreflect.EnumNumber { @@ -8157,7 +8450,7 @@ func (x HealthCheck_Type) Number() protoreflect.EnumNumber { // Deprecated: Use HealthCheck_Type.Descriptor instead. func (HealthCheck_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{615, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{647, 0} } // Optional. Policy for how the results from multiple health checks @@ -8211,11 +8504,11 @@ func (x HealthCheckService_HealthStatusAggregationPolicy) String() string { } func (HealthCheckService_HealthStatusAggregationPolicy) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[117].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[122].Descriptor() } func (HealthCheckService_HealthStatusAggregationPolicy) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[117] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[122] } func (x HealthCheckService_HealthStatusAggregationPolicy) Number() protoreflect.EnumNumber { @@ -8224,7 +8517,7 @@ func (x HealthCheckService_HealthStatusAggregationPolicy) Number() protoreflect. // Deprecated: Use HealthCheckService_HealthStatusAggregationPolicy.Descriptor instead. func (HealthCheckService_HealthStatusAggregationPolicy) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{619, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{651, 0} } // Specifies the type of the HealthSource. The only allowed value @@ -8260,11 +8553,11 @@ func (x HealthSource_SourceType) String() string { } func (HealthSource_SourceType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[118].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[123].Descriptor() } func (HealthSource_SourceType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[118] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[123] } func (x HealthSource_SourceType) Number() protoreflect.EnumNumber { @@ -8273,7 +8566,61 @@ func (x HealthSource_SourceType) Number() protoreflect.EnumNumber { // Deprecated: Use HealthSource_SourceType.Descriptor instead. func (HealthSource_SourceType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{626, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{658, 0} +} + +// Health state of the HealthSource. +type HealthSourceHealth_HealthState int32 + +const ( + // A value indicating that the enum field is not set. + HealthSourceHealth_UNDEFINED_HEALTH_STATE HealthSourceHealth_HealthState = 0 + HealthSourceHealth_HEALTHY HealthSourceHealth_HealthState = 439801213 + HealthSourceHealth_UNHEALTHY HealthSourceHealth_HealthState = 462118084 + HealthSourceHealth_UNKNOWN HealthSourceHealth_HealthState = 433141802 +) + +// Enum value maps for HealthSourceHealth_HealthState. +var ( + HealthSourceHealth_HealthState_name = map[int32]string{ + 0: "UNDEFINED_HEALTH_STATE", + 439801213: "HEALTHY", + 462118084: "UNHEALTHY", + 433141802: "UNKNOWN", + } + HealthSourceHealth_HealthState_value = map[string]int32{ + "UNDEFINED_HEALTH_STATE": 0, + "HEALTHY": 439801213, + "UNHEALTHY": 462118084, + "UNKNOWN": 433141802, + } +) + +func (x HealthSourceHealth_HealthState) Enum() *HealthSourceHealth_HealthState { + p := new(HealthSourceHealth_HealthState) + *p = x + return p +} + +func (x HealthSourceHealth_HealthState) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (HealthSourceHealth_HealthState) Descriptor() protoreflect.EnumDescriptor { + return file_google_cloud_compute_v1_compute_proto_enumTypes[124].Descriptor() +} + +func (HealthSourceHealth_HealthState) Type() protoreflect.EnumType { + return &file_google_cloud_compute_v1_compute_proto_enumTypes[124] +} + +func (x HealthSourceHealth_HealthState) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use HealthSourceHealth_HealthState.Descriptor instead. +func (HealthSourceHealth_HealthState) EnumDescriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{660, 0} } // Health state of the IPv4 address of the instance. @@ -8314,11 +8661,11 @@ func (x HealthStatus_HealthState) String() string { } func (HealthStatus_HealthState) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[119].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[125].Descriptor() } func (HealthStatus_HealthState) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[119] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[125] } func (x HealthStatus_HealthState) Number() protoreflect.EnumNumber { @@ -8327,7 +8674,7 @@ func (x HealthStatus_HealthState) Number() protoreflect.EnumNumber { // Deprecated: Use HealthStatus_HealthState.Descriptor instead. func (HealthStatus_HealthState) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{630, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{665, 0} } // Health state of the IPv6 address of the instance. @@ -8362,11 +8709,11 @@ func (x HealthStatus_Ipv6HealthState) String() string { } func (HealthStatus_Ipv6HealthState) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[120].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[126].Descriptor() } func (HealthStatus_Ipv6HealthState) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[120] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[126] } func (x HealthStatus_Ipv6HealthState) Number() protoreflect.EnumNumber { @@ -8375,7 +8722,7 @@ func (x HealthStatus_Ipv6HealthState) Number() protoreflect.EnumNumber { // Deprecated: Use HealthStatus_Ipv6HealthState.Descriptor instead. func (HealthStatus_Ipv6HealthState) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{630, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{665, 1} } type HealthStatus_WeightError int32 @@ -8434,11 +8781,11 @@ func (x HealthStatus_WeightError) String() string { } func (HealthStatus_WeightError) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[121].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[127].Descriptor() } func (HealthStatus_WeightError) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[121] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[127] } func (x HealthStatus_WeightError) Number() protoreflect.EnumNumber { @@ -8447,7 +8794,7 @@ func (x HealthStatus_WeightError) Number() protoreflect.EnumNumber { // Deprecated: Use HealthStatus_WeightError.Descriptor instead. func (HealthStatus_WeightError) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{630, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{665, 2} } // Health state of the network endpoint determined based on the health checks @@ -8497,11 +8844,11 @@ func (x HealthStatusForNetworkEndpoint_HealthState) String() string { } func (HealthStatusForNetworkEndpoint_HealthState) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[122].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[128].Descriptor() } func (HealthStatusForNetworkEndpoint_HealthState) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[122] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[128] } func (x HealthStatusForNetworkEndpoint_HealthState) Number() protoreflect.EnumNumber { @@ -8510,7 +8857,7 @@ func (x HealthStatusForNetworkEndpoint_HealthState) Number() protoreflect.EnumNu // Deprecated: Use HealthStatusForNetworkEndpoint_HealthState.Descriptor instead. func (HealthStatusForNetworkEndpoint_HealthState) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{631, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{666, 0} } // Health state of the ipv6 network endpoint determined based on the health @@ -8548,11 +8895,11 @@ func (x HealthStatusForNetworkEndpoint_Ipv6HealthState) String() string { } func (HealthStatusForNetworkEndpoint_Ipv6HealthState) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[123].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[129].Descriptor() } func (HealthStatusForNetworkEndpoint_Ipv6HealthState) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[123] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[129] } func (x HealthStatusForNetworkEndpoint_Ipv6HealthState) Number() protoreflect.EnumNumber { @@ -8561,7 +8908,7 @@ func (x HealthStatusForNetworkEndpoint_Ipv6HealthState) Number() protoreflect.En // Deprecated: Use HealthStatusForNetworkEndpoint_Ipv6HealthState.Descriptor instead. func (HealthStatusForNetworkEndpoint_Ipv6HealthState) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{631, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{666, 1} } // The HTTP Status code to use for this RedirectAction. @@ -8624,11 +8971,11 @@ func (x HttpRedirectAction_RedirectResponseCode) String() string { } func (HttpRedirectAction_RedirectResponseCode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[124].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[130].Descriptor() } func (HttpRedirectAction_RedirectResponseCode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[124] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[130] } func (x HttpRedirectAction_RedirectResponseCode) Number() protoreflect.EnumNumber { @@ -8637,7 +8984,7 @@ func (x HttpRedirectAction_RedirectResponseCode) Number() protoreflect.EnumNumbe // Deprecated: Use HttpRedirectAction_RedirectResponseCode.Descriptor instead. func (HttpRedirectAction_RedirectResponseCode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{642, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{677, 0} } // The architecture of the image. Valid values are @@ -8682,11 +9029,11 @@ func (x Image_Architecture) String() string { } func (Image_Architecture) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[125].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[131].Descriptor() } func (Image_Architecture) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[125] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[131] } func (x Image_Architecture) Number() protoreflect.EnumNumber { @@ -8695,7 +9042,7 @@ func (x Image_Architecture) Number() protoreflect.EnumNumber { // Deprecated: Use Image_Architecture.Descriptor instead. func (Image_Architecture) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{647, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{682, 0} } // The type of the image used to create this disk. The @@ -8731,11 +9078,11 @@ func (x Image_SourceType) String() string { } func (Image_SourceType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[126].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[132].Descriptor() } func (Image_SourceType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[126] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[132] } func (x Image_SourceType) Number() protoreflect.EnumNumber { @@ -8744,7 +9091,7 @@ func (x Image_SourceType) Number() protoreflect.EnumNumber { // Deprecated: Use Image_SourceType.Descriptor instead. func (Image_SourceType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{647, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{682, 1} } // Output only. [Output Only] The status of the image. An image can be used to create other @@ -8795,11 +9142,11 @@ func (x Image_Status) String() string { } func (Image_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[127].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[133].Descriptor() } func (Image_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[127] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[133] } func (x Image_Status) Number() protoreflect.EnumNumber { @@ -8808,7 +9155,7 @@ func (x Image_Status) Number() protoreflect.EnumNumber { // Deprecated: Use Image_Status.Descriptor instead. func (Image_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{647, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{682, 2} } // KeyRevocationActionType of the instance. Supported options are "STOP" and @@ -8853,11 +9200,11 @@ func (x Instance_KeyRevocationActionType) String() string { } func (Instance_KeyRevocationActionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[128].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[134].Descriptor() } func (Instance_KeyRevocationActionType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[128] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[134] } func (x Instance_KeyRevocationActionType) Number() protoreflect.EnumNumber { @@ -8866,7 +9213,7 @@ func (x Instance_KeyRevocationActionType) Number() protoreflect.EnumNumber { // Deprecated: Use Instance_KeyRevocationActionType.Descriptor instead. func (Instance_KeyRevocationActionType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{737, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{778, 0} } // The private IPv6 google access type for the VM. @@ -8918,11 +9265,11 @@ func (x Instance_PrivateIpv6GoogleAccess) String() string { } func (Instance_PrivateIpv6GoogleAccess) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[129].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[135].Descriptor() } func (Instance_PrivateIpv6GoogleAccess) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[129] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[135] } func (x Instance_PrivateIpv6GoogleAccess) Number() protoreflect.EnumNumber { @@ -8931,7 +9278,7 @@ func (x Instance_PrivateIpv6GoogleAccess) Number() protoreflect.EnumNumber { // Deprecated: Use Instance_PrivateIpv6GoogleAccess.Descriptor instead. func (Instance_PrivateIpv6GoogleAccess) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{737, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{778, 1} } // Output only. [Output Only] The status of the instance. One of the @@ -9014,11 +9361,11 @@ func (x Instance_Status) String() string { } func (Instance_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[130].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[136].Descriptor() } func (Instance_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[130] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[136] } func (x Instance_Status) Number() protoreflect.EnumNumber { @@ -9027,7 +9374,7 @@ func (x Instance_Status) Number() protoreflect.EnumNumber { // Deprecated: Use Instance_Status.Descriptor instead. func (Instance_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{737, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{778, 2} } // Pagination behavior of the listManagedInstances API method for @@ -9072,11 +9419,11 @@ func (x InstanceGroupManager_ListManagedInstancesResults) String() string { } func (InstanceGroupManager_ListManagedInstancesResults) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[131].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[137].Descriptor() } func (InstanceGroupManager_ListManagedInstancesResults) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[131] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[137] } func (x InstanceGroupManager_ListManagedInstancesResults) Number() protoreflect.EnumNumber { @@ -9085,7 +9432,7 @@ func (x InstanceGroupManager_ListManagedInstancesResults) Number() protoreflect. // Deprecated: Use InstanceGroupManager_ListManagedInstancesResults.Descriptor instead. func (InstanceGroupManager_ListManagedInstancesResults) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{746, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{787, 0} } // The action that a MIG performs on a failed or an unhealthy VM. @@ -9136,11 +9483,11 @@ func (x InstanceGroupManagerInstanceLifecyclePolicy_DefaultActionOnFailure) Stri } func (InstanceGroupManagerInstanceLifecyclePolicy_DefaultActionOnFailure) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[132].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[138].Descriptor() } func (InstanceGroupManagerInstanceLifecyclePolicy_DefaultActionOnFailure) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[132] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[138] } func (x InstanceGroupManagerInstanceLifecyclePolicy_DefaultActionOnFailure) Number() protoreflect.EnumNumber { @@ -9149,7 +9496,7 @@ func (x InstanceGroupManagerInstanceLifecyclePolicy_DefaultActionOnFailure) Numb // Deprecated: Use InstanceGroupManagerInstanceLifecyclePolicy_DefaultActionOnFailure.Descriptor instead. func (InstanceGroupManagerInstanceLifecyclePolicy_DefaultActionOnFailure) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{753, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{794, 0} } // A bit indicating whether to forcefully apply the group's latest @@ -9195,11 +9542,11 @@ func (x InstanceGroupManagerInstanceLifecyclePolicy_ForceUpdateOnRepair) String( } func (InstanceGroupManagerInstanceLifecyclePolicy_ForceUpdateOnRepair) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[133].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[139].Descriptor() } func (InstanceGroupManagerInstanceLifecyclePolicy_ForceUpdateOnRepair) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[133] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[139] } func (x InstanceGroupManagerInstanceLifecyclePolicy_ForceUpdateOnRepair) Number() protoreflect.EnumNumber { @@ -9208,7 +9555,7 @@ func (x InstanceGroupManagerInstanceLifecyclePolicy_ForceUpdateOnRepair) Number( // Deprecated: Use InstanceGroupManagerInstanceLifecyclePolicy_ForceUpdateOnRepair.Descriptor instead. func (InstanceGroupManagerInstanceLifecyclePolicy_ForceUpdateOnRepair) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{753, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{794, 1} } // The action that a MIG performs on an unhealthy VM. A VM is marked as @@ -9259,11 +9606,11 @@ func (x InstanceGroupManagerInstanceLifecyclePolicy_OnFailedHealthCheck) String( } func (InstanceGroupManagerInstanceLifecyclePolicy_OnFailedHealthCheck) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[134].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[140].Descriptor() } func (InstanceGroupManagerInstanceLifecyclePolicy_OnFailedHealthCheck) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[134] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[140] } func (x InstanceGroupManagerInstanceLifecyclePolicy_OnFailedHealthCheck) Number() protoreflect.EnumNumber { @@ -9272,10 +9619,10 @@ func (x InstanceGroupManagerInstanceLifecyclePolicy_OnFailedHealthCheck) Number( // Deprecated: Use InstanceGroupManagerInstanceLifecyclePolicy_OnFailedHealthCheck.Descriptor instead. func (InstanceGroupManagerInstanceLifecyclePolicy_OnFailedHealthCheck) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{753, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{794, 2} } -// Output only. [Output only] Current state of the request. +// Output only. Current state of the request. type InstanceGroupManagerResizeRequest_State int32 const ( @@ -9331,11 +9678,11 @@ func (x InstanceGroupManagerResizeRequest_State) String() string { } func (InstanceGroupManagerResizeRequest_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[135].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[141].Descriptor() } func (InstanceGroupManagerResizeRequest_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[135] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[141] } func (x InstanceGroupManagerResizeRequest_State) Number() protoreflect.EnumNumber { @@ -9344,7 +9691,7 @@ func (x InstanceGroupManagerResizeRequest_State) Number() protoreflect.EnumNumbe // Deprecated: Use InstanceGroupManagerResizeRequest_State.Descriptor instead. func (InstanceGroupManagerResizeRequest_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{755, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{796, 0} } // Defines how a MIG resumes or starts VMs from a standby pool when the @@ -9387,11 +9734,11 @@ func (x InstanceGroupManagerStandbyPolicy_Mode) String() string { } func (InstanceGroupManagerStandbyPolicy_Mode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[136].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[142].Descriptor() } func (InstanceGroupManagerStandbyPolicy_Mode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[136] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[142] } func (x InstanceGroupManagerStandbyPolicy_Mode) Number() protoreflect.EnumNumber { @@ -9400,10 +9747,10 @@ func (x InstanceGroupManagerStandbyPolicy_Mode) Number() protoreflect.EnumNumber // Deprecated: Use InstanceGroupManagerStandbyPolicy_Mode.Descriptor instead. func (InstanceGroupManagerStandbyPolicy_Mode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{760, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{801, 0} } -// Output only. [Output Only] The state of the accelerator topology. +// Output only. The state of the accelerator topology. type InstanceGroupManagerStatusAcceleratorTopology_State int32 const ( @@ -9457,11 +9804,11 @@ func (x InstanceGroupManagerStatusAcceleratorTopology_State) String() string { } func (InstanceGroupManagerStatusAcceleratorTopology_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[137].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[143].Descriptor() } func (InstanceGroupManagerStatusAcceleratorTopology_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[137] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[143] } func (x InstanceGroupManagerStatusAcceleratorTopology_State) Number() protoreflect.EnumNumber { @@ -9470,7 +9817,7 @@ func (x InstanceGroupManagerStatusAcceleratorTopology_State) Number() protorefle // Deprecated: Use InstanceGroupManagerStatusAcceleratorTopology_State.Descriptor instead. func (InstanceGroupManagerStatusAcceleratorTopology_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{762, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{803, 0} } // The mode of target size policy based on which the MIG creates its VMs @@ -9520,11 +9867,11 @@ func (x InstanceGroupManagerTargetSizePolicy_Mode) String() string { } func (InstanceGroupManagerTargetSizePolicy_Mode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[138].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[144].Descriptor() } func (InstanceGroupManagerTargetSizePolicy_Mode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[138] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[144] } func (x InstanceGroupManagerTargetSizePolicy_Mode) Number() protoreflect.EnumNumber { @@ -9533,7 +9880,7 @@ func (x InstanceGroupManagerTargetSizePolicy_Mode) Number() protoreflect.EnumNum // Deprecated: Use InstanceGroupManagerTargetSizePolicy_Mode.Descriptor instead. func (InstanceGroupManagerTargetSizePolicy_Mode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{770, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{812, 0} } // The @@ -9576,11 +9923,11 @@ func (x InstanceGroupManagerUpdatePolicy_InstanceRedistributionType) String() st } func (InstanceGroupManagerUpdatePolicy_InstanceRedistributionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[139].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[145].Descriptor() } func (InstanceGroupManagerUpdatePolicy_InstanceRedistributionType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[139] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[145] } func (x InstanceGroupManagerUpdatePolicy_InstanceRedistributionType) Number() protoreflect.EnumNumber { @@ -9589,7 +9936,7 @@ func (x InstanceGroupManagerUpdatePolicy_InstanceRedistributionType) Number() pr // Deprecated: Use InstanceGroupManagerUpdatePolicy_InstanceRedistributionType.Descriptor instead. func (InstanceGroupManagerUpdatePolicy_InstanceRedistributionType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{771, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{813, 0} } // Minimal action to be taken on an instance. Use this option to minimize @@ -9638,11 +9985,11 @@ func (x InstanceGroupManagerUpdatePolicy_MinimalAction) String() string { } func (InstanceGroupManagerUpdatePolicy_MinimalAction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[140].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[146].Descriptor() } func (InstanceGroupManagerUpdatePolicy_MinimalAction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[140] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[146] } func (x InstanceGroupManagerUpdatePolicy_MinimalAction) Number() protoreflect.EnumNumber { @@ -9651,7 +9998,7 @@ func (x InstanceGroupManagerUpdatePolicy_MinimalAction) Number() protoreflect.En // Deprecated: Use InstanceGroupManagerUpdatePolicy_MinimalAction.Descriptor instead. func (InstanceGroupManagerUpdatePolicy_MinimalAction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{771, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{813, 1} } // Most disruptive action that is allowed to be taken on an instance. @@ -9694,11 +10041,11 @@ func (x InstanceGroupManagerUpdatePolicy_MostDisruptiveAllowedAction) String() s } func (InstanceGroupManagerUpdatePolicy_MostDisruptiveAllowedAction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[141].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[147].Descriptor() } func (InstanceGroupManagerUpdatePolicy_MostDisruptiveAllowedAction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[141] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[147] } func (x InstanceGroupManagerUpdatePolicy_MostDisruptiveAllowedAction) Number() protoreflect.EnumNumber { @@ -9707,7 +10054,7 @@ func (x InstanceGroupManagerUpdatePolicy_MostDisruptiveAllowedAction) Number() p // Deprecated: Use InstanceGroupManagerUpdatePolicy_MostDisruptiveAllowedAction.Descriptor instead. func (InstanceGroupManagerUpdatePolicy_MostDisruptiveAllowedAction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{771, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{813, 2} } // What action should be used to replace instances. @@ -9748,11 +10095,11 @@ func (x InstanceGroupManagerUpdatePolicy_ReplacementMethod) String() string { } func (InstanceGroupManagerUpdatePolicy_ReplacementMethod) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[142].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[148].Descriptor() } func (InstanceGroupManagerUpdatePolicy_ReplacementMethod) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[142] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[148] } func (x InstanceGroupManagerUpdatePolicy_ReplacementMethod) Number() protoreflect.EnumNumber { @@ -9761,7 +10108,7 @@ func (x InstanceGroupManagerUpdatePolicy_ReplacementMethod) Number() protoreflec // Deprecated: Use InstanceGroupManagerUpdatePolicy_ReplacementMethod.Descriptor instead. func (InstanceGroupManagerUpdatePolicy_ReplacementMethod) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{771, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{813, 3} } // The type @@ -9804,11 +10151,11 @@ func (x InstanceGroupManagerUpdatePolicy_Type) String() string { } func (InstanceGroupManagerUpdatePolicy_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[143].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[149].Descriptor() } func (InstanceGroupManagerUpdatePolicy_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[143] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[149] } func (x InstanceGroupManagerUpdatePolicy_Type) Number() protoreflect.EnumNumber { @@ -9817,7 +10164,7 @@ func (x InstanceGroupManagerUpdatePolicy_Type) Number() protoreflect.EnumNumber // Deprecated: Use InstanceGroupManagerUpdatePolicy_Type.Descriptor instead. func (InstanceGroupManagerUpdatePolicy_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{771, 4} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{813, 4} } // The minimal action that you want to perform on each instance during the @@ -9868,11 +10215,11 @@ func (x InstanceGroupManagersApplyUpdatesRequest_MinimalAction) String() string } func (InstanceGroupManagersApplyUpdatesRequest_MinimalAction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[144].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[150].Descriptor() } func (InstanceGroupManagersApplyUpdatesRequest_MinimalAction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[144] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[150] } func (x InstanceGroupManagersApplyUpdatesRequest_MinimalAction) Number() protoreflect.EnumNumber { @@ -9881,7 +10228,7 @@ func (x InstanceGroupManagersApplyUpdatesRequest_MinimalAction) Number() protore // Deprecated: Use InstanceGroupManagersApplyUpdatesRequest_MinimalAction.Descriptor instead. func (InstanceGroupManagersApplyUpdatesRequest_MinimalAction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{774, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{816, 0} } // The most disruptive action that you want to perform on each instance during @@ -9930,11 +10277,11 @@ func (x InstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction) St } func (InstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[145].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[151].Descriptor() } func (InstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[145] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[151] } func (x InstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction) Number() protoreflect.EnumNumber { @@ -9943,7 +10290,7 @@ func (x InstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction) Nu // Deprecated: Use InstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction.Descriptor instead. func (InstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{774, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{816, 1} } // A filter for the state of the instances in the instance group. Valid @@ -9986,11 +10333,11 @@ func (x InstanceGroupsListInstancesRequest_InstanceState) String() string { } func (InstanceGroupsListInstancesRequest_InstanceState) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[146].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[152].Descriptor() } func (InstanceGroupsListInstancesRequest_InstanceState) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[146] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[152] } func (x InstanceGroupsListInstancesRequest_InstanceState) Number() protoreflect.EnumNumber { @@ -9999,7 +10346,7 @@ func (x InstanceGroupsListInstancesRequest_InstanceState) Number() protoreflect. // Deprecated: Use InstanceGroupsListInstancesRequest_InstanceState.Descriptor instead. func (InstanceGroupsListInstancesRequest_InstanceState) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{793, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{835, 0} } // Output only. [Output Only] Action that managed instance group was executing on @@ -10101,11 +10448,11 @@ func (x InstanceManagedByIgmErrorInstanceActionDetails_Action) String() string { } func (InstanceManagedByIgmErrorInstanceActionDetails_Action) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[147].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[153].Descriptor() } func (InstanceManagedByIgmErrorInstanceActionDetails_Action) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[147] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[153] } func (x InstanceManagedByIgmErrorInstanceActionDetails_Action) Number() protoreflect.EnumNumber { @@ -10114,7 +10461,7 @@ func (x InstanceManagedByIgmErrorInstanceActionDetails_Action) Number() protoref // Deprecated: Use InstanceManagedByIgmErrorInstanceActionDetails_Action.Descriptor instead. func (InstanceManagedByIgmErrorInstanceActionDetails_Action) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{800, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{842, 0} } // KeyRevocationActionType of the instance. Supported options are "STOP" and @@ -10159,11 +10506,11 @@ func (x InstanceProperties_KeyRevocationActionType) String() string { } func (InstanceProperties_KeyRevocationActionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[148].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[154].Descriptor() } func (InstanceProperties_KeyRevocationActionType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[148] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[154] } func (x InstanceProperties_KeyRevocationActionType) Number() protoreflect.EnumNumber { @@ -10172,7 +10519,7 @@ func (x InstanceProperties_KeyRevocationActionType) Number() protoreflect.EnumNu // Deprecated: Use InstanceProperties_KeyRevocationActionType.Descriptor instead. func (InstanceProperties_KeyRevocationActionType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{804, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{846, 0} } // The private IPv6 google access type for VMs. @@ -10225,11 +10572,11 @@ func (x InstanceProperties_PrivateIpv6GoogleAccess) String() string { } func (InstanceProperties_PrivateIpv6GoogleAccess) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[149].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[155].Descriptor() } func (InstanceProperties_PrivateIpv6GoogleAccess) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[149] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[155] } func (x InstanceProperties_PrivateIpv6GoogleAccess) Number() protoreflect.EnumNumber { @@ -10238,7 +10585,7 @@ func (x InstanceProperties_PrivateIpv6GoogleAccess) Number() protoreflect.EnumNu // Deprecated: Use InstanceProperties_PrivateIpv6GoogleAccess.Descriptor instead. func (InstanceProperties_PrivateIpv6GoogleAccess) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{804, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{846, 1} } // Output only. [Output Only] The status of the instance. @@ -10318,11 +10665,11 @@ func (x InstanceWithNamedPorts_Status) String() string { } func (InstanceWithNamedPorts_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[150].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[156].Descriptor() } func (InstanceWithNamedPorts_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[150] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[156] } func (x InstanceWithNamedPorts_Status) Number() protoreflect.EnumNumber { @@ -10331,7 +10678,7 @@ func (x InstanceWithNamedPorts_Status) Number() protoreflect.EnumNumber { // Deprecated: Use InstanceWithNamedPorts_Status.Descriptor instead. func (InstanceWithNamedPorts_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{813, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{855, 0} } // Output only. [Output Only] The type of the firewall policy. Can be one of HIERARCHY, @@ -10382,11 +10729,11 @@ func (x InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Stri } func (InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[151].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[157].Descriptor() } func (InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[151] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[157] } func (x InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Number() protoreflect.EnumNumber { @@ -10395,7 +10742,7 @@ func (x InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Numb // Deprecated: Use InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type.Descriptor instead. func (InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{817, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{859, 0} } // The disruption schedule for the VM. Required field, only allows IMMEDIATE. @@ -10439,11 +10786,11 @@ func (x InstancesReportHostAsFaultyRequest_DisruptionSchedule) String() string { } func (InstancesReportHostAsFaultyRequest_DisruptionSchedule) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[152].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[158].Descriptor() } func (InstancesReportHostAsFaultyRequest_DisruptionSchedule) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[152] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[158] } func (x InstancesReportHostAsFaultyRequest_DisruptionSchedule) Number() protoreflect.EnumNumber { @@ -10452,7 +10799,7 @@ func (x InstancesReportHostAsFaultyRequest_DisruptionSchedule) Number() protoref // Deprecated: Use InstancesReportHostAsFaultyRequest_DisruptionSchedule.Descriptor instead. func (InstancesReportHostAsFaultyRequest_DisruptionSchedule) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{819, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{861, 0} } type InstancesReportHostAsFaultyRequestFaultReason_Behavior int32 @@ -10501,11 +10848,11 @@ func (x InstancesReportHostAsFaultyRequestFaultReason_Behavior) String() string } func (InstancesReportHostAsFaultyRequestFaultReason_Behavior) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[153].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[159].Descriptor() } func (InstancesReportHostAsFaultyRequestFaultReason_Behavior) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[153] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[159] } func (x InstancesReportHostAsFaultyRequestFaultReason_Behavior) Number() protoreflect.EnumNumber { @@ -10514,7 +10861,7 @@ func (x InstancesReportHostAsFaultyRequestFaultReason_Behavior) Number() protore // Deprecated: Use InstancesReportHostAsFaultyRequestFaultReason_Behavior.Descriptor instead. func (InstancesReportHostAsFaultyRequestFaultReason_Behavior) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{820, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{862, 0} } // Output only. [Output Only] The architecture of the instant snapshot. Valid values are @@ -10559,11 +10906,11 @@ func (x InstantSnapshot_Architecture) String() string { } func (InstantSnapshot_Architecture) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[154].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[160].Descriptor() } func (InstantSnapshot_Architecture) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[154] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[160] } func (x InstantSnapshot_Architecture) Number() protoreflect.EnumNumber { @@ -10572,7 +10919,7 @@ func (x InstantSnapshot_Architecture) Number() protoreflect.EnumNumber { // Deprecated: Use InstantSnapshot_Architecture.Descriptor instead. func (InstantSnapshot_Architecture) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{830, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{872, 0} } // Output only. [Output Only] The status of the instantSnapshot. This can beCREATING, DELETING, FAILED, orREADY. @@ -10625,11 +10972,11 @@ func (x InstantSnapshot_Status) String() string { } func (InstantSnapshot_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[155].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[161].Descriptor() } func (InstantSnapshot_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[155] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[161] } func (x InstantSnapshot_Status) Number() protoreflect.EnumNumber { @@ -10638,7 +10985,70 @@ func (x InstantSnapshot_Status) Number() protoreflect.EnumNumber { // Deprecated: Use InstantSnapshot_Status.Descriptor instead. func (InstantSnapshot_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{830, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{872, 1} +} + +// Output only. [Output Only] +type InstantSnapshotGroup_Status int32 + +const ( + // A value indicating that the enum field is not set. + InstantSnapshotGroup_UNDEFINED_STATUS InstantSnapshotGroup_Status = 0 + InstantSnapshotGroup_CREATING InstantSnapshotGroup_Status = 455564985 + InstantSnapshotGroup_DELETING InstantSnapshotGroup_Status = 528602024 + InstantSnapshotGroup_FAILED InstantSnapshotGroup_Status = 455706685 + InstantSnapshotGroup_INVALID InstantSnapshotGroup_Status = 530283991 + InstantSnapshotGroup_READY InstantSnapshotGroup_Status = 77848963 + InstantSnapshotGroup_UNKNOWN InstantSnapshotGroup_Status = 433141802 +) + +// Enum value maps for InstantSnapshotGroup_Status. +var ( + InstantSnapshotGroup_Status_name = map[int32]string{ + 0: "UNDEFINED_STATUS", + 455564985: "CREATING", + 528602024: "DELETING", + 455706685: "FAILED", + 530283991: "INVALID", + 77848963: "READY", + 433141802: "UNKNOWN", + } + InstantSnapshotGroup_Status_value = map[string]int32{ + "UNDEFINED_STATUS": 0, + "CREATING": 455564985, + "DELETING": 528602024, + "FAILED": 455706685, + "INVALID": 530283991, + "READY": 77848963, + "UNKNOWN": 433141802, + } +) + +func (x InstantSnapshotGroup_Status) Enum() *InstantSnapshotGroup_Status { + p := new(InstantSnapshotGroup_Status) + *p = x + return p +} + +func (x InstantSnapshotGroup_Status) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (InstantSnapshotGroup_Status) Descriptor() protoreflect.EnumDescriptor { + return file_google_cloud_compute_v1_compute_proto_enumTypes[162].Descriptor() +} + +func (InstantSnapshotGroup_Status) Type() protoreflect.EnumType { + return &file_google_cloud_compute_v1_compute_proto_enumTypes[162] +} + +func (x InstantSnapshotGroup_Status) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use InstantSnapshotGroup_Status.Descriptor instead. +func (InstantSnapshotGroup_Status) EnumDescriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{874, 0} } // Additional supported values which may be not listed in the enum directly due to technical reasons: @@ -10673,11 +11083,11 @@ func (x Interconnect_AvailableFeatures) String() string { } func (Interconnect_AvailableFeatures) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[156].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[163].Descriptor() } func (Interconnect_AvailableFeatures) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[156] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[163] } func (x Interconnect_AvailableFeatures) Number() protoreflect.EnumNumber { @@ -10686,7 +11096,7 @@ func (x Interconnect_AvailableFeatures) Number() protoreflect.EnumNumber { // Deprecated: Use Interconnect_AvailableFeatures.Descriptor instead. func (Interconnect_AvailableFeatures) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{837, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{883, 0} } // Type of interconnect, which can take one of the following values: @@ -10737,11 +11147,11 @@ func (x Interconnect_InterconnectType) String() string { } func (Interconnect_InterconnectType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[157].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[164].Descriptor() } func (Interconnect_InterconnectType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[157] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[164] } func (x Interconnect_InterconnectType) Number() protoreflect.EnumNumber { @@ -10750,7 +11160,7 @@ func (x Interconnect_InterconnectType) Number() protoreflect.EnumNumber { // Deprecated: Use Interconnect_InterconnectType.Descriptor instead. func (Interconnect_InterconnectType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{837, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{883, 1} } // Type of link requested, which can take one of the following values: @@ -10805,11 +11215,11 @@ func (x Interconnect_LinkType) String() string { } func (Interconnect_LinkType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[158].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[165].Descriptor() } func (Interconnect_LinkType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[158] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[165] } func (x Interconnect_LinkType) Number() protoreflect.EnumNumber { @@ -10818,7 +11228,7 @@ func (x Interconnect_LinkType) Number() protoreflect.EnumNumber { // Deprecated: Use Interconnect_LinkType.Descriptor instead. func (Interconnect_LinkType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{837, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{883, 2} } // Output only. [Output Only] The current status of this Interconnect's functionality, @@ -10870,11 +11280,11 @@ func (x Interconnect_OperationalStatus) String() string { } func (Interconnect_OperationalStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[159].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[166].Descriptor() } func (Interconnect_OperationalStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[159] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[166] } func (x Interconnect_OperationalStatus) Number() protoreflect.EnumNumber { @@ -10883,7 +11293,7 @@ func (x Interconnect_OperationalStatus) Number() protoreflect.EnumNumber { // Deprecated: Use Interconnect_OperationalStatus.Descriptor instead. func (Interconnect_OperationalStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{837, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{883, 3} } // Additional supported values which may be not listed in the enum directly due to technical reasons: @@ -10918,11 +11328,11 @@ func (x Interconnect_RequestedFeatures) String() string { } func (Interconnect_RequestedFeatures) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[160].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[167].Descriptor() } func (Interconnect_RequestedFeatures) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[160] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[167] } func (x Interconnect_RequestedFeatures) Number() protoreflect.EnumNumber { @@ -10931,7 +11341,7 @@ func (x Interconnect_RequestedFeatures) Number() protoreflect.EnumNumber { // Deprecated: Use Interconnect_RequestedFeatures.Descriptor instead. func (Interconnect_RequestedFeatures) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{837, 4} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{883, 4} } // Output only. [Output Only] The current state of Interconnect functionality, which can @@ -10982,11 +11392,11 @@ func (x Interconnect_State) String() string { } func (Interconnect_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[161].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[168].Descriptor() } func (Interconnect_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[161] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[168] } func (x Interconnect_State) Number() protoreflect.EnumNumber { @@ -10995,7 +11405,7 @@ func (x Interconnect_State) Number() protoreflect.EnumNumber { // Deprecated: Use Interconnect_State.Descriptor instead. func (Interconnect_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{837, 5} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{883, 5} } // To be deprecated. @@ -11035,11 +11445,11 @@ func (x Interconnect_Subzone) String() string { } func (Interconnect_Subzone) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[162].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[169].Descriptor() } func (Interconnect_Subzone) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[162] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[169] } func (x Interconnect_Subzone) Number() protoreflect.EnumNumber { @@ -11048,7 +11458,7 @@ func (x Interconnect_Subzone) Number() protoreflect.EnumNumber { // Deprecated: Use Interconnect_Subzone.Descriptor instead. func (Interconnect_Subzone) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{837, 6} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{883, 6} } // TrafficClass whose bandwidth percentage is being specified. @@ -11104,11 +11514,11 @@ func (x InterconnectApplicationAwareInterconnectBandwidthPercentage_TrafficClass } func (InterconnectApplicationAwareInterconnectBandwidthPercentage_TrafficClass) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[163].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[170].Descriptor() } func (InterconnectApplicationAwareInterconnectBandwidthPercentage_TrafficClass) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[163] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[170] } func (x InterconnectApplicationAwareInterconnectBandwidthPercentage_TrafficClass) Number() protoreflect.EnumNumber { @@ -11117,7 +11527,7 @@ func (x InterconnectApplicationAwareInterconnectBandwidthPercentage_TrafficClass // Deprecated: Use InterconnectApplicationAwareInterconnectBandwidthPercentage_TrafficClass.Descriptor instead. func (InterconnectApplicationAwareInterconnectBandwidthPercentage_TrafficClass) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{839, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{885, 0} } // Provisioned bandwidth capacity for the interconnect attachment. For @@ -11225,11 +11635,11 @@ func (x InterconnectAttachment_Bandwidth) String() string { } func (InterconnectAttachment_Bandwidth) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[164].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[171].Descriptor() } func (InterconnectAttachment_Bandwidth) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[164] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[171] } func (x InterconnectAttachment_Bandwidth) Number() protoreflect.EnumNumber { @@ -11238,7 +11648,7 @@ func (x InterconnectAttachment_Bandwidth) Number() protoreflect.EnumNumber { // Deprecated: Use InterconnectAttachment_Bandwidth.Descriptor instead. func (InterconnectAttachment_Bandwidth) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{842, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{888, 0} } // Input only. Desired availability domain for the attachment. Only available for type @@ -11290,11 +11700,11 @@ func (x InterconnectAttachment_EdgeAvailabilityDomain) String() string { } func (InterconnectAttachment_EdgeAvailabilityDomain) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[165].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[172].Descriptor() } func (InterconnectAttachment_EdgeAvailabilityDomain) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[165] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[172] } func (x InterconnectAttachment_EdgeAvailabilityDomain) Number() protoreflect.EnumNumber { @@ -11303,7 +11713,7 @@ func (x InterconnectAttachment_EdgeAvailabilityDomain) Number() protoreflect.Enu // Deprecated: Use InterconnectAttachment_EdgeAvailabilityDomain.Descriptor instead. func (InterconnectAttachment_EdgeAvailabilityDomain) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{842, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{888, 1} } // Indicates the user-supplied encryption option of this VLAN attachment @@ -11362,11 +11772,11 @@ func (x InterconnectAttachment_Encryption) String() string { } func (InterconnectAttachment_Encryption) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[166].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[173].Descriptor() } func (InterconnectAttachment_Encryption) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[166] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[173] } func (x InterconnectAttachment_Encryption) Number() protoreflect.EnumNumber { @@ -11375,7 +11785,7 @@ func (x InterconnectAttachment_Encryption) Number() protoreflect.EnumNumber { // Deprecated: Use InterconnectAttachment_Encryption.Descriptor instead. func (InterconnectAttachment_Encryption) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{842, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{888, 2} } // Output only. [Output Only] The current status of whether or not this interconnect @@ -11423,11 +11833,11 @@ func (x InterconnectAttachment_OperationalStatus) String() string { } func (InterconnectAttachment_OperationalStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[167].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[174].Descriptor() } func (InterconnectAttachment_OperationalStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[167] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[174] } func (x InterconnectAttachment_OperationalStatus) Number() protoreflect.EnumNumber { @@ -11436,7 +11846,7 @@ func (x InterconnectAttachment_OperationalStatus) Number() protoreflect.EnumNumb // Deprecated: Use InterconnectAttachment_OperationalStatus.Descriptor instead. func (InterconnectAttachment_OperationalStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{842, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{888, 3} } // The stack type for this interconnect attachment to identify whether the @@ -11481,11 +11891,11 @@ func (x InterconnectAttachment_StackType) String() string { } func (InterconnectAttachment_StackType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[168].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[175].Descriptor() } func (InterconnectAttachment_StackType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[168] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[175] } func (x InterconnectAttachment_StackType) Number() protoreflect.EnumNumber { @@ -11494,7 +11904,7 @@ func (x InterconnectAttachment_StackType) Number() protoreflect.EnumNumber { // Deprecated: Use InterconnectAttachment_StackType.Descriptor instead. func (InterconnectAttachment_StackType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{842, 4} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{888, 4} } // Output only. [Output Only] The current state of this attachment's functionality. @@ -11579,11 +11989,11 @@ func (x InterconnectAttachment_State) String() string { } func (InterconnectAttachment_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[169].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[176].Descriptor() } func (InterconnectAttachment_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[169] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[176] } func (x InterconnectAttachment_State) Number() protoreflect.EnumNumber { @@ -11592,7 +12002,7 @@ func (x InterconnectAttachment_State) Number() protoreflect.EnumNumber { // Deprecated: Use InterconnectAttachment_State.Descriptor instead. func (InterconnectAttachment_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{842, 5} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{888, 5} } // The type of interconnect attachment this is, which can take one of the @@ -11649,11 +12059,11 @@ func (x InterconnectAttachment_Type) String() string { } func (InterconnectAttachment_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[170].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[177].Descriptor() } func (InterconnectAttachment_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[170] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[177] } func (x InterconnectAttachment_Type) Number() protoreflect.EnumNumber { @@ -11662,7 +12072,7 @@ func (x InterconnectAttachment_Type) Number() protoreflect.EnumNumber { // Deprecated: Use InterconnectAttachment_Type.Descriptor instead. func (InterconnectAttachment_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{842, 6} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{888, 6} } // Output only. [Output Only] Whether the attachment's BGP session @@ -11716,11 +12126,11 @@ func (x InterconnectAttachmentConfigurationConstraints_BgpMd5) String() string { } func (InterconnectAttachmentConfigurationConstraints_BgpMd5) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[171].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[178].Descriptor() } func (InterconnectAttachmentConfigurationConstraints_BgpMd5) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[171] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[178] } func (x InterconnectAttachmentConfigurationConstraints_BgpMd5) Number() protoreflect.EnumNumber { @@ -11729,7 +12139,7 @@ func (x InterconnectAttachmentConfigurationConstraints_BgpMd5) Number() protoref // Deprecated: Use InterconnectAttachmentConfigurationConstraints_BgpMd5.Descriptor instead. func (InterconnectAttachmentConfigurationConstraints_BgpMd5) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{844, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{890, 0} } type InterconnectAttachmentGroupConfiguredAvailabilitySLA_EffectiveSla int32 @@ -11772,11 +12182,11 @@ func (x InterconnectAttachmentGroupConfiguredAvailabilitySLA_EffectiveSla) Strin } func (InterconnectAttachmentGroupConfiguredAvailabilitySLA_EffectiveSla) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[172].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[179].Descriptor() } func (InterconnectAttachmentGroupConfiguredAvailabilitySLA_EffectiveSla) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[172] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[179] } func (x InterconnectAttachmentGroupConfiguredAvailabilitySLA_EffectiveSla) Number() protoreflect.EnumNumber { @@ -11785,7 +12195,7 @@ func (x InterconnectAttachmentGroupConfiguredAvailabilitySLA_EffectiveSla) Numbe // Deprecated: Use InterconnectAttachmentGroupConfiguredAvailabilitySLA_EffectiveSla.Descriptor instead. func (InterconnectAttachmentGroupConfiguredAvailabilitySLA_EffectiveSla) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{849, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{895, 0} } type InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers_BlockerType int32 @@ -11837,11 +12247,11 @@ func (x InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers_ } func (InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers_BlockerType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[173].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[180].Descriptor() } func (InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers_BlockerType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[173] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[180] } func (x InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers_BlockerType) Number() protoreflect.EnumNumber { @@ -11850,7 +12260,7 @@ func (x InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers_ // Deprecated: Use InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers_BlockerType.Descriptor instead. func (InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers_BlockerType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{850, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{896, 0} } type InterconnectAttachmentGroupIntent_AvailabilitySla int32 @@ -11893,11 +12303,11 @@ func (x InterconnectAttachmentGroupIntent_AvailabilitySla) String() string { } func (InterconnectAttachmentGroupIntent_AvailabilitySla) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[174].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[181].Descriptor() } func (InterconnectAttachmentGroupIntent_AvailabilitySla) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[174] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[181] } func (x InterconnectAttachmentGroupIntent_AvailabilitySla) Number() protoreflect.EnumNumber { @@ -11906,7 +12316,7 @@ func (x InterconnectAttachmentGroupIntent_AvailabilitySla) Number() protoreflect // Deprecated: Use InterconnectAttachmentGroupIntent_AvailabilitySla.Descriptor instead. func (InterconnectAttachmentGroupIntent_AvailabilitySla) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{851, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{897, 0} } // Output only. Summarizes the status of the group. @@ -11950,11 +12360,11 @@ func (x InterconnectAttachmentGroupsOperationalStatus_GroupStatus) String() stri } func (InterconnectAttachmentGroupsOperationalStatus_GroupStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[175].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[182].Descriptor() } func (InterconnectAttachmentGroupsOperationalStatus_GroupStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[175] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[182] } func (x InterconnectAttachmentGroupsOperationalStatus_GroupStatus) Number() protoreflect.EnumNumber { @@ -11963,7 +12373,7 @@ func (x InterconnectAttachmentGroupsOperationalStatus_GroupStatus) Number() prot // Deprecated: Use InterconnectAttachmentGroupsOperationalStatus_GroupStatus.Descriptor instead. func (InterconnectAttachmentGroupsOperationalStatus_GroupStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{859, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{905, 0} } // Output only. Whether this Attachment is participating in the redundant configuration. @@ -12007,11 +12417,11 @@ func (x InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_IsActive) } func (InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_IsActive) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[176].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[183].Descriptor() } func (InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_IsActive) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[176] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[183] } func (x InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_IsActive) Number() protoreflect.EnumNumber { @@ -12020,7 +12430,7 @@ func (x InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_IsActive) // Deprecated: Use InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_IsActive.Descriptor instead. func (InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_IsActive) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{860, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{906, 0} } // Output only. Whether this Attachment is active, and if so, whether BGP is up. @@ -12097,11 +12507,11 @@ func (x InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_Status) St } func (InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[177].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[184].Descriptor() } func (InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[177] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[184] } func (x InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_Status) Number() protoreflect.EnumNumber { @@ -12110,7 +12520,7 @@ func (x InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_Status) Nu // Deprecated: Use InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_Status.Descriptor instead. func (InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{860, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{906, 1} } // The aggregation type of the bundle interface. @@ -12150,11 +12560,11 @@ func (x InterconnectDiagnostics_BundleAggregationType) String() string { } func (InterconnectDiagnostics_BundleAggregationType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[178].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[185].Descriptor() } func (InterconnectDiagnostics_BundleAggregationType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[178] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[185] } func (x InterconnectDiagnostics_BundleAggregationType) Number() protoreflect.EnumNumber { @@ -12163,7 +12573,7 @@ func (x InterconnectDiagnostics_BundleAggregationType) Number() protoreflect.Enu // Deprecated: Use InterconnectDiagnostics_BundleAggregationType.Descriptor instead. func (InterconnectDiagnostics_BundleAggregationType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{871, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{917, 0} } // The operational status of the bundle interface. @@ -12209,11 +12619,11 @@ func (x InterconnectDiagnostics_BundleOperationalStatus) String() string { } func (InterconnectDiagnostics_BundleOperationalStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[179].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[186].Descriptor() } func (InterconnectDiagnostics_BundleOperationalStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[179] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[186] } func (x InterconnectDiagnostics_BundleOperationalStatus) Number() protoreflect.EnumNumber { @@ -12222,7 +12632,7 @@ func (x InterconnectDiagnostics_BundleOperationalStatus) Number() protoreflect.E // Deprecated: Use InterconnectDiagnostics_BundleOperationalStatus.Descriptor instead. func (InterconnectDiagnostics_BundleOperationalStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{871, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{917, 1} } // The state of a LACP link, which can take one of the following values: @@ -12267,11 +12677,11 @@ func (x InterconnectDiagnosticsLinkLACPStatus_State) String() string { } func (InterconnectDiagnosticsLinkLACPStatus_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[180].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[187].Descriptor() } func (InterconnectDiagnosticsLinkLACPStatus_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[180] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[187] } func (x InterconnectDiagnosticsLinkLACPStatus_State) Number() protoreflect.EnumNumber { @@ -12280,7 +12690,7 @@ func (x InterconnectDiagnosticsLinkLACPStatus_State) Number() protoreflect.EnumN // Deprecated: Use InterconnectDiagnosticsLinkLACPStatus_State.Descriptor instead. func (InterconnectDiagnosticsLinkLACPStatus_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{873, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{919, 0} } // The status of the current value when compared to the warning and alarm @@ -12348,11 +12758,11 @@ func (x InterconnectDiagnosticsLinkOpticalPower_State) String() string { } func (InterconnectDiagnosticsLinkOpticalPower_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[181].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[188].Descriptor() } func (InterconnectDiagnosticsLinkOpticalPower_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[181] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[188] } func (x InterconnectDiagnosticsLinkOpticalPower_State) Number() protoreflect.EnumNumber { @@ -12361,7 +12771,7 @@ func (x InterconnectDiagnosticsLinkOpticalPower_State) Number() protoreflect.Enu // Deprecated: Use InterconnectDiagnosticsLinkOpticalPower_State.Descriptor instead. func (InterconnectDiagnosticsLinkOpticalPower_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{874, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{920, 0} } // The operational status of the link. @@ -12401,11 +12811,11 @@ func (x InterconnectDiagnosticsLinkStatus_OperationalStatus) String() string { } func (InterconnectDiagnosticsLinkStatus_OperationalStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[182].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[189].Descriptor() } func (InterconnectDiagnosticsLinkStatus_OperationalStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[182] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[189] } func (x InterconnectDiagnosticsLinkStatus_OperationalStatus) Number() protoreflect.EnumNumber { @@ -12414,7 +12824,7 @@ func (x InterconnectDiagnosticsLinkStatus_OperationalStatus) Number() protorefle // Deprecated: Use InterconnectDiagnosticsLinkStatus_OperationalStatus.Descriptor instead. func (InterconnectDiagnosticsLinkStatus_OperationalStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{875, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{921, 0} } type InterconnectGroupConfiguredTopologyCapability_SupportedSla int32 @@ -12457,11 +12867,11 @@ func (x InterconnectGroupConfiguredTopologyCapability_SupportedSla) String() str } func (InterconnectGroupConfiguredTopologyCapability_SupportedSla) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[183].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[190].Descriptor() } func (InterconnectGroupConfiguredTopologyCapability_SupportedSla) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[183] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[190] } func (x InterconnectGroupConfiguredTopologyCapability_SupportedSla) Number() protoreflect.EnumNumber { @@ -12470,7 +12880,7 @@ func (x InterconnectGroupConfiguredTopologyCapability_SupportedSla) Number() pro // Deprecated: Use InterconnectGroupConfiguredTopologyCapability_SupportedSla.Descriptor instead. func (InterconnectGroupConfiguredTopologyCapability_SupportedSla) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{879, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{925, 0} } type InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers_BlockerType int32 @@ -12519,11 +12929,11 @@ func (x InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers_ } func (InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers_BlockerType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[184].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[191].Descriptor() } func (InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers_BlockerType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[184] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[191] } func (x InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers_BlockerType) Number() protoreflect.EnumNumber { @@ -12532,7 +12942,7 @@ func (x InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers_ // Deprecated: Use InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers_BlockerType.Descriptor instead. func (InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers_BlockerType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{880, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{926, 0} } type InterconnectGroupIntent_TopologyCapability int32 @@ -12575,11 +12985,11 @@ func (x InterconnectGroupIntent_TopologyCapability) String() string { } func (InterconnectGroupIntent_TopologyCapability) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[185].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[192].Descriptor() } func (InterconnectGroupIntent_TopologyCapability) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[185] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[192] } func (x InterconnectGroupIntent_TopologyCapability) Number() protoreflect.EnumNumber { @@ -12588,7 +12998,7 @@ func (x InterconnectGroupIntent_TopologyCapability) Number() protoreflect.EnumNu // Deprecated: Use InterconnectGroupIntent_TopologyCapability.Descriptor instead. func (InterconnectGroupIntent_TopologyCapability) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{881, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{927, 0} } // How to behave when configured.topologyCapability.supportedSLA would not @@ -12630,11 +13040,11 @@ func (x InterconnectGroupsCreateMembers_IntentMismatchBehavior) String() string } func (InterconnectGroupsCreateMembers_IntentMismatchBehavior) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[186].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[193].Descriptor() } func (InterconnectGroupsCreateMembers_IntentMismatchBehavior) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[186] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[193] } func (x InterconnectGroupsCreateMembers_IntentMismatchBehavior) Number() protoreflect.EnumNumber { @@ -12643,7 +13053,7 @@ func (x InterconnectGroupsCreateMembers_IntentMismatchBehavior) Number() protore // Deprecated: Use InterconnectGroupsCreateMembers_IntentMismatchBehavior.Descriptor instead. func (InterconnectGroupsCreateMembers_IntentMismatchBehavior) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{887, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{933, 0} } // Type of interconnect, which can take one of the following values: @@ -12697,11 +13107,11 @@ func (x InterconnectGroupsCreateMembersInterconnectInput_InterconnectType) Strin } func (InterconnectGroupsCreateMembersInterconnectInput_InterconnectType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[187].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[194].Descriptor() } func (InterconnectGroupsCreateMembersInterconnectInput_InterconnectType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[187] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[194] } func (x InterconnectGroupsCreateMembersInterconnectInput_InterconnectType) Number() protoreflect.EnumNumber { @@ -12710,7 +13120,7 @@ func (x InterconnectGroupsCreateMembersInterconnectInput_InterconnectType) Numbe // Deprecated: Use InterconnectGroupsCreateMembersInterconnectInput_InterconnectType.Descriptor instead. func (InterconnectGroupsCreateMembersInterconnectInput_InterconnectType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{888, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{934, 0} } // Type of link requested, which can take one of the following values: @@ -12766,11 +13176,11 @@ func (x InterconnectGroupsCreateMembersInterconnectInput_LinkType) String() stri } func (InterconnectGroupsCreateMembersInterconnectInput_LinkType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[188].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[195].Descriptor() } func (InterconnectGroupsCreateMembersInterconnectInput_LinkType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[188] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[195] } func (x InterconnectGroupsCreateMembersInterconnectInput_LinkType) Number() protoreflect.EnumNumber { @@ -12779,7 +13189,7 @@ func (x InterconnectGroupsCreateMembersInterconnectInput_LinkType) Number() prot // Deprecated: Use InterconnectGroupsCreateMembersInterconnectInput_LinkType.Descriptor instead. func (InterconnectGroupsCreateMembersInterconnectInput_LinkType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{888, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{934, 1} } type InterconnectGroupsCreateMembersInterconnectInput_RequestedFeatures int32 @@ -12822,11 +13232,11 @@ func (x InterconnectGroupsCreateMembersInterconnectInput_RequestedFeatures) Stri } func (InterconnectGroupsCreateMembersInterconnectInput_RequestedFeatures) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[189].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[196].Descriptor() } func (InterconnectGroupsCreateMembersInterconnectInput_RequestedFeatures) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[189] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[196] } func (x InterconnectGroupsCreateMembersInterconnectInput_RequestedFeatures) Number() protoreflect.EnumNumber { @@ -12835,7 +13245,7 @@ func (x InterconnectGroupsCreateMembersInterconnectInput_RequestedFeatures) Numb // Deprecated: Use InterconnectGroupsCreateMembersInterconnectInput_RequestedFeatures.Descriptor instead. func (InterconnectGroupsCreateMembersInterconnectInput_RequestedFeatures) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{888, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{934, 2} } // Output only. Summarizes the status of the group. @@ -12879,11 +13289,11 @@ func (x InterconnectGroupsOperationalStatus_GroupStatus) String() string { } func (InterconnectGroupsOperationalStatus_GroupStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[190].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[197].Descriptor() } func (InterconnectGroupsOperationalStatus_GroupStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[190] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[197] } func (x InterconnectGroupsOperationalStatus_GroupStatus) Number() protoreflect.EnumNumber { @@ -12892,7 +13302,7 @@ func (x InterconnectGroupsOperationalStatus_GroupStatus) Number() protoreflect.E // Deprecated: Use InterconnectGroupsOperationalStatus_GroupStatus.Descriptor instead. func (InterconnectGroupsOperationalStatus_GroupStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{892, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{938, 0} } // Output only. Whether this interconnect is participating in the redundant @@ -12934,11 +13344,11 @@ func (x InterconnectGroupsOperationalStatusInterconnectStatus_IsActive) String() } func (InterconnectGroupsOperationalStatusInterconnectStatus_IsActive) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[191].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[198].Descriptor() } func (InterconnectGroupsOperationalStatusInterconnectStatus_IsActive) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[191] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[198] } func (x InterconnectGroupsOperationalStatusInterconnectStatus_IsActive) Number() protoreflect.EnumNumber { @@ -12947,7 +13357,7 @@ func (x InterconnectGroupsOperationalStatusInterconnectStatus_IsActive) Number() // Deprecated: Use InterconnectGroupsOperationalStatusInterconnectStatus_IsActive.Descriptor instead. func (InterconnectGroupsOperationalStatusInterconnectStatus_IsActive) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{893, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{939, 0} } type InterconnectLocation_AvailableFeatures int32 @@ -12990,11 +13400,11 @@ func (x InterconnectLocation_AvailableFeatures) String() string { } func (InterconnectLocation_AvailableFeatures) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[192].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[199].Descriptor() } func (InterconnectLocation_AvailableFeatures) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[192] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[199] } func (x InterconnectLocation_AvailableFeatures) Number() protoreflect.EnumNumber { @@ -13003,7 +13413,7 @@ func (x InterconnectLocation_AvailableFeatures) Number() protoreflect.EnumNumber // Deprecated: Use InterconnectLocation_AvailableFeatures.Descriptor instead. func (InterconnectLocation_AvailableFeatures) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{895, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{941, 0} } type InterconnectLocation_AvailableLinkTypes int32 @@ -13047,11 +13457,11 @@ func (x InterconnectLocation_AvailableLinkTypes) String() string { } func (InterconnectLocation_AvailableLinkTypes) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[193].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[200].Descriptor() } func (InterconnectLocation_AvailableLinkTypes) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[193] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[200] } func (x InterconnectLocation_AvailableLinkTypes) Number() protoreflect.EnumNumber { @@ -13060,7 +13470,7 @@ func (x InterconnectLocation_AvailableLinkTypes) Number() protoreflect.EnumNumbe // Deprecated: Use InterconnectLocation_AvailableLinkTypes.Descriptor instead. func (InterconnectLocation_AvailableLinkTypes) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{895, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{941, 1} } // [Output Only] Continent for this location, which can take one of the @@ -13129,11 +13539,11 @@ func (x InterconnectLocation_Continent) String() string { } func (InterconnectLocation_Continent) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[194].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[201].Descriptor() } func (InterconnectLocation_Continent) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[194] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[201] } func (x InterconnectLocation_Continent) Number() protoreflect.EnumNumber { @@ -13142,7 +13552,7 @@ func (x InterconnectLocation_Continent) Number() protoreflect.EnumNumber { // Deprecated: Use InterconnectLocation_Continent.Descriptor instead. func (InterconnectLocation_Continent) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{895, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{941, 2} } // [Output Only] The status of this InterconnectLocation, which can take one @@ -13188,11 +13598,11 @@ func (x InterconnectLocation_Status) String() string { } func (InterconnectLocation_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[195].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[202].Descriptor() } func (InterconnectLocation_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[195] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[202] } func (x InterconnectLocation_Status) Number() protoreflect.EnumNumber { @@ -13201,7 +13611,7 @@ func (x InterconnectLocation_Status) Number() protoreflect.EnumNumber { // Deprecated: Use InterconnectLocation_Status.Descriptor instead. func (InterconnectLocation_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{895, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{941, 3} } // Output only. Identifies the network presence of this location. @@ -13253,11 +13663,11 @@ func (x InterconnectLocationRegionInfo_LocationPresence) String() string { } func (InterconnectLocationRegionInfo_LocationPresence) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[196].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[203].Descriptor() } func (InterconnectLocationRegionInfo_LocationPresence) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[196] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[203] } func (x InterconnectLocationRegionInfo_LocationPresence) Number() protoreflect.EnumNumber { @@ -13266,7 +13676,7 @@ func (x InterconnectLocationRegionInfo_LocationPresence) Number() protoreflect.E // Deprecated: Use InterconnectLocationRegionInfo_LocationPresence.Descriptor instead. func (InterconnectLocationRegionInfo_LocationPresence) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{898, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{944, 0} } // Form this outage is expected to take, which can take one of the following @@ -13329,11 +13739,11 @@ func (x InterconnectOutageNotification_IssueType) String() string { } func (InterconnectOutageNotification_IssueType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[197].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[204].Descriptor() } func (InterconnectOutageNotification_IssueType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[197] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[204] } func (x InterconnectOutageNotification_IssueType) Number() protoreflect.EnumNumber { @@ -13342,7 +13752,7 @@ func (x InterconnectOutageNotification_IssueType) Number() protoreflect.EnumNumb // Deprecated: Use InterconnectOutageNotification_IssueType.Descriptor instead. func (InterconnectOutageNotification_IssueType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{903, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{949, 0} } // The party that generated this notification, which can take the following @@ -13388,11 +13798,11 @@ func (x InterconnectOutageNotification_Source) String() string { } func (InterconnectOutageNotification_Source) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[198].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[205].Descriptor() } func (InterconnectOutageNotification_Source) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[198] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[205] } func (x InterconnectOutageNotification_Source) Number() protoreflect.EnumNumber { @@ -13401,7 +13811,7 @@ func (x InterconnectOutageNotification_Source) Number() protoreflect.EnumNumber // Deprecated: Use InterconnectOutageNotification_Source.Descriptor instead. func (InterconnectOutageNotification_Source) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{903, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{949, 1} } // State of this notification, which can take one of the following values: @@ -13468,11 +13878,11 @@ func (x InterconnectOutageNotification_State) String() string { } func (InterconnectOutageNotification_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[199].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[206].Descriptor() } func (InterconnectOutageNotification_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[199] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[206] } func (x InterconnectOutageNotification_State) Number() protoreflect.EnumNumber { @@ -13481,7 +13891,7 @@ func (x InterconnectOutageNotification_State) Number() protoreflect.EnumNumber { // Deprecated: Use InterconnectOutageNotification_State.Descriptor instead. func (InterconnectOutageNotification_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{903, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{949, 2} } // Output only. [Output Only] Continent for this location, which can take one of the @@ -13535,11 +13945,11 @@ func (x InterconnectRemoteLocation_Continent) String() string { } func (InterconnectRemoteLocation_Continent) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[200].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[207].Descriptor() } func (InterconnectRemoteLocation_Continent) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[200] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[207] } func (x InterconnectRemoteLocation_Continent) Number() protoreflect.EnumNumber { @@ -13548,7 +13958,7 @@ func (x InterconnectRemoteLocation_Continent) Number() protoreflect.EnumNumber { // Deprecated: Use InterconnectRemoteLocation_Continent.Descriptor instead. func (InterconnectRemoteLocation_Continent) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{905, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{951, 0} } // Output only. [Output Only] Link Aggregation Control Protocol (LACP) constraints, which @@ -13592,11 +14002,11 @@ func (x InterconnectRemoteLocation_Lacp) String() string { } func (InterconnectRemoteLocation_Lacp) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[201].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[208].Descriptor() } func (InterconnectRemoteLocation_Lacp) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[201] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[208] } func (x InterconnectRemoteLocation_Lacp) Number() protoreflect.EnumNumber { @@ -13605,7 +14015,7 @@ func (x InterconnectRemoteLocation_Lacp) Number() protoreflect.EnumNumber { // Deprecated: Use InterconnectRemoteLocation_Lacp.Descriptor instead. func (InterconnectRemoteLocation_Lacp) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{905, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{951, 1} } // Output only. [Output Only] The status of this InterconnectRemoteLocation, which can take @@ -13654,11 +14064,11 @@ func (x InterconnectRemoteLocation_Status) String() string { } func (InterconnectRemoteLocation_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[202].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[209].Descriptor() } func (InterconnectRemoteLocation_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[202] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[209] } func (x InterconnectRemoteLocation_Status) Number() protoreflect.EnumNumber { @@ -13667,7 +14077,7 @@ func (x InterconnectRemoteLocation_Status) Number() protoreflect.EnumNumber { // Deprecated: Use InterconnectRemoteLocation_Status.Descriptor instead. func (InterconnectRemoteLocation_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{905, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{951, 2} } // Output only. [Output Only] Port pair remote location constraints, which can take one @@ -13721,11 +14131,11 @@ func (x InterconnectRemoteLocationConstraints_PortPairRemoteLocation) String() s } func (InterconnectRemoteLocationConstraints_PortPairRemoteLocation) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[203].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[210].Descriptor() } func (InterconnectRemoteLocationConstraints_PortPairRemoteLocation) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[203] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[210] } func (x InterconnectRemoteLocationConstraints_PortPairRemoteLocation) Number() protoreflect.EnumNumber { @@ -13734,7 +14144,7 @@ func (x InterconnectRemoteLocationConstraints_PortPairRemoteLocation) Number() p // Deprecated: Use InterconnectRemoteLocationConstraints_PortPairRemoteLocation.Descriptor instead. func (InterconnectRemoteLocationConstraints_PortPairRemoteLocation) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{906, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{952, 0} } // Output only. [Output Only] Port pair VLAN constraints, which can take one of the @@ -13780,11 +14190,11 @@ func (x InterconnectRemoteLocationConstraints_PortPairVlan) String() string { } func (InterconnectRemoteLocationConstraints_PortPairVlan) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[204].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[211].Descriptor() } func (InterconnectRemoteLocationConstraints_PortPairVlan) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[204] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[211] } func (x InterconnectRemoteLocationConstraints_PortPairVlan) Number() protoreflect.EnumNumber { @@ -13793,7 +14203,7 @@ func (x InterconnectRemoteLocationConstraints_PortPairVlan) Number() protoreflec // Deprecated: Use InterconnectRemoteLocationConstraints_PortPairVlan.Descriptor instead. func (InterconnectRemoteLocationConstraints_PortPairVlan) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{906, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{952, 1} } // Output only. [Output Only] Current state of this License Code. @@ -13845,11 +14255,11 @@ func (x LicenseCode_State) String() string { } func (LicenseCode_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[205].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[212].Descriptor() } func (LicenseCode_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[205] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[212] } func (x LicenseCode_State) Number() protoreflect.EnumNumber { @@ -13858,7 +14268,7 @@ func (x LicenseCode_State) Number() protoreflect.EnumNumber { // Deprecated: Use LicenseCode_State.Descriptor instead. func (LicenseCode_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{915, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{961, 0} } // (Required) limit results to this address family (either IPv4 or IPv6) @@ -13899,11 +14309,11 @@ func (x ListBgpRoutesRoutersRequest_AddressFamily) String() string { } func (ListBgpRoutesRoutersRequest_AddressFamily) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[206].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[213].Descriptor() } func (ListBgpRoutesRoutersRequest_AddressFamily) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[206] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[213] } func (x ListBgpRoutesRoutersRequest_AddressFamily) Number() protoreflect.EnumNumber { @@ -13912,7 +14322,7 @@ func (x ListBgpRoutesRoutersRequest_AddressFamily) Number() protoreflect.EnumNum // Deprecated: Use ListBgpRoutesRoutersRequest_AddressFamily.Descriptor instead. func (ListBgpRoutesRoutersRequest_AddressFamily) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{930, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{976, 0} } // (Required) limit results to this type of route (either LEARNED or @@ -13954,11 +14364,11 @@ func (x ListBgpRoutesRoutersRequest_RouteType) String() string { } func (ListBgpRoutesRoutersRequest_RouteType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[207].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[214].Descriptor() } func (ListBgpRoutesRoutersRequest_RouteType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[207] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[214] } func (x ListBgpRoutesRoutersRequest_RouteType) Number() protoreflect.EnumNumber { @@ -13967,7 +14377,7 @@ func (x ListBgpRoutesRoutersRequest_RouteType) Number() protoreflect.EnumNumber // Deprecated: Use ListBgpRoutesRoutersRequest_RouteType.Descriptor instead. func (ListBgpRoutesRoutersRequest_RouteType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{930, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{976, 1} } // The direction of the exchanged routes. @@ -14007,11 +14417,11 @@ func (x ListPeeringRoutesNetworksRequest_Direction) String() string { } func (ListPeeringRoutesNetworksRequest_Direction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[208].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[215].Descriptor() } func (ListPeeringRoutesNetworksRequest_Direction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[208] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[215] } func (x ListPeeringRoutesNetworksRequest_Direction) Number() protoreflect.EnumNumber { @@ -14020,7 +14430,7 @@ func (x ListPeeringRoutesNetworksRequest_Direction) Number() protoreflect.EnumNu // Deprecated: Use ListPeeringRoutesNetworksRequest_Direction.Descriptor instead. func (ListPeeringRoutesNetworksRequest_Direction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{983, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1031, 0} } // Defines the extra views returned back in the subnetwork resource. @@ -14063,11 +14473,11 @@ func (x ListSubnetworksRequest_Views) String() string { } func (ListSubnetworksRequest_Views) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[209].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[216].Descriptor() } func (ListSubnetworksRequest_Views) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[209] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[216] } func (x ListSubnetworksRequest_Views) Number() protoreflect.EnumNumber { @@ -14076,7 +14486,7 @@ func (x ListSubnetworksRequest_Views) Number() protoreflect.EnumNumber { // Deprecated: Use ListSubnetworksRequest_Views.Descriptor instead. func (ListSubnetworksRequest_Views) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1034, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1086, 0} } // Strategy for distributing VMs across zones in a region. @@ -14129,11 +14539,11 @@ func (x LocationPolicy_TargetShape) String() string { } func (LocationPolicy_TargetShape) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[210].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[217].Descriptor() } func (LocationPolicy_TargetShape) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[210] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[217] } func (x LocationPolicy_TargetShape) Number() protoreflect.EnumNumber { @@ -14142,7 +14552,7 @@ func (x LocationPolicy_TargetShape) Number() protoreflect.EnumNumber { // Deprecated: Use LocationPolicy_TargetShape.Descriptor instead. func (LocationPolicy_TargetShape) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1055, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1110, 0} } // Preference for a given location. Set to either ALLOW orDENY. @@ -14186,11 +14596,11 @@ func (x LocationPolicyLocation_Preference) String() string { } func (LocationPolicyLocation_Preference) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[211].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[218].Descriptor() } func (LocationPolicyLocation_Preference) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[211] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[218] } func (x LocationPolicyLocation_Preference) Number() protoreflect.EnumNumber { @@ -14199,7 +14609,7 @@ func (x LocationPolicyLocation_Preference) Number() protoreflect.EnumNumber { // Deprecated: Use LocationPolicyLocation_Preference.Descriptor instead. func (LocationPolicyLocation_Preference) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1056, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1111, 0} } // Output only. [Output Only] The status of the machine image. One of the following values:INVALID, CREATING, READY,DELETING, and UPLOADING. @@ -14246,11 +14656,11 @@ func (x MachineImage_Status) String() string { } func (MachineImage_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[212].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[219].Descriptor() } func (MachineImage_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[212] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[219] } func (x MachineImage_Status) Number() protoreflect.EnumNumber { @@ -14259,7 +14669,7 @@ func (x MachineImage_Status) Number() protoreflect.EnumNumber { // Deprecated: Use MachineImage_Status.Descriptor instead. func (MachineImage_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1059, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1114, 0} } // [Output Only] The architecture of the machine type. @@ -14303,11 +14713,11 @@ func (x MachineType_Architecture) String() string { } func (MachineType_Architecture) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[213].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[220].Descriptor() } func (MachineType_Architecture) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[213] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[220] } func (x MachineType_Architecture) Number() protoreflect.EnumNumber { @@ -14316,7 +14726,7 @@ func (x MachineType_Architecture) Number() protoreflect.EnumNumber { // Deprecated: Use MachineType_Architecture.Descriptor instead. func (MachineType_Architecture) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1062, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1117, 0} } // Output only. [Output Only] The current action that the managed instance group has @@ -14438,11 +14848,11 @@ func (x ManagedInstance_CurrentAction) String() string { } func (ManagedInstance_CurrentAction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[214].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[221].Descriptor() } func (ManagedInstance_CurrentAction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[214] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[221] } func (x ManagedInstance_CurrentAction) Number() protoreflect.EnumNumber { @@ -14451,7 +14861,7 @@ func (x ManagedInstance_CurrentAction) Number() protoreflect.EnumNumber { // Deprecated: Use ManagedInstance_CurrentAction.Descriptor instead. func (ManagedInstance_CurrentAction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1066, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1121, 0} } // Output only. [Output Only] The status of the instance. This field is empty when @@ -14533,11 +14943,11 @@ func (x ManagedInstance_InstanceStatus) String() string { } func (ManagedInstance_InstanceStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[215].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[222].Descriptor() } func (ManagedInstance_InstanceStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[215] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[222] } func (x ManagedInstance_InstanceStatus) Number() protoreflect.EnumNumber { @@ -14546,7 +14956,7 @@ func (x ManagedInstance_InstanceStatus) Number() protoreflect.EnumNumber { // Deprecated: Use ManagedInstance_InstanceStatus.Descriptor instead. func (ManagedInstance_InstanceStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1066, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1121, 1} } // Output only. [Output Only] The current detailed instance health state. @@ -14605,11 +15015,11 @@ func (x ManagedInstanceInstanceHealth_DetailedHealthState) String() string { } func (ManagedInstanceInstanceHealth_DetailedHealthState) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[216].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[223].Descriptor() } func (ManagedInstanceInstanceHealth_DetailedHealthState) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[216] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[223] } func (x ManagedInstanceInstanceHealth_DetailedHealthState) Number() protoreflect.EnumNumber { @@ -14618,7 +15028,7 @@ func (x ManagedInstanceInstanceHealth_DetailedHealthState) Number() protoreflect // Deprecated: Use ManagedInstanceInstanceHealth_DetailedHealthState.Descriptor instead. func (ManagedInstanceInstanceHealth_DetailedHealthState) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1067, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1122, 0} } // Specifies how individual filter label matches @@ -14671,11 +15081,11 @@ func (x MetadataFilter_FilterMatchCriteria) String() string { } func (MetadataFilter_FilterMatchCriteria) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[217].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[224].Descriptor() } func (MetadataFilter_FilterMatchCriteria) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[217] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[224] } func (x MetadataFilter_FilterMatchCriteria) Number() protoreflect.EnumNumber { @@ -14684,7 +15094,7 @@ func (x MetadataFilter_FilterMatchCriteria) Number() protoreflect.EnumNumber { // Deprecated: Use MetadataFilter_FilterMatchCriteria.Descriptor instead. func (MetadataFilter_FilterMatchCriteria) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1073, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1128, 0} } // Output only. Specifies whether NAT IP is auto or manual. @@ -14722,11 +15132,11 @@ func (x NatIpInfoNatIpInfoMapping_Mode) String() string { } func (NatIpInfoNatIpInfoMapping_Mode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[218].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[225].Descriptor() } func (NatIpInfoNatIpInfoMapping_Mode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[218] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[225] } func (x NatIpInfoNatIpInfoMapping_Mode) Number() protoreflect.EnumNumber { @@ -14735,7 +15145,7 @@ func (x NatIpInfoNatIpInfoMapping_Mode) Number() protoreflect.EnumNumber { // Deprecated: Use NatIpInfoNatIpInfoMapping_Mode.Descriptor instead. func (NatIpInfoNatIpInfoMapping_Mode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1083, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1138, 0} } // Output only. Specifies whether NAT IP is currently serving at least one endpoint or @@ -14774,11 +15184,11 @@ func (x NatIpInfoNatIpInfoMapping_Usage) String() string { } func (NatIpInfoNatIpInfoMapping_Usage) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[219].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[226].Descriptor() } func (NatIpInfoNatIpInfoMapping_Usage) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[219] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[226] } func (x NatIpInfoNatIpInfoMapping_Usage) Number() protoreflect.EnumNumber { @@ -14787,7 +15197,7 @@ func (x NatIpInfoNatIpInfoMapping_Usage) Number() protoreflect.EnumNumber { // Deprecated: Use NatIpInfoNatIpInfoMapping_Usage.Descriptor instead. func (NatIpInfoNatIpInfoMapping_Usage) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1083, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1138, 1} } // The network firewall policy enforcement order. Can be either @@ -14827,11 +15237,11 @@ func (x Network_NetworkFirewallPolicyEnforcementOrder) String() string { } func (Network_NetworkFirewallPolicyEnforcementOrder) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[220].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[227].Descriptor() } func (Network_NetworkFirewallPolicyEnforcementOrder) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[220] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[227] } func (x Network_NetworkFirewallPolicyEnforcementOrder) Number() protoreflect.EnumNumber { @@ -14840,7 +15250,7 @@ func (x Network_NetworkFirewallPolicyEnforcementOrder) Number() protoreflect.Enu // Deprecated: Use Network_NetworkFirewallPolicyEnforcementOrder.Descriptor instead. func (Network_NetworkFirewallPolicyEnforcementOrder) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1085, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1140, 0} } type NetworkAttachment_ConnectionPreference int32 @@ -14880,11 +15290,11 @@ func (x NetworkAttachment_ConnectionPreference) String() string { } func (NetworkAttachment_ConnectionPreference) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[221].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[228].Descriptor() } func (NetworkAttachment_ConnectionPreference) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[221] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[228] } func (x NetworkAttachment_ConnectionPreference) Number() protoreflect.EnumNumber { @@ -14893,7 +15303,7 @@ func (x NetworkAttachment_ConnectionPreference) Number() protoreflect.EnumNumber // Deprecated: Use NetworkAttachment_ConnectionPreference.Descriptor instead. func (NetworkAttachment_ConnectionPreference) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1086, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1141, 0} } // The status of a connected endpoint to this network attachment. @@ -14949,11 +15359,11 @@ func (x NetworkAttachmentConnectedEndpoint_Status) String() string { } func (NetworkAttachmentConnectedEndpoint_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[222].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[229].Descriptor() } func (NetworkAttachmentConnectedEndpoint_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[222] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[229] } func (x NetworkAttachmentConnectedEndpoint_Status) Number() protoreflect.EnumNumber { @@ -14962,7 +15372,7 @@ func (x NetworkAttachmentConnectedEndpoint_Status) Number() protoreflect.EnumNum // Deprecated: Use NetworkAttachmentConnectedEndpoint_Status.Descriptor instead. func (NetworkAttachmentConnectedEndpoint_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1088, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1143, 0} } // Type of network endpoints in this network endpoint group. Can be one ofGCE_VM_IP, GCE_VM_IP_PORT,NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT,INTERNET_IP_PORT, SERVERLESS,PRIVATE_SERVICE_CONNECT, GCE_VM_IP_PORTMAP. @@ -15031,11 +15441,11 @@ func (x NetworkEndpointGroup_NetworkEndpointType) String() string { } func (NetworkEndpointGroup_NetworkEndpointType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[223].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[230].Descriptor() } func (NetworkEndpointGroup_NetworkEndpointType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[223] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[230] } func (x NetworkEndpointGroup_NetworkEndpointType) Number() protoreflect.EnumNumber { @@ -15044,7 +15454,7 @@ func (x NetworkEndpointGroup_NetworkEndpointType) Number() protoreflect.EnumNumb // Deprecated: Use NetworkEndpointGroup_NetworkEndpointType.Descriptor instead. func (NetworkEndpointGroup_NetworkEndpointType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1095, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1150, 0} } // Output only. [Output Only] The connection status of the PSC Forwarding Rule. @@ -15102,11 +15512,11 @@ func (x NetworkEndpointGroupPscData_PscConnectionStatus) String() string { } func (NetworkEndpointGroupPscData_PscConnectionStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[224].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[231].Descriptor() } func (NetworkEndpointGroupPscData_PscConnectionStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[224] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[231] } func (x NetworkEndpointGroupPscData_PscConnectionStatus) Number() protoreflect.EnumNumber { @@ -15115,7 +15525,7 @@ func (x NetworkEndpointGroupPscData_PscConnectionStatus) Number() protoreflect.E // Deprecated: Use NetworkEndpointGroupPscData_PscConnectionStatus.Descriptor instead. func (NetworkEndpointGroupPscData_PscConnectionStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1101, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1156, 0} } // Optional query parameter for showing the health status of each network @@ -15159,11 +15569,11 @@ func (x NetworkEndpointGroupsListEndpointsRequest_HealthStatus) String() string } func (NetworkEndpointGroupsListEndpointsRequest_HealthStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[225].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[232].Descriptor() } func (NetworkEndpointGroupsListEndpointsRequest_HealthStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[225] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[232] } func (x NetworkEndpointGroupsListEndpointsRequest_HealthStatus) Number() protoreflect.EnumNumber { @@ -15172,7 +15582,7 @@ func (x NetworkEndpointGroupsListEndpointsRequest_HealthStatus) Number() protore // Deprecated: Use NetworkEndpointGroupsListEndpointsRequest_HealthStatus.Descriptor instead. func (NetworkEndpointGroupsListEndpointsRequest_HealthStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1104, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1159, 0} } // Indicate whether igmp query is enabled on the network interface @@ -15213,11 +15623,11 @@ func (x NetworkInterface_IgmpQuery) String() string { } func (NetworkInterface_IgmpQuery) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[226].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[233].Descriptor() } func (NetworkInterface_IgmpQuery) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[226] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[233] } func (x NetworkInterface_IgmpQuery) Number() protoreflect.EnumNumber { @@ -15226,7 +15636,7 @@ func (x NetworkInterface_IgmpQuery) Number() protoreflect.EnumNumber { // Deprecated: Use NetworkInterface_IgmpQuery.Descriptor instead. func (NetworkInterface_IgmpQuery) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1109, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1164, 0} } // Output only. [Output Only] One of EXTERNAL, INTERNAL to indicate whether the IP can be @@ -15273,11 +15683,11 @@ func (x NetworkInterface_Ipv6AccessType) String() string { } func (NetworkInterface_Ipv6AccessType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[227].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[234].Descriptor() } func (NetworkInterface_Ipv6AccessType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[227] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[234] } func (x NetworkInterface_Ipv6AccessType) Number() protoreflect.EnumNumber { @@ -15286,7 +15696,7 @@ func (x NetworkInterface_Ipv6AccessType) Number() protoreflect.EnumNumber { // Deprecated: Use NetworkInterface_Ipv6AccessType.Descriptor instead. func (NetworkInterface_Ipv6AccessType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1109, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1164, 1} } // The type of vNIC to be used on this interface. This may be gVNIC or @@ -15343,11 +15753,11 @@ func (x NetworkInterface_NicType) String() string { } func (NetworkInterface_NicType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[228].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[235].Descriptor() } func (NetworkInterface_NicType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[228] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[235] } func (x NetworkInterface_NicType) Number() protoreflect.EnumNumber { @@ -15356,7 +15766,7 @@ func (x NetworkInterface_NicType) Number() protoreflect.EnumNumber { // Deprecated: Use NetworkInterface_NicType.Descriptor instead. func (NetworkInterface_NicType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1109, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1164, 2} } // The stack type for this network interface. To assign only IPv4 addresses, @@ -15407,11 +15817,11 @@ func (x NetworkInterface_StackType) String() string { } func (NetworkInterface_StackType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[229].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[236].Descriptor() } func (NetworkInterface_StackType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[229] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[236] } func (x NetworkInterface_StackType) Number() protoreflect.EnumNumber { @@ -15420,7 +15830,7 @@ func (x NetworkInterface_StackType) Number() protoreflect.EnumNumber { // Deprecated: Use NetworkInterface_StackType.Descriptor instead. func (NetworkInterface_StackType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1109, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1164, 3} } // Which IP version(s) of traffic and routes are allowed to be imported or @@ -15465,11 +15875,11 @@ func (x NetworkPeering_StackType) String() string { } func (NetworkPeering_StackType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[230].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[237].Descriptor() } func (NetworkPeering_StackType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[230] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[237] } func (x NetworkPeering_StackType) Number() protoreflect.EnumNumber { @@ -15478,7 +15888,7 @@ func (x NetworkPeering_StackType) Number() protoreflect.EnumNumber { // Deprecated: Use NetworkPeering_StackType.Descriptor instead. func (NetworkPeering_StackType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1112, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1167, 0} } // Output only. [Output Only] State for the peering. @@ -15519,11 +15929,11 @@ func (x NetworkPeering_State) String() string { } func (NetworkPeering_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[231].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[238].Descriptor() } func (NetworkPeering_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[231] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[238] } func (x NetworkPeering_State) Number() protoreflect.EnumNumber { @@ -15532,7 +15942,7 @@ func (x NetworkPeering_State) Number() protoreflect.EnumNumber { // Deprecated: Use NetworkPeering_State.Descriptor instead. func (NetworkPeering_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1112, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1167, 1} } // The update strategy determines the semantics for updates and deletes to the @@ -15585,11 +15995,11 @@ func (x NetworkPeering_UpdateStrategy) String() string { } func (NetworkPeering_UpdateStrategy) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[232].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[239].Descriptor() } func (NetworkPeering_UpdateStrategy) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[232] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[239] } func (x NetworkPeering_UpdateStrategy) Number() protoreflect.EnumNumber { @@ -15598,7 +16008,7 @@ func (x NetworkPeering_UpdateStrategy) Number() protoreflect.EnumNumber { // Deprecated: Use NetworkPeering_UpdateStrategy.Descriptor instead. func (NetworkPeering_UpdateStrategy) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1112, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1167, 2} } // The update strategy determines the update/delete semantics for this @@ -15651,11 +16061,11 @@ func (x NetworkPeeringConnectionStatus_UpdateStrategy) String() string { } func (NetworkPeeringConnectionStatus_UpdateStrategy) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[233].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[240].Descriptor() } func (NetworkPeeringConnectionStatus_UpdateStrategy) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[233] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[240] } func (x NetworkPeeringConnectionStatus_UpdateStrategy) Number() protoreflect.EnumNumber { @@ -15664,7 +16074,7 @@ func (x NetworkPeeringConnectionStatus_UpdateStrategy) Number() protoreflect.Enu // Deprecated: Use NetworkPeeringConnectionStatus_UpdateStrategy.Descriptor instead. func (NetworkPeeringConnectionStatus_UpdateStrategy) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1113, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1168, 0} } // The status of the delete request. @@ -15713,11 +16123,11 @@ func (x NetworkPeeringConnectionStatusConsensusState_DeleteStatus) String() stri } func (NetworkPeeringConnectionStatusConsensusState_DeleteStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[234].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[241].Descriptor() } func (NetworkPeeringConnectionStatusConsensusState_DeleteStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[234] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[241] } func (x NetworkPeeringConnectionStatusConsensusState_DeleteStatus) Number() protoreflect.EnumNumber { @@ -15726,7 +16136,7 @@ func (x NetworkPeeringConnectionStatusConsensusState_DeleteStatus) Number() prot // Deprecated: Use NetworkPeeringConnectionStatusConsensusState_DeleteStatus.Descriptor instead. func (NetworkPeeringConnectionStatusConsensusState_DeleteStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1114, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1169, 0} } // The status of the update request. @@ -15775,11 +16185,11 @@ func (x NetworkPeeringConnectionStatusConsensusState_UpdateStatus) String() stri } func (NetworkPeeringConnectionStatusConsensusState_UpdateStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[235].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[242].Descriptor() } func (NetworkPeeringConnectionStatusConsensusState_UpdateStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[235] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[242] } func (x NetworkPeeringConnectionStatusConsensusState_UpdateStatus) Number() protoreflect.EnumNumber { @@ -15788,7 +16198,7 @@ func (x NetworkPeeringConnectionStatusConsensusState_UpdateStatus) Number() prot // Deprecated: Use NetworkPeeringConnectionStatusConsensusState_UpdateStatus.Descriptor instead. func (NetworkPeeringConnectionStatusConsensusState_UpdateStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1114, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1169, 1} } // Which IP version(s) of traffic and routes are being imported or @@ -15833,11 +16243,11 @@ func (x NetworkPeeringConnectionStatusTrafficConfiguration_StackType) String() s } func (NetworkPeeringConnectionStatusTrafficConfiguration_StackType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[236].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[243].Descriptor() } func (NetworkPeeringConnectionStatusTrafficConfiguration_StackType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[236] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[243] } func (x NetworkPeeringConnectionStatusTrafficConfiguration_StackType) Number() protoreflect.EnumNumber { @@ -15846,7 +16256,7 @@ func (x NetworkPeeringConnectionStatusTrafficConfiguration_StackType) Number() p // Deprecated: Use NetworkPeeringConnectionStatusTrafficConfiguration_StackType.Descriptor instead. func (NetworkPeeringConnectionStatusTrafficConfiguration_StackType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1115, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1170, 0} } type NetworkPerformanceConfig_TotalEgressBandwidthTier int32 @@ -15883,11 +16293,11 @@ func (x NetworkPerformanceConfig_TotalEgressBandwidthTier) String() string { } func (NetworkPerformanceConfig_TotalEgressBandwidthTier) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[237].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[244].Descriptor() } func (NetworkPerformanceConfig_TotalEgressBandwidthTier) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[237] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[244] } func (x NetworkPerformanceConfig_TotalEgressBandwidthTier) Number() protoreflect.EnumNumber { @@ -15896,7 +16306,7 @@ func (x NetworkPerformanceConfig_TotalEgressBandwidthTier) Number() protoreflect // Deprecated: Use NetworkPerformanceConfig_TotalEgressBandwidthTier.Descriptor instead. func (NetworkPerformanceConfig_TotalEgressBandwidthTier) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1116, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1171, 0} } type NetworkProfileLocation_Scope int32 @@ -15933,11 +16343,11 @@ func (x NetworkProfileLocation_Scope) String() string { } func (NetworkProfileLocation_Scope) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[238].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[245].Descriptor() } func (NetworkProfileLocation_Scope) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[238] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[245] } func (x NetworkProfileLocation_Scope) Number() protoreflect.EnumNumber { @@ -15946,7 +16356,7 @@ func (x NetworkProfileLocation_Scope) Number() protoreflect.EnumNumber { // Deprecated: Use NetworkProfileLocation_Scope.Descriptor instead. func (NetworkProfileLocation_Scope) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1118, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1173, 0} } // Additional supported values which may be not listed in the enum directly due to technical reasons: @@ -16017,11 +16427,11 @@ func (x NetworkProfileNetworkFeatures_AddressPurposes) String() string { } func (NetworkProfileNetworkFeatures_AddressPurposes) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[239].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[246].Descriptor() } func (NetworkProfileNetworkFeatures_AddressPurposes) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[239] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[246] } func (x NetworkProfileNetworkFeatures_AddressPurposes) Number() protoreflect.EnumNumber { @@ -16030,7 +16440,7 @@ func (x NetworkProfileNetworkFeatures_AddressPurposes) Number() protoreflect.Enu // Deprecated: Use NetworkProfileNetworkFeatures_AddressPurposes.Descriptor instead. func (NetworkProfileNetworkFeatures_AddressPurposes) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 0} } // Specifies whether address creation is allowed. @@ -16068,11 +16478,11 @@ func (x NetworkProfileNetworkFeatures_AllowAddressCreation) String() string { } func (NetworkProfileNetworkFeatures_AllowAddressCreation) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[240].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[247].Descriptor() } func (NetworkProfileNetworkFeatures_AllowAddressCreation) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[240] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[247] } func (x NetworkProfileNetworkFeatures_AllowAddressCreation) Number() protoreflect.EnumNumber { @@ -16081,7 +16491,7 @@ func (x NetworkProfileNetworkFeatures_AllowAddressCreation) Number() protoreflec // Deprecated: Use NetworkProfileNetworkFeatures_AllowAddressCreation.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowAddressCreation) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 1} } // Specifies whether alias IP ranges (and secondary address ranges) are @@ -16120,11 +16530,11 @@ func (x NetworkProfileNetworkFeatures_AllowAliasIpRanges) String() string { } func (NetworkProfileNetworkFeatures_AllowAliasIpRanges) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[241].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[248].Descriptor() } func (NetworkProfileNetworkFeatures_AllowAliasIpRanges) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[241] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[248] } func (x NetworkProfileNetworkFeatures_AllowAliasIpRanges) Number() protoreflect.EnumNumber { @@ -16133,7 +16543,7 @@ func (x NetworkProfileNetworkFeatures_AllowAliasIpRanges) Number() protoreflect. // Deprecated: Use NetworkProfileNetworkFeatures_AllowAliasIpRanges.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowAliasIpRanges) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 2} } // Specifies whether auto mode subnet creation is allowed. @@ -16171,11 +16581,11 @@ func (x NetworkProfileNetworkFeatures_AllowAutoModeSubnet) String() string { } func (NetworkProfileNetworkFeatures_AllowAutoModeSubnet) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[242].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[249].Descriptor() } func (NetworkProfileNetworkFeatures_AllowAutoModeSubnet) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[242] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[249] } func (x NetworkProfileNetworkFeatures_AllowAutoModeSubnet) Number() protoreflect.EnumNumber { @@ -16184,7 +16594,7 @@ func (x NetworkProfileNetworkFeatures_AllowAutoModeSubnet) Number() protoreflect // Deprecated: Use NetworkProfileNetworkFeatures_AllowAutoModeSubnet.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowAutoModeSubnet) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 3} } // Specifies whether firewalls for Class D address ranges are supported. @@ -16222,11 +16632,11 @@ func (x NetworkProfileNetworkFeatures_AllowClassDFirewalls) String() string { } func (NetworkProfileNetworkFeatures_AllowClassDFirewalls) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[243].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[250].Descriptor() } func (NetworkProfileNetworkFeatures_AllowClassDFirewalls) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[243] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[250] } func (x NetworkProfileNetworkFeatures_AllowClassDFirewalls) Number() protoreflect.EnumNumber { @@ -16235,7 +16645,7 @@ func (x NetworkProfileNetworkFeatures_AllowClassDFirewalls) Number() protoreflec // Deprecated: Use NetworkProfileNetworkFeatures_AllowClassDFirewalls.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowClassDFirewalls) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 4} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 4} } // Specifies whether cloud NAT creation is allowed. @@ -16273,11 +16683,11 @@ func (x NetworkProfileNetworkFeatures_AllowCloudNat) String() string { } func (NetworkProfileNetworkFeatures_AllowCloudNat) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[244].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[251].Descriptor() } func (NetworkProfileNetworkFeatures_AllowCloudNat) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[244] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[251] } func (x NetworkProfileNetworkFeatures_AllowCloudNat) Number() protoreflect.EnumNumber { @@ -16286,7 +16696,7 @@ func (x NetworkProfileNetworkFeatures_AllowCloudNat) Number() protoreflect.EnumN // Deprecated: Use NetworkProfileNetworkFeatures_AllowCloudNat.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowCloudNat) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 5} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 5} } // Specifies whether cloud router creation is allowed. @@ -16324,11 +16734,11 @@ func (x NetworkProfileNetworkFeatures_AllowCloudRouter) String() string { } func (NetworkProfileNetworkFeatures_AllowCloudRouter) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[245].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[252].Descriptor() } func (NetworkProfileNetworkFeatures_AllowCloudRouter) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[245] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[252] } func (x NetworkProfileNetworkFeatures_AllowCloudRouter) Number() protoreflect.EnumNumber { @@ -16337,7 +16747,7 @@ func (x NetworkProfileNetworkFeatures_AllowCloudRouter) Number() protoreflect.En // Deprecated: Use NetworkProfileNetworkFeatures_AllowCloudRouter.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowCloudRouter) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 6} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 6} } // Specifies whether default NIC attachment is allowed. @@ -16375,11 +16785,11 @@ func (x NetworkProfileNetworkFeatures_AllowDefaultNicAttachment) String() string } func (NetworkProfileNetworkFeatures_AllowDefaultNicAttachment) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[246].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[253].Descriptor() } func (NetworkProfileNetworkFeatures_AllowDefaultNicAttachment) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[246] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[253] } func (x NetworkProfileNetworkFeatures_AllowDefaultNicAttachment) Number() protoreflect.EnumNumber { @@ -16388,7 +16798,7 @@ func (x NetworkProfileNetworkFeatures_AllowDefaultNicAttachment) Number() protor // Deprecated: Use NetworkProfileNetworkFeatures_AllowDefaultNicAttachment.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowDefaultNicAttachment) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 7} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 7} } // Specifies whether VMs are allowed to have external IP access on network @@ -16427,11 +16837,11 @@ func (x NetworkProfileNetworkFeatures_AllowExternalIpAccess) String() string { } func (NetworkProfileNetworkFeatures_AllowExternalIpAccess) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[247].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[254].Descriptor() } func (NetworkProfileNetworkFeatures_AllowExternalIpAccess) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[247] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[254] } func (x NetworkProfileNetworkFeatures_AllowExternalIpAccess) Number() protoreflect.EnumNumber { @@ -16440,7 +16850,7 @@ func (x NetworkProfileNetworkFeatures_AllowExternalIpAccess) Number() protorefle // Deprecated: Use NetworkProfileNetworkFeatures_AllowExternalIpAccess.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowExternalIpAccess) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 8} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 8} } // Specifies whether firewall policy can be attached to the network. @@ -16478,11 +16888,11 @@ func (x NetworkProfileNetworkFeatures_AllowFirewallPolicy) String() string { } func (NetworkProfileNetworkFeatures_AllowFirewallPolicy) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[248].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[255].Descriptor() } func (NetworkProfileNetworkFeatures_AllowFirewallPolicy) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[248] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[255] } func (x NetworkProfileNetworkFeatures_AllowFirewallPolicy) Number() protoreflect.EnumNumber { @@ -16491,7 +16901,7 @@ func (x NetworkProfileNetworkFeatures_AllowFirewallPolicy) Number() protoreflect // Deprecated: Use NetworkProfileNetworkFeatures_AllowFirewallPolicy.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowFirewallPolicy) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 9} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 9} } // Specifies whether Cloud Interconnect creation is allowed. @@ -16529,11 +16939,11 @@ func (x NetworkProfileNetworkFeatures_AllowInterconnect) String() string { } func (NetworkProfileNetworkFeatures_AllowInterconnect) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[249].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[256].Descriptor() } func (NetworkProfileNetworkFeatures_AllowInterconnect) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[249] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[256] } func (x NetworkProfileNetworkFeatures_AllowInterconnect) Number() protoreflect.EnumNumber { @@ -16542,7 +16952,7 @@ func (x NetworkProfileNetworkFeatures_AllowInterconnect) Number() protoreflect.E // Deprecated: Use NetworkProfileNetworkFeatures_AllowInterconnect.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowInterconnect) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 10} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 10} } // Specifies whether IP forwarding is allowed. @@ -16580,11 +16990,11 @@ func (x NetworkProfileNetworkFeatures_AllowIpForwarding) String() string { } func (NetworkProfileNetworkFeatures_AllowIpForwarding) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[250].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[257].Descriptor() } func (NetworkProfileNetworkFeatures_AllowIpForwarding) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[250] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[257] } func (x NetworkProfileNetworkFeatures_AllowIpForwarding) Number() protoreflect.EnumNumber { @@ -16593,7 +17003,7 @@ func (x NetworkProfileNetworkFeatures_AllowIpForwarding) Number() protoreflect.E // Deprecated: Use NetworkProfileNetworkFeatures_AllowIpForwarding.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowIpForwarding) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 11} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 11} } // Specifies whether cloud load balancing is allowed. @@ -16631,11 +17041,11 @@ func (x NetworkProfileNetworkFeatures_AllowLoadBalancing) String() string { } func (NetworkProfileNetworkFeatures_AllowLoadBalancing) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[251].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[258].Descriptor() } func (NetworkProfileNetworkFeatures_AllowLoadBalancing) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[251] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[258] } func (x NetworkProfileNetworkFeatures_AllowLoadBalancing) Number() protoreflect.EnumNumber { @@ -16644,7 +17054,7 @@ func (x NetworkProfileNetworkFeatures_AllowLoadBalancing) Number() protoreflect. // Deprecated: Use NetworkProfileNetworkFeatures_AllowLoadBalancing.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowLoadBalancing) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 12} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 12} } // Specifies whether multi-nic in the same network is allowed. @@ -16682,11 +17092,11 @@ func (x NetworkProfileNetworkFeatures_AllowMultiNicInSameNetwork) String() strin } func (NetworkProfileNetworkFeatures_AllowMultiNicInSameNetwork) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[252].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[259].Descriptor() } func (NetworkProfileNetworkFeatures_AllowMultiNicInSameNetwork) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[252] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[259] } func (x NetworkProfileNetworkFeatures_AllowMultiNicInSameNetwork) Number() protoreflect.EnumNumber { @@ -16695,7 +17105,7 @@ func (x NetworkProfileNetworkFeatures_AllowMultiNicInSameNetwork) Number() proto // Deprecated: Use NetworkProfileNetworkFeatures_AllowMultiNicInSameNetwork.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowMultiNicInSameNetwork) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 13} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 13} } // Specifies whether multi-nic in the same subnetwork is allowed. @@ -16733,11 +17143,11 @@ func (x NetworkProfileNetworkFeatures_AllowMultiNicInSameSubnetwork) String() st } func (NetworkProfileNetworkFeatures_AllowMultiNicInSameSubnetwork) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[253].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[260].Descriptor() } func (NetworkProfileNetworkFeatures_AllowMultiNicInSameSubnetwork) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[253] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[260] } func (x NetworkProfileNetworkFeatures_AllowMultiNicInSameSubnetwork) Number() protoreflect.EnumNumber { @@ -16746,7 +17156,7 @@ func (x NetworkProfileNetworkFeatures_AllowMultiNicInSameSubnetwork) Number() pr // Deprecated: Use NetworkProfileNetworkFeatures_AllowMultiNicInSameSubnetwork.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowMultiNicInSameSubnetwork) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 14} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 14} } // Specifies whether multicast is allowed. @@ -16784,11 +17194,11 @@ func (x NetworkProfileNetworkFeatures_AllowMulticast) String() string { } func (NetworkProfileNetworkFeatures_AllowMulticast) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[254].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[261].Descriptor() } func (NetworkProfileNetworkFeatures_AllowMulticast) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[254] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[261] } func (x NetworkProfileNetworkFeatures_AllowMulticast) Number() protoreflect.EnumNumber { @@ -16797,7 +17207,7 @@ func (x NetworkProfileNetworkFeatures_AllowMulticast) Number() protoreflect.Enum // Deprecated: Use NetworkProfileNetworkFeatures_AllowMulticast.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowMulticast) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 15} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 15} } // Specifies whether NCC is allowed. @@ -16835,11 +17245,11 @@ func (x NetworkProfileNetworkFeatures_AllowNcc) String() string { } func (NetworkProfileNetworkFeatures_AllowNcc) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[255].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[262].Descriptor() } func (NetworkProfileNetworkFeatures_AllowNcc) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[255] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[262] } func (x NetworkProfileNetworkFeatures_AllowNcc) Number() protoreflect.EnumNumber { @@ -16848,7 +17258,7 @@ func (x NetworkProfileNetworkFeatures_AllowNcc) Number() protoreflect.EnumNumber // Deprecated: Use NetworkProfileNetworkFeatures_AllowNcc.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowNcc) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 16} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 16} } // Specifies whether VM network migration is allowed. @@ -16886,11 +17296,11 @@ func (x NetworkProfileNetworkFeatures_AllowNetworkMigration) String() string { } func (NetworkProfileNetworkFeatures_AllowNetworkMigration) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[256].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[263].Descriptor() } func (NetworkProfileNetworkFeatures_AllowNetworkMigration) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[256] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[263] } func (x NetworkProfileNetworkFeatures_AllowNetworkMigration) Number() protoreflect.EnumNumber { @@ -16899,7 +17309,7 @@ func (x NetworkProfileNetworkFeatures_AllowNetworkMigration) Number() protorefle // Deprecated: Use NetworkProfileNetworkFeatures_AllowNetworkMigration.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowNetworkMigration) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 17} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 17} } // Specifies whether Packet Mirroring 1.0 is supported. @@ -16937,11 +17347,11 @@ func (x NetworkProfileNetworkFeatures_AllowPacketMirroring) String() string { } func (NetworkProfileNetworkFeatures_AllowPacketMirroring) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[257].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[264].Descriptor() } func (NetworkProfileNetworkFeatures_AllowPacketMirroring) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[257] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[264] } func (x NetworkProfileNetworkFeatures_AllowPacketMirroring) Number() protoreflect.EnumNumber { @@ -16950,7 +17360,7 @@ func (x NetworkProfileNetworkFeatures_AllowPacketMirroring) Number() protoreflec // Deprecated: Use NetworkProfileNetworkFeatures_AllowPacketMirroring.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowPacketMirroring) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 18} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 18} } // Specifies whether private Google access is allowed. @@ -16988,11 +17398,11 @@ func (x NetworkProfileNetworkFeatures_AllowPrivateGoogleAccess) String() string } func (NetworkProfileNetworkFeatures_AllowPrivateGoogleAccess) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[258].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[265].Descriptor() } func (NetworkProfileNetworkFeatures_AllowPrivateGoogleAccess) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[258] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[265] } func (x NetworkProfileNetworkFeatures_AllowPrivateGoogleAccess) Number() protoreflect.EnumNumber { @@ -17001,7 +17411,7 @@ func (x NetworkProfileNetworkFeatures_AllowPrivateGoogleAccess) Number() protore // Deprecated: Use NetworkProfileNetworkFeatures_AllowPrivateGoogleAccess.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowPrivateGoogleAccess) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 19} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 19} } // Specifies whether PSC creation is allowed. @@ -17039,11 +17449,11 @@ func (x NetworkProfileNetworkFeatures_AllowPsc) String() string { } func (NetworkProfileNetworkFeatures_AllowPsc) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[259].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[266].Descriptor() } func (NetworkProfileNetworkFeatures_AllowPsc) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[259] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[266] } func (x NetworkProfileNetworkFeatures_AllowPsc) Number() protoreflect.EnumNumber { @@ -17052,7 +17462,7 @@ func (x NetworkProfileNetworkFeatures_AllowPsc) Number() protoreflect.EnumNumber // Deprecated: Use NetworkProfileNetworkFeatures_AllowPsc.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowPsc) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 20} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 20} } // Specifies whether unicast within the same network is allowed. @@ -17090,11 +17500,11 @@ func (x NetworkProfileNetworkFeatures_AllowSameNetworkUnicast) String() string { } func (NetworkProfileNetworkFeatures_AllowSameNetworkUnicast) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[260].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[267].Descriptor() } func (NetworkProfileNetworkFeatures_AllowSameNetworkUnicast) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[260] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[267] } func (x NetworkProfileNetworkFeatures_AllowSameNetworkUnicast) Number() protoreflect.EnumNumber { @@ -17103,7 +17513,7 @@ func (x NetworkProfileNetworkFeatures_AllowSameNetworkUnicast) Number() protoref // Deprecated: Use NetworkProfileNetworkFeatures_AllowSameNetworkUnicast.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowSameNetworkUnicast) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 21} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 21} } // Specifies whether static route creation is allowed. @@ -17141,11 +17551,11 @@ func (x NetworkProfileNetworkFeatures_AllowStaticRoutes) String() string { } func (NetworkProfileNetworkFeatures_AllowStaticRoutes) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[261].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[268].Descriptor() } func (NetworkProfileNetworkFeatures_AllowStaticRoutes) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[261] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[268] } func (x NetworkProfileNetworkFeatures_AllowStaticRoutes) Number() protoreflect.EnumNumber { @@ -17154,7 +17564,7 @@ func (x NetworkProfileNetworkFeatures_AllowStaticRoutes) Number() protoreflect.E // Deprecated: Use NetworkProfileNetworkFeatures_AllowStaticRoutes.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowStaticRoutes) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 22} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 22} } // Specifies whether sub interfaces are allowed. @@ -17192,11 +17602,11 @@ func (x NetworkProfileNetworkFeatures_AllowSubInterfaces) String() string { } func (NetworkProfileNetworkFeatures_AllowSubInterfaces) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[262].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[269].Descriptor() } func (NetworkProfileNetworkFeatures_AllowSubInterfaces) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[262] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[269] } func (x NetworkProfileNetworkFeatures_AllowSubInterfaces) Number() protoreflect.EnumNumber { @@ -17205,7 +17615,7 @@ func (x NetworkProfileNetworkFeatures_AllowSubInterfaces) Number() protoreflect. // Deprecated: Use NetworkProfileNetworkFeatures_AllowSubInterfaces.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowSubInterfaces) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 23} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 23} } // Specifies whether subnetwork creation is allowed. @@ -17243,11 +17653,11 @@ func (x NetworkProfileNetworkFeatures_AllowSubnetworkCreation) String() string { } func (NetworkProfileNetworkFeatures_AllowSubnetworkCreation) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[263].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[270].Descriptor() } func (NetworkProfileNetworkFeatures_AllowSubnetworkCreation) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[263] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[270] } func (x NetworkProfileNetworkFeatures_AllowSubnetworkCreation) Number() protoreflect.EnumNumber { @@ -17256,7 +17666,7 @@ func (x NetworkProfileNetworkFeatures_AllowSubnetworkCreation) Number() protoref // Deprecated: Use NetworkProfileNetworkFeatures_AllowSubnetworkCreation.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowSubnetworkCreation) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 24} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 24} } // Specifies whether VPC firewall rules can be created under the network. @@ -17294,11 +17704,11 @@ func (x NetworkProfileNetworkFeatures_AllowVpcFirewallRules) String() string { } func (NetworkProfileNetworkFeatures_AllowVpcFirewallRules) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[264].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[271].Descriptor() } func (NetworkProfileNetworkFeatures_AllowVpcFirewallRules) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[264] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[271] } func (x NetworkProfileNetworkFeatures_AllowVpcFirewallRules) Number() protoreflect.EnumNumber { @@ -17307,7 +17717,7 @@ func (x NetworkProfileNetworkFeatures_AllowVpcFirewallRules) Number() protorefle // Deprecated: Use NetworkProfileNetworkFeatures_AllowVpcFirewallRules.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowVpcFirewallRules) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 25} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 25} } // Specifies whether VPC peering is allowed. @@ -17345,11 +17755,11 @@ func (x NetworkProfileNetworkFeatures_AllowVpcPeering) String() string { } func (NetworkProfileNetworkFeatures_AllowVpcPeering) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[265].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[272].Descriptor() } func (NetworkProfileNetworkFeatures_AllowVpcPeering) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[265] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[272] } func (x NetworkProfileNetworkFeatures_AllowVpcPeering) Number() protoreflect.EnumNumber { @@ -17358,7 +17768,7 @@ func (x NetworkProfileNetworkFeatures_AllowVpcPeering) Number() protoreflect.Enu // Deprecated: Use NetworkProfileNetworkFeatures_AllowVpcPeering.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowVpcPeering) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 26} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 26} } // Specifies whether VPN creation is allowed. @@ -17396,11 +17806,11 @@ func (x NetworkProfileNetworkFeatures_AllowVpn) String() string { } func (NetworkProfileNetworkFeatures_AllowVpn) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[266].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[273].Descriptor() } func (NetworkProfileNetworkFeatures_AllowVpn) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[266] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[273] } func (x NetworkProfileNetworkFeatures_AllowVpn) Number() protoreflect.EnumNumber { @@ -17409,7 +17819,7 @@ func (x NetworkProfileNetworkFeatures_AllowVpn) Number() protoreflect.EnumNumber // Deprecated: Use NetworkProfileNetworkFeatures_AllowVpn.Descriptor instead. func (NetworkProfileNetworkFeatures_AllowVpn) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 27} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 27} } type NetworkProfileNetworkFeatures_FirewallPolicyTypes int32 @@ -17446,11 +17856,11 @@ func (x NetworkProfileNetworkFeatures_FirewallPolicyTypes) String() string { } func (NetworkProfileNetworkFeatures_FirewallPolicyTypes) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[267].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[274].Descriptor() } func (NetworkProfileNetworkFeatures_FirewallPolicyTypes) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[267] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[274] } func (x NetworkProfileNetworkFeatures_FirewallPolicyTypes) Number() protoreflect.EnumNumber { @@ -17459,7 +17869,7 @@ func (x NetworkProfileNetworkFeatures_FirewallPolicyTypes) Number() protoreflect // Deprecated: Use NetworkProfileNetworkFeatures_FirewallPolicyTypes.Descriptor instead. func (NetworkProfileNetworkFeatures_FirewallPolicyTypes) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 28} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 28} } type NetworkProfileNetworkFeatures_InterfaceTypes int32 @@ -17514,11 +17924,11 @@ func (x NetworkProfileNetworkFeatures_InterfaceTypes) String() string { } func (NetworkProfileNetworkFeatures_InterfaceTypes) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[268].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[275].Descriptor() } func (NetworkProfileNetworkFeatures_InterfaceTypes) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[268] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[275] } func (x NetworkProfileNetworkFeatures_InterfaceTypes) Number() protoreflect.EnumNumber { @@ -17527,7 +17937,7 @@ func (x NetworkProfileNetworkFeatures_InterfaceTypes) Number() protoreflect.Enum // Deprecated: Use NetworkProfileNetworkFeatures_InterfaceTypes.Descriptor instead. func (NetworkProfileNetworkFeatures_InterfaceTypes) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 29} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 29} } // Specifies which type of multicast is supported. @@ -17565,11 +17975,11 @@ func (x NetworkProfileNetworkFeatures_Multicast) String() string { } func (NetworkProfileNetworkFeatures_Multicast) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[269].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[276].Descriptor() } func (NetworkProfileNetworkFeatures_Multicast) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[269] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[276] } func (x NetworkProfileNetworkFeatures_Multicast) Number() protoreflect.EnumNumber { @@ -17578,7 +17988,7 @@ func (x NetworkProfileNetworkFeatures_Multicast) Number() protoreflect.EnumNumbe // Deprecated: Use NetworkProfileNetworkFeatures_Multicast.Descriptor instead. func (NetworkProfileNetworkFeatures_Multicast) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 30} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 30} } type NetworkProfileNetworkFeatures_SubnetPurposes int32 @@ -17615,11 +18025,11 @@ func (x NetworkProfileNetworkFeatures_SubnetPurposes) String() string { } func (NetworkProfileNetworkFeatures_SubnetPurposes) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[270].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[277].Descriptor() } func (NetworkProfileNetworkFeatures_SubnetPurposes) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[270] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[277] } func (x NetworkProfileNetworkFeatures_SubnetPurposes) Number() protoreflect.EnumNumber { @@ -17628,7 +18038,7 @@ func (x NetworkProfileNetworkFeatures_SubnetPurposes) Number() protoreflect.Enum // Deprecated: Use NetworkProfileNetworkFeatures_SubnetPurposes.Descriptor instead. func (NetworkProfileNetworkFeatures_SubnetPurposes) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 31} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 31} } type NetworkProfileNetworkFeatures_SubnetStackTypes int32 @@ -17668,11 +18078,11 @@ func (x NetworkProfileNetworkFeatures_SubnetStackTypes) String() string { } func (NetworkProfileNetworkFeatures_SubnetStackTypes) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[271].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[278].Descriptor() } func (NetworkProfileNetworkFeatures_SubnetStackTypes) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[271] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[278] } func (x NetworkProfileNetworkFeatures_SubnetStackTypes) Number() protoreflect.EnumNumber { @@ -17681,7 +18091,7 @@ func (x NetworkProfileNetworkFeatures_SubnetStackTypes) Number() protoreflect.En // Deprecated: Use NetworkProfileNetworkFeatures_SubnetStackTypes.Descriptor instead. func (NetworkProfileNetworkFeatures_SubnetStackTypes) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 32} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 32} } // Additional supported values which may be not listed in the enum directly due to technical reasons: @@ -17745,11 +18155,11 @@ func (x NetworkProfileNetworkFeatures_SubnetworkPurposes) String() string { } func (NetworkProfileNetworkFeatures_SubnetworkPurposes) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[272].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[279].Descriptor() } func (NetworkProfileNetworkFeatures_SubnetworkPurposes) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[272] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[279] } func (x NetworkProfileNetworkFeatures_SubnetworkPurposes) Number() protoreflect.EnumNumber { @@ -17758,7 +18168,7 @@ func (x NetworkProfileNetworkFeatures_SubnetworkPurposes) Number() protoreflect. // Deprecated: Use NetworkProfileNetworkFeatures_SubnetworkPurposes.Descriptor instead. func (NetworkProfileNetworkFeatures_SubnetworkPurposes) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 33} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 33} } type NetworkProfileNetworkFeatures_SubnetworkStackTypes int32 @@ -17801,11 +18211,11 @@ func (x NetworkProfileNetworkFeatures_SubnetworkStackTypes) String() string { } func (NetworkProfileNetworkFeatures_SubnetworkStackTypes) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[273].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[280].Descriptor() } func (NetworkProfileNetworkFeatures_SubnetworkStackTypes) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[273] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[280] } func (x NetworkProfileNetworkFeatures_SubnetworkStackTypes) Number() protoreflect.EnumNumber { @@ -17814,7 +18224,7 @@ func (x NetworkProfileNetworkFeatures_SubnetworkStackTypes) Number() protoreflec // Deprecated: Use NetworkProfileNetworkFeatures_SubnetworkStackTypes.Descriptor instead. func (NetworkProfileNetworkFeatures_SubnetworkStackTypes) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 34} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 34} } // Specifies which type of unicast is supported. @@ -17852,11 +18262,11 @@ func (x NetworkProfileNetworkFeatures_Unicast) String() string { } func (NetworkProfileNetworkFeatures_Unicast) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[274].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[281].Descriptor() } func (NetworkProfileNetworkFeatures_Unicast) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[274] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[281] } func (x NetworkProfileNetworkFeatures_Unicast) Number() protoreflect.EnumNumber { @@ -17865,7 +18275,7 @@ func (x NetworkProfileNetworkFeatures_Unicast) Number() protoreflect.EnumNumber // Deprecated: Use NetworkProfileNetworkFeatures_Unicast.Descriptor instead. func (NetworkProfileNetworkFeatures_Unicast) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119, 35} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174, 35} } type NetworkProfileProfileType_NetworkType int32 @@ -17908,11 +18318,11 @@ func (x NetworkProfileProfileType_NetworkType) String() string { } func (NetworkProfileProfileType_NetworkType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[275].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[282].Descriptor() } func (NetworkProfileProfileType_NetworkType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[275] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[282] } func (x NetworkProfileProfileType_NetworkType) Number() protoreflect.EnumNumber { @@ -17921,7 +18331,7 @@ func (x NetworkProfileProfileType_NetworkType) Number() protoreflect.EnumNumber // Deprecated: Use NetworkProfileProfileType_NetworkType.Descriptor instead. func (NetworkProfileProfileType_NetworkType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1121, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1176, 0} } type NetworkProfileProfileType_RdmaSubtype int32 @@ -17964,11 +18374,11 @@ func (x NetworkProfileProfileType_RdmaSubtype) String() string { } func (NetworkProfileProfileType_RdmaSubtype) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[276].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[283].Descriptor() } func (NetworkProfileProfileType_RdmaSubtype) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[276] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[283] } func (x NetworkProfileProfileType_RdmaSubtype) Number() protoreflect.EnumNumber { @@ -17977,7 +18387,7 @@ func (x NetworkProfileProfileType_RdmaSubtype) Number() protoreflect.EnumNumber // Deprecated: Use NetworkProfileProfileType_RdmaSubtype.Descriptor instead. func (NetworkProfileProfileType_RdmaSubtype) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1121, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1176, 1} } type NetworkProfileProfileType_UllSubtype int32 @@ -18016,11 +18426,11 @@ func (x NetworkProfileProfileType_UllSubtype) String() string { } func (NetworkProfileProfileType_UllSubtype) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[277].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[284].Descriptor() } func (NetworkProfileProfileType_UllSubtype) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[277] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[284] } func (x NetworkProfileProfileType_UllSubtype) Number() protoreflect.EnumNumber { @@ -18029,7 +18439,7 @@ func (x NetworkProfileProfileType_UllSubtype) Number() protoreflect.EnumNumber { // Deprecated: Use NetworkProfileProfileType_UllSubtype.Descriptor instead. func (NetworkProfileProfileType_UllSubtype) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1121, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1176, 2} } type NetworkProfileProfileType_VpcSubtype int32 @@ -18064,11 +18474,11 @@ func (x NetworkProfileProfileType_VpcSubtype) String() string { } func (NetworkProfileProfileType_VpcSubtype) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[278].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[285].Descriptor() } func (NetworkProfileProfileType_VpcSubtype) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[278] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[285] } func (x NetworkProfileProfileType_VpcSubtype) Number() protoreflect.EnumNumber { @@ -18077,7 +18487,7 @@ func (x NetworkProfileProfileType_VpcSubtype) Number() protoreflect.EnumNumber { // Deprecated: Use NetworkProfileProfileType_VpcSubtype.Descriptor instead. func (NetworkProfileProfileType_VpcSubtype) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1121, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1176, 3} } // The BGP best path selection algorithm to be employed within this network @@ -18117,11 +18527,11 @@ func (x NetworkRoutingConfig_BgpBestPathSelectionMode) String() string { } func (NetworkRoutingConfig_BgpBestPathSelectionMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[279].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[286].Descriptor() } func (NetworkRoutingConfig_BgpBestPathSelectionMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[279] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[286] } func (x NetworkRoutingConfig_BgpBestPathSelectionMode) Number() protoreflect.EnumNumber { @@ -18130,7 +18540,7 @@ func (x NetworkRoutingConfig_BgpBestPathSelectionMode) Number() protoreflect.Enu // Deprecated: Use NetworkRoutingConfig_BgpBestPathSelectionMode.Descriptor instead. func (NetworkRoutingConfig_BgpBestPathSelectionMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1123, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1178, 0} } // Allows to define a preferred approach for handling inter-region cost in @@ -18173,11 +18583,11 @@ func (x NetworkRoutingConfig_BgpInterRegionCost) String() string { } func (NetworkRoutingConfig_BgpInterRegionCost) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[280].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[287].Descriptor() } func (NetworkRoutingConfig_BgpInterRegionCost) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[280] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[287] } func (x NetworkRoutingConfig_BgpInterRegionCost) Number() protoreflect.EnumNumber { @@ -18186,7 +18596,7 @@ func (x NetworkRoutingConfig_BgpInterRegionCost) Number() protoreflect.EnumNumbe // Deprecated: Use NetworkRoutingConfig_BgpInterRegionCost.Descriptor instead. func (NetworkRoutingConfig_BgpInterRegionCost) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1123, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1178, 1} } // Output only. [Output Only] Effective value of the bgp_inter_region_cost @@ -18222,11 +18632,11 @@ func (x NetworkRoutingConfig_EffectiveBgpInterRegionCost) String() string { } func (NetworkRoutingConfig_EffectiveBgpInterRegionCost) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[281].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[288].Descriptor() } func (NetworkRoutingConfig_EffectiveBgpInterRegionCost) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[281] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[288] } func (x NetworkRoutingConfig_EffectiveBgpInterRegionCost) Number() protoreflect.EnumNumber { @@ -18235,7 +18645,7 @@ func (x NetworkRoutingConfig_EffectiveBgpInterRegionCost) Number() protoreflect. // Deprecated: Use NetworkRoutingConfig_EffectiveBgpInterRegionCost.Descriptor instead. func (NetworkRoutingConfig_EffectiveBgpInterRegionCost) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1123, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1178, 2} } // The network-wide routing mode to use. If set to REGIONAL, @@ -18276,11 +18686,11 @@ func (x NetworkRoutingConfig_RoutingMode) String() string { } func (NetworkRoutingConfig_RoutingMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[282].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[289].Descriptor() } func (NetworkRoutingConfig_RoutingMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[282] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[289] } func (x NetworkRoutingConfig_RoutingMode) Number() protoreflect.EnumNumber { @@ -18289,7 +18699,7 @@ func (x NetworkRoutingConfig_RoutingMode) Number() protoreflect.EnumNumber { // Deprecated: Use NetworkRoutingConfig_RoutingMode.Descriptor instead. func (NetworkRoutingConfig_RoutingMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1123, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1178, 3} } // Output only. [Output Only] The type of the firewall policy. @@ -18333,11 +18743,11 @@ func (x NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Strin } func (NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[283].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[290].Descriptor() } func (NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[283] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[290] } func (x NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Number() protoreflect.EnumNumber { @@ -18346,7 +18756,7 @@ func (x NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Numbe // Deprecated: Use NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type.Descriptor instead. func (NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1126, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1181, 0} } // Specifies the frequency of planned maintenance events. The accepted values @@ -18394,11 +18804,11 @@ func (x NodeGroup_MaintenanceInterval) String() string { } func (NodeGroup_MaintenanceInterval) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[284].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[291].Descriptor() } func (NodeGroup_MaintenanceInterval) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[284] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[291] } func (x NodeGroup_MaintenanceInterval) Number() protoreflect.EnumNumber { @@ -18407,7 +18817,7 @@ func (x NodeGroup_MaintenanceInterval) Number() protoreflect.EnumNumber { // Deprecated: Use NodeGroup_MaintenanceInterval.Descriptor instead. func (NodeGroup_MaintenanceInterval) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1130, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1185, 0} } // Specifies how to handle instances when a node in the group undergoes @@ -18465,11 +18875,11 @@ func (x NodeGroup_MaintenancePolicy) String() string { } func (NodeGroup_MaintenancePolicy) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[285].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[292].Descriptor() } func (NodeGroup_MaintenancePolicy) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[285] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[292] } func (x NodeGroup_MaintenancePolicy) Number() protoreflect.EnumNumber { @@ -18478,7 +18888,7 @@ func (x NodeGroup_MaintenancePolicy) Number() protoreflect.EnumNumber { // Deprecated: Use NodeGroup_MaintenancePolicy.Descriptor instead. func (NodeGroup_MaintenancePolicy) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1130, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1185, 1} } type NodeGroup_Status int32 @@ -18521,11 +18931,11 @@ func (x NodeGroup_Status) String() string { } func (NodeGroup_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[286].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[293].Descriptor() } func (NodeGroup_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[286] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[293] } func (x NodeGroup_Status) Number() protoreflect.EnumNumber { @@ -18534,7 +18944,7 @@ func (x NodeGroup_Status) Number() protoreflect.EnumNumber { // Deprecated: Use NodeGroup_Status.Descriptor instead. func (NodeGroup_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1130, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1185, 2} } // The autoscaling mode. Set to one of: ON, OFF, @@ -18583,11 +18993,11 @@ func (x NodeGroupAutoscalingPolicy_Mode) String() string { } func (NodeGroupAutoscalingPolicy_Mode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[287].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[294].Descriptor() } func (NodeGroupAutoscalingPolicy_Mode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[287] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[294] } func (x NodeGroupAutoscalingPolicy_Mode) Number() protoreflect.EnumNumber { @@ -18596,7 +19006,7 @@ func (x NodeGroupAutoscalingPolicy_Mode) Number() protoreflect.EnumNumber { // Deprecated: Use NodeGroupAutoscalingPolicy_Mode.Descriptor instead. func (NodeGroupAutoscalingPolicy_Mode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1132, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1187, 0} } // CPU overcommit. @@ -18637,11 +19047,11 @@ func (x NodeGroupNode_CpuOvercommitType) String() string { } func (NodeGroupNode_CpuOvercommitType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[288].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[295].Descriptor() } func (NodeGroupNode_CpuOvercommitType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[288] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[295] } func (x NodeGroupNode_CpuOvercommitType) Number() protoreflect.EnumNumber { @@ -18650,7 +19060,7 @@ func (x NodeGroupNode_CpuOvercommitType) Number() protoreflect.EnumNumber { // Deprecated: Use NodeGroupNode_CpuOvercommitType.Descriptor instead. func (NodeGroupNode_CpuOvercommitType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1135, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1190, 0} } type NodeGroupNode_Status int32 @@ -18696,11 +19106,11 @@ func (x NodeGroupNode_Status) String() string { } func (NodeGroupNode_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[289].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[296].Descriptor() } func (NodeGroupNode_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[289] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[296] } func (x NodeGroupNode_Status) Number() protoreflect.EnumNumber { @@ -18709,7 +19119,7 @@ func (x NodeGroupNode_Status) Number() protoreflect.EnumNumber { // Deprecated: Use NodeGroupNode_Status.Descriptor instead. func (NodeGroupNode_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1135, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1190, 1} } // CPU overcommit. @@ -18750,11 +19160,11 @@ func (x NodeTemplate_CpuOvercommitType) String() string { } func (NodeTemplate_CpuOvercommitType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[290].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[297].Descriptor() } func (NodeTemplate_CpuOvercommitType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[290] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[297] } func (x NodeTemplate_CpuOvercommitType) Number() protoreflect.EnumNumber { @@ -18763,7 +19173,7 @@ func (x NodeTemplate_CpuOvercommitType) Number() protoreflect.EnumNumber { // Deprecated: Use NodeTemplate_CpuOvercommitType.Descriptor instead. func (NodeTemplate_CpuOvercommitType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1143, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1198, 0} } // Output only. [Output Only] The status of the node template. One of the following values:CREATING, READY, and DELETING. @@ -18811,11 +19221,11 @@ func (x NodeTemplate_Status) String() string { } func (NodeTemplate_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[291].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[298].Descriptor() } func (NodeTemplate_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[291] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[298] } func (x NodeTemplate_Status) Number() protoreflect.EnumNumber { @@ -18824,7 +19234,7 @@ func (x NodeTemplate_Status) Number() protoreflect.EnumNumber { // Deprecated: Use NodeTemplate_Status.Descriptor instead. func (NodeTemplate_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1143, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1198, 1} } // [Output Only] The status of the operation, which can be one of the @@ -18867,11 +19277,11 @@ func (x Operation_Status) String() string { } func (Operation_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[292].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[299].Descriptor() } func (Operation_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[292] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[299] } func (x Operation_Status) Number() protoreflect.EnumNumber { @@ -18880,7 +19290,7 @@ func (x Operation_Status) Number() protoreflect.EnumNumber { // Deprecated: Use Operation_Status.Descriptor instead. func (Operation_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1157, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1212, 0} } // From how long ago in the past these intervals were observed. @@ -18925,11 +19335,11 @@ func (x PacketIntervals_Duration) String() string { } func (PacketIntervals_Duration) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[293].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[300].Descriptor() } func (PacketIntervals_Duration) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[293] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[300] } func (x PacketIntervals_Duration) Number() protoreflect.EnumNumber { @@ -18938,7 +19348,7 @@ func (x PacketIntervals_Duration) Number() protoreflect.EnumNumber { // Deprecated: Use PacketIntervals_Duration.Descriptor instead. func (PacketIntervals_Duration) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1163, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1218, 0} } // The type of packets for which inter-packet intervals were computed. @@ -18986,11 +19396,11 @@ func (x PacketIntervals_Type) String() string { } func (PacketIntervals_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[294].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[301].Descriptor() } func (PacketIntervals_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[294] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[301] } func (x PacketIntervals_Type) Number() protoreflect.EnumNumber { @@ -18999,7 +19409,7 @@ func (x PacketIntervals_Type) Number() protoreflect.EnumNumber { // Deprecated: Use PacketIntervals_Type.Descriptor instead. func (PacketIntervals_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1163, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1218, 1} } // Indicates whether or not this packet mirroring takes effect. @@ -19041,11 +19451,11 @@ func (x PacketMirroring_Enable) String() string { } func (PacketMirroring_Enable) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[295].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[302].Descriptor() } func (PacketMirroring_Enable) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[295] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[302] } func (x PacketMirroring_Enable) Number() protoreflect.EnumNumber { @@ -19054,7 +19464,7 @@ func (x PacketMirroring_Enable) Number() protoreflect.EnumNumber { // Deprecated: Use PacketMirroring_Enable.Descriptor instead. func (PacketMirroring_Enable) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1164, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1219, 0} } // Direction of traffic to mirror, either INGRESS, EGRESS, or BOTH. @@ -19099,11 +19509,11 @@ func (x PacketMirroringFilter_Direction) String() string { } func (PacketMirroringFilter_Direction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[296].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[303].Descriptor() } func (PacketMirroringFilter_Direction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[296] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[303] } func (x PacketMirroringFilter_Direction) Number() protoreflect.EnumNumber { @@ -19112,7 +19522,7 @@ func (x PacketMirroringFilter_Direction) Number() protoreflect.EnumNumber { // Deprecated: Use PacketMirroringFilter_Direction.Descriptor instead. func (PacketMirroringFilter_Direction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1166, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1221, 0} } // The status of applying this per-instance configuration on the corresponding @@ -19176,11 +19586,11 @@ func (x PerInstanceConfig_Status) String() string { } func (PerInstanceConfig_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[297].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[304].Descriptor() } func (PerInstanceConfig_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[297] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[304] } func (x PerInstanceConfig_Status) Number() protoreflect.EnumNumber { @@ -19189,7 +19599,7 @@ func (x PerInstanceConfig_Status) Number() protoreflect.EnumNumber { // Deprecated: Use PerInstanceConfig_Status.Descriptor instead. func (PerInstanceConfig_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1237, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1294, 0} } // These stateful disks will never be deleted during autohealing, @@ -19232,11 +19642,11 @@ func (x PreservedStatePreservedDisk_AutoDelete) String() string { } func (PreservedStatePreservedDisk_AutoDelete) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[298].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[305].Descriptor() } func (PreservedStatePreservedDisk_AutoDelete) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[298] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[305] } func (x PreservedStatePreservedDisk_AutoDelete) Number() protoreflect.EnumNumber { @@ -19245,7 +19655,7 @@ func (x PreservedStatePreservedDisk_AutoDelete) Number() protoreflect.EnumNumber // Deprecated: Use PreservedStatePreservedDisk_AutoDelete.Descriptor instead. func (PreservedStatePreservedDisk_AutoDelete) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1246, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1303, 0} } // The mode in which to attach this disk, either READ_WRITE orREAD_ONLY. If not specified, the default is to attach the @@ -19288,11 +19698,11 @@ func (x PreservedStatePreservedDisk_Mode) String() string { } func (PreservedStatePreservedDisk_Mode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[299].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[306].Descriptor() } func (PreservedStatePreservedDisk_Mode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[299] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[306] } func (x PreservedStatePreservedDisk_Mode) Number() protoreflect.EnumNumber { @@ -19301,7 +19711,7 @@ func (x PreservedStatePreservedDisk_Mode) Number() protoreflect.EnumNumber { // Deprecated: Use PreservedStatePreservedDisk_Mode.Descriptor instead. func (PreservedStatePreservedDisk_Mode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1246, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1303, 1} } // These stateful IPs will never be released during autohealing, @@ -19343,11 +19753,11 @@ func (x PreservedStatePreservedNetworkIp_AutoDelete) String() string { } func (PreservedStatePreservedNetworkIp_AutoDelete) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[300].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[307].Descriptor() } func (PreservedStatePreservedNetworkIp_AutoDelete) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[300] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[307] } func (x PreservedStatePreservedNetworkIp_AutoDelete) Number() protoreflect.EnumNumber { @@ -19356,7 +19766,7 @@ func (x PreservedStatePreservedNetworkIp_AutoDelete) Number() protoreflect.EnumN // Deprecated: Use PreservedStatePreservedNetworkIp_AutoDelete.Descriptor instead. func (PreservedStatePreservedNetworkIp_AutoDelete) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1247, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1304, 0} } // Specifies whether the feature is enabled or disabled. @@ -19397,11 +19807,11 @@ func (x PreviewFeature_ActivationStatus) String() string { } func (PreviewFeature_ActivationStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[301].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[308].Descriptor() } func (PreviewFeature_ActivationStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[301] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[308] } func (x PreviewFeature_ActivationStatus) Number() protoreflect.EnumNumber { @@ -19410,7 +19820,7 @@ func (x PreviewFeature_ActivationStatus) Number() protoreflect.EnumNumber { // Deprecated: Use PreviewFeature_ActivationStatus.Descriptor instead. func (PreviewFeature_ActivationStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1249, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1306, 0} } // Predefined rollout plan. @@ -19451,11 +19861,11 @@ func (x PreviewFeatureRolloutOperationRolloutInput_PredefinedRolloutPlan) String } func (PreviewFeatureRolloutOperationRolloutInput_PredefinedRolloutPlan) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[302].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[309].Descriptor() } func (PreviewFeatureRolloutOperationRolloutInput_PredefinedRolloutPlan) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[302] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[309] } func (x PreviewFeatureRolloutOperationRolloutInput_PredefinedRolloutPlan) Number() protoreflect.EnumNumber { @@ -19464,7 +19874,7 @@ func (x PreviewFeatureRolloutOperationRolloutInput_PredefinedRolloutPlan) Number // Deprecated: Use PreviewFeatureRolloutOperationRolloutInput_PredefinedRolloutPlan.Descriptor instead. func (PreviewFeatureRolloutOperationRolloutInput_PredefinedRolloutPlan) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1252, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1309, 0} } // Output only. [Output Only] The stage of the feature. @@ -19508,11 +19918,11 @@ func (x PreviewFeatureStatusReleaseStatus_Stage) String() string { } func (PreviewFeatureStatusReleaseStatus_Stage) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[303].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[310].Descriptor() } func (PreviewFeatureStatusReleaseStatus_Stage) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[303] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[310] } func (x PreviewFeatureStatusReleaseStatus_Stage) Number() protoreflect.EnumNumber { @@ -19521,7 +19931,7 @@ func (x PreviewFeatureStatusReleaseStatus_Stage) Number() protoreflect.EnumNumbe // Deprecated: Use PreviewFeatureStatusReleaseStatus_Stage.Descriptor instead. func (PreviewFeatureStatusReleaseStatus_Stage) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1254, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1311, 0} } // Output only. [Output Only] The Cloud Armor tier for this project. It can be one of the @@ -19568,11 +19978,11 @@ func (x Project_CloudArmorTier) String() string { } func (Project_CloudArmorTier) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[304].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[311].Descriptor() } func (Project_CloudArmorTier) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[304] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[311] } func (x Project_CloudArmorTier) Number() protoreflect.EnumNumber { @@ -19581,7 +19991,7 @@ func (x Project_CloudArmorTier) Number() protoreflect.EnumNumber { // Deprecated: Use Project_CloudArmorTier.Descriptor instead. func (Project_CloudArmorTier) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1256, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1313, 0} } // This signifies the default network tier used for configuring resources of @@ -19634,11 +20044,11 @@ func (x Project_DefaultNetworkTier) String() string { } func (Project_DefaultNetworkTier) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[305].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[312].Descriptor() } func (Project_DefaultNetworkTier) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[305] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[312] } func (x Project_DefaultNetworkTier) Number() protoreflect.EnumNumber { @@ -19647,7 +20057,7 @@ func (x Project_DefaultNetworkTier) Number() protoreflect.EnumNumber { // Deprecated: Use Project_DefaultNetworkTier.Descriptor instead. func (Project_DefaultNetworkTier) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1256, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1313, 1} } // Output only. [Output Only] Default internal DNS setting used by VMs running in @@ -19692,11 +20102,11 @@ func (x Project_VmDnsSetting) String() string { } func (Project_VmDnsSetting) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[306].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[313].Descriptor() } func (Project_VmDnsSetting) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[306] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[313] } func (x Project_VmDnsSetting) Number() protoreflect.EnumNumber { @@ -19705,7 +20115,7 @@ func (x Project_VmDnsSetting) Number() protoreflect.EnumNumber { // Deprecated: Use Project_VmDnsSetting.Descriptor instead. func (Project_VmDnsSetting) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1256, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1313, 2} } // [Output Only] The role this project has in a shared VPC configuration. @@ -19745,11 +20155,11 @@ func (x Project_XpnProjectStatus) String() string { } func (Project_XpnProjectStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[307].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[314].Descriptor() } func (Project_XpnProjectStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[307] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[314] } func (x Project_XpnProjectStatus) Number() protoreflect.EnumNumber { @@ -19758,7 +20168,7 @@ func (x Project_XpnProjectStatus) Number() protoreflect.EnumNumber { // Deprecated: Use Project_XpnProjectStatus.Descriptor instead. func (Project_XpnProjectStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1256, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1313, 3} } // Managed protection tier to be set. @@ -19802,11 +20212,11 @@ func (x ProjectsSetCloudArmorTierRequest_CloudArmorTier) String() string { } func (ProjectsSetCloudArmorTierRequest_CloudArmorTier) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[308].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[315].Descriptor() } func (ProjectsSetCloudArmorTierRequest_CloudArmorTier) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[308] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[315] } func (x ProjectsSetCloudArmorTierRequest_CloudArmorTier) Number() protoreflect.EnumNumber { @@ -19815,7 +20225,7 @@ func (x ProjectsSetCloudArmorTierRequest_CloudArmorTier) Number() protoreflect.E // Deprecated: Use ProjectsSetCloudArmorTierRequest_CloudArmorTier.Descriptor instead. func (ProjectsSetCloudArmorTierRequest_CloudArmorTier) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1261, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1318, 0} } // Default network tier to be set. @@ -19866,11 +20276,11 @@ func (x ProjectsSetDefaultNetworkTierRequest_NetworkTier) String() string { } func (ProjectsSetDefaultNetworkTierRequest_NetworkTier) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[309].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[316].Descriptor() } func (ProjectsSetDefaultNetworkTierRequest_NetworkTier) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[309] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[316] } func (x ProjectsSetDefaultNetworkTierRequest_NetworkTier) Number() protoreflect.EnumNumber { @@ -19879,7 +20289,7 @@ func (x ProjectsSetDefaultNetworkTierRequest_NetworkTier) Number() protoreflect. // Deprecated: Use ProjectsSetDefaultNetworkTierRequest_NetworkTier.Descriptor instead. func (ProjectsSetDefaultNetworkTierRequest_NetworkTier) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1262, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1319, 0} } // Output only. [Output Only] The version of BYOIP API. @@ -19923,11 +20333,11 @@ func (x PublicAdvertisedPrefix_ByoipApiVersion) String() string { } func (PublicAdvertisedPrefix_ByoipApiVersion) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[310].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[317].Descriptor() } func (PublicAdvertisedPrefix_ByoipApiVersion) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[310] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[317] } func (x PublicAdvertisedPrefix_ByoipApiVersion) Number() protoreflect.EnumNumber { @@ -19936,7 +20346,7 @@ func (x PublicAdvertisedPrefix_ByoipApiVersion) Number() protoreflect.EnumNumber // Deprecated: Use PublicAdvertisedPrefix_ByoipApiVersion.Descriptor instead. func (PublicAdvertisedPrefix_ByoipApiVersion) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1263, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1320, 0} } // The internet access type for IPv6 Public Advertised Prefixes. @@ -19980,11 +20390,11 @@ func (x PublicAdvertisedPrefix_Ipv6AccessType) String() string { } func (PublicAdvertisedPrefix_Ipv6AccessType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[311].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[318].Descriptor() } func (PublicAdvertisedPrefix_Ipv6AccessType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[311] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[318] } func (x PublicAdvertisedPrefix_Ipv6AccessType) Number() protoreflect.EnumNumber { @@ -19993,7 +20403,7 @@ func (x PublicAdvertisedPrefix_Ipv6AccessType) Number() protoreflect.EnumNumber // Deprecated: Use PublicAdvertisedPrefix_Ipv6AccessType.Descriptor instead. func (PublicAdvertisedPrefix_Ipv6AccessType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1263, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1320, 1} } // Specifies how child public delegated prefix will be scoped. It could @@ -20049,11 +20459,11 @@ func (x PublicAdvertisedPrefix_PdpScope) String() string { } func (PublicAdvertisedPrefix_PdpScope) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[312].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[319].Descriptor() } func (PublicAdvertisedPrefix_PdpScope) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[312] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[319] } func (x PublicAdvertisedPrefix_PdpScope) Number() protoreflect.EnumNumber { @@ -20062,7 +20472,7 @@ func (x PublicAdvertisedPrefix_PdpScope) Number() protoreflect.EnumNumber { // Deprecated: Use PublicAdvertisedPrefix_PdpScope.Descriptor instead. func (PublicAdvertisedPrefix_PdpScope) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1263, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1320, 2} } // The status of the public advertised prefix. Possible values include: @@ -20139,11 +20549,11 @@ func (x PublicAdvertisedPrefix_Status) String() string { } func (PublicAdvertisedPrefix_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[313].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[320].Descriptor() } func (PublicAdvertisedPrefix_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[313] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[320] } func (x PublicAdvertisedPrefix_Status) Number() protoreflect.EnumNumber { @@ -20152,7 +20562,7 @@ func (x PublicAdvertisedPrefix_Status) Number() protoreflect.EnumNumber { // Deprecated: Use PublicAdvertisedPrefix_Status.Descriptor instead. func (PublicAdvertisedPrefix_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1263, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1320, 3} } // Output only. [Output Only] The version of BYOIP API. @@ -20195,11 +20605,11 @@ func (x PublicDelegatedPrefix_ByoipApiVersion) String() string { } func (PublicDelegatedPrefix_ByoipApiVersion) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[314].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[321].Descriptor() } func (PublicDelegatedPrefix_ByoipApiVersion) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[314] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[321] } func (x PublicDelegatedPrefix_ByoipApiVersion) Number() protoreflect.EnumNumber { @@ -20208,7 +20618,7 @@ func (x PublicDelegatedPrefix_ByoipApiVersion) Number() protoreflect.EnumNumber // Deprecated: Use PublicDelegatedPrefix_ByoipApiVersion.Descriptor instead. func (PublicDelegatedPrefix_ByoipApiVersion) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1266, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1323, 0} } // Output only. [Output Only] The internet access type for IPv6 Public Delegated Prefixes. @@ -20253,11 +20663,11 @@ func (x PublicDelegatedPrefix_Ipv6AccessType) String() string { } func (PublicDelegatedPrefix_Ipv6AccessType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[315].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[322].Descriptor() } func (PublicDelegatedPrefix_Ipv6AccessType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[315] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[322] } func (x PublicDelegatedPrefix_Ipv6AccessType) Number() protoreflect.EnumNumber { @@ -20266,7 +20676,7 @@ func (x PublicDelegatedPrefix_Ipv6AccessType) Number() protoreflect.EnumNumber { // Deprecated: Use PublicDelegatedPrefix_Ipv6AccessType.Descriptor instead. func (PublicDelegatedPrefix_Ipv6AccessType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1266, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1323, 1} } // The public delegated prefix mode for IPv6 only. @@ -20322,11 +20732,11 @@ func (x PublicDelegatedPrefix_Mode) String() string { } func (PublicDelegatedPrefix_Mode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[316].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[323].Descriptor() } func (PublicDelegatedPrefix_Mode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[316] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[323] } func (x PublicDelegatedPrefix_Mode) Number() protoreflect.EnumNumber { @@ -20335,7 +20745,7 @@ func (x PublicDelegatedPrefix_Mode) Number() protoreflect.EnumNumber { // Deprecated: Use PublicDelegatedPrefix_Mode.Descriptor instead. func (PublicDelegatedPrefix_Mode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1266, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1323, 2} } // [Output Only] The status of the public delegated prefix, which can be one @@ -20407,11 +20817,11 @@ func (x PublicDelegatedPrefix_Status) String() string { } func (PublicDelegatedPrefix_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[317].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[324].Descriptor() } func (PublicDelegatedPrefix_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[317] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[324] } func (x PublicDelegatedPrefix_Status) Number() protoreflect.EnumNumber { @@ -20420,7 +20830,7 @@ func (x PublicDelegatedPrefix_Status) Number() protoreflect.EnumNumber { // Deprecated: Use PublicDelegatedPrefix_Status.Descriptor instead. func (PublicDelegatedPrefix_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1266, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1323, 3} } // Output only. [Output Only] The internet access type for IPv6 Public Delegated Sub @@ -20465,11 +20875,11 @@ func (x PublicDelegatedPrefixPublicDelegatedSubPrefix_Ipv6AccessType) String() s } func (PublicDelegatedPrefixPublicDelegatedSubPrefix_Ipv6AccessType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[318].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[325].Descriptor() } func (PublicDelegatedPrefixPublicDelegatedSubPrefix_Ipv6AccessType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[318] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[325] } func (x PublicDelegatedPrefixPublicDelegatedSubPrefix_Ipv6AccessType) Number() protoreflect.EnumNumber { @@ -20478,7 +20888,7 @@ func (x PublicDelegatedPrefixPublicDelegatedSubPrefix_Ipv6AccessType) Number() p // Deprecated: Use PublicDelegatedPrefixPublicDelegatedSubPrefix_Ipv6AccessType.Descriptor instead. func (PublicDelegatedPrefixPublicDelegatedSubPrefix_Ipv6AccessType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1269, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1326, 0} } // The PublicDelegatedSubPrefix mode for IPv6 only. @@ -20534,11 +20944,11 @@ func (x PublicDelegatedPrefixPublicDelegatedSubPrefix_Mode) String() string { } func (PublicDelegatedPrefixPublicDelegatedSubPrefix_Mode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[319].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[326].Descriptor() } func (PublicDelegatedPrefixPublicDelegatedSubPrefix_Mode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[319] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[326] } func (x PublicDelegatedPrefixPublicDelegatedSubPrefix_Mode) Number() protoreflect.EnumNumber { @@ -20547,7 +20957,7 @@ func (x PublicDelegatedPrefixPublicDelegatedSubPrefix_Mode) Number() protoreflec // Deprecated: Use PublicDelegatedPrefixPublicDelegatedSubPrefix_Mode.Descriptor instead. func (PublicDelegatedPrefixPublicDelegatedSubPrefix_Mode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1269, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1326, 1} } // Output only. [Output Only] The status of the sub public delegated prefix. @@ -20585,11 +20995,11 @@ func (x PublicDelegatedPrefixPublicDelegatedSubPrefix_Status) String() string { } func (PublicDelegatedPrefixPublicDelegatedSubPrefix_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[320].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[327].Descriptor() } func (PublicDelegatedPrefixPublicDelegatedSubPrefix_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[320] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[327] } func (x PublicDelegatedPrefixPublicDelegatedSubPrefix_Status) Number() protoreflect.EnumNumber { @@ -20598,7 +21008,7 @@ func (x PublicDelegatedPrefixPublicDelegatedSubPrefix_Status) Number() protorefl // Deprecated: Use PublicDelegatedPrefixPublicDelegatedSubPrefix_Status.Descriptor instead. func (PublicDelegatedPrefixPublicDelegatedSubPrefix_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1269, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1326, 2} } // [Output Only] Name of the quota metric. @@ -21124,11 +21534,11 @@ func (x Quota_Metric) String() string { } func (Quota_Metric) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[321].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[328].Descriptor() } func (Quota_Metric) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[321] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[328] } func (x Quota_Metric) Number() protoreflect.EnumNumber { @@ -21137,7 +21547,7 @@ func (x Quota_Metric) Number() protoreflect.EnumNumber { // Deprecated: Use Quota_Metric.Descriptor instead. func (Quota_Metric) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1271, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1328, 0} } // Rollout status of the future quota limit. @@ -21179,11 +21589,11 @@ func (x QuotaExceededInfo_RolloutStatus) String() string { } func (QuotaExceededInfo_RolloutStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[322].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[329].Descriptor() } func (QuotaExceededInfo_RolloutStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[322] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[329] } func (x QuotaExceededInfo_RolloutStatus) Number() protoreflect.EnumNumber { @@ -21192,7 +21602,7 @@ func (x QuotaExceededInfo_RolloutStatus) Number() protoreflect.EnumNumber { // Deprecated: Use QuotaExceededInfo_RolloutStatus.Descriptor instead. func (QuotaExceededInfo_RolloutStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1272, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1329, 0} } // [Output Only] A warning code, if applicable. For example, Compute @@ -21358,11 +21768,11 @@ func (x QuotaStatusWarning_Code) String() string { } func (QuotaStatusWarning_Code) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[323].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[330].Descriptor() } func (QuotaStatusWarning_Code) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[323] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[330] } func (x QuotaStatusWarning_Code) Number() protoreflect.EnumNumber { @@ -21371,7 +21781,7 @@ func (x QuotaStatusWarning_Code) Number() protoreflect.EnumNumber { // Deprecated: Use QuotaStatusWarning_Code.Descriptor instead. func (QuotaStatusWarning_Code) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1273, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1330, 0} } // The format used to encode and transmit the block device, which should beTAR. This is just a container and transmission format and not @@ -21407,11 +21817,11 @@ func (x RawDisk_ContainerType) String() string { } func (RawDisk_ContainerType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[324].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[331].Descriptor() } func (RawDisk_ContainerType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[324] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[331] } func (x RawDisk_ContainerType) Number() protoreflect.EnumNumber { @@ -21420,7 +21830,7 @@ func (x RawDisk_ContainerType) Number() protoreflect.EnumNumber { // Deprecated: Use RawDisk_ContainerType.Descriptor instead. func (RawDisk_ContainerType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1274, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1331, 0} } // [Output Only] Status of the region, either UP orDOWN. @@ -21458,11 +21868,11 @@ func (x Region_Status) String() string { } func (Region_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[325].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[332].Descriptor() } func (Region_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[325] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[332] } func (x Region_Status) Number() protoreflect.EnumNumber { @@ -21471,7 +21881,7 @@ func (x Region_Status) Number() protoreflect.EnumNumber { // Deprecated: Use Region_Status.Descriptor instead. func (Region_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1278, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1335, 0} } // The minimal action that you want to perform on each instance during the @@ -21522,11 +21932,11 @@ func (x RegionInstanceGroupManagersApplyUpdatesRequest_MinimalAction) String() s } func (RegionInstanceGroupManagersApplyUpdatesRequest_MinimalAction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[326].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[333].Descriptor() } func (RegionInstanceGroupManagersApplyUpdatesRequest_MinimalAction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[326] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[333] } func (x RegionInstanceGroupManagersApplyUpdatesRequest_MinimalAction) Number() protoreflect.EnumNumber { @@ -21535,7 +21945,7 @@ func (x RegionInstanceGroupManagersApplyUpdatesRequest_MinimalAction) Number() p // Deprecated: Use RegionInstanceGroupManagersApplyUpdatesRequest_MinimalAction.Descriptor instead. func (RegionInstanceGroupManagersApplyUpdatesRequest_MinimalAction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1292, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1351, 0} } // The most disruptive action that you want to perform on each instance during @@ -21584,11 +21994,11 @@ func (x RegionInstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedActi } func (RegionInstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[327].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[334].Descriptor() } func (RegionInstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[327] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[334] } func (x RegionInstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction) Number() protoreflect.EnumNumber { @@ -21597,7 +22007,7 @@ func (x RegionInstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedActi // Deprecated: Use RegionInstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction.Descriptor instead. func (RegionInstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1292, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1351, 1} } // Instances in which state should be returned. Valid options are: @@ -21638,11 +22048,11 @@ func (x RegionInstanceGroupsListInstancesRequest_InstanceState) String() string } func (RegionInstanceGroupsListInstancesRequest_InstanceState) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[328].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[335].Descriptor() } func (RegionInstanceGroupsListInstancesRequest_InstanceState) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[328] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[335] } func (x RegionInstanceGroupsListInstancesRequest_InstanceState) Number() protoreflect.EnumNumber { @@ -21651,7 +22061,7 @@ func (x RegionInstanceGroupsListInstancesRequest_InstanceState) Number() protore // Deprecated: Use RegionInstanceGroupsListInstancesRequest_InstanceState.Descriptor instead. func (RegionInstanceGroupsListInstancesRequest_InstanceState) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1306, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1365, 0} } // Output only. [Output Only] The type of the firewall policy. Can be one of HIERARCHY, @@ -21702,11 +22112,11 @@ func (x RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirew } func (RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[329].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[336].Descriptor() } func (RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[329] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[336] } func (x RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) Number() protoreflect.EnumNumber { @@ -21715,7 +22125,58 @@ func (x RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirew // Deprecated: Use RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type.Descriptor instead. func (RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1312, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1371, 0} +} + +type Reservation_ConfidentialComputeType int32 + +const ( + // A value indicating that the enum field is not set. + Reservation_UNDEFINED_CONFIDENTIAL_COMPUTE_TYPE Reservation_ConfidentialComputeType = 0 + // Intel Trust Domain Extensions. + Reservation_CONFIDENTIAL_COMPUTE_TYPE_TDX Reservation_ConfidentialComputeType = 301241954 + Reservation_CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED Reservation_ConfidentialComputeType = 42227601 +) + +// Enum value maps for Reservation_ConfidentialComputeType. +var ( + Reservation_ConfidentialComputeType_name = map[int32]string{ + 0: "UNDEFINED_CONFIDENTIAL_COMPUTE_TYPE", + 301241954: "CONFIDENTIAL_COMPUTE_TYPE_TDX", + 42227601: "CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED", + } + Reservation_ConfidentialComputeType_value = map[string]int32{ + "UNDEFINED_CONFIDENTIAL_COMPUTE_TYPE": 0, + "CONFIDENTIAL_COMPUTE_TYPE_TDX": 301241954, + "CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED": 42227601, + } +) + +func (x Reservation_ConfidentialComputeType) Enum() *Reservation_ConfidentialComputeType { + p := new(Reservation_ConfidentialComputeType) + *p = x + return p +} + +func (x Reservation_ConfidentialComputeType) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (Reservation_ConfidentialComputeType) Descriptor() protoreflect.EnumDescriptor { + return file_google_cloud_compute_v1_compute_proto_enumTypes[337].Descriptor() +} + +func (Reservation_ConfidentialComputeType) Type() protoreflect.EnumType { + return &file_google_cloud_compute_v1_compute_proto_enumTypes[337] +} + +func (x Reservation_ConfidentialComputeType) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use Reservation_ConfidentialComputeType.Descriptor instead. +func (Reservation_ConfidentialComputeType) EnumDescriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1399, 0} } // Specifies the deployment strategy for this reservation. @@ -21754,11 +22215,11 @@ func (x Reservation_DeploymentType) String() string { } func (Reservation_DeploymentType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[330].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[338].Descriptor() } func (Reservation_DeploymentType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[330] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[338] } func (x Reservation_DeploymentType) Number() protoreflect.EnumNumber { @@ -21767,7 +22228,7 @@ func (x Reservation_DeploymentType) Number() protoreflect.EnumNumber { // Deprecated: Use Reservation_DeploymentType.Descriptor instead. func (Reservation_DeploymentType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1339, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1399, 1} } // Indicates the early access maintenance for the reservation. @@ -21813,11 +22274,11 @@ func (x Reservation_EarlyAccessMaintenance) String() string { } func (Reservation_EarlyAccessMaintenance) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[331].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[339].Descriptor() } func (Reservation_EarlyAccessMaintenance) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[331] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[339] } func (x Reservation_EarlyAccessMaintenance) Number() protoreflect.EnumNumber { @@ -21826,7 +22287,7 @@ func (x Reservation_EarlyAccessMaintenance) Number() protoreflect.EnumNumber { // Deprecated: Use Reservation_EarlyAccessMaintenance.Descriptor instead. func (Reservation_EarlyAccessMaintenance) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1339, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1399, 2} } // Protection tier for the workload which specifies the workload expectations @@ -21880,11 +22341,11 @@ func (x Reservation_ProtectionTier) String() string { } func (Reservation_ProtectionTier) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[332].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[340].Descriptor() } func (Reservation_ProtectionTier) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[332] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[340] } func (x Reservation_ProtectionTier) Number() protoreflect.EnumNumber { @@ -21893,7 +22354,7 @@ func (x Reservation_ProtectionTier) Number() protoreflect.EnumNumber { // Deprecated: Use Reservation_ProtectionTier.Descriptor instead. func (Reservation_ProtectionTier) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1339, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1399, 3} } // The type of maintenance for the reservation. @@ -21938,11 +22399,11 @@ func (x Reservation_SchedulingType) String() string { } func (Reservation_SchedulingType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[333].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[341].Descriptor() } func (Reservation_SchedulingType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[333] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[341] } func (x Reservation_SchedulingType) Number() protoreflect.EnumNumber { @@ -21951,7 +22412,7 @@ func (x Reservation_SchedulingType) Number() protoreflect.EnumNumber { // Deprecated: Use Reservation_SchedulingType.Descriptor instead. func (Reservation_SchedulingType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1339, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1399, 4} } // Output only. [Output Only] The status of the reservation. @@ -22010,11 +22471,11 @@ func (x Reservation_Status) String() string { } func (Reservation_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[334].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[342].Descriptor() } func (Reservation_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[334] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[342] } func (x Reservation_Status) Number() protoreflect.EnumNumber { @@ -22023,7 +22484,7 @@ func (x Reservation_Status) Number() protoreflect.EnumNumber { // Deprecated: Use Reservation_Status.Descriptor instead. func (Reservation_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1339, 4} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1399, 5} } // Indicates chosen reservation operational mode for the reservation. @@ -22068,11 +22529,11 @@ func (x ReservationAdvancedDeploymentControl_ReservationOperationalMode) String( } func (ReservationAdvancedDeploymentControl_ReservationOperationalMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[335].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[343].Descriptor() } func (ReservationAdvancedDeploymentControl_ReservationOperationalMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[335] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[343] } func (x ReservationAdvancedDeploymentControl_ReservationOperationalMode) Number() protoreflect.EnumNumber { @@ -22081,7 +22542,7 @@ func (x ReservationAdvancedDeploymentControl_ReservationOperationalMode) Number( // Deprecated: Use ReservationAdvancedDeploymentControl_ReservationOperationalMode.Descriptor instead. func (ReservationAdvancedDeploymentControl_ReservationOperationalMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1340, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1400, 0} } // Specifies the type of reservation from which this instance can consume @@ -22131,11 +22592,11 @@ func (x ReservationAffinity_ConsumeReservationType) String() string { } func (ReservationAffinity_ConsumeReservationType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[336].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[344].Descriptor() } func (ReservationAffinity_ConsumeReservationType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[336] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[344] } func (x ReservationAffinity_ConsumeReservationType) Number() protoreflect.EnumNumber { @@ -22144,7 +22605,7 @@ func (x ReservationAffinity_ConsumeReservationType) Number() protoreflect.EnumNu // Deprecated: Use ReservationAffinity_ConsumeReservationType.Descriptor instead. func (ReservationAffinity_ConsumeReservationType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1341, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1401, 0} } // Output only. [Output Only] Status of the reservation block. @@ -22191,11 +22652,11 @@ func (x ReservationBlock_Status) String() string { } func (ReservationBlock_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[337].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[345].Descriptor() } func (ReservationBlock_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[337] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[345] } func (x ReservationBlock_Status) Number() protoreflect.EnumNumber { @@ -22204,7 +22665,7 @@ func (x ReservationBlock_Status) Number() protoreflect.EnumNumber { // Deprecated: Use ReservationBlock_Status.Descriptor instead. func (ReservationBlock_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1343, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1403, 0} } // The health status of the reservation block. @@ -22248,11 +22709,11 @@ func (x ReservationBlockHealthInfo_HealthStatus) String() string { } func (ReservationBlockHealthInfo_HealthStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[338].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[346].Descriptor() } func (ReservationBlockHealthInfo_HealthStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[338] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[346] } func (x ReservationBlockHealthInfo_HealthStatus) Number() protoreflect.EnumNumber { @@ -22261,7 +22722,7 @@ func (x ReservationBlockHealthInfo_HealthStatus) Number() protoreflect.EnumNumbe // Deprecated: Use ReservationBlockHealthInfo_HealthStatus.Descriptor instead. func (ReservationBlockHealthInfo_HealthStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1344, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1404, 0} } // Output only. [Output Only] The state of the reservation slot. @@ -22312,11 +22773,11 @@ func (x ReservationSlot_State) String() string { } func (ReservationSlot_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[339].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[347].Descriptor() } func (ReservationSlot_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[339] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[347] } func (x ReservationSlot_State) Number() protoreflect.EnumNumber { @@ -22325,7 +22786,7 @@ func (x ReservationSlot_State) Number() protoreflect.EnumNumber { // Deprecated: Use ReservationSlot_State.Descriptor instead. func (ReservationSlot_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1352, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1412, 0} } type ReservationSlotsGetVersionRequest_SbomSelections int32 @@ -22365,11 +22826,11 @@ func (x ReservationSlotsGetVersionRequest_SbomSelections) String() string { } func (ReservationSlotsGetVersionRequest_SbomSelections) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[340].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[348].Descriptor() } func (ReservationSlotsGetVersionRequest_SbomSelections) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[340] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[348] } func (x ReservationSlotsGetVersionRequest_SbomSelections) Number() protoreflect.EnumNumber { @@ -22378,7 +22839,7 @@ func (x ReservationSlotsGetVersionRequest_SbomSelections) Number() protoreflect. // Deprecated: Use ReservationSlotsGetVersionRequest_SbomSelections.Descriptor instead. func (ReservationSlotsGetVersionRequest_SbomSelections) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1356, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1416, 0} } // Output only. [Output Only] Status of the reservation subBlock. @@ -22425,11 +22886,11 @@ func (x ReservationSubBlock_Status) String() string { } func (ReservationSubBlock_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[341].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[349].Descriptor() } func (ReservationSubBlock_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[341] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[349] } func (x ReservationSubBlock_Status) Number() protoreflect.EnumNumber { @@ -22438,7 +22899,7 @@ func (x ReservationSubBlock_Status) Number() protoreflect.EnumNumber { // Deprecated: Use ReservationSubBlock_Status.Descriptor instead. func (ReservationSubBlock_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1358, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1418, 0} } // The health status of the reservation subBlock. @@ -22482,11 +22943,11 @@ func (x ReservationSubBlockHealthInfo_HealthStatus) String() string { } func (ReservationSubBlockHealthInfo_HealthStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[342].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[350].Descriptor() } func (ReservationSubBlockHealthInfo_HealthStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[342] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[350] } func (x ReservationSubBlockHealthInfo_HealthStatus) Number() protoreflect.EnumNumber { @@ -22495,7 +22956,7 @@ func (x ReservationSubBlockHealthInfo_HealthStatus) Number() protoreflect.EnumNu // Deprecated: Use ReservationSubBlockHealthInfo_HealthStatus.Descriptor instead. func (ReservationSubBlockHealthInfo_HealthStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1359, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1419, 0} } type ReservationSubBlocksGetVersionRequest_SbomSelections int32 @@ -22535,11 +22996,11 @@ func (x ReservationSubBlocksGetVersionRequest_SbomSelections) String() string { } func (ReservationSubBlocksGetVersionRequest_SbomSelections) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[343].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[351].Descriptor() } func (ReservationSubBlocksGetVersionRequest_SbomSelections) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[343] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[351] } func (x ReservationSubBlocksGetVersionRequest_SbomSelections) Number() protoreflect.EnumNumber { @@ -22548,7 +23009,7 @@ func (x ReservationSubBlocksGetVersionRequest_SbomSelections) Number() protorefl // Deprecated: Use ReservationSubBlocksGetVersionRequest_SbomSelections.Descriptor instead. func (ReservationSubBlocksGetVersionRequest_SbomSelections) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1362, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1422, 0} } // The disruption schedule for the subBlock. @@ -22587,11 +23048,11 @@ func (x ReservationSubBlocksReportFaultyRequest_DisruptionSchedule) String() str } func (ReservationSubBlocksReportFaultyRequest_DisruptionSchedule) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[344].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[352].Descriptor() } func (ReservationSubBlocksReportFaultyRequest_DisruptionSchedule) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[344] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[352] } func (x ReservationSubBlocksReportFaultyRequest_DisruptionSchedule) Number() protoreflect.EnumNumber { @@ -22600,7 +23061,7 @@ func (x ReservationSubBlocksReportFaultyRequest_DisruptionSchedule) Number() pro // Deprecated: Use ReservationSubBlocksReportFaultyRequest_DisruptionSchedule.Descriptor instead. func (ReservationSubBlocksReportFaultyRequest_DisruptionSchedule) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1364, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1424, 0} } // The component that experienced the fault. @@ -22643,11 +23104,11 @@ func (x ReservationSubBlocksReportFaultyRequest_FailureComponent) String() strin } func (ReservationSubBlocksReportFaultyRequest_FailureComponent) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[345].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[353].Descriptor() } func (ReservationSubBlocksReportFaultyRequest_FailureComponent) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[345] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[353] } func (x ReservationSubBlocksReportFaultyRequest_FailureComponent) Number() protoreflect.EnumNumber { @@ -22656,7 +23117,7 @@ func (x ReservationSubBlocksReportFaultyRequest_FailureComponent) Number() proto // Deprecated: Use ReservationSubBlocksReportFaultyRequest_FailureComponent.Descriptor instead. func (ReservationSubBlocksReportFaultyRequest_FailureComponent) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1364, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1424, 1} } // The behavior of the fault experienced with the subBlock. @@ -22707,11 +23168,11 @@ func (x ReservationSubBlocksReportFaultyRequestFaultReason_Behavior) String() st } func (ReservationSubBlocksReportFaultyRequestFaultReason_Behavior) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[346].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[354].Descriptor() } func (ReservationSubBlocksReportFaultyRequestFaultReason_Behavior) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[346] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[354] } func (x ReservationSubBlocksReportFaultyRequestFaultReason_Behavior) Number() protoreflect.EnumNumber { @@ -22720,7 +23181,7 @@ func (x ReservationSubBlocksReportFaultyRequestFaultReason_Behavior) Number() pr // Deprecated: Use ReservationSubBlocksReportFaultyRequestFaultReason_Behavior.Descriptor instead. func (ReservationSubBlocksReportFaultyRequestFaultReason_Behavior) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1365, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1425, 0} } // Specifies if all, running or unused hosts are in scope for this request. @@ -22771,11 +23232,11 @@ func (x ReservationsBlocksPerformMaintenanceRequest_MaintenanceScope) String() s } func (ReservationsBlocksPerformMaintenanceRequest_MaintenanceScope) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[347].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[355].Descriptor() } func (ReservationsBlocksPerformMaintenanceRequest_MaintenanceScope) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[347] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[355] } func (x ReservationsBlocksPerformMaintenanceRequest_MaintenanceScope) Number() protoreflect.EnumNumber { @@ -22784,7 +23245,7 @@ func (x ReservationsBlocksPerformMaintenanceRequest_MaintenanceScope) Number() p // Deprecated: Use ReservationsBlocksPerformMaintenanceRequest_MaintenanceScope.Descriptor instead. func (ReservationsBlocksPerformMaintenanceRequest_MaintenanceScope) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1366, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1426, 0} } // Specifies if all, running or unused hosts are in scope for this request. @@ -22835,11 +23296,11 @@ func (x ReservationsPerformMaintenanceRequest_MaintenanceScope) String() string } func (ReservationsPerformMaintenanceRequest_MaintenanceScope) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[348].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[356].Descriptor() } func (ReservationsPerformMaintenanceRequest_MaintenanceScope) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[348] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[356] } func (x ReservationsPerformMaintenanceRequest_MaintenanceScope) Number() protoreflect.EnumNumber { @@ -22848,7 +23309,7 @@ func (x ReservationsPerformMaintenanceRequest_MaintenanceScope) Number() protore // Deprecated: Use ReservationsPerformMaintenanceRequest_MaintenanceScope.Descriptor instead. func (ReservationsPerformMaintenanceRequest_MaintenanceScope) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1367, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1427, 0} } // The type of hardware resource that you want to specify. @@ -22904,11 +23365,11 @@ func (x ResourceCommitment_Type) String() string { } func (ResourceCommitment_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[349].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[357].Descriptor() } func (ResourceCommitment_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[349] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[357] } func (x ResourceCommitment_Type) Number() protoreflect.EnumNumber { @@ -22917,7 +23378,7 @@ func (x ResourceCommitment_Type) Number() protoreflect.EnumNumber { // Deprecated: Use ResourceCommitment_Type.Descriptor instead. func (ResourceCommitment_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1376, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1436, 0} } // Output only. [Output Only] The status of resource policy creation. @@ -22968,11 +23429,11 @@ func (x ResourcePolicy_Status) String() string { } func (ResourcePolicy_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[350].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[358].Descriptor() } func (ResourcePolicy_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[350] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[358] } func (x ResourcePolicy_Status) Number() protoreflect.EnumNumber { @@ -22981,7 +23442,7 @@ func (x ResourcePolicy_Status) Number() protoreflect.EnumNumber { // Deprecated: Use ResourcePolicy_Status.Descriptor instead. func (ResourcePolicy_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1379, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1439, 0} } // Specifies the connection mode for the accelerator topology. If not @@ -23023,11 +23484,11 @@ func (x ResourcePolicyGroupPlacementPolicy_AcceleratorTopologyMode) String() str } func (ResourcePolicyGroupPlacementPolicy_AcceleratorTopologyMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[351].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[359].Descriptor() } func (ResourcePolicyGroupPlacementPolicy_AcceleratorTopologyMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[351] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[359] } func (x ResourcePolicyGroupPlacementPolicy_AcceleratorTopologyMode) Number() protoreflect.EnumNumber { @@ -23036,7 +23497,7 @@ func (x ResourcePolicyGroupPlacementPolicy_AcceleratorTopologyMode) Number() pro // Deprecated: Use ResourcePolicyGroupPlacementPolicy_AcceleratorTopologyMode.Descriptor instead. func (ResourcePolicyGroupPlacementPolicy_AcceleratorTopologyMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1383, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1443, 0} } // Specifies network collocation @@ -23074,11 +23535,11 @@ func (x ResourcePolicyGroupPlacementPolicy_Collocation) String() string { } func (ResourcePolicyGroupPlacementPolicy_Collocation) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[352].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[360].Descriptor() } func (ResourcePolicyGroupPlacementPolicy_Collocation) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[352] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[360] } func (x ResourcePolicyGroupPlacementPolicy_Collocation) Number() protoreflect.EnumNumber { @@ -23087,7 +23548,7 @@ func (x ResourcePolicyGroupPlacementPolicy_Collocation) Number() protoreflect.En // Deprecated: Use ResourcePolicyGroupPlacementPolicy_Collocation.Descriptor instead. func (ResourcePolicyGroupPlacementPolicy_Collocation) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1383, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1443, 1} } // Specifies the behavior to apply to scheduled snapshots when @@ -23129,11 +23590,11 @@ func (x ResourcePolicySnapshotSchedulePolicyRetentionPolicy_OnSourceDiskDelete) } func (ResourcePolicySnapshotSchedulePolicyRetentionPolicy_OnSourceDiskDelete) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[353].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[361].Descriptor() } func (ResourcePolicySnapshotSchedulePolicyRetentionPolicy_OnSourceDiskDelete) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[353] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[361] } func (x ResourcePolicySnapshotSchedulePolicyRetentionPolicy_OnSourceDiskDelete) Number() protoreflect.EnumNumber { @@ -23142,7 +23603,7 @@ func (x ResourcePolicySnapshotSchedulePolicyRetentionPolicy_OnSourceDiskDelete) // Deprecated: Use ResourcePolicySnapshotSchedulePolicyRetentionPolicy_OnSourceDiskDelete.Descriptor instead. func (ResourcePolicySnapshotSchedulePolicyRetentionPolicy_OnSourceDiskDelete) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1391, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1451, 0} } // Defines a schedule that runs on specific days of the week. Specify @@ -23200,11 +23661,11 @@ func (x ResourcePolicyWeeklyCycleDayOfWeek_Day) String() string { } func (ResourcePolicyWeeklyCycleDayOfWeek_Day) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[354].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[362].Descriptor() } func (ResourcePolicyWeeklyCycleDayOfWeek_Day) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[354] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[362] } func (x ResourcePolicyWeeklyCycleDayOfWeek_Day) Number() protoreflect.EnumNumber { @@ -23213,7 +23674,7 @@ func (x ResourcePolicyWeeklyCycleDayOfWeek_Day) Number() protoreflect.EnumNumber // Deprecated: Use ResourcePolicyWeeklyCycleDayOfWeek_Day.Descriptor instead. func (ResourcePolicyWeeklyCycleDayOfWeek_Day) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1395, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1455, 0} } // Specifies the connection mode for the accelerator topology. If not @@ -23255,11 +23716,11 @@ func (x ResourcePolicyWorkloadPolicy_AcceleratorTopologyMode) String() string { } func (ResourcePolicyWorkloadPolicy_AcceleratorTopologyMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[355].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[363].Descriptor() } func (ResourcePolicyWorkloadPolicy_AcceleratorTopologyMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[355] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[363] } func (x ResourcePolicyWorkloadPolicy_AcceleratorTopologyMode) Number() protoreflect.EnumNumber { @@ -23268,7 +23729,7 @@ func (x ResourcePolicyWorkloadPolicy_AcceleratorTopologyMode) Number() protorefl // Deprecated: Use ResourcePolicyWorkloadPolicy_AcceleratorTopologyMode.Descriptor instead. func (ResourcePolicyWorkloadPolicy_AcceleratorTopologyMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1396, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1456, 0} } // Specifies the maximum distance between instances. @@ -23312,11 +23773,11 @@ func (x ResourcePolicyWorkloadPolicy_MaxTopologyDistance) String() string { } func (ResourcePolicyWorkloadPolicy_MaxTopologyDistance) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[356].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[364].Descriptor() } func (ResourcePolicyWorkloadPolicy_MaxTopologyDistance) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[356] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[364] } func (x ResourcePolicyWorkloadPolicy_MaxTopologyDistance) Number() protoreflect.EnumNumber { @@ -23325,7 +23786,7 @@ func (x ResourcePolicyWorkloadPolicy_MaxTopologyDistance) Number() protoreflect. // Deprecated: Use ResourcePolicyWorkloadPolicy_MaxTopologyDistance.Descriptor instead. func (ResourcePolicyWorkloadPolicy_MaxTopologyDistance) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1396, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1456, 1} } // Specifies the intent of the instance placement in the MIG. @@ -23366,11 +23827,11 @@ func (x ResourcePolicyWorkloadPolicy_Type) String() string { } func (ResourcePolicyWorkloadPolicy_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[357].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[365].Descriptor() } func (ResourcePolicyWorkloadPolicy_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[357] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[365] } func (x ResourcePolicyWorkloadPolicy_Type) Number() protoreflect.EnumNumber { @@ -23379,7 +23840,7 @@ func (x ResourcePolicyWorkloadPolicy_Type) Number() protoreflect.EnumNumber { // Deprecated: Use ResourcePolicyWorkloadPolicy_Type.Descriptor instead. func (ResourcePolicyWorkloadPolicy_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1396, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1456, 2} } // Output only. [Output Only] Indicates the origin of the route. Can be IGP @@ -23422,11 +23883,11 @@ func (x Route_NextHopOrigin) String() string { } func (Route_NextHopOrigin) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[358].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[366].Descriptor() } func (Route_NextHopOrigin) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[358] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[366] } func (x Route_NextHopOrigin) Number() protoreflect.EnumNumber { @@ -23435,7 +23896,7 @@ func (x Route_NextHopOrigin) Number() protoreflect.EnumNumber { // Deprecated: Use Route_NextHopOrigin.Descriptor instead. func (Route_NextHopOrigin) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1405, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1465, 0} } // [Output only] The status of the route. This status applies to @@ -23491,11 +23952,11 @@ func (x Route_RouteStatus) String() string { } func (Route_RouteStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[359].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[367].Descriptor() } func (Route_RouteStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[359] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[367] } func (x Route_RouteStatus) Number() protoreflect.EnumNumber { @@ -23504,7 +23965,7 @@ func (x Route_RouteStatus) Number() protoreflect.EnumNumber { // Deprecated: Use Route_RouteStatus.Descriptor instead. func (Route_RouteStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1405, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1465, 1} } // Output only. [Output Only] The type of this route, which can be one of the following @@ -23554,11 +24015,11 @@ func (x Route_RouteType) String() string { } func (Route_RouteType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[360].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[368].Descriptor() } func (Route_RouteType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[360] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[368] } func (x Route_RouteType) Number() protoreflect.EnumNumber { @@ -23567,7 +24028,7 @@ func (x Route_RouteType) Number() protoreflect.EnumNumber { // Deprecated: Use Route_RouteType.Descriptor instead. func (Route_RouteType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1405, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1465, 2} } // [Output Only] The type of the AS Path, which can be one of the following @@ -23622,11 +24083,11 @@ func (x RouteAsPath_PathSegmentType) String() string { } func (RouteAsPath_PathSegmentType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[361].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[369].Descriptor() } func (RouteAsPath_PathSegmentType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[361] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[369] } func (x RouteAsPath_PathSegmentType) Number() protoreflect.EnumNumber { @@ -23635,7 +24096,7 @@ func (x RouteAsPath_PathSegmentType) Number() protoreflect.EnumNumber { // Deprecated: Use RouteAsPath_PathSegmentType.Descriptor instead. func (RouteAsPath_PathSegmentType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1406, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1466, 0} } type RoutePolicy_Type int32 @@ -23674,11 +24135,11 @@ func (x RoutePolicy_Type) String() string { } func (RoutePolicy_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[362].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[370].Descriptor() } func (RoutePolicy_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[362] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[370] } func (x RoutePolicy_Type) Number() protoreflect.EnumNumber { @@ -23687,7 +24148,7 @@ func (x RoutePolicy_Type) Number() protoreflect.EnumNumber { // Deprecated: Use RoutePolicy_Type.Descriptor instead. func (RoutePolicy_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1409, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1469, 0} } // User-specified flag to indicate which mode to use for advertisement. @@ -23726,11 +24187,11 @@ func (x RouterBgp_AdvertiseMode) String() string { } func (RouterBgp_AdvertiseMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[363].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[371].Descriptor() } func (RouterBgp_AdvertiseMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[363] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[371] } func (x RouterBgp_AdvertiseMode) Number() protoreflect.EnumNumber { @@ -23739,7 +24200,7 @@ func (x RouterBgp_AdvertiseMode) Number() protoreflect.EnumNumber { // Deprecated: Use RouterBgp_AdvertiseMode.Descriptor instead. func (RouterBgp_AdvertiseMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1414, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1474, 0} } type RouterBgp_AdvertisedGroups int32 @@ -23774,11 +24235,11 @@ func (x RouterBgp_AdvertisedGroups) String() string { } func (RouterBgp_AdvertisedGroups) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[364].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[372].Descriptor() } func (RouterBgp_AdvertisedGroups) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[364] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[372] } func (x RouterBgp_AdvertisedGroups) Number() protoreflect.EnumNumber { @@ -23787,7 +24248,7 @@ func (x RouterBgp_AdvertisedGroups) Number() protoreflect.EnumNumber { // Deprecated: Use RouterBgp_AdvertisedGroups.Descriptor instead. func (RouterBgp_AdvertisedGroups) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1414, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1474, 1} } // User-specified flag to indicate which mode to use for advertisement. @@ -23825,11 +24286,11 @@ func (x RouterBgpPeer_AdvertiseMode) String() string { } func (RouterBgpPeer_AdvertiseMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[365].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[373].Descriptor() } func (RouterBgpPeer_AdvertiseMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[365] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[373] } func (x RouterBgpPeer_AdvertiseMode) Number() protoreflect.EnumNumber { @@ -23838,7 +24299,7 @@ func (x RouterBgpPeer_AdvertiseMode) Number() protoreflect.EnumNumber { // Deprecated: Use RouterBgpPeer_AdvertiseMode.Descriptor instead. func (RouterBgpPeer_AdvertiseMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1415, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1475, 0} } type RouterBgpPeer_AdvertisedGroups int32 @@ -23873,11 +24334,11 @@ func (x RouterBgpPeer_AdvertisedGroups) String() string { } func (RouterBgpPeer_AdvertisedGroups) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[366].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[374].Descriptor() } func (RouterBgpPeer_AdvertisedGroups) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[366] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[374] } func (x RouterBgpPeer_AdvertisedGroups) Number() protoreflect.EnumNumber { @@ -23886,7 +24347,7 @@ func (x RouterBgpPeer_AdvertisedGroups) Number() protoreflect.EnumNumber { // Deprecated: Use RouterBgpPeer_AdvertisedGroups.Descriptor instead. func (RouterBgpPeer_AdvertisedGroups) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1415, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1475, 1} } // The status of the BGP peer connection. @@ -23929,11 +24390,11 @@ func (x RouterBgpPeer_Enable) String() string { } func (RouterBgpPeer_Enable) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[367].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[375].Descriptor() } func (RouterBgpPeer_Enable) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[367] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[375] } func (x RouterBgpPeer_Enable) Number() protoreflect.EnumNumber { @@ -23942,7 +24403,7 @@ func (x RouterBgpPeer_Enable) Number() protoreflect.EnumNumber { // Deprecated: Use RouterBgpPeer_Enable.Descriptor instead. func (RouterBgpPeer_Enable) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1415, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1475, 2} } // Output only. [Output Only] The resource that configures and manages this BGP peer. @@ -23996,11 +24457,11 @@ func (x RouterBgpPeer_ManagementType) String() string { } func (RouterBgpPeer_ManagementType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[368].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[376].Descriptor() } func (RouterBgpPeer_ManagementType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[368] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[376] } func (x RouterBgpPeer_ManagementType) Number() protoreflect.EnumNumber { @@ -24009,7 +24470,7 @@ func (x RouterBgpPeer_ManagementType) Number() protoreflect.EnumNumber { // Deprecated: Use RouterBgpPeer_ManagementType.Descriptor instead. func (RouterBgpPeer_ManagementType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1415, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1475, 3} } // The BFD session initialization mode for this BGP peer. @@ -24055,11 +24516,11 @@ func (x RouterBgpPeerBfd_SessionInitializationMode) String() string { } func (RouterBgpPeerBfd_SessionInitializationMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[369].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[377].Descriptor() } func (RouterBgpPeerBfd_SessionInitializationMode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[369] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[377] } func (x RouterBgpPeerBfd_SessionInitializationMode) Number() protoreflect.EnumNumber { @@ -24068,7 +24529,7 @@ func (x RouterBgpPeerBfd_SessionInitializationMode) Number() protoreflect.EnumNu // Deprecated: Use RouterBgpPeerBfd_SessionInitializationMode.Descriptor instead. func (RouterBgpPeerBfd_SessionInitializationMode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1416, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1476, 0} } // IP version of this interface. @@ -24106,11 +24567,11 @@ func (x RouterInterface_IpVersion) String() string { } func (RouterInterface_IpVersion) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[370].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[378].Descriptor() } func (RouterInterface_IpVersion) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[370] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[378] } func (x RouterInterface_IpVersion) Number() protoreflect.EnumNumber { @@ -24119,7 +24580,7 @@ func (x RouterInterface_IpVersion) Number() protoreflect.EnumNumber { // Deprecated: Use RouterInterface_IpVersion.Descriptor instead. func (RouterInterface_IpVersion) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1418, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1478, 0} } // Output only. [Output Only] The resource that configures and manages this interface. @@ -24171,11 +24632,11 @@ func (x RouterInterface_ManagementType) String() string { } func (RouterInterface_ManagementType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[371].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[379].Descriptor() } func (RouterInterface_ManagementType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[371] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[379] } func (x RouterInterface_ManagementType) Number() protoreflect.EnumNumber { @@ -24184,7 +24645,7 @@ func (x RouterInterface_ManagementType) Number() protoreflect.EnumNumber { // Deprecated: Use RouterInterface_ManagementType.Descriptor instead. func (RouterInterface_ManagementType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1418, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1478, 1} } // The network tier to use when automatically reserving NAT IP addresses. @@ -24238,11 +24699,11 @@ func (x RouterNat_AutoNetworkTier) String() string { } func (RouterNat_AutoNetworkTier) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[372].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[380].Descriptor() } func (RouterNat_AutoNetworkTier) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[372] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[380] } func (x RouterNat_AutoNetworkTier) Number() protoreflect.EnumNumber { @@ -24251,7 +24712,7 @@ func (x RouterNat_AutoNetworkTier) Number() protoreflect.EnumNumber { // Deprecated: Use RouterNat_AutoNetworkTier.Descriptor instead. func (RouterNat_AutoNetworkTier) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1421, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1481, 0} } type RouterNat_EndpointTypes int32 @@ -24296,11 +24757,11 @@ func (x RouterNat_EndpointTypes) String() string { } func (RouterNat_EndpointTypes) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[373].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[381].Descriptor() } func (RouterNat_EndpointTypes) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[373] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[381] } func (x RouterNat_EndpointTypes) Number() protoreflect.EnumNumber { @@ -24309,7 +24770,7 @@ func (x RouterNat_EndpointTypes) Number() protoreflect.EnumNumber { // Deprecated: Use RouterNat_EndpointTypes.Descriptor instead. func (RouterNat_EndpointTypes) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1421, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1481, 1} } // Specify the NatIpAllocateOption, which can take one of the following @@ -24358,11 +24819,11 @@ func (x RouterNat_NatIpAllocateOption) String() string { } func (RouterNat_NatIpAllocateOption) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[374].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[382].Descriptor() } func (RouterNat_NatIpAllocateOption) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[374] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[382] } func (x RouterNat_NatIpAllocateOption) Number() protoreflect.EnumNumber { @@ -24371,7 +24832,7 @@ func (x RouterNat_NatIpAllocateOption) Number() protoreflect.EnumNumber { // Deprecated: Use RouterNat_NatIpAllocateOption.Descriptor instead. func (RouterNat_NatIpAllocateOption) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1421, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1481, 2} } // Specify the Nat option, which can take one of the following values: @@ -24428,11 +24889,11 @@ func (x RouterNat_SourceSubnetworkIpRangesToNat) String() string { } func (RouterNat_SourceSubnetworkIpRangesToNat) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[375].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[383].Descriptor() } func (RouterNat_SourceSubnetworkIpRangesToNat) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[375] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[383] } func (x RouterNat_SourceSubnetworkIpRangesToNat) Number() protoreflect.EnumNumber { @@ -24441,7 +24902,7 @@ func (x RouterNat_SourceSubnetworkIpRangesToNat) Number() protoreflect.EnumNumbe // Deprecated: Use RouterNat_SourceSubnetworkIpRangesToNat.Descriptor instead. func (RouterNat_SourceSubnetworkIpRangesToNat) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1421, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1481, 3} } // Specify the Nat option for NAT64, which can take one of the following @@ -24496,11 +24957,11 @@ func (x RouterNat_SourceSubnetworkIpRangesToNat64) String() string { } func (RouterNat_SourceSubnetworkIpRangesToNat64) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[376].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[384].Descriptor() } func (RouterNat_SourceSubnetworkIpRangesToNat64) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[376] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[384] } func (x RouterNat_SourceSubnetworkIpRangesToNat64) Number() protoreflect.EnumNumber { @@ -24509,7 +24970,7 @@ func (x RouterNat_SourceSubnetworkIpRangesToNat64) Number() protoreflect.EnumNum // Deprecated: Use RouterNat_SourceSubnetworkIpRangesToNat64.Descriptor instead. func (RouterNat_SourceSubnetworkIpRangesToNat64) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1421, 4} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1481, 4} } // Indicates whether this NAT is used for public or private IP @@ -24551,11 +25012,11 @@ func (x RouterNat_Type) String() string { } func (RouterNat_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[377].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[385].Descriptor() } func (RouterNat_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[377] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[385] } func (x RouterNat_Type) Number() protoreflect.EnumNumber { @@ -24564,7 +25025,7 @@ func (x RouterNat_Type) Number() protoreflect.EnumNumber { // Deprecated: Use RouterNat_Type.Descriptor instead. func (RouterNat_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1421, 5} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1481, 5} } // Specify the desired filtering of logs on this NAT. If unspecified, @@ -24616,11 +25077,11 @@ func (x RouterNatLogConfig_Filter) String() string { } func (RouterNatLogConfig_Filter) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[378].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[386].Descriptor() } func (RouterNatLogConfig_Filter) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[378] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[386] } func (x RouterNatLogConfig_Filter) Number() protoreflect.EnumNumber { @@ -24629,7 +25090,7 @@ func (x RouterNatLogConfig_Filter) Number() protoreflect.EnumNumber { // Deprecated: Use RouterNatLogConfig_Filter.Descriptor instead. func (RouterNatLogConfig_Filter) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1422, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1482, 0} } type RouterNatSubnetworkToNat_SourceIpRangesToNat int32 @@ -24672,11 +25133,11 @@ func (x RouterNatSubnetworkToNat_SourceIpRangesToNat) String() string { } func (RouterNatSubnetworkToNat_SourceIpRangesToNat) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[379].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[387].Descriptor() } func (RouterNatSubnetworkToNat_SourceIpRangesToNat) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[379] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[387] } func (x RouterNatSubnetworkToNat_SourceIpRangesToNat) Number() protoreflect.EnumNumber { @@ -24685,7 +25146,7 @@ func (x RouterNatSubnetworkToNat_SourceIpRangesToNat) Number() protoreflect.Enum // Deprecated: Use RouterNatSubnetworkToNat_SourceIpRangesToNat.Descriptor instead. func (RouterNatSubnetworkToNat_SourceIpRangesToNat) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1425, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1485, 0} } // Output only. Status of the BGP peer: {UP, DOWN} @@ -24726,11 +25187,11 @@ func (x RouterStatusBgpPeerStatus_Status) String() string { } func (RouterStatusBgpPeerStatus_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[380].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[388].Descriptor() } func (RouterStatusBgpPeerStatus_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[380] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[388] } func (x RouterStatusBgpPeerStatus_Status) Number() protoreflect.EnumNumber { @@ -24739,7 +25200,7 @@ func (x RouterStatusBgpPeerStatus_Status) Number() protoreflect.EnumNumber { // Deprecated: Use RouterStatusBgpPeerStatus_Status.Descriptor instead. func (RouterStatusBgpPeerStatus_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1429, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1489, 0} } // Indicates why particular status was returned. @@ -24790,11 +25251,11 @@ func (x RouterStatusBgpPeerStatus_StatusReason) String() string { } func (RouterStatusBgpPeerStatus_StatusReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[381].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[389].Descriptor() } func (RouterStatusBgpPeerStatus_StatusReason) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[381] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[389] } func (x RouterStatusBgpPeerStatus_StatusReason) Number() protoreflect.EnumNumber { @@ -24803,7 +25264,7 @@ func (x RouterStatusBgpPeerStatus_StatusReason) Number() protoreflect.EnumNumber // Deprecated: Use RouterStatusBgpPeerStatus_StatusReason.Descriptor instead. func (RouterStatusBgpPeerStatus_StatusReason) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1429, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1489, 1} } // Specifies how a port is selected for health checking. Can be one of the @@ -24874,11 +25335,11 @@ func (x SSLHealthCheck_PortSpecification) String() string { } func (SSLHealthCheck_PortSpecification) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[382].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[390].Descriptor() } func (SSLHealthCheck_PortSpecification) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[382] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[390] } func (x SSLHealthCheck_PortSpecification) Number() protoreflect.EnumNumber { @@ -24887,7 +25348,7 @@ func (x SSLHealthCheck_PortSpecification) Number() protoreflect.EnumNumber { // Deprecated: Use SSLHealthCheck_PortSpecification.Descriptor instead. func (SSLHealthCheck_PortSpecification) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1438, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1498, 0} } // Specifies the type of proxy header to append before sending data to the @@ -24927,11 +25388,11 @@ func (x SSLHealthCheck_ProxyHeader) String() string { } func (SSLHealthCheck_ProxyHeader) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[383].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[391].Descriptor() } func (SSLHealthCheck_ProxyHeader) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[383] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[391] } func (x SSLHealthCheck_ProxyHeader) Number() protoreflect.EnumNumber { @@ -24940,7 +25401,7 @@ func (x SSLHealthCheck_ProxyHeader) Number() protoreflect.EnumNumber { // Deprecated: Use SSLHealthCheck_ProxyHeader.Descriptor instead. func (SSLHealthCheck_ProxyHeader) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1438, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1498, 1} } // Specifies the disk interface to use for attaching this disk, which is @@ -24979,11 +25440,11 @@ func (x SavedAttachedDisk_Interface) String() string { } func (SavedAttachedDisk_Interface) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[384].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[392].Descriptor() } func (SavedAttachedDisk_Interface) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[384] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[392] } func (x SavedAttachedDisk_Interface) Number() protoreflect.EnumNumber { @@ -24992,7 +25453,7 @@ func (x SavedAttachedDisk_Interface) Number() protoreflect.EnumNumber { // Deprecated: Use SavedAttachedDisk_Interface.Descriptor instead. func (SavedAttachedDisk_Interface) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1439, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1499, 0} } // The mode in which this disk is attached to the source instance, eitherREAD_WRITE or READ_ONLY. @@ -25034,11 +25495,11 @@ func (x SavedAttachedDisk_Mode) String() string { } func (SavedAttachedDisk_Mode) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[385].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[393].Descriptor() } func (SavedAttachedDisk_Mode) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[385] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[393] } func (x SavedAttachedDisk_Mode) Number() protoreflect.EnumNumber { @@ -25047,7 +25508,7 @@ func (x SavedAttachedDisk_Mode) Number() protoreflect.EnumNumber { // Deprecated: Use SavedAttachedDisk_Mode.Descriptor instead. func (SavedAttachedDisk_Mode) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1439, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1499, 1} } // Output only. [Output Only] An indicator whether storageBytes is in a @@ -25089,11 +25550,11 @@ func (x SavedAttachedDisk_StorageBytesStatus) String() string { } func (SavedAttachedDisk_StorageBytesStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[386].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[394].Descriptor() } func (SavedAttachedDisk_StorageBytesStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[386] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[394] } func (x SavedAttachedDisk_StorageBytesStatus) Number() protoreflect.EnumNumber { @@ -25102,7 +25563,7 @@ func (x SavedAttachedDisk_StorageBytesStatus) Number() protoreflect.EnumNumber { // Deprecated: Use SavedAttachedDisk_StorageBytesStatus.Descriptor instead. func (SavedAttachedDisk_StorageBytesStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1439, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1499, 2} } // Specifies the type of the attached disk, either SCRATCH orPERSISTENT. @@ -25140,11 +25601,11 @@ func (x SavedAttachedDisk_Type) String() string { } func (SavedAttachedDisk_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[387].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[395].Descriptor() } func (SavedAttachedDisk_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[387] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[395] } func (x SavedAttachedDisk_Type) Number() protoreflect.EnumNumber { @@ -25153,7 +25614,7 @@ func (x SavedAttachedDisk_Type) Number() protoreflect.EnumNumber { // Deprecated: Use SavedAttachedDisk_Type.Descriptor instead. func (SavedAttachedDisk_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1439, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1499, 3} } // Output only. [Output Only] The architecture of the attached disk. @@ -25197,11 +25658,11 @@ func (x SavedDisk_Architecture) String() string { } func (SavedDisk_Architecture) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[388].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[396].Descriptor() } func (SavedDisk_Architecture) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[388] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[396] } func (x SavedDisk_Architecture) Number() protoreflect.EnumNumber { @@ -25210,7 +25671,7 @@ func (x SavedDisk_Architecture) Number() protoreflect.EnumNumber { // Deprecated: Use SavedDisk_Architecture.Descriptor instead. func (SavedDisk_Architecture) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1440, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1500, 0} } // Output only. [Output Only] An indicator whether storageBytes is in a @@ -25252,11 +25713,11 @@ func (x SavedDisk_StorageBytesStatus) String() string { } func (SavedDisk_StorageBytesStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[389].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[397].Descriptor() } func (SavedDisk_StorageBytesStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[389] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[397] } func (x SavedDisk_StorageBytesStatus) Number() protoreflect.EnumNumber { @@ -25265,7 +25726,7 @@ func (x SavedDisk_StorageBytesStatus) Number() protoreflect.EnumNumber { // Deprecated: Use SavedDisk_StorageBytesStatus.Descriptor instead. func (SavedDisk_StorageBytesStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1440, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1500, 1} } // [Output Only] The current state of a scaling schedule. @@ -25315,11 +25776,11 @@ func (x ScalingScheduleStatus_State) String() string { } func (ScalingScheduleStatus_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[390].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[398].Descriptor() } func (ScalingScheduleStatus_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[390] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[398] } func (x ScalingScheduleStatus_State) Number() protoreflect.EnumNumber { @@ -25328,7 +25789,7 @@ func (x ScalingScheduleStatus_State) Number() protoreflect.EnumNumber { // Deprecated: Use ScalingScheduleStatus_State.Descriptor instead. func (ScalingScheduleStatus_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1441, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1501, 0} } // Specifies the termination action for the instance. @@ -25372,11 +25833,11 @@ func (x Scheduling_InstanceTerminationAction) String() string { } func (Scheduling_InstanceTerminationAction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[391].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[399].Descriptor() } func (Scheduling_InstanceTerminationAction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[391] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[399] } func (x Scheduling_InstanceTerminationAction) Number() protoreflect.EnumNumber { @@ -25385,7 +25846,7 @@ func (x Scheduling_InstanceTerminationAction) Number() protoreflect.EnumNumber { // Deprecated: Use Scheduling_InstanceTerminationAction.Descriptor instead. func (Scheduling_InstanceTerminationAction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1442, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1502, 0} } // Defines the maintenance behavior for this instance. For standard instances, @@ -25436,11 +25897,11 @@ func (x Scheduling_OnHostMaintenance) String() string { } func (Scheduling_OnHostMaintenance) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[392].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[400].Descriptor() } func (Scheduling_OnHostMaintenance) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[392] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[400] } func (x Scheduling_OnHostMaintenance) Number() protoreflect.EnumNumber { @@ -25449,7 +25910,7 @@ func (x Scheduling_OnHostMaintenance) Number() protoreflect.EnumNumber { // Deprecated: Use Scheduling_OnHostMaintenance.Descriptor instead. func (Scheduling_OnHostMaintenance) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1442, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1502, 1} } // Specifies the provisioning model of the instance. @@ -25498,11 +25959,11 @@ func (x Scheduling_ProvisioningModel) String() string { } func (Scheduling_ProvisioningModel) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[393].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[401].Descriptor() } func (Scheduling_ProvisioningModel) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[393] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[401] } func (x Scheduling_ProvisioningModel) Number() protoreflect.EnumNumber { @@ -25511,7 +25972,7 @@ func (x Scheduling_ProvisioningModel) Number() protoreflect.EnumNumber { // Deprecated: Use Scheduling_ProvisioningModel.Descriptor instead. func (Scheduling_ProvisioningModel) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1442, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1502, 2} } // Defines the operation of node selection. Valid operators areIN for affinity and NOT_IN for anti-affinity. @@ -25554,11 +26015,11 @@ func (x SchedulingNodeAffinity_Operator) String() string { } func (SchedulingNodeAffinity_Operator) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[394].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[402].Descriptor() } func (SchedulingNodeAffinity_Operator) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[394] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[402] } func (x SchedulingNodeAffinity_Operator) Number() protoreflect.EnumNumber { @@ -25567,7 +26028,7 @@ func (x SchedulingNodeAffinity_Operator) Number() protoreflect.EnumNumber { // Deprecated: Use SchedulingNodeAffinity_Operator.Descriptor instead. func (SchedulingNodeAffinity_Operator) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1443, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1503, 0} } // The type indicates the intended use of the security policy. @@ -25628,11 +26089,11 @@ func (x SecurityPolicy_Type) String() string { } func (SecurityPolicy_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[395].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[403].Descriptor() } func (SecurityPolicy_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[395] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[403] } func (x SecurityPolicy_Type) Number() protoreflect.EnumNumber { @@ -25641,7 +26102,7 @@ func (x SecurityPolicy_Type) Number() protoreflect.EnumNumber { // Deprecated: Use SecurityPolicy_Type.Descriptor instead. func (SecurityPolicy_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1450, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1510, 0} } // Rule visibility can be one of the following: @@ -25683,11 +26144,11 @@ func (x SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig_RuleVisibi } func (SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig_RuleVisibility) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[396].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[404].Descriptor() } func (SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig_RuleVisibility) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[396] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[404] } func (x SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig_RuleVisibility) Number() protoreflect.EnumNumber { @@ -25696,7 +26157,7 @@ func (x SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig_RuleVisibi // Deprecated: Use SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig_RuleVisibility.Descriptor instead. func (SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig_RuleVisibility) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1452, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1512, 0} } // Type of this configuration. @@ -25737,11 +26198,11 @@ func (x SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdCo } func (SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[397].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[405].Descriptor() } func (SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[397] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[405] } func (x SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig_Type) Number() protoreflect.EnumNumber { @@ -25750,7 +26211,7 @@ func (x SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdCo // Deprecated: Use SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig_Type.Descriptor instead. func (SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1454, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1514, 0} } type SecurityPolicyAdvancedOptionsConfig_JsonParsing int32 @@ -25790,11 +26251,11 @@ func (x SecurityPolicyAdvancedOptionsConfig_JsonParsing) String() string { } func (SecurityPolicyAdvancedOptionsConfig_JsonParsing) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[398].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[406].Descriptor() } func (SecurityPolicyAdvancedOptionsConfig_JsonParsing) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[398] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[406] } func (x SecurityPolicyAdvancedOptionsConfig_JsonParsing) Number() protoreflect.EnumNumber { @@ -25803,7 +26264,7 @@ func (x SecurityPolicyAdvancedOptionsConfig_JsonParsing) Number() protoreflect.E // Deprecated: Use SecurityPolicyAdvancedOptionsConfig_JsonParsing.Descriptor instead. func (SecurityPolicyAdvancedOptionsConfig_JsonParsing) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1455, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1515, 0} } type SecurityPolicyAdvancedOptionsConfig_LogLevel int32 @@ -25840,11 +26301,11 @@ func (x SecurityPolicyAdvancedOptionsConfig_LogLevel) String() string { } func (SecurityPolicyAdvancedOptionsConfig_LogLevel) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[399].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[407].Descriptor() } func (SecurityPolicyAdvancedOptionsConfig_LogLevel) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[399] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[407] } func (x SecurityPolicyAdvancedOptionsConfig_LogLevel) Number() protoreflect.EnumNumber { @@ -25853,7 +26314,7 @@ func (x SecurityPolicyAdvancedOptionsConfig_LogLevel) Number() protoreflect.Enum // Deprecated: Use SecurityPolicyAdvancedOptionsConfig_LogLevel.Descriptor instead. func (SecurityPolicyAdvancedOptionsConfig_LogLevel) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1455, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1515, 1} } type SecurityPolicyDdosProtectionConfig_DdosProtection int32 @@ -25893,11 +26354,11 @@ func (x SecurityPolicyDdosProtectionConfig_DdosProtection) String() string { } func (SecurityPolicyDdosProtectionConfig_DdosProtection) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[400].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[408].Descriptor() } func (SecurityPolicyDdosProtectionConfig_DdosProtection) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[400] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[408] } func (x SecurityPolicyDdosProtectionConfig_DdosProtection) Number() protoreflect.EnumNumber { @@ -25906,7 +26367,7 @@ func (x SecurityPolicyDdosProtectionConfig_DdosProtection) Number() protoreflect // Deprecated: Use SecurityPolicyDdosProtectionConfig_DdosProtection.Descriptor instead. func (SecurityPolicyDdosProtectionConfig_DdosProtection) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1458, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1518, 0} } // Preconfigured versioned expression. @@ -25947,11 +26408,11 @@ func (x SecurityPolicyRuleMatcher_VersionedExpr) String() string { } func (SecurityPolicyRuleMatcher_VersionedExpr) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[401].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[409].Descriptor() } func (SecurityPolicyRuleMatcher_VersionedExpr) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[401] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[409] } func (x SecurityPolicyRuleMatcher_VersionedExpr) Number() protoreflect.EnumNumber { @@ -25960,7 +26421,7 @@ func (x SecurityPolicyRuleMatcher_VersionedExpr) Number() protoreflect.EnumNumbe // Deprecated: Use SecurityPolicyRuleMatcher_VersionedExpr.Descriptor instead. func (SecurityPolicyRuleMatcher_VersionedExpr) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1465, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1525, 0} } // The match operator for the field. @@ -26016,11 +26477,11 @@ func (x SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams_Op) String( } func (SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams_Op) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[402].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[410].Descriptor() } func (SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams_Op) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[402] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[410] } func (x SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams_Op) Number() protoreflect.EnumNumber { @@ -26029,7 +26490,7 @@ func (x SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams_Op) Number( // Deprecated: Use SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams_Op.Descriptor instead. func (SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams_Op) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1473, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1533, 0} } // Determines the key to enforce the rate_limit_threshold on. Possible @@ -26135,11 +26596,11 @@ func (x SecurityPolicyRuleRateLimitOptions_EnforceOnKey) String() string { } func (SecurityPolicyRuleRateLimitOptions_EnforceOnKey) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[403].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[411].Descriptor() } func (SecurityPolicyRuleRateLimitOptions_EnforceOnKey) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[403] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[411] } func (x SecurityPolicyRuleRateLimitOptions_EnforceOnKey) Number() protoreflect.EnumNumber { @@ -26148,7 +26609,7 @@ func (x SecurityPolicyRuleRateLimitOptions_EnforceOnKey) Number() protoreflect.E // Deprecated: Use SecurityPolicyRuleRateLimitOptions_EnforceOnKey.Descriptor instead. func (SecurityPolicyRuleRateLimitOptions_EnforceOnKey) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1474, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1534, 0} } // Determines the key to enforce the rate_limit_threshold on. Possible @@ -26252,11 +26713,11 @@ func (x SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig_EnforceOnKeyType) S } func (SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig_EnforceOnKeyType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[404].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[412].Descriptor() } func (SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig_EnforceOnKeyType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[404] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[412] } func (x SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig_EnforceOnKeyType) Number() protoreflect.EnumNumber { @@ -26265,7 +26726,7 @@ func (x SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig_EnforceOnKeyType) N // Deprecated: Use SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig_EnforceOnKeyType.Descriptor instead. func (SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig_EnforceOnKeyType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1475, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1535, 0} } // Type of the redirect action. Possible values are: @@ -26308,11 +26769,11 @@ func (x SecurityPolicyRuleRedirectOptions_Type) String() string { } func (SecurityPolicyRuleRedirectOptions_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[405].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[413].Descriptor() } func (SecurityPolicyRuleRedirectOptions_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[405] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[413] } func (x SecurityPolicyRuleRedirectOptions_Type) Number() protoreflect.EnumNumber { @@ -26321,7 +26782,7 @@ func (x SecurityPolicyRuleRedirectOptions_Type) Number() protoreflect.EnumNumber // Deprecated: Use SecurityPolicyRuleRedirectOptions_Type.Descriptor instead. func (SecurityPolicyRuleRedirectOptions_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1477, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1537, 0} } // The base relative to which 'offset' is measured. Possible values are: @@ -26376,11 +26837,11 @@ func (x SecurityPolicyUserDefinedField_Base) String() string { } func (SecurityPolicyUserDefinedField_Base) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[406].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[414].Descriptor() } func (SecurityPolicyUserDefinedField_Base) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[406] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[414] } func (x SecurityPolicyUserDefinedField_Base) Number() protoreflect.EnumNumber { @@ -26389,7 +26850,7 @@ func (x SecurityPolicyUserDefinedField_Base) Number() protoreflect.EnumNumber { // Deprecated: Use SecurityPolicyUserDefinedField_Base.Descriptor instead. func (SecurityPolicyUserDefinedField_Base) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1478, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1538, 0} } type ServerBinding_Type int32 @@ -26431,11 +26892,11 @@ func (x ServerBinding_Type) String() string { } func (ServerBinding_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[407].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[415].Descriptor() } func (ServerBinding_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[407] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[415] } func (x ServerBinding_Type) Number() protoreflect.EnumNumber { @@ -26444,7 +26905,7 @@ func (x ServerBinding_Type) Number() protoreflect.EnumNumber { // Deprecated: Use ServerBinding_Type.Descriptor instead. func (ServerBinding_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1483, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1543, 0} } // The connection preference of service attachment. The value can be set @@ -26488,11 +26949,11 @@ func (x ServiceAttachment_ConnectionPreference) String() string { } func (ServiceAttachment_ConnectionPreference) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[408].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[416].Descriptor() } func (ServiceAttachment_ConnectionPreference) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[408] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[416] } func (x ServiceAttachment_ConnectionPreference) Number() protoreflect.EnumNumber { @@ -26501,7 +26962,7 @@ func (x ServiceAttachment_ConnectionPreference) Number() protoreflect.EnumNumber // Deprecated: Use ServiceAttachment_ConnectionPreference.Descriptor instead. func (ServiceAttachment_ConnectionPreference) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1485, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1545, 0} } // The status of a connected endpoint to this service attachment. @@ -26558,11 +27019,11 @@ func (x ServiceAttachmentConnectedEndpoint_Status) String() string { } func (ServiceAttachmentConnectedEndpoint_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[409].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[417].Descriptor() } func (ServiceAttachmentConnectedEndpoint_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[409] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[417] } func (x ServiceAttachmentConnectedEndpoint_Status) Number() protoreflect.EnumNumber { @@ -26571,7 +27032,7 @@ func (x ServiceAttachmentConnectedEndpoint_Status) Number() protoreflect.EnumNum // Deprecated: Use ServiceAttachmentConnectedEndpoint_Status.Descriptor instead. func (ServiceAttachmentConnectedEndpoint_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1487, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1547, 0} } // [Output Only] Status of the action, which can be one of the following: @@ -26627,11 +27088,11 @@ func (x SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo_State } func (SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[410].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[418].Descriptor() } func (SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[410] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[418] } func (x SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo_State) Number() protoreflect.EnumNumber { @@ -26640,7 +27101,7 @@ func (x SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo_State // Deprecated: Use SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo_State.Descriptor instead. func (SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1498, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1558, 0} } // Type of sharing for this shared-reservation @@ -26688,11 +27149,11 @@ func (x ShareSettings_ShareType) String() string { } func (ShareSettings_ShareType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[411].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[419].Descriptor() } func (ShareSettings_ShareType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[411] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[419] } func (x ShareSettings_ShareType) Number() protoreflect.EnumNumber { @@ -26701,7 +27162,7 @@ func (x ShareSettings_ShareType) Number() protoreflect.EnumNumber { // Deprecated: Use ShareSettings_ShareType.Descriptor instead. func (ShareSettings_ShareType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1590, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1655, 0} } // Output only. [Output Only] The architecture of the snapshot. Valid values are @@ -26746,11 +27207,11 @@ func (x Snapshot_Architecture) String() string { } func (Snapshot_Architecture) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[412].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[420].Descriptor() } func (Snapshot_Architecture) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[412] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[420] } func (x Snapshot_Architecture) Number() protoreflect.EnumNumber { @@ -26759,7 +27220,7 @@ func (x Snapshot_Architecture) Number() protoreflect.EnumNumber { // Deprecated: Use Snapshot_Architecture.Descriptor instead. func (Snapshot_Architecture) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1599, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1664, 0} } // Indicates the type of the snapshot. @@ -26797,11 +27258,11 @@ func (x Snapshot_SnapshotType) String() string { } func (Snapshot_SnapshotType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[413].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[421].Descriptor() } func (Snapshot_SnapshotType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[413] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[421] } func (x Snapshot_SnapshotType) Number() protoreflect.EnumNumber { @@ -26810,7 +27271,7 @@ func (x Snapshot_SnapshotType) Number() protoreflect.EnumNumber { // Deprecated: Use Snapshot_SnapshotType.Descriptor instead. func (Snapshot_SnapshotType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1599, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1664, 1} } // Output only. [Output Only] The status of the snapshot. This can beCREATING, DELETING, FAILED,READY, or UPLOADING. @@ -26862,11 +27323,11 @@ func (x Snapshot_Status) String() string { } func (Snapshot_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[414].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[422].Descriptor() } func (Snapshot_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[414] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[422] } func (x Snapshot_Status) Number() protoreflect.EnumNumber { @@ -26875,7 +27336,7 @@ func (x Snapshot_Status) Number() protoreflect.EnumNumber { // Deprecated: Use Snapshot_Status.Descriptor instead. func (Snapshot_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1599, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1664, 2} } // Output only. [Output Only] An indicator whether storageBytes is in a @@ -26917,11 +27378,11 @@ func (x Snapshot_StorageBytesStatus) String() string { } func (Snapshot_StorageBytesStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[415].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[423].Descriptor() } func (Snapshot_StorageBytesStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[415] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[423] } func (x Snapshot_StorageBytesStatus) Number() protoreflect.EnumNumber { @@ -26930,7 +27391,64 @@ func (x Snapshot_StorageBytesStatus) Number() protoreflect.EnumNumber { // Deprecated: Use Snapshot_StorageBytesStatus.Descriptor instead. func (Snapshot_StorageBytesStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1599, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1664, 3} +} + +// Policy of which location is allowed to access snapshot. +type SnapshotSettingsAccessLocation_Policy int32 + +const ( + // A value indicating that the enum field is not set. + SnapshotSettingsAccessLocation_UNDEFINED_POLICY SnapshotSettingsAccessLocation_Policy = 0 + // Any regions will be able to access the source location. + SnapshotSettingsAccessLocation_ALL_REGIONS SnapshotSettingsAccessLocation_Policy = 273143585 + SnapshotSettingsAccessLocation_POLICY_UNSPECIFIED SnapshotSettingsAccessLocation_Policy = 197974922 + // Only allowlisted regions will be able to restore region scoped + // snapshots + SnapshotSettingsAccessLocation_SPECIFIC_REGIONS SnapshotSettingsAccessLocation_Policy = 454128082 +) + +// Enum value maps for SnapshotSettingsAccessLocation_Policy. +var ( + SnapshotSettingsAccessLocation_Policy_name = map[int32]string{ + 0: "UNDEFINED_POLICY", + 273143585: "ALL_REGIONS", + 197974922: "POLICY_UNSPECIFIED", + 454128082: "SPECIFIC_REGIONS", + } + SnapshotSettingsAccessLocation_Policy_value = map[string]int32{ + "UNDEFINED_POLICY": 0, + "ALL_REGIONS": 273143585, + "POLICY_UNSPECIFIED": 197974922, + "SPECIFIC_REGIONS": 454128082, + } +) + +func (x SnapshotSettingsAccessLocation_Policy) Enum() *SnapshotSettingsAccessLocation_Policy { + p := new(SnapshotSettingsAccessLocation_Policy) + *p = x + return p +} + +func (x SnapshotSettingsAccessLocation_Policy) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (SnapshotSettingsAccessLocation_Policy) Descriptor() protoreflect.EnumDescriptor { + return file_google_cloud_compute_v1_compute_proto_enumTypes[424].Descriptor() +} + +func (SnapshotSettingsAccessLocation_Policy) Type() protoreflect.EnumType { + return &file_google_cloud_compute_v1_compute_proto_enumTypes[424] +} + +func (x SnapshotSettingsAccessLocation_Policy) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use SnapshotSettingsAccessLocation_Policy.Descriptor instead. +func (SnapshotSettingsAccessLocation_Policy) EnumDescriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1669, 0} } // The chosen location policy. @@ -26981,11 +27499,11 @@ func (x SnapshotSettingsStorageLocationSettings_Policy) String() string { } func (SnapshotSettingsStorageLocationSettings_Policy) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[416].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[425].Descriptor() } func (SnapshotSettingsStorageLocationSettings_Policy) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[416] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[425] } func (x SnapshotSettingsStorageLocationSettings_Policy) Number() protoreflect.EnumNumber { @@ -26994,7 +27512,7 @@ func (x SnapshotSettingsStorageLocationSettings_Policy) Number() protoreflect.En // Deprecated: Use SnapshotSettingsStorageLocationSettings_Policy.Descriptor instead. func (SnapshotSettingsStorageLocationSettings_Policy) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1603, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1671, 0} } // KeyRevocationActionType of the instance. Supported options are "STOP" and @@ -27039,11 +27557,11 @@ func (x SourceInstanceProperties_KeyRevocationActionType) String() string { } func (SourceInstanceProperties_KeyRevocationActionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[417].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[426].Descriptor() } func (SourceInstanceProperties_KeyRevocationActionType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[417] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[426] } func (x SourceInstanceProperties_KeyRevocationActionType) Number() protoreflect.EnumNumber { @@ -27052,7 +27570,7 @@ func (x SourceInstanceProperties_KeyRevocationActionType) Number() protoreflect. // Deprecated: Use SourceInstanceProperties_KeyRevocationActionType.Descriptor instead. func (SourceInstanceProperties_KeyRevocationActionType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1607, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1676, 0} } // PostKeyRevocationActionType of the instance. @@ -27096,11 +27614,11 @@ func (x SourceInstanceProperties_PostKeyRevocationActionType) String() string { } func (SourceInstanceProperties_PostKeyRevocationActionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[418].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[427].Descriptor() } func (SourceInstanceProperties_PostKeyRevocationActionType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[418] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[427] } func (x SourceInstanceProperties_PostKeyRevocationActionType) Number() protoreflect.EnumNumber { @@ -27109,7 +27627,7 @@ func (x SourceInstanceProperties_PostKeyRevocationActionType) Number() protorefl // Deprecated: Use SourceInstanceProperties_PostKeyRevocationActionType.Descriptor instead. func (SourceInstanceProperties_PostKeyRevocationActionType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1607, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1676, 1} } // (Optional) Specifies the type of SSL certificate, either "SELF_MANAGED" or @@ -27153,11 +27671,11 @@ func (x SslCertificate_Type) String() string { } func (SslCertificate_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[419].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[428].Descriptor() } func (SslCertificate_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[419] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[428] } func (x SslCertificate_Type) Number() protoreflect.EnumNumber { @@ -27166,7 +27684,7 @@ func (x SslCertificate_Type) Number() protoreflect.EnumNumber { // Deprecated: Use SslCertificate_Type.Descriptor instead. func (SslCertificate_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1608, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1677, 0} } // Output only. [Output only] Status of the managed certificate resource. @@ -27232,11 +27750,11 @@ func (x SslCertificateManagedSslCertificate_Status) String() string { } func (SslCertificateManagedSslCertificate_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[420].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[429].Descriptor() } func (SslCertificateManagedSslCertificate_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[420] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[429] } func (x SslCertificateManagedSslCertificate_Status) Number() protoreflect.EnumNumber { @@ -27245,7 +27763,7 @@ func (x SslCertificateManagedSslCertificate_Status) Number() protoreflect.EnumNu // Deprecated: Use SslCertificateManagedSslCertificate_Status.Descriptor instead. func (SslCertificateManagedSslCertificate_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1611, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1680, 0} } // The minimum version of SSL protocol that can be used by the clients to @@ -27295,11 +27813,11 @@ func (x SslPolicy_MinTlsVersion) String() string { } func (SslPolicy_MinTlsVersion) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[421].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[430].Descriptor() } func (SslPolicy_MinTlsVersion) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[421] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[430] } func (x SslPolicy_MinTlsVersion) Number() protoreflect.EnumNumber { @@ -27308,7 +27826,7 @@ func (x SslPolicy_MinTlsVersion) Number() protoreflect.EnumNumber { // Deprecated: Use SslPolicy_MinTlsVersion.Descriptor instead. func (SslPolicy_MinTlsVersion) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1618, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1687, 0} } // Profile specifies the set of SSL features that can be used by the load @@ -27369,11 +27887,11 @@ func (x SslPolicy_Profile) String() string { } func (SslPolicy_Profile) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[422].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[431].Descriptor() } func (SslPolicy_Profile) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[422] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[431] } func (x SslPolicy_Profile) Number() protoreflect.EnumNumber { @@ -27382,7 +27900,7 @@ func (x SslPolicy_Profile) Number() protoreflect.EnumNumber { // Deprecated: Use SslPolicy_Profile.Descriptor instead. func (SslPolicy_Profile) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1618, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1687, 1} } // These stateful disks will never be deleted during autohealing, @@ -27424,11 +27942,11 @@ func (x StatefulPolicyPreservedStateDiskDevice_AutoDelete) String() string { } func (StatefulPolicyPreservedStateDiskDevice_AutoDelete) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[423].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[432].Descriptor() } func (StatefulPolicyPreservedStateDiskDevice_AutoDelete) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[423] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[432] } func (x StatefulPolicyPreservedStateDiskDevice_AutoDelete) Number() protoreflect.EnumNumber { @@ -27437,7 +27955,7 @@ func (x StatefulPolicyPreservedStateDiskDevice_AutoDelete) Number() protoreflect // Deprecated: Use StatefulPolicyPreservedStateDiskDevice_AutoDelete.Descriptor instead. func (StatefulPolicyPreservedStateDiskDevice_AutoDelete) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1628, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1697, 0} } // These stateful IPs will never be released during autohealing, @@ -27479,11 +27997,11 @@ func (x StatefulPolicyPreservedStateNetworkIp_AutoDelete) String() string { } func (StatefulPolicyPreservedStateNetworkIp_AutoDelete) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[424].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[433].Descriptor() } func (StatefulPolicyPreservedStateNetworkIp_AutoDelete) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[424] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[433] } func (x StatefulPolicyPreservedStateNetworkIp_AutoDelete) Number() protoreflect.EnumNumber { @@ -27492,7 +28010,7 @@ func (x StatefulPolicyPreservedStateNetworkIp_AutoDelete) Number() protoreflect. // Deprecated: Use StatefulPolicyPreservedStateNetworkIp_AutoDelete.Descriptor instead. func (StatefulPolicyPreservedStateNetworkIp_AutoDelete) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1629, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1698, 0} } // Provisioning type of the byte capacity of the pool. @@ -27528,11 +28046,11 @@ func (x StoragePool_CapacityProvisioningType) String() string { } func (StoragePool_CapacityProvisioningType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[425].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[434].Descriptor() } func (StoragePool_CapacityProvisioningType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[425] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[434] } func (x StoragePool_CapacityProvisioningType) Number() protoreflect.EnumNumber { @@ -27541,7 +28059,7 @@ func (x StoragePool_CapacityProvisioningType) Number() protoreflect.EnumNumber { // Deprecated: Use StoragePool_CapacityProvisioningType.Descriptor instead. func (StoragePool_CapacityProvisioningType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1638, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1707, 0} } // Provisioning type of the performance-related parameters of the pool, @@ -27578,11 +28096,11 @@ func (x StoragePool_PerformanceProvisioningType) String() string { } func (StoragePool_PerformanceProvisioningType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[426].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[435].Descriptor() } func (StoragePool_PerformanceProvisioningType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[426] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[435] } func (x StoragePool_PerformanceProvisioningType) Number() protoreflect.EnumNumber { @@ -27591,7 +28109,7 @@ func (x StoragePool_PerformanceProvisioningType) Number() protoreflect.EnumNumbe // Deprecated: Use StoragePool_PerformanceProvisioningType.Descriptor instead. func (StoragePool_PerformanceProvisioningType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1638, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1707, 1} } // Output only. [Output Only] The status of storage pool creation. @@ -27645,11 +28163,11 @@ func (x StoragePool_State) String() string { } func (StoragePool_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[427].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[436].Descriptor() } func (StoragePool_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[427] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[436] } func (x StoragePool_State) Number() protoreflect.EnumNumber { @@ -27658,7 +28176,7 @@ func (x StoragePool_State) Number() protoreflect.EnumNumber { // Deprecated: Use StoragePool_State.Descriptor instead. func (StoragePool_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1638, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1707, 2} } // Output only. [Output Only] The disk status. @@ -27715,11 +28233,11 @@ func (x StoragePoolDisk_Status) String() string { } func (StoragePoolDisk_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[428].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[437].Descriptor() } func (StoragePoolDisk_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[428] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[437] } func (x StoragePoolDisk_Status) Number() protoreflect.EnumNumber { @@ -27728,7 +28246,7 @@ func (x StoragePoolDisk_Status) Number() protoreflect.EnumNumber { // Deprecated: Use StoragePoolDisk_Status.Descriptor instead. func (StoragePoolDisk_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1640, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1709, 0} } // The access type of IPv6 address this subnet holds. It's immutable and can @@ -27775,11 +28293,11 @@ func (x Subnetwork_Ipv6AccessType) String() string { } func (Subnetwork_Ipv6AccessType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[429].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[438].Descriptor() } func (Subnetwork_Ipv6AccessType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[429] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[438] } func (x Subnetwork_Ipv6AccessType) Number() protoreflect.EnumNumber { @@ -27788,7 +28306,7 @@ func (x Subnetwork_Ipv6AccessType) Number() protoreflect.EnumNumber { // Deprecated: Use Subnetwork_Ipv6AccessType.Descriptor instead. func (Subnetwork_Ipv6AccessType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1651, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1720, 0} } // Output only. [Output Only] Possible endpoints of this subnetwork. It can be one of the @@ -27835,11 +28353,11 @@ func (x Subnetwork_Ipv6GceEndpoint) String() string { } func (Subnetwork_Ipv6GceEndpoint) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[430].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[439].Descriptor() } func (Subnetwork_Ipv6GceEndpoint) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[430] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[439] } func (x Subnetwork_Ipv6GceEndpoint) Number() protoreflect.EnumNumber { @@ -27848,7 +28366,7 @@ func (x Subnetwork_Ipv6GceEndpoint) Number() protoreflect.EnumNumber { // Deprecated: Use Subnetwork_Ipv6GceEndpoint.Descriptor instead. func (Subnetwork_Ipv6GceEndpoint) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1651, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1720, 1} } // This field is for internal use. @@ -27894,11 +28412,11 @@ func (x Subnetwork_PrivateIpv6GoogleAccess) String() string { } func (Subnetwork_PrivateIpv6GoogleAccess) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[431].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[440].Descriptor() } func (Subnetwork_PrivateIpv6GoogleAccess) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[431] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[440] } func (x Subnetwork_PrivateIpv6GoogleAccess) Number() protoreflect.EnumNumber { @@ -27907,7 +28425,7 @@ func (x Subnetwork_PrivateIpv6GoogleAccess) Number() protoreflect.EnumNumber { // Deprecated: Use Subnetwork_PrivateIpv6GoogleAccess.Descriptor instead. func (Subnetwork_PrivateIpv6GoogleAccess) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1651, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1720, 2} } type Subnetwork_Purpose int32 @@ -27973,11 +28491,11 @@ func (x Subnetwork_Purpose) String() string { } func (Subnetwork_Purpose) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[432].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[441].Descriptor() } func (Subnetwork_Purpose) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[432] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[441] } func (x Subnetwork_Purpose) Number() protoreflect.EnumNumber { @@ -27986,7 +28504,7 @@ func (x Subnetwork_Purpose) Number() protoreflect.EnumNumber { // Deprecated: Use Subnetwork_Purpose.Descriptor instead. func (Subnetwork_Purpose) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1651, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1720, 3} } // Configures subnet mask resolution for this subnetwork. @@ -28026,11 +28544,11 @@ func (x Subnetwork_ResolveSubnetMask) String() string { } func (Subnetwork_ResolveSubnetMask) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[433].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[442].Descriptor() } func (Subnetwork_ResolveSubnetMask) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[433] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[442] } func (x Subnetwork_ResolveSubnetMask) Number() protoreflect.EnumNumber { @@ -28039,7 +28557,7 @@ func (x Subnetwork_ResolveSubnetMask) Number() protoreflect.EnumNumber { // Deprecated: Use Subnetwork_ResolveSubnetMask.Descriptor instead. func (Subnetwork_ResolveSubnetMask) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1651, 4} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1720, 4} } // The role of subnetwork. Currently, this field is only used when @@ -28084,11 +28602,11 @@ func (x Subnetwork_Role) String() string { } func (Subnetwork_Role) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[434].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[443].Descriptor() } func (Subnetwork_Role) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[434] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[443] } func (x Subnetwork_Role) Number() protoreflect.EnumNumber { @@ -28097,7 +28615,7 @@ func (x Subnetwork_Role) Number() protoreflect.EnumNumber { // Deprecated: Use Subnetwork_Role.Descriptor instead. func (Subnetwork_Role) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1651, 5} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1720, 5} } // The stack type for the subnet. If set to IPV4_ONLY, new VMs @@ -28148,11 +28666,11 @@ func (x Subnetwork_StackType) String() string { } func (Subnetwork_StackType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[435].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[444].Descriptor() } func (Subnetwork_StackType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[435] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[444] } func (x Subnetwork_StackType) Number() protoreflect.EnumNumber { @@ -28161,7 +28679,7 @@ func (x Subnetwork_StackType) Number() protoreflect.EnumNumber { // Deprecated: Use Subnetwork_StackType.Descriptor instead. func (Subnetwork_StackType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1651, 6} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1720, 6} } // Output only. [Output Only] The state of the subnetwork, which can be one of the @@ -28205,11 +28723,11 @@ func (x Subnetwork_State) String() string { } func (Subnetwork_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[436].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[445].Descriptor() } func (Subnetwork_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[436] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[445] } func (x Subnetwork_State) Number() protoreflect.EnumNumber { @@ -28218,7 +28736,7 @@ func (x Subnetwork_State) Number() protoreflect.EnumNumber { // Deprecated: Use Subnetwork_State.Descriptor instead. func (Subnetwork_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1651, 7} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1720, 7} } // Can only be specified if VPC flow logging for this subnetwork is enabled. @@ -28271,11 +28789,11 @@ func (x SubnetworkLogConfig_AggregationInterval) String() string { } func (SubnetworkLogConfig_AggregationInterval) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[437].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[446].Descriptor() } func (SubnetworkLogConfig_AggregationInterval) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[437] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[446] } func (x SubnetworkLogConfig_AggregationInterval) Number() protoreflect.EnumNumber { @@ -28284,7 +28802,7 @@ func (x SubnetworkLogConfig_AggregationInterval) Number() protoreflect.EnumNumbe // Deprecated: Use SubnetworkLogConfig_AggregationInterval.Descriptor instead. func (SubnetworkLogConfig_AggregationInterval) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1654, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1723, 0} } // Can only be specified if VPC flow logs for this subnetwork is enabled. @@ -28327,11 +28845,11 @@ func (x SubnetworkLogConfig_Metadata) String() string { } func (SubnetworkLogConfig_Metadata) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[438].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[447].Descriptor() } func (SubnetworkLogConfig_Metadata) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[438] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[447] } func (x SubnetworkLogConfig_Metadata) Number() protoreflect.EnumNumber { @@ -28340,7 +28858,7 @@ func (x SubnetworkLogConfig_Metadata) Number() protoreflect.EnumNumber { // Deprecated: Use SubnetworkLogConfig_Metadata.Descriptor instead. func (SubnetworkLogConfig_Metadata) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1654, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1723, 1} } type Subsetting_Policy int32 @@ -28394,11 +28912,11 @@ func (x Subsetting_Policy) String() string { } func (Subsetting_Policy) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[439].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[448].Descriptor() } func (Subsetting_Policy) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[439] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[448] } func (x Subsetting_Policy) Number() protoreflect.EnumNumber { @@ -28407,7 +28925,7 @@ func (x Subsetting_Policy) Number() protoreflect.EnumNumber { // Deprecated: Use Subsetting_Policy.Descriptor instead. func (Subsetting_Policy) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1664, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1733, 0} } // Specifies how a port is selected for health checking. Can be one of the @@ -28476,11 +28994,11 @@ func (x TCPHealthCheck_PortSpecification) String() string { } func (TCPHealthCheck_PortSpecification) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[440].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[449].Descriptor() } func (TCPHealthCheck_PortSpecification) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[440] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[449] } func (x TCPHealthCheck_PortSpecification) Number() protoreflect.EnumNumber { @@ -28489,7 +29007,7 @@ func (x TCPHealthCheck_PortSpecification) Number() protoreflect.EnumNumber { // Deprecated: Use TCPHealthCheck_PortSpecification.Descriptor instead. func (TCPHealthCheck_PortSpecification) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1669, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1738, 0} } // Specifies the type of proxy header to append before sending data to the @@ -28529,11 +29047,11 @@ func (x TCPHealthCheck_ProxyHeader) String() string { } func (TCPHealthCheck_ProxyHeader) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[441].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[450].Descriptor() } func (TCPHealthCheck_ProxyHeader) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[441] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[450] } func (x TCPHealthCheck_ProxyHeader) Number() protoreflect.EnumNumber { @@ -28542,7 +29060,7 @@ func (x TCPHealthCheck_ProxyHeader) Number() protoreflect.EnumNumber { // Deprecated: Use TCPHealthCheck_ProxyHeader.Descriptor instead. func (TCPHealthCheck_ProxyHeader) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1669, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1738, 1} } // QUIC policy for the TargetHttpsProxy resource. @@ -28587,11 +29105,11 @@ func (x TargetHttpsProxiesSetQuicOverrideRequest_QuicOverride) String() string { } func (TargetHttpsProxiesSetQuicOverrideRequest_QuicOverride) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[442].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[451].Descriptor() } func (TargetHttpsProxiesSetQuicOverrideRequest_QuicOverride) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[442] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[451] } func (x TargetHttpsProxiesSetQuicOverrideRequest_QuicOverride) Number() protoreflect.EnumNumber { @@ -28600,7 +29118,7 @@ func (x TargetHttpsProxiesSetQuicOverrideRequest_QuicOverride) Number() protoref // Deprecated: Use TargetHttpsProxiesSetQuicOverrideRequest_QuicOverride.Descriptor instead. func (TargetHttpsProxiesSetQuicOverrideRequest_QuicOverride) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1679, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1748, 0} } // Specifies the QUIC override policy for this TargetHttpsProxy resource. This @@ -28656,11 +29174,11 @@ func (x TargetHttpsProxy_QuicOverride) String() string { } func (TargetHttpsProxy_QuicOverride) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[443].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[452].Descriptor() } func (TargetHttpsProxy_QuicOverride) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[443] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[452] } func (x TargetHttpsProxy_QuicOverride) Number() protoreflect.EnumNumber { @@ -28669,7 +29187,7 @@ func (x TargetHttpsProxy_QuicOverride) Number() protoreflect.EnumNumber { // Deprecated: Use TargetHttpsProxy_QuicOverride.Descriptor instead. func (TargetHttpsProxy_QuicOverride) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1681, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1750, 0} } // Specifies whether TLS 1.3 0-RTT Data ("Early Data") should be accepted @@ -28750,11 +29268,11 @@ func (x TargetHttpsProxy_TlsEarlyData) String() string { } func (TargetHttpsProxy_TlsEarlyData) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[444].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[453].Descriptor() } func (TargetHttpsProxy_TlsEarlyData) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[444] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[453] } func (x TargetHttpsProxy_TlsEarlyData) Number() protoreflect.EnumNumber { @@ -28763,7 +29281,7 @@ func (x TargetHttpsProxy_TlsEarlyData) Number() protoreflect.EnumNumber { // Deprecated: Use TargetHttpsProxy_TlsEarlyData.Descriptor instead. func (TargetHttpsProxy_TlsEarlyData) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1681, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1750, 1} } // Must have a value of NO_NAT. @@ -28801,11 +29319,11 @@ func (x TargetInstance_NatPolicy) String() string { } func (TargetInstance_NatPolicy) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[445].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[454].Descriptor() } func (TargetInstance_NatPolicy) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[445] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[454] } func (x TargetInstance_NatPolicy) Number() protoreflect.EnumNumber { @@ -28814,7 +29332,7 @@ func (x TargetInstance_NatPolicy) Number() protoreflect.EnumNumber { // Deprecated: Use TargetInstance_NatPolicy.Descriptor instead. func (TargetInstance_NatPolicy) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1684, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1753, 0} } // Session affinity option, must be one of the following values: @@ -28912,11 +29430,11 @@ func (x TargetPool_SessionAffinity) String() string { } func (TargetPool_SessionAffinity) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[446].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[455].Descriptor() } func (TargetPool_SessionAffinity) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[446] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[455] } func (x TargetPool_SessionAffinity) Number() protoreflect.EnumNumber { @@ -28925,7 +29443,7 @@ func (x TargetPool_SessionAffinity) Number() protoreflect.EnumNumber { // Deprecated: Use TargetPool_SessionAffinity.Descriptor instead. func (TargetPool_SessionAffinity) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1688, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1757, 0} } // The new type of proxy header to append before sending data to the @@ -28964,11 +29482,11 @@ func (x TargetSslProxiesSetProxyHeaderRequest_ProxyHeader) String() string { } func (TargetSslProxiesSetProxyHeaderRequest_ProxyHeader) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[447].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[456].Descriptor() } func (TargetSslProxiesSetProxyHeaderRequest_ProxyHeader) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[447] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[456] } func (x TargetSslProxiesSetProxyHeaderRequest_ProxyHeader) Number() protoreflect.EnumNumber { @@ -28977,7 +29495,7 @@ func (x TargetSslProxiesSetProxyHeaderRequest_ProxyHeader) Number() protoreflect // Deprecated: Use TargetSslProxiesSetProxyHeaderRequest_ProxyHeader.Descriptor instead. func (TargetSslProxiesSetProxyHeaderRequest_ProxyHeader) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1700, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1769, 0} } // Specifies the type of proxy header to append before sending data to the @@ -29017,11 +29535,11 @@ func (x TargetSslProxy_ProxyHeader) String() string { } func (TargetSslProxy_ProxyHeader) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[448].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[457].Descriptor() } func (TargetSslProxy_ProxyHeader) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[448] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[457] } func (x TargetSslProxy_ProxyHeader) Number() protoreflect.EnumNumber { @@ -29030,7 +29548,7 @@ func (x TargetSslProxy_ProxyHeader) Number() protoreflect.EnumNumber { // Deprecated: Use TargetSslProxy_ProxyHeader.Descriptor instead. func (TargetSslProxy_ProxyHeader) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1702, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1771, 0} } // The new type of proxy header to append before sending data to the @@ -29069,11 +29587,11 @@ func (x TargetTcpProxiesSetProxyHeaderRequest_ProxyHeader) String() string { } func (TargetTcpProxiesSetProxyHeaderRequest_ProxyHeader) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[449].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[458].Descriptor() } func (TargetTcpProxiesSetProxyHeaderRequest_ProxyHeader) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[449] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[458] } func (x TargetTcpProxiesSetProxyHeaderRequest_ProxyHeader) Number() protoreflect.EnumNumber { @@ -29082,7 +29600,7 @@ func (x TargetTcpProxiesSetProxyHeaderRequest_ProxyHeader) Number() protoreflect // Deprecated: Use TargetTcpProxiesSetProxyHeaderRequest_ProxyHeader.Descriptor instead. func (TargetTcpProxiesSetProxyHeaderRequest_ProxyHeader) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1706, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1775, 0} } // Specifies the type of proxy header to append before sending data to the @@ -29122,11 +29640,11 @@ func (x TargetTcpProxy_ProxyHeader) String() string { } func (TargetTcpProxy_ProxyHeader) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[450].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[459].Descriptor() } func (TargetTcpProxy_ProxyHeader) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[450] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[459] } func (x TargetTcpProxy_ProxyHeader) Number() protoreflect.EnumNumber { @@ -29135,7 +29653,7 @@ func (x TargetTcpProxy_ProxyHeader) Number() protoreflect.EnumNumber { // Deprecated: Use TargetTcpProxy_ProxyHeader.Descriptor instead. func (TargetTcpProxy_ProxyHeader) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1707, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1776, 0} } // [Output Only] The status of the VPN gateway, @@ -29180,11 +29698,11 @@ func (x TargetVpnGateway_Status) String() string { } func (TargetVpnGateway_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[451].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[460].Descriptor() } func (TargetVpnGateway_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[451] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[460] } func (x TargetVpnGateway_Status) Number() protoreflect.EnumNumber { @@ -29193,7 +29711,7 @@ func (x TargetVpnGateway_Status) Number() protoreflect.EnumNumber { // Deprecated: Use TargetVpnGateway_Status.Descriptor instead. func (TargetVpnGateway_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1710, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1779, 0} } type UpcomingMaintenance_MaintenanceReasons int32 @@ -29294,11 +29812,11 @@ func (x UpcomingMaintenance_MaintenanceReasons) String() string { } func (UpcomingMaintenance_MaintenanceReasons) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[452].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[461].Descriptor() } func (UpcomingMaintenance_MaintenanceReasons) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[452] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[461] } func (x UpcomingMaintenance_MaintenanceReasons) Number() protoreflect.EnumNumber { @@ -29307,7 +29825,7 @@ func (x UpcomingMaintenance_MaintenanceReasons) Number() protoreflect.EnumNumber // Deprecated: Use UpcomingMaintenance_MaintenanceReasons.Descriptor instead. func (UpcomingMaintenance_MaintenanceReasons) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1772, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1845, 0} } type UpcomingMaintenance_MaintenanceStatus int32 @@ -29350,11 +29868,11 @@ func (x UpcomingMaintenance_MaintenanceStatus) String() string { } func (UpcomingMaintenance_MaintenanceStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[453].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[462].Descriptor() } func (UpcomingMaintenance_MaintenanceStatus) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[453] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[462] } func (x UpcomingMaintenance_MaintenanceStatus) Number() protoreflect.EnumNumber { @@ -29363,7 +29881,7 @@ func (x UpcomingMaintenance_MaintenanceStatus) Number() protoreflect.EnumNumber // Deprecated: Use UpcomingMaintenance_MaintenanceStatus.Descriptor instead. func (UpcomingMaintenance_MaintenanceStatus) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1772, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1845, 1} } // Defines the type of maintenance. @@ -29414,11 +29932,11 @@ func (x UpcomingMaintenance_Type) String() string { } func (UpcomingMaintenance_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[454].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[463].Descriptor() } func (UpcomingMaintenance_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[454] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[463] } func (x UpcomingMaintenance_Type) Number() protoreflect.EnumNumber { @@ -29427,7 +29945,7 @@ func (x UpcomingMaintenance_Type) Number() protoreflect.EnumNumber { // Deprecated: Use UpcomingMaintenance_Type.Descriptor instead. func (UpcomingMaintenance_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1772, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1845, 2} } // Specifies the action to take when updating an instance even if the @@ -29467,11 +29985,11 @@ func (x UpdateInstanceRequest_MinimalAction) String() string { } func (UpdateInstanceRequest_MinimalAction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[455].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[464].Descriptor() } func (UpdateInstanceRequest_MinimalAction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[455] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[464] } func (x UpdateInstanceRequest_MinimalAction) Number() protoreflect.EnumNumber { @@ -29480,7 +29998,7 @@ func (x UpdateInstanceRequest_MinimalAction) Number() protoreflect.EnumNumber { // Deprecated: Use UpdateInstanceRequest_MinimalAction.Descriptor instead. func (UpdateInstanceRequest_MinimalAction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1782, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1855, 0} } // Specifies the most disruptive action that can be taken on the instance @@ -29521,11 +30039,11 @@ func (x UpdateInstanceRequest_MostDisruptiveAllowedAction) String() string { } func (UpdateInstanceRequest_MostDisruptiveAllowedAction) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[456].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[465].Descriptor() } func (UpdateInstanceRequest_MostDisruptiveAllowedAction) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[456] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[465] } func (x UpdateInstanceRequest_MostDisruptiveAllowedAction) Number() protoreflect.EnumNumber { @@ -29534,7 +30052,7 @@ func (x UpdateInstanceRequest_MostDisruptiveAllowedAction) Number() protoreflect // Deprecated: Use UpdateInstanceRequest_MostDisruptiveAllowedAction.Descriptor instead. func (UpdateInstanceRequest_MostDisruptiveAllowedAction) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1782, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1855, 1} } type UrlMapsValidateRequest_LoadBalancingSchemes int32 @@ -29580,11 +30098,11 @@ func (x UrlMapsValidateRequest_LoadBalancingSchemes) String() string { } func (UrlMapsValidateRequest_LoadBalancingSchemes) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[457].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[466].Descriptor() } func (UrlMapsValidateRequest_LoadBalancingSchemes) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[457] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[466] } func (x UrlMapsValidateRequest_LoadBalancingSchemes) Number() protoreflect.EnumNumber { @@ -29593,7 +30111,7 @@ func (x UrlMapsValidateRequest_LoadBalancingSchemes) Number() protoreflect.EnumN // Deprecated: Use UrlMapsValidateRequest_LoadBalancingSchemes.Descriptor instead. func (UrlMapsValidateRequest_LoadBalancingSchemes) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1810, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1888, 0} } // The access type of IPv6 address this subnet holds. It's immutable and can @@ -29637,11 +30155,11 @@ func (x UsableSubnetwork_Ipv6AccessType) String() string { } func (UsableSubnetwork_Ipv6AccessType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[458].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[467].Descriptor() } func (UsableSubnetwork_Ipv6AccessType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[458] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[467] } func (x UsableSubnetwork_Ipv6AccessType) Number() protoreflect.EnumNumber { @@ -29650,7 +30168,7 @@ func (x UsableSubnetwork_Ipv6AccessType) Number() protoreflect.EnumNumber { // Deprecated: Use UsableSubnetwork_Ipv6AccessType.Descriptor instead. func (UsableSubnetwork_Ipv6AccessType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1813, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1891, 0} } type UsableSubnetwork_Purpose int32 @@ -29716,11 +30234,11 @@ func (x UsableSubnetwork_Purpose) String() string { } func (UsableSubnetwork_Purpose) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[459].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[468].Descriptor() } func (UsableSubnetwork_Purpose) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[459] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[468] } func (x UsableSubnetwork_Purpose) Number() protoreflect.EnumNumber { @@ -29729,7 +30247,7 @@ func (x UsableSubnetwork_Purpose) Number() protoreflect.EnumNumber { // Deprecated: Use UsableSubnetwork_Purpose.Descriptor instead. func (UsableSubnetwork_Purpose) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1813, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1891, 1} } // The role of subnetwork. Currently, this field is only used when @@ -29774,11 +30292,11 @@ func (x UsableSubnetwork_Role) String() string { } func (UsableSubnetwork_Role) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[460].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[469].Descriptor() } func (UsableSubnetwork_Role) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[460] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[469] } func (x UsableSubnetwork_Role) Number() protoreflect.EnumNumber { @@ -29787,7 +30305,7 @@ func (x UsableSubnetwork_Role) Number() protoreflect.EnumNumber { // Deprecated: Use UsableSubnetwork_Role.Descriptor instead. func (UsableSubnetwork_Role) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1813, 2} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1891, 2} } // The stack type for the subnet. If set to IPV4_ONLY, new VMs @@ -29835,11 +30353,11 @@ func (x UsableSubnetwork_StackType) String() string { } func (UsableSubnetwork_StackType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[461].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[470].Descriptor() } func (UsableSubnetwork_StackType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[461] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[470] } func (x UsableSubnetwork_StackType) Number() protoreflect.EnumNumber { @@ -29848,7 +30366,67 @@ func (x UsableSubnetwork_StackType) Number() protoreflect.EnumNumber { // Deprecated: Use UsableSubnetwork_StackType.Descriptor instead. func (UsableSubnetwork_StackType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1813, 3} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1891, 3} +} + +// Optional. Output only. [Output Only] Current state of the policy: ACTIVE or DELETING. +type VmExtensionPolicy_State int32 + +const ( + // A value indicating that the enum field is not set. + VmExtensionPolicy_UNDEFINED_STATE VmExtensionPolicy_State = 0 + // The policy is active and applied to matching VMs. + // Newly created VMs that match the policy will also receive the + // extension policy. + VmExtensionPolicy_ACTIVE VmExtensionPolicy_State = 314733318 + // The policy is in the process of being deleted. After the extension is + // removed from all matching VMs, the policy will be deleted. + VmExtensionPolicy_DELETING VmExtensionPolicy_State = 528602024 + // Default value. Do not use. + VmExtensionPolicy_STATE_UNSPECIFIED VmExtensionPolicy_State = 470755401 +) + +// Enum value maps for VmExtensionPolicy_State. +var ( + VmExtensionPolicy_State_name = map[int32]string{ + 0: "UNDEFINED_STATE", + 314733318: "ACTIVE", + 528602024: "DELETING", + 470755401: "STATE_UNSPECIFIED", + } + VmExtensionPolicy_State_value = map[string]int32{ + "UNDEFINED_STATE": 0, + "ACTIVE": 314733318, + "DELETING": 528602024, + "STATE_UNSPECIFIED": 470755401, + } +) + +func (x VmExtensionPolicy_State) Enum() *VmExtensionPolicy_State { + p := new(VmExtensionPolicy_State) + *p = x + return p +} + +func (x VmExtensionPolicy_State) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (VmExtensionPolicy_State) Descriptor() protoreflect.EnumDescriptor { + return file_google_cloud_compute_v1_compute_proto_enumTypes[471].Descriptor() +} + +func (VmExtensionPolicy_State) Type() protoreflect.EnumType { + return &file_google_cloud_compute_v1_compute_proto_enumTypes[471] +} + +func (x VmExtensionPolicy_State) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use VmExtensionPolicy_State.Descriptor instead. +func (VmExtensionPolicy_State) EnumDescriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1901, 0} } // The IP family of the gateway IPs for the HA-VPN gateway interfaces. If not @@ -29889,11 +30467,11 @@ func (x VpnGateway_GatewayIpVersion) String() string { } func (VpnGateway_GatewayIpVersion) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[462].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[472].Descriptor() } func (VpnGateway_GatewayIpVersion) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[462] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[472] } func (x VpnGateway_GatewayIpVersion) Number() protoreflect.EnumNumber { @@ -29902,7 +30480,7 @@ func (x VpnGateway_GatewayIpVersion) Number() protoreflect.EnumNumber { // Deprecated: Use VpnGateway_GatewayIpVersion.Descriptor instead. func (VpnGateway_GatewayIpVersion) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1823, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1906, 0} } // The stack type for this VPN gateway to identify the IP protocols that are @@ -29947,11 +30525,11 @@ func (x VpnGateway_StackType) String() string { } func (VpnGateway_StackType) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[463].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[473].Descriptor() } func (VpnGateway_StackType) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[463] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[473] } func (x VpnGateway_StackType) Number() protoreflect.EnumNumber { @@ -29960,7 +30538,7 @@ func (x VpnGateway_StackType) Number() protoreflect.EnumNumber { // Deprecated: Use VpnGateway_StackType.Descriptor instead. func (VpnGateway_StackType) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1823, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1906, 1} } // Indicates the high availability requirement state for the VPN connection. @@ -30007,11 +30585,11 @@ func (x VpnGatewayStatusHighAvailabilityRequirementState_State) String() string } func (VpnGatewayStatusHighAvailabilityRequirementState_State) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[464].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[474].Descriptor() } func (VpnGatewayStatusHighAvailabilityRequirementState_State) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[464] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[474] } func (x VpnGatewayStatusHighAvailabilityRequirementState_State) Number() protoreflect.EnumNumber { @@ -30020,7 +30598,7 @@ func (x VpnGatewayStatusHighAvailabilityRequirementState_State) Number() protore // Deprecated: Use VpnGatewayStatusHighAvailabilityRequirementState_State.Descriptor instead. func (VpnGatewayStatusHighAvailabilityRequirementState_State) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1828, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1911, 0} } // Indicates the reason why the VPN connection does not meet the high @@ -30057,11 +30635,11 @@ func (x VpnGatewayStatusHighAvailabilityRequirementState_UnsatisfiedReason) Stri } func (VpnGatewayStatusHighAvailabilityRequirementState_UnsatisfiedReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[465].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[475].Descriptor() } func (VpnGatewayStatusHighAvailabilityRequirementState_UnsatisfiedReason) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[465] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[475] } func (x VpnGatewayStatusHighAvailabilityRequirementState_UnsatisfiedReason) Number() protoreflect.EnumNumber { @@ -30070,7 +30648,7 @@ func (x VpnGatewayStatusHighAvailabilityRequirementState_UnsatisfiedReason) Numb // Deprecated: Use VpnGatewayStatusHighAvailabilityRequirementState_UnsatisfiedReason.Descriptor instead. func (VpnGatewayStatusHighAvailabilityRequirementState_UnsatisfiedReason) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1828, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1911, 1} } // [Output Only] The status of the VPN tunnel, which can be one of the @@ -30188,11 +30766,11 @@ func (x VpnTunnel_Status) String() string { } func (VpnTunnel_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[466].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[476].Descriptor() } func (VpnTunnel_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[466] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[476] } func (x VpnTunnel_Status) Number() protoreflect.EnumNumber { @@ -30201,7 +30779,7 @@ func (x VpnTunnel_Status) Number() protoreflect.EnumNumber { // Deprecated: Use VpnTunnel_Status.Descriptor instead. func (VpnTunnel_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1834, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1917, 0} } // [Output Only] A warning code, if applicable. For example, Compute @@ -30367,11 +30945,11 @@ func (x Warning_Code) String() string { } func (Warning_Code) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[467].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[477].Descriptor() } func (Warning_Code) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[467] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[477] } func (x Warning_Code) Number() protoreflect.EnumNumber { @@ -30380,7 +30958,7 @@ func (x Warning_Code) Number() protoreflect.EnumNumber { // Deprecated: Use Warning_Code.Descriptor instead. func (Warning_Code) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1847, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1930, 0} } // [Output Only] A warning code, if applicable. For example, Compute @@ -30546,11 +31124,11 @@ func (x Warnings_Code) String() string { } func (Warnings_Code) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[468].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[478].Descriptor() } func (Warnings_Code) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[468] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[478] } func (x Warnings_Code) Number() protoreflect.EnumNumber { @@ -30559,7 +31137,7 @@ func (x Warnings_Code) Number() protoreflect.EnumNumber { // Deprecated: Use Warnings_Code.Descriptor instead. func (Warnings_Code) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1848, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1931, 0} } // The configuration of the bandwidth allocation, one of the following: @@ -30612,11 +31190,11 @@ func (x WireProperties_BandwidthAllocation) String() string { } func (WireProperties_BandwidthAllocation) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[469].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[479].Descriptor() } func (WireProperties_BandwidthAllocation) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[469] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[479] } func (x WireProperties_BandwidthAllocation) Number() protoreflect.EnumNumber { @@ -30625,7 +31203,7 @@ func (x WireProperties_BandwidthAllocation) Number() protoreflect.EnumNumber { // Deprecated: Use WireProperties_BandwidthAllocation.Descriptor instead. func (WireProperties_BandwidthAllocation) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1858, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1941, 0} } // Response when a fault is detected in a pseudowire: @@ -30671,11 +31249,11 @@ func (x WireProperties_FaultResponse) String() string { } func (WireProperties_FaultResponse) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[470].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[480].Descriptor() } func (WireProperties_FaultResponse) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[470] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[480] } func (x WireProperties_FaultResponse) Number() protoreflect.EnumNumber { @@ -30684,7 +31262,7 @@ func (x WireProperties_FaultResponse) Number() protoreflect.EnumNumber { // Deprecated: Use WireProperties_FaultResponse.Descriptor instead. func (WireProperties_FaultResponse) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1858, 1} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1941, 1} } // The type of the service resource. @@ -30722,11 +31300,11 @@ func (x XpnResourceId_Type) String() string { } func (XpnResourceId_Type) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[471].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[481].Descriptor() } func (XpnResourceId_Type) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[471] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[481] } func (x XpnResourceId_Type) Number() protoreflect.EnumNumber { @@ -30735,7 +31313,7 @@ func (x XpnResourceId_Type) Number() protoreflect.EnumNumber { // Deprecated: Use XpnResourceId_Type.Descriptor instead. func (XpnResourceId_Type) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1863, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1946, 0} } // [Output Only] Status of the zone, either UP orDOWN. @@ -30773,11 +31351,11 @@ func (x Zone_Status) String() string { } func (Zone_Status) Descriptor() protoreflect.EnumDescriptor { - return file_google_cloud_compute_v1_compute_proto_enumTypes[472].Descriptor() + return file_google_cloud_compute_v1_compute_proto_enumTypes[482].Descriptor() } func (Zone_Status) Type() protoreflect.EnumType { - return &file_google_cloud_compute_v1_compute_proto_enumTypes[472] + return &file_google_cloud_compute_v1_compute_proto_enumTypes[482] } func (x Zone_Status) Number() protoreflect.EnumNumber { @@ -30786,7 +31364,7 @@ func (x Zone_Status) Number() protoreflect.EnumNumber { // Deprecated: Use Zone_Status.Descriptor instead. func (Zone_Status) EnumDescriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1864, 0} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1947, 0} } // Messages @@ -35264,8 +35842,8 @@ func (x *AggregatedListAutoscalersRequest) GetServiceProjectNumber() int64 { return 0 } -// A request message for BackendServices.AggregatedList. See the method description for details. -type AggregatedListBackendServicesRequest struct { +// A request message for BackendBuckets.AggregatedList. See the method description for details. +type AggregatedListBackendBucketsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -35372,20 +35950,20 @@ type AggregatedListBackendServicesRequest struct { sizeCache protoimpl.SizeCache } -func (x *AggregatedListBackendServicesRequest) Reset() { - *x = AggregatedListBackendServicesRequest{} +func (x *AggregatedListBackendBucketsRequest) Reset() { + *x = AggregatedListBackendBucketsRequest{} mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *AggregatedListBackendServicesRequest) String() string { +func (x *AggregatedListBackendBucketsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*AggregatedListBackendServicesRequest) ProtoMessage() {} +func (*AggregatedListBackendBucketsRequest) ProtoMessage() {} -func (x *AggregatedListBackendServicesRequest) ProtoReflect() protoreflect.Message { +func (x *AggregatedListBackendBucketsRequest) ProtoReflect() protoreflect.Message { mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[44] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -35397,69 +35975,69 @@ func (x *AggregatedListBackendServicesRequest) ProtoReflect() protoreflect.Messa return mi.MessageOf(x) } -// Deprecated: Use AggregatedListBackendServicesRequest.ProtoReflect.Descriptor instead. -func (*AggregatedListBackendServicesRequest) Descriptor() ([]byte, []int) { +// Deprecated: Use AggregatedListBackendBucketsRequest.ProtoReflect.Descriptor instead. +func (*AggregatedListBackendBucketsRequest) Descriptor() ([]byte, []int) { return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{44} } -func (x *AggregatedListBackendServicesRequest) GetFilter() string { +func (x *AggregatedListBackendBucketsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *AggregatedListBackendServicesRequest) GetIncludeAllScopes() bool { +func (x *AggregatedListBackendBucketsRequest) GetIncludeAllScopes() bool { if x != nil && x.IncludeAllScopes != nil { return *x.IncludeAllScopes } return false } -func (x *AggregatedListBackendServicesRequest) GetMaxResults() uint32 { +func (x *AggregatedListBackendBucketsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *AggregatedListBackendServicesRequest) GetOrderBy() string { +func (x *AggregatedListBackendBucketsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *AggregatedListBackendServicesRequest) GetPageToken() string { +func (x *AggregatedListBackendBucketsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *AggregatedListBackendServicesRequest) GetProject() string { +func (x *AggregatedListBackendBucketsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *AggregatedListBackendServicesRequest) GetReturnPartialSuccess() bool { +func (x *AggregatedListBackendBucketsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *AggregatedListBackendServicesRequest) GetServiceProjectNumber() int64 { +func (x *AggregatedListBackendBucketsRequest) GetServiceProjectNumber() int64 { if x != nil && x.ServiceProjectNumber != nil { return *x.ServiceProjectNumber } return 0 } -// A request message for DiskTypes.AggregatedList. See the method description for details. -type AggregatedListDiskTypesRequest struct { +// A request message for BackendServices.AggregatedList. See the method description for details. +type AggregatedListBackendServicesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -35550,7 +36128,7 @@ type AggregatedListDiskTypesRequest struct { // `nextPageToken` returned by a previous list request to get // the next page of results. PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` - // Project ID for this request. + // Name of the project scoping this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -35566,20 +36144,20 @@ type AggregatedListDiskTypesRequest struct { sizeCache protoimpl.SizeCache } -func (x *AggregatedListDiskTypesRequest) Reset() { - *x = AggregatedListDiskTypesRequest{} +func (x *AggregatedListBackendServicesRequest) Reset() { + *x = AggregatedListBackendServicesRequest{} mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *AggregatedListDiskTypesRequest) String() string { +func (x *AggregatedListBackendServicesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*AggregatedListDiskTypesRequest) ProtoMessage() {} +func (*AggregatedListBackendServicesRequest) ProtoMessage() {} -func (x *AggregatedListDiskTypesRequest) ProtoReflect() protoreflect.Message { +func (x *AggregatedListBackendServicesRequest) ProtoReflect() protoreflect.Message { mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[45] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -35591,69 +36169,69 @@ func (x *AggregatedListDiskTypesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use AggregatedListDiskTypesRequest.ProtoReflect.Descriptor instead. -func (*AggregatedListDiskTypesRequest) Descriptor() ([]byte, []int) { +// Deprecated: Use AggregatedListBackendServicesRequest.ProtoReflect.Descriptor instead. +func (*AggregatedListBackendServicesRequest) Descriptor() ([]byte, []int) { return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{45} } -func (x *AggregatedListDiskTypesRequest) GetFilter() string { +func (x *AggregatedListBackendServicesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *AggregatedListDiskTypesRequest) GetIncludeAllScopes() bool { +func (x *AggregatedListBackendServicesRequest) GetIncludeAllScopes() bool { if x != nil && x.IncludeAllScopes != nil { return *x.IncludeAllScopes } return false } -func (x *AggregatedListDiskTypesRequest) GetMaxResults() uint32 { +func (x *AggregatedListBackendServicesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *AggregatedListDiskTypesRequest) GetOrderBy() string { +func (x *AggregatedListBackendServicesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *AggregatedListDiskTypesRequest) GetPageToken() string { +func (x *AggregatedListBackendServicesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *AggregatedListDiskTypesRequest) GetProject() string { +func (x *AggregatedListBackendServicesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *AggregatedListDiskTypesRequest) GetReturnPartialSuccess() bool { +func (x *AggregatedListBackendServicesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *AggregatedListDiskTypesRequest) GetServiceProjectNumber() int64 { +func (x *AggregatedListBackendServicesRequest) GetServiceProjectNumber() int64 { if x != nil && x.ServiceProjectNumber != nil { return *x.ServiceProjectNumber } return 0 } -// A request message for Disks.AggregatedList. See the method description for details. -type AggregatedListDisksRequest struct { +// A request message for DiskTypes.AggregatedList. See the method description for details. +type AggregatedListDiskTypesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -35760,20 +36338,20 @@ type AggregatedListDisksRequest struct { sizeCache protoimpl.SizeCache } -func (x *AggregatedListDisksRequest) Reset() { - *x = AggregatedListDisksRequest{} +func (x *AggregatedListDiskTypesRequest) Reset() { + *x = AggregatedListDiskTypesRequest{} mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *AggregatedListDisksRequest) String() string { +func (x *AggregatedListDiskTypesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*AggregatedListDisksRequest) ProtoMessage() {} +func (*AggregatedListDiskTypesRequest) ProtoMessage() {} -func (x *AggregatedListDisksRequest) ProtoReflect() protoreflect.Message { +func (x *AggregatedListDiskTypesRequest) ProtoReflect() protoreflect.Message { mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[46] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -35785,69 +36363,69 @@ func (x *AggregatedListDisksRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use AggregatedListDisksRequest.ProtoReflect.Descriptor instead. -func (*AggregatedListDisksRequest) Descriptor() ([]byte, []int) { +// Deprecated: Use AggregatedListDiskTypesRequest.ProtoReflect.Descriptor instead. +func (*AggregatedListDiskTypesRequest) Descriptor() ([]byte, []int) { return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{46} } -func (x *AggregatedListDisksRequest) GetFilter() string { +func (x *AggregatedListDiskTypesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *AggregatedListDisksRequest) GetIncludeAllScopes() bool { +func (x *AggregatedListDiskTypesRequest) GetIncludeAllScopes() bool { if x != nil && x.IncludeAllScopes != nil { return *x.IncludeAllScopes } return false } -func (x *AggregatedListDisksRequest) GetMaxResults() uint32 { +func (x *AggregatedListDiskTypesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *AggregatedListDisksRequest) GetOrderBy() string { +func (x *AggregatedListDiskTypesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *AggregatedListDisksRequest) GetPageToken() string { +func (x *AggregatedListDiskTypesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *AggregatedListDisksRequest) GetProject() string { +func (x *AggregatedListDiskTypesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *AggregatedListDisksRequest) GetReturnPartialSuccess() bool { +func (x *AggregatedListDiskTypesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *AggregatedListDisksRequest) GetServiceProjectNumber() int64 { +func (x *AggregatedListDiskTypesRequest) GetServiceProjectNumber() int64 { if x != nil && x.ServiceProjectNumber != nil { return *x.ServiceProjectNumber } return 0 } -// A request message for ForwardingRules.AggregatedList. See the method description for details. -type AggregatedListForwardingRulesRequest struct { +// A request message for Disks.AggregatedList. See the method description for details. +type AggregatedListDisksRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -35954,20 +36532,20 @@ type AggregatedListForwardingRulesRequest struct { sizeCache protoimpl.SizeCache } -func (x *AggregatedListForwardingRulesRequest) Reset() { - *x = AggregatedListForwardingRulesRequest{} +func (x *AggregatedListDisksRequest) Reset() { + *x = AggregatedListDisksRequest{} mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *AggregatedListForwardingRulesRequest) String() string { +func (x *AggregatedListDisksRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*AggregatedListForwardingRulesRequest) ProtoMessage() {} +func (*AggregatedListDisksRequest) ProtoMessage() {} -func (x *AggregatedListForwardingRulesRequest) ProtoReflect() protoreflect.Message { +func (x *AggregatedListDisksRequest) ProtoReflect() protoreflect.Message { mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[47] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -35979,69 +36557,69 @@ func (x *AggregatedListForwardingRulesRequest) ProtoReflect() protoreflect.Messa return mi.MessageOf(x) } -// Deprecated: Use AggregatedListForwardingRulesRequest.ProtoReflect.Descriptor instead. -func (*AggregatedListForwardingRulesRequest) Descriptor() ([]byte, []int) { +// Deprecated: Use AggregatedListDisksRequest.ProtoReflect.Descriptor instead. +func (*AggregatedListDisksRequest) Descriptor() ([]byte, []int) { return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{47} } -func (x *AggregatedListForwardingRulesRequest) GetFilter() string { +func (x *AggregatedListDisksRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *AggregatedListForwardingRulesRequest) GetIncludeAllScopes() bool { +func (x *AggregatedListDisksRequest) GetIncludeAllScopes() bool { if x != nil && x.IncludeAllScopes != nil { return *x.IncludeAllScopes } return false } -func (x *AggregatedListForwardingRulesRequest) GetMaxResults() uint32 { +func (x *AggregatedListDisksRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *AggregatedListForwardingRulesRequest) GetOrderBy() string { +func (x *AggregatedListDisksRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *AggregatedListForwardingRulesRequest) GetPageToken() string { +func (x *AggregatedListDisksRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *AggregatedListForwardingRulesRequest) GetProject() string { +func (x *AggregatedListDisksRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *AggregatedListForwardingRulesRequest) GetReturnPartialSuccess() bool { +func (x *AggregatedListDisksRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *AggregatedListForwardingRulesRequest) GetServiceProjectNumber() int64 { +func (x *AggregatedListDisksRequest) GetServiceProjectNumber() int64 { if x != nil && x.ServiceProjectNumber != nil { return *x.ServiceProjectNumber } return 0 } -// A request message for FutureReservations.AggregatedList. See the method description for details. -type AggregatedListFutureReservationsRequest struct { +// A request message for ForwardingRules.AggregatedList. See the method description for details. +type AggregatedListForwardingRulesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -36148,20 +36726,20 @@ type AggregatedListFutureReservationsRequest struct { sizeCache protoimpl.SizeCache } -func (x *AggregatedListFutureReservationsRequest) Reset() { - *x = AggregatedListFutureReservationsRequest{} +func (x *AggregatedListForwardingRulesRequest) Reset() { + *x = AggregatedListForwardingRulesRequest{} mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *AggregatedListFutureReservationsRequest) String() string { +func (x *AggregatedListForwardingRulesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*AggregatedListFutureReservationsRequest) ProtoMessage() {} +func (*AggregatedListForwardingRulesRequest) ProtoMessage() {} -func (x *AggregatedListFutureReservationsRequest) ProtoReflect() protoreflect.Message { +func (x *AggregatedListForwardingRulesRequest) ProtoReflect() protoreflect.Message { mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[48] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) @@ -36173,69 +36751,263 @@ func (x *AggregatedListFutureReservationsRequest) ProtoReflect() protoreflect.Me return mi.MessageOf(x) } -// Deprecated: Use AggregatedListFutureReservationsRequest.ProtoReflect.Descriptor instead. -func (*AggregatedListFutureReservationsRequest) Descriptor() ([]byte, []int) { +// Deprecated: Use AggregatedListForwardingRulesRequest.ProtoReflect.Descriptor instead. +func (*AggregatedListForwardingRulesRequest) Descriptor() ([]byte, []int) { return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{48} } -func (x *AggregatedListFutureReservationsRequest) GetFilter() string { +func (x *AggregatedListForwardingRulesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *AggregatedListFutureReservationsRequest) GetIncludeAllScopes() bool { +func (x *AggregatedListForwardingRulesRequest) GetIncludeAllScopes() bool { if x != nil && x.IncludeAllScopes != nil { return *x.IncludeAllScopes } return false } -func (x *AggregatedListFutureReservationsRequest) GetMaxResults() uint32 { +func (x *AggregatedListForwardingRulesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *AggregatedListFutureReservationsRequest) GetOrderBy() string { +func (x *AggregatedListForwardingRulesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *AggregatedListFutureReservationsRequest) GetPageToken() string { +func (x *AggregatedListForwardingRulesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *AggregatedListFutureReservationsRequest) GetProject() string { +func (x *AggregatedListForwardingRulesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *AggregatedListFutureReservationsRequest) GetReturnPartialSuccess() bool { +func (x *AggregatedListForwardingRulesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *AggregatedListFutureReservationsRequest) GetServiceProjectNumber() int64 { +func (x *AggregatedListForwardingRulesRequest) GetServiceProjectNumber() int64 { if x != nil && x.ServiceProjectNumber != nil { return *x.ServiceProjectNumber } return 0 } -// A request message for GlobalOperations.AggregatedList. See the method description for details. -type AggregatedListGlobalOperationsRequest struct { +// A request message for FutureReservations.AggregatedList. See the method description for details. +type AggregatedListFutureReservationsRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // A filter expression that filters resources listed in the response. Most + // Compute resources support two types of filter expressions: + // expressions that support regular expressions and expressions that follow + // API improvement proposal AIP-160. + // These two types of filter expressions cannot be mixed in one request. + // + // If you want to use AIP-160, your expression must specify the field name, an + // operator, and the value that you want to use for filtering. The value + // must be a string, a number, or a boolean. The operator + // must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. + // + // For example, if you are filtering Compute Engine instances, you can + // exclude instances named `example-instance` by specifying + // `name != example-instance`. + // + // The `:*` comparison can be used to test whether a key has been defined. + // For example, to find all objects with `owner` label use: + // ``` + // labels.owner:* + // ``` + // + // You can also filter nested fields. For example, you could specify + // `scheduling.automaticRestart = false` to include instances only + // if they are not scheduled for automatic restarts. You can use filtering + // on nested fields to filter based onresource labels. + // + // To filter on multiple expressions, provide each separate expression within + // parentheses. For example: + // ``` + // (scheduling.automaticRestart = true) + // (cpuPlatform = "Intel Skylake") + // ``` + // By default, each expression is an `AND` expression. However, you + // can include `AND` and `OR` expressions explicitly. + // For example: + // ``` + // (cpuPlatform = "Intel Skylake") OR + // (cpuPlatform = "Intel Broadwell") AND + // (scheduling.automaticRestart = true) + // ``` + // + // If you want to use a regular expression, use the `eq` (equal) or `ne` + // (not equal) operator against a single un-parenthesized expression with or + // without quotes or against multiple parenthesized expressions. Examples: + // + // `fieldname eq unquoted literal` + // `fieldname eq 'single quoted literal'` + // `fieldname eq "double quoted literal"` + // `(fieldname1 eq literal) (fieldname2 ne "literal")` + // + // The literal value is interpreted as a regular expression using GoogleRE2 library syntax. + // The literal value must match the entire field. + // + // For example, to filter for instances that do not end with name "instance", + // you would use `name ne .*instance`. + // + // You cannot combine constraints on multiple fields using regular + // expressions. + Filter *string `protobuf:"bytes,336120696,opt,name=filter,proto3,oneof" json:"filter,omitempty"` + // Indicates whether every visible scope for each scope type (zone, region, + // global) should be included in the response. For new resource types added + // after this field, the flag has no effect as new resource types will always + // include every visible scope for each scope type in response. For resource + // types which predate this field, if this flag is omitted or false, only + // scopes of the scope types where the resource type is expected to be found + // will be included. + IncludeAllScopes *bool `protobuf:"varint,391327988,opt,name=include_all_scopes,json=includeAllScopes,proto3,oneof" json:"include_all_scopes,omitempty"` + // The maximum number of results per page that should be returned. + // If the number of available results is larger than `maxResults`, + // Compute Engine returns a `nextPageToken` that can be used to get + // the next page of results in subsequent list requests. Acceptable values are + // `0` to `500`, inclusive. (Default: `500`) + MaxResults *uint32 `protobuf:"varint,54715419,opt,name=max_results,json=maxResults,proto3,oneof" json:"max_results,omitempty"` + // Sorts list results by a certain order. By default, results + // are returned in alphanumerical order based on the resource name. + // + // You can also sort results in descending order based on the creation + // timestamp using `orderBy="creationTimestamp desc"`. This sorts + // results based on the `creationTimestamp` field in + // reverse chronological order (newest result first). Use this to sort + // resources like operations so that the newest operation is returned first. + // + // Currently, only sorting by `name` or + // `creationTimestamp desc` is supported. + OrderBy *string `protobuf:"bytes,160562920,opt,name=order_by,json=orderBy,proto3,oneof" json:"order_by,omitempty"` + // Specifies a page token to use. Set `pageToken` to the + // `nextPageToken` returned by a previous list request to get + // the next page of results. + PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Opt-in for partial success behavior which provides partial results in case + // of failure. The default value is false. + // + // For example, when partial success behavior is enabled, aggregatedList for a + // single zone scope either returns all resources in the zone or no resources, + // with an error code. + ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` + // The Shared VPC service project id or service project number for which + // aggregated list request is invoked for subnetworks list-usable api. + ServiceProjectNumber *int64 `protobuf:"varint,316757497,opt,name=service_project_number,json=serviceProjectNumber,proto3,oneof" json:"service_project_number,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *AggregatedListFutureReservationsRequest) Reset() { + *x = AggregatedListFutureReservationsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[49] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *AggregatedListFutureReservationsRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*AggregatedListFutureReservationsRequest) ProtoMessage() {} + +func (x *AggregatedListFutureReservationsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[49] + 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 AggregatedListFutureReservationsRequest.ProtoReflect.Descriptor instead. +func (*AggregatedListFutureReservationsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{49} +} + +func (x *AggregatedListFutureReservationsRequest) GetFilter() string { + if x != nil && x.Filter != nil { + return *x.Filter + } + return "" +} + +func (x *AggregatedListFutureReservationsRequest) GetIncludeAllScopes() bool { + if x != nil && x.IncludeAllScopes != nil { + return *x.IncludeAllScopes + } + return false +} + +func (x *AggregatedListFutureReservationsRequest) GetMaxResults() uint32 { + if x != nil && x.MaxResults != nil { + return *x.MaxResults + } + return 0 +} + +func (x *AggregatedListFutureReservationsRequest) GetOrderBy() string { + if x != nil && x.OrderBy != nil { + return *x.OrderBy + } + return "" +} + +func (x *AggregatedListFutureReservationsRequest) GetPageToken() string { + if x != nil && x.PageToken != nil { + return *x.PageToken + } + return "" +} + +func (x *AggregatedListFutureReservationsRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *AggregatedListFutureReservationsRequest) GetReturnPartialSuccess() bool { + if x != nil && x.ReturnPartialSuccess != nil { + return *x.ReturnPartialSuccess + } + return false +} + +func (x *AggregatedListFutureReservationsRequest) GetServiceProjectNumber() int64 { + if x != nil && x.ServiceProjectNumber != nil { + return *x.ServiceProjectNumber + } + return 0 +} + +// A request message for GlobalOperations.AggregatedList. See the method description for details. +type AggregatedListGlobalOperationsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -36344,7 +37116,7 @@ type AggregatedListGlobalOperationsRequest struct { func (x *AggregatedListGlobalOperationsRequest) Reset() { *x = AggregatedListGlobalOperationsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[49] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36356,7 +37128,7 @@ func (x *AggregatedListGlobalOperationsRequest) String() string { func (*AggregatedListGlobalOperationsRequest) ProtoMessage() {} func (x *AggregatedListGlobalOperationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[49] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[50] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36369,7 +37141,7 @@ func (x *AggregatedListGlobalOperationsRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use AggregatedListGlobalOperationsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListGlobalOperationsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{49} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{50} } func (x *AggregatedListGlobalOperationsRequest) GetFilter() string { @@ -36538,7 +37310,7 @@ type AggregatedListHealthChecksRequest struct { func (x *AggregatedListHealthChecksRequest) Reset() { *x = AggregatedListHealthChecksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[50] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36550,7 +37322,7 @@ func (x *AggregatedListHealthChecksRequest) String() string { func (*AggregatedListHealthChecksRequest) ProtoMessage() {} func (x *AggregatedListHealthChecksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[50] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[51] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36563,7 +37335,7 @@ func (x *AggregatedListHealthChecksRequest) ProtoReflect() protoreflect.Message // Deprecated: Use AggregatedListHealthChecksRequest.ProtoReflect.Descriptor instead. func (*AggregatedListHealthChecksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{50} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{51} } func (x *AggregatedListHealthChecksRequest) GetFilter() string { @@ -36732,7 +37504,7 @@ type AggregatedListInstanceGroupManagersRequest struct { func (x *AggregatedListInstanceGroupManagersRequest) Reset() { *x = AggregatedListInstanceGroupManagersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[51] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36744,7 +37516,7 @@ func (x *AggregatedListInstanceGroupManagersRequest) String() string { func (*AggregatedListInstanceGroupManagersRequest) ProtoMessage() {} func (x *AggregatedListInstanceGroupManagersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[51] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[52] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36757,7 +37529,7 @@ func (x *AggregatedListInstanceGroupManagersRequest) ProtoReflect() protoreflect // Deprecated: Use AggregatedListInstanceGroupManagersRequest.ProtoReflect.Descriptor instead. func (*AggregatedListInstanceGroupManagersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{51} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{52} } func (x *AggregatedListInstanceGroupManagersRequest) GetFilter() string { @@ -36926,7 +37698,7 @@ type AggregatedListInstanceGroupsRequest struct { func (x *AggregatedListInstanceGroupsRequest) Reset() { *x = AggregatedListInstanceGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[52] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -36938,7 +37710,7 @@ func (x *AggregatedListInstanceGroupsRequest) String() string { func (*AggregatedListInstanceGroupsRequest) ProtoMessage() {} func (x *AggregatedListInstanceGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[52] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[53] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -36951,7 +37723,7 @@ func (x *AggregatedListInstanceGroupsRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use AggregatedListInstanceGroupsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListInstanceGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{52} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{53} } func (x *AggregatedListInstanceGroupsRequest) GetFilter() string { @@ -37120,7 +37892,7 @@ type AggregatedListInstanceTemplatesRequest struct { func (x *AggregatedListInstanceTemplatesRequest) Reset() { *x = AggregatedListInstanceTemplatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[53] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[54] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37132,7 +37904,7 @@ func (x *AggregatedListInstanceTemplatesRequest) String() string { func (*AggregatedListInstanceTemplatesRequest) ProtoMessage() {} func (x *AggregatedListInstanceTemplatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[53] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[54] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37145,7 +37917,7 @@ func (x *AggregatedListInstanceTemplatesRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use AggregatedListInstanceTemplatesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListInstanceTemplatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{53} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{54} } func (x *AggregatedListInstanceTemplatesRequest) GetFilter() string { @@ -37314,7 +38086,7 @@ type AggregatedListInstancesRequest struct { func (x *AggregatedListInstancesRequest) Reset() { *x = AggregatedListInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[54] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[55] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37326,7 +38098,7 @@ func (x *AggregatedListInstancesRequest) String() string { func (*AggregatedListInstancesRequest) ProtoMessage() {} func (x *AggregatedListInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[54] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[55] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37339,7 +38111,7 @@ func (x *AggregatedListInstancesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AggregatedListInstancesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{54} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{55} } func (x *AggregatedListInstancesRequest) GetFilter() string { @@ -37508,7 +38280,7 @@ type AggregatedListInstantSnapshotsRequest struct { func (x *AggregatedListInstantSnapshotsRequest) Reset() { *x = AggregatedListInstantSnapshotsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[55] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[56] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37520,7 +38292,7 @@ func (x *AggregatedListInstantSnapshotsRequest) String() string { func (*AggregatedListInstantSnapshotsRequest) ProtoMessage() {} func (x *AggregatedListInstantSnapshotsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[55] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[56] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37533,7 +38305,7 @@ func (x *AggregatedListInstantSnapshotsRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use AggregatedListInstantSnapshotsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListInstantSnapshotsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{55} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{56} } func (x *AggregatedListInstantSnapshotsRequest) GetFilter() string { @@ -37702,7 +38474,7 @@ type AggregatedListInterconnectAttachmentsRequest struct { func (x *AggregatedListInterconnectAttachmentsRequest) Reset() { *x = AggregatedListInterconnectAttachmentsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[56] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[57] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37714,7 +38486,7 @@ func (x *AggregatedListInterconnectAttachmentsRequest) String() string { func (*AggregatedListInterconnectAttachmentsRequest) ProtoMessage() {} func (x *AggregatedListInterconnectAttachmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[56] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[57] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37727,7 +38499,7 @@ func (x *AggregatedListInterconnectAttachmentsRequest) ProtoReflect() protorefle // Deprecated: Use AggregatedListInterconnectAttachmentsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListInterconnectAttachmentsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{56} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{57} } func (x *AggregatedListInterconnectAttachmentsRequest) GetFilter() string { @@ -37896,7 +38668,7 @@ type AggregatedListMachineTypesRequest struct { func (x *AggregatedListMachineTypesRequest) Reset() { *x = AggregatedListMachineTypesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[57] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[58] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -37908,7 +38680,7 @@ func (x *AggregatedListMachineTypesRequest) String() string { func (*AggregatedListMachineTypesRequest) ProtoMessage() {} func (x *AggregatedListMachineTypesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[57] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[58] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -37921,7 +38693,7 @@ func (x *AggregatedListMachineTypesRequest) ProtoReflect() protoreflect.Message // Deprecated: Use AggregatedListMachineTypesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListMachineTypesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{57} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{58} } func (x *AggregatedListMachineTypesRequest) GetFilter() string { @@ -38090,7 +38862,7 @@ type AggregatedListNetworkAttachmentsRequest struct { func (x *AggregatedListNetworkAttachmentsRequest) Reset() { *x = AggregatedListNetworkAttachmentsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[58] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[59] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38102,7 +38874,7 @@ func (x *AggregatedListNetworkAttachmentsRequest) String() string { func (*AggregatedListNetworkAttachmentsRequest) ProtoMessage() {} func (x *AggregatedListNetworkAttachmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[58] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[59] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38115,7 +38887,7 @@ func (x *AggregatedListNetworkAttachmentsRequest) ProtoReflect() protoreflect.Me // Deprecated: Use AggregatedListNetworkAttachmentsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListNetworkAttachmentsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{58} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{59} } func (x *AggregatedListNetworkAttachmentsRequest) GetFilter() string { @@ -38284,7 +39056,7 @@ type AggregatedListNetworkEdgeSecurityServicesRequest struct { func (x *AggregatedListNetworkEdgeSecurityServicesRequest) Reset() { *x = AggregatedListNetworkEdgeSecurityServicesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[59] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[60] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38296,7 +39068,7 @@ func (x *AggregatedListNetworkEdgeSecurityServicesRequest) String() string { func (*AggregatedListNetworkEdgeSecurityServicesRequest) ProtoMessage() {} func (x *AggregatedListNetworkEdgeSecurityServicesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[59] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[60] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38309,7 +39081,7 @@ func (x *AggregatedListNetworkEdgeSecurityServicesRequest) ProtoReflect() protor // Deprecated: Use AggregatedListNetworkEdgeSecurityServicesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListNetworkEdgeSecurityServicesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{59} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{60} } func (x *AggregatedListNetworkEdgeSecurityServicesRequest) GetFilter() string { @@ -38478,7 +39250,7 @@ type AggregatedListNetworkEndpointGroupsRequest struct { func (x *AggregatedListNetworkEndpointGroupsRequest) Reset() { *x = AggregatedListNetworkEndpointGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[60] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[61] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38490,7 +39262,7 @@ func (x *AggregatedListNetworkEndpointGroupsRequest) String() string { func (*AggregatedListNetworkEndpointGroupsRequest) ProtoMessage() {} func (x *AggregatedListNetworkEndpointGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[60] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[61] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38503,7 +39275,7 @@ func (x *AggregatedListNetworkEndpointGroupsRequest) ProtoReflect() protoreflect // Deprecated: Use AggregatedListNetworkEndpointGroupsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListNetworkEndpointGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{60} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{61} } func (x *AggregatedListNetworkEndpointGroupsRequest) GetFilter() string { @@ -38672,7 +39444,7 @@ type AggregatedListNetworkFirewallPoliciesRequest struct { func (x *AggregatedListNetworkFirewallPoliciesRequest) Reset() { *x = AggregatedListNetworkFirewallPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[61] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[62] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38684,7 +39456,7 @@ func (x *AggregatedListNetworkFirewallPoliciesRequest) String() string { func (*AggregatedListNetworkFirewallPoliciesRequest) ProtoMessage() {} func (x *AggregatedListNetworkFirewallPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[61] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[62] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38697,7 +39469,7 @@ func (x *AggregatedListNetworkFirewallPoliciesRequest) ProtoReflect() protorefle // Deprecated: Use AggregatedListNetworkFirewallPoliciesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListNetworkFirewallPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{61} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{62} } func (x *AggregatedListNetworkFirewallPoliciesRequest) GetFilter() string { @@ -38866,7 +39638,7 @@ type AggregatedListNodeGroupsRequest struct { func (x *AggregatedListNodeGroupsRequest) Reset() { *x = AggregatedListNodeGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[62] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[63] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -38878,7 +39650,7 @@ func (x *AggregatedListNodeGroupsRequest) String() string { func (*AggregatedListNodeGroupsRequest) ProtoMessage() {} func (x *AggregatedListNodeGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[62] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[63] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -38891,7 +39663,7 @@ func (x *AggregatedListNodeGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AggregatedListNodeGroupsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListNodeGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{62} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{63} } func (x *AggregatedListNodeGroupsRequest) GetFilter() string { @@ -39060,7 +39832,7 @@ type AggregatedListNodeTemplatesRequest struct { func (x *AggregatedListNodeTemplatesRequest) Reset() { *x = AggregatedListNodeTemplatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[63] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[64] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39072,7 +39844,7 @@ func (x *AggregatedListNodeTemplatesRequest) String() string { func (*AggregatedListNodeTemplatesRequest) ProtoMessage() {} func (x *AggregatedListNodeTemplatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[63] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[64] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39085,7 +39857,7 @@ func (x *AggregatedListNodeTemplatesRequest) ProtoReflect() protoreflect.Message // Deprecated: Use AggregatedListNodeTemplatesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListNodeTemplatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{63} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{64} } func (x *AggregatedListNodeTemplatesRequest) GetFilter() string { @@ -39254,7 +40026,7 @@ type AggregatedListNodeTypesRequest struct { func (x *AggregatedListNodeTypesRequest) Reset() { *x = AggregatedListNodeTypesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[64] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[65] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39266,7 +40038,7 @@ func (x *AggregatedListNodeTypesRequest) String() string { func (*AggregatedListNodeTypesRequest) ProtoMessage() {} func (x *AggregatedListNodeTypesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[64] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[65] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39279,7 +40051,7 @@ func (x *AggregatedListNodeTypesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AggregatedListNodeTypesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListNodeTypesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{64} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{65} } func (x *AggregatedListNodeTypesRequest) GetFilter() string { @@ -39448,7 +40220,7 @@ type AggregatedListPacketMirroringsRequest struct { func (x *AggregatedListPacketMirroringsRequest) Reset() { *x = AggregatedListPacketMirroringsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[65] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[66] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39460,7 +40232,7 @@ func (x *AggregatedListPacketMirroringsRequest) String() string { func (*AggregatedListPacketMirroringsRequest) ProtoMessage() {} func (x *AggregatedListPacketMirroringsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[65] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[66] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39473,7 +40245,7 @@ func (x *AggregatedListPacketMirroringsRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use AggregatedListPacketMirroringsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListPacketMirroringsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{65} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{66} } func (x *AggregatedListPacketMirroringsRequest) GetFilter() string { @@ -39642,7 +40414,7 @@ type AggregatedListPublicDelegatedPrefixesRequest struct { func (x *AggregatedListPublicDelegatedPrefixesRequest) Reset() { *x = AggregatedListPublicDelegatedPrefixesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[66] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[67] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39654,7 +40426,7 @@ func (x *AggregatedListPublicDelegatedPrefixesRequest) String() string { func (*AggregatedListPublicDelegatedPrefixesRequest) ProtoMessage() {} func (x *AggregatedListPublicDelegatedPrefixesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[66] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[67] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39667,7 +40439,7 @@ func (x *AggregatedListPublicDelegatedPrefixesRequest) ProtoReflect() protorefle // Deprecated: Use AggregatedListPublicDelegatedPrefixesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListPublicDelegatedPrefixesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{66} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{67} } func (x *AggregatedListPublicDelegatedPrefixesRequest) GetFilter() string { @@ -39836,7 +40608,7 @@ type AggregatedListRegionCommitmentsRequest struct { func (x *AggregatedListRegionCommitmentsRequest) Reset() { *x = AggregatedListRegionCommitmentsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[67] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[68] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -39848,7 +40620,7 @@ func (x *AggregatedListRegionCommitmentsRequest) String() string { func (*AggregatedListRegionCommitmentsRequest) ProtoMessage() {} func (x *AggregatedListRegionCommitmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[67] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[68] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -39861,7 +40633,7 @@ func (x *AggregatedListRegionCommitmentsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use AggregatedListRegionCommitmentsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListRegionCommitmentsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{67} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{68} } func (x *AggregatedListRegionCommitmentsRequest) GetFilter() string { @@ -40030,7 +40802,7 @@ type AggregatedListRegionCompositeHealthChecksRequest struct { func (x *AggregatedListRegionCompositeHealthChecksRequest) Reset() { *x = AggregatedListRegionCompositeHealthChecksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[68] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[69] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40042,7 +40814,7 @@ func (x *AggregatedListRegionCompositeHealthChecksRequest) String() string { func (*AggregatedListRegionCompositeHealthChecksRequest) ProtoMessage() {} func (x *AggregatedListRegionCompositeHealthChecksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[68] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[69] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40055,7 +40827,7 @@ func (x *AggregatedListRegionCompositeHealthChecksRequest) ProtoReflect() protor // Deprecated: Use AggregatedListRegionCompositeHealthChecksRequest.ProtoReflect.Descriptor instead. func (*AggregatedListRegionCompositeHealthChecksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{68} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{69} } func (x *AggregatedListRegionCompositeHealthChecksRequest) GetFilter() string { @@ -40224,7 +40996,7 @@ type AggregatedListRegionHealthAggregationPoliciesRequest struct { func (x *AggregatedListRegionHealthAggregationPoliciesRequest) Reset() { *x = AggregatedListRegionHealthAggregationPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[69] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[70] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40236,7 +41008,7 @@ func (x *AggregatedListRegionHealthAggregationPoliciesRequest) String() string { func (*AggregatedListRegionHealthAggregationPoliciesRequest) ProtoMessage() {} func (x *AggregatedListRegionHealthAggregationPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[69] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[70] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40249,7 +41021,7 @@ func (x *AggregatedListRegionHealthAggregationPoliciesRequest) ProtoReflect() pr // Deprecated: Use AggregatedListRegionHealthAggregationPoliciesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListRegionHealthAggregationPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{69} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{70} } func (x *AggregatedListRegionHealthAggregationPoliciesRequest) GetFilter() string { @@ -40418,7 +41190,7 @@ type AggregatedListRegionHealthCheckServicesRequest struct { func (x *AggregatedListRegionHealthCheckServicesRequest) Reset() { *x = AggregatedListRegionHealthCheckServicesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[70] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[71] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40430,7 +41202,7 @@ func (x *AggregatedListRegionHealthCheckServicesRequest) String() string { func (*AggregatedListRegionHealthCheckServicesRequest) ProtoMessage() {} func (x *AggregatedListRegionHealthCheckServicesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[70] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[71] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40443,7 +41215,7 @@ func (x *AggregatedListRegionHealthCheckServicesRequest) ProtoReflect() protoref // Deprecated: Use AggregatedListRegionHealthCheckServicesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListRegionHealthCheckServicesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{70} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{71} } func (x *AggregatedListRegionHealthCheckServicesRequest) GetFilter() string { @@ -40612,7 +41384,7 @@ type AggregatedListRegionHealthSourcesRequest struct { func (x *AggregatedListRegionHealthSourcesRequest) Reset() { *x = AggregatedListRegionHealthSourcesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[71] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[72] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40624,7 +41396,7 @@ func (x *AggregatedListRegionHealthSourcesRequest) String() string { func (*AggregatedListRegionHealthSourcesRequest) ProtoMessage() {} func (x *AggregatedListRegionHealthSourcesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[71] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[72] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40637,7 +41409,7 @@ func (x *AggregatedListRegionHealthSourcesRequest) ProtoReflect() protoreflect.M // Deprecated: Use AggregatedListRegionHealthSourcesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListRegionHealthSourcesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{71} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{72} } func (x *AggregatedListRegionHealthSourcesRequest) GetFilter() string { @@ -40806,7 +41578,7 @@ type AggregatedListRegionNotificationEndpointsRequest struct { func (x *AggregatedListRegionNotificationEndpointsRequest) Reset() { *x = AggregatedListRegionNotificationEndpointsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[72] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[73] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -40818,7 +41590,7 @@ func (x *AggregatedListRegionNotificationEndpointsRequest) String() string { func (*AggregatedListRegionNotificationEndpointsRequest) ProtoMessage() {} func (x *AggregatedListRegionNotificationEndpointsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[72] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[73] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -40831,7 +41603,7 @@ func (x *AggregatedListRegionNotificationEndpointsRequest) ProtoReflect() protor // Deprecated: Use AggregatedListRegionNotificationEndpointsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListRegionNotificationEndpointsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{72} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{73} } func (x *AggregatedListRegionNotificationEndpointsRequest) GetFilter() string { @@ -41000,7 +41772,7 @@ type AggregatedListReservationsRequest struct { func (x *AggregatedListReservationsRequest) Reset() { *x = AggregatedListReservationsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[73] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[74] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41012,7 +41784,7 @@ func (x *AggregatedListReservationsRequest) String() string { func (*AggregatedListReservationsRequest) ProtoMessage() {} func (x *AggregatedListReservationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[73] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[74] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41025,7 +41797,7 @@ func (x *AggregatedListReservationsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use AggregatedListReservationsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListReservationsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{73} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{74} } func (x *AggregatedListReservationsRequest) GetFilter() string { @@ -41194,7 +41966,7 @@ type AggregatedListResourcePoliciesRequest struct { func (x *AggregatedListResourcePoliciesRequest) Reset() { *x = AggregatedListResourcePoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[74] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[75] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41206,7 +41978,7 @@ func (x *AggregatedListResourcePoliciesRequest) String() string { func (*AggregatedListResourcePoliciesRequest) ProtoMessage() {} func (x *AggregatedListResourcePoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[74] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[75] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41219,7 +41991,7 @@ func (x *AggregatedListResourcePoliciesRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use AggregatedListResourcePoliciesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListResourcePoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{74} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{75} } func (x *AggregatedListResourcePoliciesRequest) GetFilter() string { @@ -41388,7 +42160,7 @@ type AggregatedListRoutersRequest struct { func (x *AggregatedListRoutersRequest) Reset() { *x = AggregatedListRoutersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[75] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[76] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41400,7 +42172,7 @@ func (x *AggregatedListRoutersRequest) String() string { func (*AggregatedListRoutersRequest) ProtoMessage() {} func (x *AggregatedListRoutersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[75] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[76] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41413,7 +42185,7 @@ func (x *AggregatedListRoutersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AggregatedListRoutersRequest.ProtoReflect.Descriptor instead. func (*AggregatedListRoutersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{75} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{76} } func (x *AggregatedListRoutersRequest) GetFilter() string { @@ -41582,7 +42354,7 @@ type AggregatedListSecurityPoliciesRequest struct { func (x *AggregatedListSecurityPoliciesRequest) Reset() { *x = AggregatedListSecurityPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[76] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[77] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41594,7 +42366,7 @@ func (x *AggregatedListSecurityPoliciesRequest) String() string { func (*AggregatedListSecurityPoliciesRequest) ProtoMessage() {} func (x *AggregatedListSecurityPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[76] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[77] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41607,7 +42379,7 @@ func (x *AggregatedListSecurityPoliciesRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use AggregatedListSecurityPoliciesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListSecurityPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{76} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{77} } func (x *AggregatedListSecurityPoliciesRequest) GetFilter() string { @@ -41776,7 +42548,7 @@ type AggregatedListServiceAttachmentsRequest struct { func (x *AggregatedListServiceAttachmentsRequest) Reset() { *x = AggregatedListServiceAttachmentsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[77] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[78] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41788,7 +42560,7 @@ func (x *AggregatedListServiceAttachmentsRequest) String() string { func (*AggregatedListServiceAttachmentsRequest) ProtoMessage() {} func (x *AggregatedListServiceAttachmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[77] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[78] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41801,7 +42573,7 @@ func (x *AggregatedListServiceAttachmentsRequest) ProtoReflect() protoreflect.Me // Deprecated: Use AggregatedListServiceAttachmentsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListServiceAttachmentsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{77} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{78} } func (x *AggregatedListServiceAttachmentsRequest) GetFilter() string { @@ -41970,7 +42742,7 @@ type AggregatedListSslCertificatesRequest struct { func (x *AggregatedListSslCertificatesRequest) Reset() { *x = AggregatedListSslCertificatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[78] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[79] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -41982,7 +42754,7 @@ func (x *AggregatedListSslCertificatesRequest) String() string { func (*AggregatedListSslCertificatesRequest) ProtoMessage() {} func (x *AggregatedListSslCertificatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[78] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[79] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -41995,7 +42767,7 @@ func (x *AggregatedListSslCertificatesRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use AggregatedListSslCertificatesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListSslCertificatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{78} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{79} } func (x *AggregatedListSslCertificatesRequest) GetFilter() string { @@ -42164,7 +42936,7 @@ type AggregatedListSslPoliciesRequest struct { func (x *AggregatedListSslPoliciesRequest) Reset() { *x = AggregatedListSslPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[79] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[80] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42176,7 +42948,7 @@ func (x *AggregatedListSslPoliciesRequest) String() string { func (*AggregatedListSslPoliciesRequest) ProtoMessage() {} func (x *AggregatedListSslPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[79] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[80] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42189,7 +42961,7 @@ func (x *AggregatedListSslPoliciesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AggregatedListSslPoliciesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListSslPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{79} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{80} } func (x *AggregatedListSslPoliciesRequest) GetFilter() string { @@ -42358,7 +43130,7 @@ type AggregatedListStoragePoolTypesRequest struct { func (x *AggregatedListStoragePoolTypesRequest) Reset() { *x = AggregatedListStoragePoolTypesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[80] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[81] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42370,7 +43142,7 @@ func (x *AggregatedListStoragePoolTypesRequest) String() string { func (*AggregatedListStoragePoolTypesRequest) ProtoMessage() {} func (x *AggregatedListStoragePoolTypesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[80] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[81] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42383,7 +43155,7 @@ func (x *AggregatedListStoragePoolTypesRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use AggregatedListStoragePoolTypesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListStoragePoolTypesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{80} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{81} } func (x *AggregatedListStoragePoolTypesRequest) GetFilter() string { @@ -42552,7 +43324,7 @@ type AggregatedListStoragePoolsRequest struct { func (x *AggregatedListStoragePoolsRequest) Reset() { *x = AggregatedListStoragePoolsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[81] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[82] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42564,7 +43336,7 @@ func (x *AggregatedListStoragePoolsRequest) String() string { func (*AggregatedListStoragePoolsRequest) ProtoMessage() {} func (x *AggregatedListStoragePoolsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[81] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[82] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42577,7 +43349,7 @@ func (x *AggregatedListStoragePoolsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use AggregatedListStoragePoolsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListStoragePoolsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{81} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{82} } func (x *AggregatedListStoragePoolsRequest) GetFilter() string { @@ -42754,7 +43526,7 @@ type AggregatedListSubnetworksRequest struct { func (x *AggregatedListSubnetworksRequest) Reset() { *x = AggregatedListSubnetworksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[82] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[83] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42766,7 +43538,7 @@ func (x *AggregatedListSubnetworksRequest) String() string { func (*AggregatedListSubnetworksRequest) ProtoMessage() {} func (x *AggregatedListSubnetworksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[82] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[83] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42779,7 +43551,7 @@ func (x *AggregatedListSubnetworksRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AggregatedListSubnetworksRequest.ProtoReflect.Descriptor instead. func (*AggregatedListSubnetworksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{82} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{83} } func (x *AggregatedListSubnetworksRequest) GetFilter() string { @@ -42955,7 +43727,7 @@ type AggregatedListTargetHttpProxiesRequest struct { func (x *AggregatedListTargetHttpProxiesRequest) Reset() { *x = AggregatedListTargetHttpProxiesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[83] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[84] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -42967,7 +43739,7 @@ func (x *AggregatedListTargetHttpProxiesRequest) String() string { func (*AggregatedListTargetHttpProxiesRequest) ProtoMessage() {} func (x *AggregatedListTargetHttpProxiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[83] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[84] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -42980,7 +43752,7 @@ func (x *AggregatedListTargetHttpProxiesRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use AggregatedListTargetHttpProxiesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListTargetHttpProxiesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{83} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{84} } func (x *AggregatedListTargetHttpProxiesRequest) GetFilter() string { @@ -43149,7 +43921,7 @@ type AggregatedListTargetHttpsProxiesRequest struct { func (x *AggregatedListTargetHttpsProxiesRequest) Reset() { *x = AggregatedListTargetHttpsProxiesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[84] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[85] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43161,7 +43933,7 @@ func (x *AggregatedListTargetHttpsProxiesRequest) String() string { func (*AggregatedListTargetHttpsProxiesRequest) ProtoMessage() {} func (x *AggregatedListTargetHttpsProxiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[84] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[85] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43174,7 +43946,7 @@ func (x *AggregatedListTargetHttpsProxiesRequest) ProtoReflect() protoreflect.Me // Deprecated: Use AggregatedListTargetHttpsProxiesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListTargetHttpsProxiesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{84} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{85} } func (x *AggregatedListTargetHttpsProxiesRequest) GetFilter() string { @@ -43343,7 +44115,7 @@ type AggregatedListTargetInstancesRequest struct { func (x *AggregatedListTargetInstancesRequest) Reset() { *x = AggregatedListTargetInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[85] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[86] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43355,7 +44127,7 @@ func (x *AggregatedListTargetInstancesRequest) String() string { func (*AggregatedListTargetInstancesRequest) ProtoMessage() {} func (x *AggregatedListTargetInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[85] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[86] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43368,7 +44140,7 @@ func (x *AggregatedListTargetInstancesRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use AggregatedListTargetInstancesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListTargetInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{85} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{86} } func (x *AggregatedListTargetInstancesRequest) GetFilter() string { @@ -43537,7 +44309,7 @@ type AggregatedListTargetPoolsRequest struct { func (x *AggregatedListTargetPoolsRequest) Reset() { *x = AggregatedListTargetPoolsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[86] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[87] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43549,7 +44321,7 @@ func (x *AggregatedListTargetPoolsRequest) String() string { func (*AggregatedListTargetPoolsRequest) ProtoMessage() {} func (x *AggregatedListTargetPoolsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[86] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[87] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43562,7 +44334,7 @@ func (x *AggregatedListTargetPoolsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AggregatedListTargetPoolsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListTargetPoolsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{86} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{87} } func (x *AggregatedListTargetPoolsRequest) GetFilter() string { @@ -43731,7 +44503,7 @@ type AggregatedListTargetTcpProxiesRequest struct { func (x *AggregatedListTargetTcpProxiesRequest) Reset() { *x = AggregatedListTargetTcpProxiesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[87] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[88] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43743,7 +44515,7 @@ func (x *AggregatedListTargetTcpProxiesRequest) String() string { func (*AggregatedListTargetTcpProxiesRequest) ProtoMessage() {} func (x *AggregatedListTargetTcpProxiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[87] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[88] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43756,7 +44528,7 @@ func (x *AggregatedListTargetTcpProxiesRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use AggregatedListTargetTcpProxiesRequest.ProtoReflect.Descriptor instead. func (*AggregatedListTargetTcpProxiesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{87} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{88} } func (x *AggregatedListTargetTcpProxiesRequest) GetFilter() string { @@ -43925,7 +44697,7 @@ type AggregatedListTargetVpnGatewaysRequest struct { func (x *AggregatedListTargetVpnGatewaysRequest) Reset() { *x = AggregatedListTargetVpnGatewaysRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[88] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[89] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -43937,7 +44709,7 @@ func (x *AggregatedListTargetVpnGatewaysRequest) String() string { func (*AggregatedListTargetVpnGatewaysRequest) ProtoMessage() {} func (x *AggregatedListTargetVpnGatewaysRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[88] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[89] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -43950,7 +44722,7 @@ func (x *AggregatedListTargetVpnGatewaysRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use AggregatedListTargetVpnGatewaysRequest.ProtoReflect.Descriptor instead. func (*AggregatedListTargetVpnGatewaysRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{88} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{89} } func (x *AggregatedListTargetVpnGatewaysRequest) GetFilter() string { @@ -44119,7 +44891,7 @@ type AggregatedListUrlMapsRequest struct { func (x *AggregatedListUrlMapsRequest) Reset() { *x = AggregatedListUrlMapsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[89] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[90] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44131,7 +44903,7 @@ func (x *AggregatedListUrlMapsRequest) String() string { func (*AggregatedListUrlMapsRequest) ProtoMessage() {} func (x *AggregatedListUrlMapsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[89] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[90] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44144,7 +44916,7 @@ func (x *AggregatedListUrlMapsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AggregatedListUrlMapsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListUrlMapsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{89} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{90} } func (x *AggregatedListUrlMapsRequest) GetFilter() string { @@ -44313,7 +45085,7 @@ type AggregatedListVpnGatewaysRequest struct { func (x *AggregatedListVpnGatewaysRequest) Reset() { *x = AggregatedListVpnGatewaysRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[90] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[91] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44325,7 +45097,7 @@ func (x *AggregatedListVpnGatewaysRequest) String() string { func (*AggregatedListVpnGatewaysRequest) ProtoMessage() {} func (x *AggregatedListVpnGatewaysRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[90] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[91] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44338,7 +45110,7 @@ func (x *AggregatedListVpnGatewaysRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AggregatedListVpnGatewaysRequest.ProtoReflect.Descriptor instead. func (*AggregatedListVpnGatewaysRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{90} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{91} } func (x *AggregatedListVpnGatewaysRequest) GetFilter() string { @@ -44507,7 +45279,7 @@ type AggregatedListVpnTunnelsRequest struct { func (x *AggregatedListVpnTunnelsRequest) Reset() { *x = AggregatedListVpnTunnelsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[91] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[92] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44519,7 +45291,7 @@ func (x *AggregatedListVpnTunnelsRequest) String() string { func (*AggregatedListVpnTunnelsRequest) ProtoMessage() {} func (x *AggregatedListVpnTunnelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[91] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[92] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44532,7 +45304,7 @@ func (x *AggregatedListVpnTunnelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AggregatedListVpnTunnelsRequest.ProtoReflect.Descriptor instead. func (*AggregatedListVpnTunnelsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{91} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{92} } func (x *AggregatedListVpnTunnelsRequest) GetFilter() string { @@ -44608,7 +45380,7 @@ type AliasIpRange struct { func (x *AliasIpRange) Reset() { *x = AliasIpRange{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[92] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[93] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44620,7 +45392,7 @@ func (x *AliasIpRange) String() string { func (*AliasIpRange) ProtoMessage() {} func (x *AliasIpRange) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[92] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[93] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44633,7 +45405,7 @@ func (x *AliasIpRange) ProtoReflect() protoreflect.Message { // Deprecated: Use AliasIpRange.ProtoReflect.Descriptor instead. func (*AliasIpRange) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{92} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{93} } func (x *AliasIpRange) GetIpCidrRange() string { @@ -44672,7 +45444,7 @@ type AllocationAggregateReservation struct { func (x *AllocationAggregateReservation) Reset() { *x = AllocationAggregateReservation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[93] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[94] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44684,7 +45456,7 @@ func (x *AllocationAggregateReservation) String() string { func (*AllocationAggregateReservation) ProtoMessage() {} func (x *AllocationAggregateReservation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[93] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[94] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44697,7 +45469,7 @@ func (x *AllocationAggregateReservation) ProtoReflect() protoreflect.Message { // Deprecated: Use AllocationAggregateReservation.ProtoReflect.Descriptor instead. func (*AllocationAggregateReservation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{93} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{94} } func (x *AllocationAggregateReservation) GetInUseResources() []*AllocationAggregateReservationReservedResourceInfo { @@ -44738,7 +45510,7 @@ type AllocationAggregateReservationReservedResourceInfo struct { func (x *AllocationAggregateReservationReservedResourceInfo) Reset() { *x = AllocationAggregateReservationReservedResourceInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[94] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[95] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44750,7 +45522,7 @@ func (x *AllocationAggregateReservationReservedResourceInfo) String() string { func (*AllocationAggregateReservationReservedResourceInfo) ProtoMessage() {} func (x *AllocationAggregateReservationReservedResourceInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[94] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[95] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44763,7 +45535,7 @@ func (x *AllocationAggregateReservationReservedResourceInfo) ProtoReflect() prot // Deprecated: Use AllocationAggregateReservationReservedResourceInfo.ProtoReflect.Descriptor instead. func (*AllocationAggregateReservationReservedResourceInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{94} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{95} } func (x *AllocationAggregateReservationReservedResourceInfo) GetAccelerator() *AllocationAggregateReservationReservedResourceInfoAccelerator { @@ -44786,7 +45558,7 @@ type AllocationAggregateReservationReservedResourceInfoAccelerator struct { func (x *AllocationAggregateReservationReservedResourceInfoAccelerator) Reset() { *x = AllocationAggregateReservationReservedResourceInfoAccelerator{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[95] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[96] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44798,7 +45570,7 @@ func (x *AllocationAggregateReservationReservedResourceInfoAccelerator) String() func (*AllocationAggregateReservationReservedResourceInfoAccelerator) ProtoMessage() {} func (x *AllocationAggregateReservationReservedResourceInfoAccelerator) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[95] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[96] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44811,7 +45583,7 @@ func (x *AllocationAggregateReservationReservedResourceInfoAccelerator) ProtoRef // Deprecated: Use AllocationAggregateReservationReservedResourceInfoAccelerator.ProtoReflect.Descriptor instead. func (*AllocationAggregateReservationReservedResourceInfoAccelerator) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{95} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{96} } func (x *AllocationAggregateReservationReservedResourceInfoAccelerator) GetAcceleratorCount() int32 { @@ -44839,7 +45611,7 @@ type AllocationReservationSharingPolicy struct { func (x *AllocationReservationSharingPolicy) Reset() { *x = AllocationReservationSharingPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[96] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[97] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44851,7 +45623,7 @@ func (x *AllocationReservationSharingPolicy) String() string { func (*AllocationReservationSharingPolicy) ProtoMessage() {} func (x *AllocationReservationSharingPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[96] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[97] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44864,7 +45636,7 @@ func (x *AllocationReservationSharingPolicy) ProtoReflect() protoreflect.Message // Deprecated: Use AllocationReservationSharingPolicy.ProtoReflect.Descriptor instead. func (*AllocationReservationSharingPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{96} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{97} } func (x *AllocationReservationSharingPolicy) GetServiceShareType() string { @@ -44891,7 +45663,7 @@ type AllocationResourceStatus struct { func (x *AllocationResourceStatus) Reset() { *x = AllocationResourceStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[97] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[98] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44903,7 +45675,7 @@ func (x *AllocationResourceStatus) String() string { func (*AllocationResourceStatus) ProtoMessage() {} func (x *AllocationResourceStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[97] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[98] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44916,7 +45688,7 @@ func (x *AllocationResourceStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use AllocationResourceStatus.ProtoReflect.Descriptor instead. func (*AllocationResourceStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{97} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{98} } func (x *AllocationResourceStatus) GetHealthInfo() *AllocationResourceStatusHealthInfo { @@ -44963,7 +45735,7 @@ type AllocationResourceStatusHealthInfo struct { func (x *AllocationResourceStatusHealthInfo) Reset() { *x = AllocationResourceStatusHealthInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[98] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[99] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -44975,7 +45747,7 @@ func (x *AllocationResourceStatusHealthInfo) String() string { func (*AllocationResourceStatusHealthInfo) ProtoMessage() {} func (x *AllocationResourceStatusHealthInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[98] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[99] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -44988,7 +45760,7 @@ func (x *AllocationResourceStatusHealthInfo) ProtoReflect() protoreflect.Message // Deprecated: Use AllocationResourceStatusHealthInfo.ProtoReflect.Descriptor instead. func (*AllocationResourceStatusHealthInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{98} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{99} } func (x *AllocationResourceStatusHealthInfo) GetDegradedBlockCount() int32 { @@ -45026,7 +45798,7 @@ type AllocationResourceStatusSpecificSKUAllocation struct { func (x *AllocationResourceStatusSpecificSKUAllocation) Reset() { *x = AllocationResourceStatusSpecificSKUAllocation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[99] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[100] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45038,7 +45810,7 @@ func (x *AllocationResourceStatusSpecificSKUAllocation) String() string { func (*AllocationResourceStatusSpecificSKUAllocation) ProtoMessage() {} func (x *AllocationResourceStatusSpecificSKUAllocation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[99] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[100] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45051,7 +45823,7 @@ func (x *AllocationResourceStatusSpecificSKUAllocation) ProtoReflect() protorefl // Deprecated: Use AllocationResourceStatusSpecificSKUAllocation.ProtoReflect.Descriptor instead. func (*AllocationResourceStatusSpecificSKUAllocation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{99} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{100} } func (x *AllocationResourceStatusSpecificSKUAllocation) GetSourceInstanceTemplateId() string { @@ -45083,7 +45855,7 @@ type AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk stru func (x *AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk) Reset() { *x = AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[100] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[101] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45095,7 +45867,7 @@ func (x *AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk) func (*AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk) ProtoMessage() {} func (x *AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[100] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[101] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45108,7 +45880,7 @@ func (x *AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk) // Deprecated: Use AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk.ProtoReflect.Descriptor instead. func (*AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{100} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{101} } func (x *AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk) GetDiskSizeGb() int64 { @@ -45150,7 +45922,7 @@ type AllocationSpecificSKUAllocationReservedInstanceProperties struct { func (x *AllocationSpecificSKUAllocationReservedInstanceProperties) Reset() { *x = AllocationSpecificSKUAllocationReservedInstanceProperties{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[101] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[102] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45162,7 +45934,7 @@ func (x *AllocationSpecificSKUAllocationReservedInstanceProperties) String() str func (*AllocationSpecificSKUAllocationReservedInstanceProperties) ProtoMessage() {} func (x *AllocationSpecificSKUAllocationReservedInstanceProperties) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[101] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[102] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45175,7 +45947,7 @@ func (x *AllocationSpecificSKUAllocationReservedInstanceProperties) ProtoReflect // Deprecated: Use AllocationSpecificSKUAllocationReservedInstanceProperties.ProtoReflect.Descriptor instead. func (*AllocationSpecificSKUAllocationReservedInstanceProperties) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{101} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{102} } func (x *AllocationSpecificSKUAllocationReservedInstanceProperties) GetGuestAccelerators() []*AcceleratorConfig { @@ -45242,7 +46014,7 @@ type AllocationSpecificSKUReservation struct { func (x *AllocationSpecificSKUReservation) Reset() { *x = AllocationSpecificSKUReservation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[102] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[103] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45254,7 +46026,7 @@ func (x *AllocationSpecificSKUReservation) String() string { func (*AllocationSpecificSKUReservation) ProtoMessage() {} func (x *AllocationSpecificSKUReservation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[102] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[103] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45267,7 +46039,7 @@ func (x *AllocationSpecificSKUReservation) ProtoReflect() protoreflect.Message { // Deprecated: Use AllocationSpecificSKUReservation.ProtoReflect.Descriptor instead. func (*AllocationSpecificSKUReservation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{102} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{103} } func (x *AllocationSpecificSKUReservation) GetAssuredCount() int64 { @@ -45325,7 +46097,7 @@ type Allowed struct { func (x *Allowed) Reset() { *x = Allowed{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[103] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[104] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45337,7 +46109,7 @@ func (x *Allowed) String() string { func (*Allowed) ProtoMessage() {} func (x *Allowed) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[103] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[104] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45350,7 +46122,7 @@ func (x *Allowed) ProtoReflect() protoreflect.Message { // Deprecated: Use Allowed.ProtoReflect.Descriptor instead. func (*Allowed) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{103} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{104} } func (x *Allowed) GetIPProtocol() string { @@ -45394,7 +46166,7 @@ type AnnouncePublicAdvertisedPrefixeRequest struct { func (x *AnnouncePublicAdvertisedPrefixeRequest) Reset() { *x = AnnouncePublicAdvertisedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[104] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[105] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45406,7 +46178,7 @@ func (x *AnnouncePublicAdvertisedPrefixeRequest) String() string { func (*AnnouncePublicAdvertisedPrefixeRequest) ProtoMessage() {} func (x *AnnouncePublicAdvertisedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[104] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[105] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45419,7 +46191,7 @@ func (x *AnnouncePublicAdvertisedPrefixeRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use AnnouncePublicAdvertisedPrefixeRequest.ProtoReflect.Descriptor instead. func (*AnnouncePublicAdvertisedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{104} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{105} } func (x *AnnouncePublicAdvertisedPrefixeRequest) GetProject() string { @@ -45473,7 +46245,7 @@ type AnnouncePublicDelegatedPrefixeRequest struct { func (x *AnnouncePublicDelegatedPrefixeRequest) Reset() { *x = AnnouncePublicDelegatedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[105] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[106] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45485,7 +46257,7 @@ func (x *AnnouncePublicDelegatedPrefixeRequest) String() string { func (*AnnouncePublicDelegatedPrefixeRequest) ProtoMessage() {} func (x *AnnouncePublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[105] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[106] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45498,7 +46270,7 @@ func (x *AnnouncePublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use AnnouncePublicDelegatedPrefixeRequest.ProtoReflect.Descriptor instead. func (*AnnouncePublicDelegatedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{105} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{106} } func (x *AnnouncePublicDelegatedPrefixeRequest) GetProject() string { @@ -45547,7 +46319,7 @@ type ApplyUpdatesToInstancesInstanceGroupManagerRequest struct { func (x *ApplyUpdatesToInstancesInstanceGroupManagerRequest) Reset() { *x = ApplyUpdatesToInstancesInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[106] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[107] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45559,7 +46331,7 @@ func (x *ApplyUpdatesToInstancesInstanceGroupManagerRequest) String() string { func (*ApplyUpdatesToInstancesInstanceGroupManagerRequest) ProtoMessage() {} func (x *ApplyUpdatesToInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[106] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[107] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45572,7 +46344,7 @@ func (x *ApplyUpdatesToInstancesInstanceGroupManagerRequest) ProtoReflect() prot // Deprecated: Use ApplyUpdatesToInstancesInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*ApplyUpdatesToInstancesInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{106} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{107} } func (x *ApplyUpdatesToInstancesInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -45620,7 +46392,7 @@ type ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest struct { func (x *ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest) Reset() { *x = ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[107] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[108] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45632,7 +46404,7 @@ func (x *ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest) String() stri func (*ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[107] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[108] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45645,7 +46417,7 @@ func (x *ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest) ProtoReflect( // Deprecated: Use ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{107} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{108} } func (x *ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -45711,7 +46483,7 @@ type AttachDiskInstanceRequest struct { func (x *AttachDiskInstanceRequest) Reset() { *x = AttachDiskInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[108] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[109] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45723,7 +46495,7 @@ func (x *AttachDiskInstanceRequest) String() string { func (*AttachDiskInstanceRequest) ProtoMessage() {} func (x *AttachDiskInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[108] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[109] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45736,7 +46508,7 @@ func (x *AttachDiskInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AttachDiskInstanceRequest.ProtoReflect.Descriptor instead. func (*AttachDiskInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{108} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{109} } func (x *AttachDiskInstanceRequest) GetAttachedDiskResource() *AttachedDisk { @@ -45811,7 +46583,7 @@ type AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest struct { func (x *AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest) Reset() { *x = AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[109] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[110] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45823,7 +46595,7 @@ func (x *AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest) String() strin func (*AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest) ProtoMessage() {} func (x *AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[109] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[110] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45836,7 +46608,7 @@ func (x *AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest) ProtoReflect() // Deprecated: Use AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{109} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{110} } func (x *AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest) GetGlobalNetworkEndpointGroupsAttachEndpointsRequestResource() *GlobalNetworkEndpointGroupsAttachEndpointsRequest { @@ -45900,7 +46672,7 @@ type AttachNetworkEndpointsNetworkEndpointGroupRequest struct { func (x *AttachNetworkEndpointsNetworkEndpointGroupRequest) Reset() { *x = AttachNetworkEndpointsNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[110] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[111] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -45912,7 +46684,7 @@ func (x *AttachNetworkEndpointsNetworkEndpointGroupRequest) String() string { func (*AttachNetworkEndpointsNetworkEndpointGroupRequest) ProtoMessage() {} func (x *AttachNetworkEndpointsNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[110] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[111] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -45925,7 +46697,7 @@ func (x *AttachNetworkEndpointsNetworkEndpointGroupRequest) ProtoReflect() proto // Deprecated: Use AttachNetworkEndpointsNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*AttachNetworkEndpointsNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{110} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{111} } func (x *AttachNetworkEndpointsNetworkEndpointGroupRequest) GetNetworkEndpointGroup() string { @@ -45997,7 +46769,7 @@ type AttachNetworkEndpointsRegionNetworkEndpointGroupRequest struct { func (x *AttachNetworkEndpointsRegionNetworkEndpointGroupRequest) Reset() { *x = AttachNetworkEndpointsRegionNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[111] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[112] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46009,7 +46781,7 @@ func (x *AttachNetworkEndpointsRegionNetworkEndpointGroupRequest) String() strin func (*AttachNetworkEndpointsRegionNetworkEndpointGroupRequest) ProtoMessage() {} func (x *AttachNetworkEndpointsRegionNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[111] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[112] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46022,7 +46794,7 @@ func (x *AttachNetworkEndpointsRegionNetworkEndpointGroupRequest) ProtoReflect() // Deprecated: Use AttachNetworkEndpointsRegionNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*AttachNetworkEndpointsRegionNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{111} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{112} } func (x *AttachNetworkEndpointsRegionNetworkEndpointGroupRequest) GetNetworkEndpointGroup() string { @@ -46174,7 +46946,7 @@ type AttachedDisk struct { func (x *AttachedDisk) Reset() { *x = AttachedDisk{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[112] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[113] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46186,7 +46958,7 @@ func (x *AttachedDisk) String() string { func (*AttachedDisk) ProtoMessage() {} func (x *AttachedDisk) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[112] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[113] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46199,7 +46971,7 @@ func (x *AttachedDisk) ProtoReflect() protoreflect.Message { // Deprecated: Use AttachedDisk.ProtoReflect.Descriptor instead. func (*AttachedDisk) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{112} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{113} } func (x *AttachedDisk) GetArchitecture() string { @@ -46479,7 +47251,7 @@ type AttachedDiskInitializeParams struct { func (x *AttachedDiskInitializeParams) Reset() { *x = AttachedDiskInitializeParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[113] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[114] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46491,7 +47263,7 @@ func (x *AttachedDiskInitializeParams) String() string { func (*AttachedDiskInitializeParams) ProtoMessage() {} func (x *AttachedDiskInitializeParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[113] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[114] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46504,7 +47276,7 @@ func (x *AttachedDiskInitializeParams) ProtoReflect() protoreflect.Message { // Deprecated: Use AttachedDiskInitializeParams.ProtoReflect.Descriptor instead. func (*AttachedDiskInitializeParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{113} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{114} } func (x *AttachedDiskInitializeParams) GetArchitecture() string { @@ -46706,7 +47478,7 @@ type AuditConfig struct { func (x *AuditConfig) Reset() { *x = AuditConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[114] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[115] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46718,7 +47490,7 @@ func (x *AuditConfig) String() string { func (*AuditConfig) ProtoMessage() {} func (x *AuditConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[114] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[115] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46731,7 +47503,7 @@ func (x *AuditConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use AuditConfig.ProtoReflect.Descriptor instead. func (*AuditConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{114} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{115} } func (x *AuditConfig) GetAuditLogConfigs() []*AuditLogConfig { @@ -46790,7 +47562,7 @@ type AuditLogConfig struct { func (x *AuditLogConfig) Reset() { *x = AuditLogConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[115] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[116] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46802,7 +47574,7 @@ func (x *AuditLogConfig) String() string { func (*AuditLogConfig) ProtoMessage() {} func (x *AuditLogConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[115] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[116] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46815,7 +47587,7 @@ func (x *AuditLogConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use AuditLogConfig.ProtoReflect.Descriptor instead. func (*AuditLogConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{115} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{116} } func (x *AuditLogConfig) GetExemptedMembers() []string { @@ -46929,7 +47701,7 @@ type Autoscaler struct { func (x *Autoscaler) Reset() { *x = Autoscaler{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[116] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[117] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46941,7 +47713,7 @@ func (x *Autoscaler) String() string { func (*Autoscaler) ProtoMessage() {} func (x *Autoscaler) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[116] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[117] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -46954,7 +47726,7 @@ func (x *Autoscaler) ProtoReflect() protoreflect.Message { // Deprecated: Use Autoscaler.ProtoReflect.Descriptor instead. func (*Autoscaler) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{116} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{117} } func (x *Autoscaler) GetAutoscalingPolicy() *AutoscalingPolicy { @@ -47083,7 +47855,7 @@ type AutoscalerAggregatedList struct { func (x *AutoscalerAggregatedList) Reset() { *x = AutoscalerAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[117] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[118] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47095,7 +47867,7 @@ func (x *AutoscalerAggregatedList) String() string { func (*AutoscalerAggregatedList) ProtoMessage() {} func (x *AutoscalerAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[117] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[118] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47108,7 +47880,7 @@ func (x *AutoscalerAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoscalerAggregatedList.ProtoReflect.Descriptor instead. func (*AutoscalerAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{117} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{118} } func (x *AutoscalerAggregatedList) GetId() string { @@ -47186,7 +47958,7 @@ type AutoscalerList struct { func (x *AutoscalerList) Reset() { *x = AutoscalerList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[118] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[119] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47198,7 +47970,7 @@ func (x *AutoscalerList) String() string { func (*AutoscalerList) ProtoMessage() {} func (x *AutoscalerList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[118] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[119] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47211,7 +47983,7 @@ func (x *AutoscalerList) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoscalerList.ProtoReflect.Descriptor instead. func (*AutoscalerList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{118} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{119} } func (x *AutoscalerList) GetId() string { @@ -47321,7 +48093,7 @@ type AutoscalerStatusDetails struct { func (x *AutoscalerStatusDetails) Reset() { *x = AutoscalerStatusDetails{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[119] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[120] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47333,7 +48105,7 @@ func (x *AutoscalerStatusDetails) String() string { func (*AutoscalerStatusDetails) ProtoMessage() {} func (x *AutoscalerStatusDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[119] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[120] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47346,7 +48118,7 @@ func (x *AutoscalerStatusDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoscalerStatusDetails.ProtoReflect.Descriptor instead. func (*AutoscalerStatusDetails) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{119} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{120} } func (x *AutoscalerStatusDetails) GetMessage() string { @@ -47376,7 +48148,7 @@ type AutoscalersScopedList struct { func (x *AutoscalersScopedList) Reset() { *x = AutoscalersScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[120] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[121] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47388,7 +48160,7 @@ func (x *AutoscalersScopedList) String() string { func (*AutoscalersScopedList) ProtoMessage() {} func (x *AutoscalersScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[120] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[121] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47401,7 +48173,7 @@ func (x *AutoscalersScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoscalersScopedList.ProtoReflect.Descriptor instead. func (*AutoscalersScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{120} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{121} } func (x *AutoscalersScopedList) GetAutoscalers() []*Autoscaler { @@ -47476,7 +48248,7 @@ type AutoscalingPolicy struct { func (x *AutoscalingPolicy) Reset() { *x = AutoscalingPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[121] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[122] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47488,7 +48260,7 @@ func (x *AutoscalingPolicy) String() string { func (*AutoscalingPolicy) ProtoMessage() {} func (x *AutoscalingPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[121] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[122] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47501,7 +48273,7 @@ func (x *AutoscalingPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoscalingPolicy.ProtoReflect.Descriptor instead. func (*AutoscalingPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{121} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{122} } func (x *AutoscalingPolicy) GetCoolDownPeriodSec() int32 { @@ -47599,7 +48371,7 @@ type AutoscalingPolicyCpuUtilization struct { func (x *AutoscalingPolicyCpuUtilization) Reset() { *x = AutoscalingPolicyCpuUtilization{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[122] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[123] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47611,7 +48383,7 @@ func (x *AutoscalingPolicyCpuUtilization) String() string { func (*AutoscalingPolicyCpuUtilization) ProtoMessage() {} func (x *AutoscalingPolicyCpuUtilization) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[122] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[123] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47624,7 +48396,7 @@ func (x *AutoscalingPolicyCpuUtilization) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoscalingPolicyCpuUtilization.ProtoReflect.Descriptor instead. func (*AutoscalingPolicyCpuUtilization) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{122} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{123} } func (x *AutoscalingPolicyCpuUtilization) GetPredictiveMethod() string { @@ -47722,7 +48494,7 @@ type AutoscalingPolicyCustomMetricUtilization struct { func (x *AutoscalingPolicyCustomMetricUtilization) Reset() { *x = AutoscalingPolicyCustomMetricUtilization{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[123] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[124] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47734,7 +48506,7 @@ func (x *AutoscalingPolicyCustomMetricUtilization) String() string { func (*AutoscalingPolicyCustomMetricUtilization) ProtoMessage() {} func (x *AutoscalingPolicyCustomMetricUtilization) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[123] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[124] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47747,7 +48519,7 @@ func (x *AutoscalingPolicyCustomMetricUtilization) ProtoReflect() protoreflect.M // Deprecated: Use AutoscalingPolicyCustomMetricUtilization.ProtoReflect.Descriptor instead. func (*AutoscalingPolicyCustomMetricUtilization) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{123} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{124} } func (x *AutoscalingPolicyCustomMetricUtilization) GetFilter() string { @@ -47798,7 +48570,7 @@ type AutoscalingPolicyLoadBalancingUtilization struct { func (x *AutoscalingPolicyLoadBalancingUtilization) Reset() { *x = AutoscalingPolicyLoadBalancingUtilization{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[124] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[125] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47810,7 +48582,7 @@ func (x *AutoscalingPolicyLoadBalancingUtilization) String() string { func (*AutoscalingPolicyLoadBalancingUtilization) ProtoMessage() {} func (x *AutoscalingPolicyLoadBalancingUtilization) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[124] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[125] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47823,7 +48595,7 @@ func (x *AutoscalingPolicyLoadBalancingUtilization) ProtoReflect() protoreflect. // Deprecated: Use AutoscalingPolicyLoadBalancingUtilization.ProtoReflect.Descriptor instead. func (*AutoscalingPolicyLoadBalancingUtilization) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{124} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{125} } func (x *AutoscalingPolicyLoadBalancingUtilization) GetUtilizationTarget() float64 { @@ -47852,7 +48624,7 @@ type AutoscalingPolicyScaleInControl struct { func (x *AutoscalingPolicyScaleInControl) Reset() { *x = AutoscalingPolicyScaleInControl{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[125] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[126] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47864,7 +48636,7 @@ func (x *AutoscalingPolicyScaleInControl) String() string { func (*AutoscalingPolicyScaleInControl) ProtoMessage() {} func (x *AutoscalingPolicyScaleInControl) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[125] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[126] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47877,7 +48649,7 @@ func (x *AutoscalingPolicyScaleInControl) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoscalingPolicyScaleInControl.ProtoReflect.Descriptor instead. func (*AutoscalingPolicyScaleInControl) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{125} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{126} } func (x *AutoscalingPolicyScaleInControl) GetMaxScaledInReplicas() *FixedOrPercent { @@ -47933,7 +48705,7 @@ type AutoscalingPolicyScalingSchedule struct { func (x *AutoscalingPolicyScalingSchedule) Reset() { *x = AutoscalingPolicyScalingSchedule{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[126] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[127] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -47945,7 +48717,7 @@ func (x *AutoscalingPolicyScalingSchedule) String() string { func (*AutoscalingPolicyScalingSchedule) ProtoMessage() {} func (x *AutoscalingPolicyScalingSchedule) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[126] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[127] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -47958,7 +48730,7 @@ func (x *AutoscalingPolicyScalingSchedule) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoscalingPolicyScalingSchedule.ProtoReflect.Descriptor instead. func (*AutoscalingPolicyScalingSchedule) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{126} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{127} } func (x *AutoscalingPolicyScalingSchedule) GetDescription() string { @@ -48074,6 +48846,17 @@ type Backend struct { // // Not available if the backend's balancingMode isRATE. MaxConnectionsPerInstance *int32 `protobuf:"varint,104671900,opt,name=max_connections_per_instance,json=maxConnectionsPerInstance,proto3,oneof" json:"max_connections_per_instance,omitempty"` + // Defines a maximum number of in-flight requests for the whole NEG or + // instance group. Not available if backend's balancingMode isRATE or CONNECTION. + MaxInFlightRequests *int32 `protobuf:"varint,273269332,opt,name=max_in_flight_requests,json=maxInFlightRequests,proto3,oneof" json:"max_in_flight_requests,omitempty"` + // Defines a maximum number of in-flight requests for a single endpoint. + // Not available if backend's balancingMode is RATE + // or CONNECTION. + MaxInFlightRequestsPerEndpoint *int32 `protobuf:"varint,307928706,opt,name=max_in_flight_requests_per_endpoint,json=maxInFlightRequestsPerEndpoint,proto3,oneof" json:"max_in_flight_requests_per_endpoint,omitempty"` + // Defines a maximum number of in-flight requests for a single VM. + // Not available if backend's balancingMode is RATE + // or CONNECTION. + MaxInFlightRequestsPerInstance *int32 `protobuf:"varint,195696002,opt,name=max_in_flight_requests_per_instance,json=maxInFlightRequestsPerInstance,proto3,oneof" json:"max_in_flight_requests_per_instance,omitempty"` // Defines a maximum number of HTTP requests per second (RPS). For // usage guidelines, seeRate // balancing mode and Utilization @@ -48114,14 +48897,16 @@ type Backend struct { // default // // Check the Preference enum for the list of possible values. - Preference *string `protobuf:"bytes,150781147,opt,name=preference,proto3,oneof" json:"preference,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + Preference *string `protobuf:"bytes,150781147,opt,name=preference,proto3,oneof" json:"preference,omitempty"` + // Check the TrafficDuration enum for the list of possible values. + TrafficDuration *string `protobuf:"bytes,11618710,opt,name=traffic_duration,json=trafficDuration,proto3,oneof" json:"traffic_duration,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *Backend) Reset() { *x = Backend{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[127] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[128] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48133,7 +48918,7 @@ func (x *Backend) String() string { func (*Backend) ProtoMessage() {} func (x *Backend) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[127] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[128] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48146,7 +48931,7 @@ func (x *Backend) ProtoReflect() protoreflect.Message { // Deprecated: Use Backend.ProtoReflect.Descriptor instead. func (*Backend) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{127} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{128} } func (x *Backend) GetBalancingMode() string { @@ -48212,6 +48997,27 @@ func (x *Backend) GetMaxConnectionsPerInstance() int32 { return 0 } +func (x *Backend) GetMaxInFlightRequests() int32 { + if x != nil && x.MaxInFlightRequests != nil { + return *x.MaxInFlightRequests + } + return 0 +} + +func (x *Backend) GetMaxInFlightRequestsPerEndpoint() int32 { + if x != nil && x.MaxInFlightRequestsPerEndpoint != nil { + return *x.MaxInFlightRequestsPerEndpoint + } + return 0 +} + +func (x *Backend) GetMaxInFlightRequestsPerInstance() int32 { + if x != nil && x.MaxInFlightRequestsPerInstance != nil { + return *x.MaxInFlightRequestsPerInstance + } + return 0 +} + func (x *Backend) GetMaxRate() int32 { if x != nil && x.MaxRate != nil { return *x.MaxRate @@ -48254,6 +49060,13 @@ func (x *Backend) GetPreference() string { return "" } +func (x *Backend) GetTrafficDuration() string { + if x != nil && x.TrafficDuration != nil { + return *x.TrafficDuration + } + return "" +} + // A message containing information about the resource or system that manages // the backend. type BackendBackendOrchestrationInfo struct { @@ -48266,7 +49079,7 @@ type BackendBackendOrchestrationInfo struct { func (x *BackendBackendOrchestrationInfo) Reset() { *x = BackendBackendOrchestrationInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[128] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[129] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48278,7 +49091,7 @@ func (x *BackendBackendOrchestrationInfo) String() string { func (*BackendBackendOrchestrationInfo) ProtoMessage() {} func (x *BackendBackendOrchestrationInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[128] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[129] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48291,7 +49104,7 @@ func (x *BackendBackendOrchestrationInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendBackendOrchestrationInfo.ProtoReflect.Descriptor instead. func (*BackendBackendOrchestrationInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{128} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{129} } func (x *BackendBackendOrchestrationInfo) GetResourceUri() string { @@ -48351,6 +49164,11 @@ type BackendBucket struct { // Input only. [Input Only] Additional params passed with the request, but not persisted // as part of resource payload. Params *BackendBucketParams `protobuf:"bytes,78313862,opt,name=params,proto3,oneof" json:"params,omitempty"` + // Output only. [Output Only] URL of the region where the regional backend bucket + // resides. This field is not applicable to global backend buckets. + // You must specify this field as part of the HTTP request URL. It is + // not settable as a field in the request body. + Region *string `protobuf:"bytes,138946292,opt,name=region,proto3,oneof" json:"region,omitempty"` // [Output Only] Server-defined URL for the resource. SelfLink *string `protobuf:"bytes,456214797,opt,name=self_link,json=selfLink,proto3,oneof" json:"self_link,omitempty"` // Output only. [Output Only] List of resources referencing that backend bucket. @@ -48361,7 +49179,7 @@ type BackendBucket struct { func (x *BackendBucket) Reset() { *x = BackendBucket{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[129] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[130] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48373,7 +49191,7 @@ func (x *BackendBucket) String() string { func (*BackendBucket) ProtoMessage() {} func (x *BackendBucket) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[129] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[130] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48386,7 +49204,7 @@ func (x *BackendBucket) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendBucket.ProtoReflect.Descriptor instead. func (*BackendBucket) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{129} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{130} } func (x *BackendBucket) GetBucketName() string { @@ -48480,6 +49298,13 @@ func (x *BackendBucket) GetParams() *BackendBucketParams { return nil } +func (x *BackendBucket) GetRegion() string { + if x != nil && x.Region != nil { + return *x.Region + } + return "" +} + func (x *BackendBucket) GetSelfLink() string { if x != nil && x.SelfLink != nil { return *x.SelfLink @@ -48494,6 +49319,100 @@ func (x *BackendBucket) GetUsedBy() []*BackendBucketUsedBy { return nil } +type BackendBucketAggregatedList struct { + state protoimpl.MessageState `protogen:"open.v1"` + // [Output Only] Unique identifier for the resource; defined by the server. + Id *string `protobuf:"bytes,3355,opt,name=id,proto3,oneof" json:"id,omitempty"` + // A list of BackendBucketsScopedList resources. + Items map[string]*BackendBucketsScopedList `protobuf:"bytes,100526016,rep,name=items,proto3" json:"items,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + // Output only. Type of resource. + Kind *string `protobuf:"bytes,3292052,opt,name=kind,proto3,oneof" json:"kind,omitempty"` + // [Output Only] This token allows you to get the next page of results for + // list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for + // the query parameter pageToken in the next list request. + // Subsequent list requests will have their own nextPageToken to + // continue paging through the results. + NextPageToken *string `protobuf:"bytes,79797525,opt,name=next_page_token,json=nextPageToken,proto3,oneof" json:"next_page_token,omitempty"` + // Output only. [Output Only] Server-defined URL for this resource. + SelfLink *string `protobuf:"bytes,456214797,opt,name=self_link,json=selfLink,proto3,oneof" json:"self_link,omitempty"` + // [Output Only] Informational warning message. + Warning *Warning `protobuf:"bytes,50704284,opt,name=warning,proto3,oneof" json:"warning,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *BackendBucketAggregatedList) Reset() { + *x = BackendBucketAggregatedList{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[131] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *BackendBucketAggregatedList) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*BackendBucketAggregatedList) ProtoMessage() {} + +func (x *BackendBucketAggregatedList) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[131] + 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 BackendBucketAggregatedList.ProtoReflect.Descriptor instead. +func (*BackendBucketAggregatedList) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{131} +} + +func (x *BackendBucketAggregatedList) GetId() string { + if x != nil && x.Id != nil { + return *x.Id + } + return "" +} + +func (x *BackendBucketAggregatedList) GetItems() map[string]*BackendBucketsScopedList { + if x != nil { + return x.Items + } + return nil +} + +func (x *BackendBucketAggregatedList) GetKind() string { + if x != nil && x.Kind != nil { + return *x.Kind + } + return "" +} + +func (x *BackendBucketAggregatedList) GetNextPageToken() string { + if x != nil && x.NextPageToken != nil { + return *x.NextPageToken + } + return "" +} + +func (x *BackendBucketAggregatedList) GetSelfLink() string { + if x != nil && x.SelfLink != nil { + return *x.SelfLink + } + return "" +} + +func (x *BackendBucketAggregatedList) GetWarning() *Warning { + if x != nil { + return x.Warning + } + return nil +} + // Message containing Cloud CDN configuration for a backend bucket. type BackendBucketCdnPolicy struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -48613,7 +49532,7 @@ type BackendBucketCdnPolicy struct { func (x *BackendBucketCdnPolicy) Reset() { *x = BackendBucketCdnPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[130] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[132] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48625,7 +49544,7 @@ func (x *BackendBucketCdnPolicy) String() string { func (*BackendBucketCdnPolicy) ProtoMessage() {} func (x *BackendBucketCdnPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[130] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[132] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48638,7 +49557,7 @@ func (x *BackendBucketCdnPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendBucketCdnPolicy.ProtoReflect.Descriptor instead. func (*BackendBucketCdnPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{130} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{132} } func (x *BackendBucketCdnPolicy) GetBypassCacheOnRequestHeaders() []*BackendBucketCdnPolicyBypassCacheOnRequestHeader { @@ -48739,7 +49658,7 @@ type BackendBucketCdnPolicyBypassCacheOnRequestHeader struct { func (x *BackendBucketCdnPolicyBypassCacheOnRequestHeader) Reset() { *x = BackendBucketCdnPolicyBypassCacheOnRequestHeader{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[131] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[133] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48751,7 +49670,7 @@ func (x *BackendBucketCdnPolicyBypassCacheOnRequestHeader) String() string { func (*BackendBucketCdnPolicyBypassCacheOnRequestHeader) ProtoMessage() {} func (x *BackendBucketCdnPolicyBypassCacheOnRequestHeader) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[131] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[133] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48764,7 +49683,7 @@ func (x *BackendBucketCdnPolicyBypassCacheOnRequestHeader) ProtoReflect() protor // Deprecated: Use BackendBucketCdnPolicyBypassCacheOnRequestHeader.ProtoReflect.Descriptor instead. func (*BackendBucketCdnPolicyBypassCacheOnRequestHeader) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{131} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{133} } func (x *BackendBucketCdnPolicyBypassCacheOnRequestHeader) GetHeaderName() string { @@ -48790,7 +49709,7 @@ type BackendBucketCdnPolicyCacheKeyPolicy struct { func (x *BackendBucketCdnPolicyCacheKeyPolicy) Reset() { *x = BackendBucketCdnPolicyCacheKeyPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[132] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[134] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48802,7 +49721,7 @@ func (x *BackendBucketCdnPolicyCacheKeyPolicy) String() string { func (*BackendBucketCdnPolicyCacheKeyPolicy) ProtoMessage() {} func (x *BackendBucketCdnPolicyCacheKeyPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[132] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[134] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48815,7 +49734,7 @@ func (x *BackendBucketCdnPolicyCacheKeyPolicy) ProtoReflect() protoreflect.Messa // Deprecated: Use BackendBucketCdnPolicyCacheKeyPolicy.ProtoReflect.Descriptor instead. func (*BackendBucketCdnPolicyCacheKeyPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{132} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{134} } func (x *BackendBucketCdnPolicyCacheKeyPolicy) GetIncludeHttpHeaders() []string { @@ -48852,7 +49771,7 @@ type BackendBucketCdnPolicyNegativeCachingPolicy struct { func (x *BackendBucketCdnPolicyNegativeCachingPolicy) Reset() { *x = BackendBucketCdnPolicyNegativeCachingPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[133] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[135] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48864,7 +49783,7 @@ func (x *BackendBucketCdnPolicyNegativeCachingPolicy) String() string { func (*BackendBucketCdnPolicyNegativeCachingPolicy) ProtoMessage() {} func (x *BackendBucketCdnPolicyNegativeCachingPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[133] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[135] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48877,7 +49796,7 @@ func (x *BackendBucketCdnPolicyNegativeCachingPolicy) ProtoReflect() protoreflec // Deprecated: Use BackendBucketCdnPolicyNegativeCachingPolicy.ProtoReflect.Descriptor instead. func (*BackendBucketCdnPolicyNegativeCachingPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{133} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{135} } func (x *BackendBucketCdnPolicyNegativeCachingPolicy) GetCode() int32 { @@ -48919,7 +49838,7 @@ type BackendBucketList struct { func (x *BackendBucketList) Reset() { *x = BackendBucketList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[134] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[136] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -48931,7 +49850,7 @@ func (x *BackendBucketList) String() string { func (*BackendBucketList) ProtoMessage() {} func (x *BackendBucketList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[134] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[136] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -48944,7 +49863,7 @@ func (x *BackendBucketList) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendBucketList.ProtoReflect.Descriptor instead. func (*BackendBucketList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{134} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{136} } func (x *BackendBucketList) GetId() string { @@ -48989,6 +49908,101 @@ func (x *BackendBucketList) GetWarning() *Warning { return nil } +type BackendBucketListUsable struct { + state protoimpl.MessageState `protogen:"open.v1"` + // [Output Only] Unique identifier for the resource; defined by the server. + Id *string `protobuf:"bytes,3355,opt,name=id,proto3,oneof" json:"id,omitempty"` + // A list of BackendBucket resources. + Items []*BackendBucket `protobuf:"bytes,100526016,rep,name=items,proto3" json:"items,omitempty"` + // Output only. [Output Only] Type of resource. Alwayscompute#usableBackendBucketList for lists of usable backend + // buckets. + Kind *string `protobuf:"bytes,3292052,opt,name=kind,proto3,oneof" json:"kind,omitempty"` + // [Output Only] This token allows you to get the next page of results for + // list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for + // the query parameter pageToken in the next list request. + // Subsequent list requests will have their own nextPageToken to + // continue paging through the results. + NextPageToken *string `protobuf:"bytes,79797525,opt,name=next_page_token,json=nextPageToken,proto3,oneof" json:"next_page_token,omitempty"` + // Output only. [Output Only] Server-defined URL for this resource. + SelfLink *string `protobuf:"bytes,456214797,opt,name=self_link,json=selfLink,proto3,oneof" json:"self_link,omitempty"` + // [Output Only] Informational warning message. + Warning *Warning `protobuf:"bytes,50704284,opt,name=warning,proto3,oneof" json:"warning,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *BackendBucketListUsable) Reset() { + *x = BackendBucketListUsable{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[137] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *BackendBucketListUsable) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*BackendBucketListUsable) ProtoMessage() {} + +func (x *BackendBucketListUsable) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[137] + 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 BackendBucketListUsable.ProtoReflect.Descriptor instead. +func (*BackendBucketListUsable) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{137} +} + +func (x *BackendBucketListUsable) GetId() string { + if x != nil && x.Id != nil { + return *x.Id + } + return "" +} + +func (x *BackendBucketListUsable) GetItems() []*BackendBucket { + if x != nil { + return x.Items + } + return nil +} + +func (x *BackendBucketListUsable) GetKind() string { + if x != nil && x.Kind != nil { + return *x.Kind + } + return "" +} + +func (x *BackendBucketListUsable) GetNextPageToken() string { + if x != nil && x.NextPageToken != nil { + return *x.NextPageToken + } + return "" +} + +func (x *BackendBucketListUsable) GetSelfLink() string { + if x != nil && x.SelfLink != nil { + return *x.SelfLink + } + return "" +} + +func (x *BackendBucketListUsable) GetWarning() *Warning { + if x != nil { + return x.Warning + } + return nil +} + // Additional Backend Bucket parameters. type BackendBucketParams struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -49011,7 +50025,7 @@ type BackendBucketParams struct { func (x *BackendBucketParams) Reset() { *x = BackendBucketParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[135] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[138] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49023,7 +50037,7 @@ func (x *BackendBucketParams) String() string { func (*BackendBucketParams) ProtoMessage() {} func (x *BackendBucketParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[135] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[138] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49036,7 +50050,7 @@ func (x *BackendBucketParams) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendBucketParams.ProtoReflect.Descriptor instead. func (*BackendBucketParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{135} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{138} } func (x *BackendBucketParams) GetResourceManagerTags() map[string]string { @@ -49057,7 +50071,7 @@ type BackendBucketUsedBy struct { func (x *BackendBucketUsedBy) Reset() { *x = BackendBucketUsedBy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[136] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[139] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49069,7 +50083,7 @@ func (x *BackendBucketUsedBy) String() string { func (*BackendBucketUsedBy) ProtoMessage() {} func (x *BackendBucketUsedBy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[136] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[139] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49082,7 +50096,7 @@ func (x *BackendBucketUsedBy) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendBucketUsedBy.ProtoReflect.Descriptor instead. func (*BackendBucketUsedBy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{136} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{139} } func (x *BackendBucketUsedBy) GetReference() string { @@ -49092,6 +50106,61 @@ func (x *BackendBucketUsedBy) GetReference() string { return "" } +type BackendBucketsScopedList struct { + state protoimpl.MessageState `protogen:"open.v1"` + // A list of BackendBuckets contained in this scope. + BackendBuckets []*BackendBucket `protobuf:"bytes,158780702,rep,name=backend_buckets,json=backendBuckets,proto3" json:"backend_buckets,omitempty"` + // Informational warning which replaces the list of + // backend services when the list is empty. + Warning *Warning `protobuf:"bytes,50704284,opt,name=warning,proto3,oneof" json:"warning,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *BackendBucketsScopedList) Reset() { + *x = BackendBucketsScopedList{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[140] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *BackendBucketsScopedList) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*BackendBucketsScopedList) ProtoMessage() {} + +func (x *BackendBucketsScopedList) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[140] + 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 BackendBucketsScopedList.ProtoReflect.Descriptor instead. +func (*BackendBucketsScopedList) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{140} +} + +func (x *BackendBucketsScopedList) GetBackendBuckets() []*BackendBucket { + if x != nil { + return x.BackendBuckets + } + return nil +} + +func (x *BackendBucketsScopedList) GetWarning() *Warning { + if x != nil { + return x.Warning + } + return nil +} + // Custom Metrics are used for CUSTOM_METRICS balancing_mode. type BackendCustomMetric struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -49117,7 +50186,7 @@ type BackendCustomMetric struct { func (x *BackendCustomMetric) Reset() { *x = BackendCustomMetric{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[137] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[141] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49129,7 +50198,7 @@ func (x *BackendCustomMetric) String() string { func (*BackendCustomMetric) ProtoMessage() {} func (x *BackendCustomMetric) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[137] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[141] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49142,7 +50211,7 @@ func (x *BackendCustomMetric) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendCustomMetric.ProtoReflect.Descriptor instead. func (*BackendCustomMetric) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{137} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{141} } func (x *BackendCustomMetric) GetDryRun() bool { @@ -49224,7 +50293,7 @@ type BackendService struct { // // This field is applicable to either: // - // - A regional backend service with the service_protocol set to HTTP, + // - A regional backend service with the service protocol set to HTTP, // HTTPS, HTTP2 or H2C, and load_balancing_scheme set to // INTERNAL_MANAGED. // - A global backend service with the @@ -49440,7 +50509,7 @@ type BackendService struct { // // This field is applicable to either: // - // - A regional backend service with the service_protocol set to HTTP, + // - A regional backend service with the service protocol set to HTTP, // HTTPS, HTTP2 or H2C, and load_balancing_scheme set to // INTERNAL_MANAGED. // @@ -49537,7 +50606,7 @@ type BackendService struct { // - A global backend service with the loadBalancingScheme set to // INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED. // - A regional backend - // service with the serviceProtocol set to HTTP, HTTPS, HTTP2 or H2C, and + // service with the service protocol set to HTTP, HTTPS, HTTP2 or H2C, and // loadBalancingScheme set to INTERNAL_MANAGED or EXTERNAL_MANAGED. Not // supported for Serverless NEGs. // @@ -49639,7 +50708,7 @@ type BackendService struct { func (x *BackendService) Reset() { *x = BackendService{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[138] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[142] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -49651,7 +50720,7 @@ func (x *BackendService) String() string { func (*BackendService) ProtoMessage() {} func (x *BackendService) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[138] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[142] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -49664,7 +50733,7 @@ func (x *BackendService) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendService.ProtoReflect.Descriptor instead. func (*BackendService) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{138} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{142} } func (x *BackendService) GetAffinityCookieTtlSec() int32 { @@ -50058,7 +51127,7 @@ type BackendServiceAggregatedList struct { func (x *BackendServiceAggregatedList) Reset() { *x = BackendServiceAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[139] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[143] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50070,7 +51139,7 @@ func (x *BackendServiceAggregatedList) String() string { func (*BackendServiceAggregatedList) ProtoMessage() {} func (x *BackendServiceAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[139] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[143] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50083,7 +51152,7 @@ func (x *BackendServiceAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceAggregatedList.ProtoReflect.Descriptor instead. func (*BackendServiceAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{139} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{143} } func (x *BackendServiceAggregatedList) GetId() string { @@ -50254,7 +51323,7 @@ type BackendServiceCdnPolicy struct { func (x *BackendServiceCdnPolicy) Reset() { *x = BackendServiceCdnPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[140] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[144] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50266,7 +51335,7 @@ func (x *BackendServiceCdnPolicy) String() string { func (*BackendServiceCdnPolicy) ProtoMessage() {} func (x *BackendServiceCdnPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[140] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[144] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50279,7 +51348,7 @@ func (x *BackendServiceCdnPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceCdnPolicy.ProtoReflect.Descriptor instead. func (*BackendServiceCdnPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{140} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{144} } func (x *BackendServiceCdnPolicy) GetBypassCacheOnRequestHeaders() []*BackendServiceCdnPolicyBypassCacheOnRequestHeader { @@ -50380,7 +51449,7 @@ type BackendServiceCdnPolicyBypassCacheOnRequestHeader struct { func (x *BackendServiceCdnPolicyBypassCacheOnRequestHeader) Reset() { *x = BackendServiceCdnPolicyBypassCacheOnRequestHeader{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[141] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[145] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50392,7 +51461,7 @@ func (x *BackendServiceCdnPolicyBypassCacheOnRequestHeader) String() string { func (*BackendServiceCdnPolicyBypassCacheOnRequestHeader) ProtoMessage() {} func (x *BackendServiceCdnPolicyBypassCacheOnRequestHeader) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[141] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[145] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50405,7 +51474,7 @@ func (x *BackendServiceCdnPolicyBypassCacheOnRequestHeader) ProtoReflect() proto // Deprecated: Use BackendServiceCdnPolicyBypassCacheOnRequestHeader.ProtoReflect.Descriptor instead. func (*BackendServiceCdnPolicyBypassCacheOnRequestHeader) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{141} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{145} } func (x *BackendServiceCdnPolicyBypassCacheOnRequestHeader) GetHeaderName() string { @@ -50435,7 +51504,7 @@ type BackendServiceCdnPolicyNegativeCachingPolicy struct { func (x *BackendServiceCdnPolicyNegativeCachingPolicy) Reset() { *x = BackendServiceCdnPolicyNegativeCachingPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[142] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[146] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50447,7 +51516,7 @@ func (x *BackendServiceCdnPolicyNegativeCachingPolicy) String() string { func (*BackendServiceCdnPolicyNegativeCachingPolicy) ProtoMessage() {} func (x *BackendServiceCdnPolicyNegativeCachingPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[142] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[146] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50460,7 +51529,7 @@ func (x *BackendServiceCdnPolicyNegativeCachingPolicy) ProtoReflect() protorefle // Deprecated: Use BackendServiceCdnPolicyNegativeCachingPolicy.ProtoReflect.Descriptor instead. func (*BackendServiceCdnPolicyNegativeCachingPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{142} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{146} } func (x *BackendServiceCdnPolicyNegativeCachingPolicy) GetCode() int32 { @@ -50542,7 +51611,7 @@ type BackendServiceConnectionTrackingPolicy struct { func (x *BackendServiceConnectionTrackingPolicy) Reset() { *x = BackendServiceConnectionTrackingPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[143] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[147] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50554,7 +51623,7 @@ func (x *BackendServiceConnectionTrackingPolicy) String() string { func (*BackendServiceConnectionTrackingPolicy) ProtoMessage() {} func (x *BackendServiceConnectionTrackingPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[143] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[147] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50567,7 +51636,7 @@ func (x *BackendServiceConnectionTrackingPolicy) ProtoReflect() protoreflect.Mes // Deprecated: Use BackendServiceConnectionTrackingPolicy.ProtoReflect.Descriptor instead. func (*BackendServiceConnectionTrackingPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{143} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{147} } func (x *BackendServiceConnectionTrackingPolicy) GetConnectionPersistenceOnUnhealthyBackends() string { @@ -50620,7 +51689,7 @@ type BackendServiceCustomMetric struct { func (x *BackendServiceCustomMetric) Reset() { *x = BackendServiceCustomMetric{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[144] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[148] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50632,7 +51701,7 @@ func (x *BackendServiceCustomMetric) String() string { func (*BackendServiceCustomMetric) ProtoMessage() {} func (x *BackendServiceCustomMetric) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[144] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[148] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50645,7 +51714,7 @@ func (x *BackendServiceCustomMetric) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceCustomMetric.ProtoReflect.Descriptor instead. func (*BackendServiceCustomMetric) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{144} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{148} } func (x *BackendServiceCustomMetric) GetDryRun() bool { @@ -50716,7 +51785,7 @@ type BackendServiceFailoverPolicy struct { func (x *BackendServiceFailoverPolicy) Reset() { *x = BackendServiceFailoverPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[145] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[149] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50728,7 +51797,7 @@ func (x *BackendServiceFailoverPolicy) String() string { func (*BackendServiceFailoverPolicy) ProtoMessage() {} func (x *BackendServiceFailoverPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[145] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[149] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50741,7 +51810,7 @@ func (x *BackendServiceFailoverPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceFailoverPolicy.ProtoReflect.Descriptor instead. func (*BackendServiceFailoverPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{145} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{149} } func (x *BackendServiceFailoverPolicy) GetDisableConnectionDrainOnFailover() bool { @@ -50781,7 +51850,7 @@ type BackendServiceGroupHealth struct { func (x *BackendServiceGroupHealth) Reset() { *x = BackendServiceGroupHealth{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[146] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[150] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50793,7 +51862,7 @@ func (x *BackendServiceGroupHealth) String() string { func (*BackendServiceGroupHealth) ProtoMessage() {} func (x *BackendServiceGroupHealth) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[146] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[150] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50806,7 +51875,7 @@ func (x *BackendServiceGroupHealth) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceGroupHealth.ProtoReflect.Descriptor instead. func (*BackendServiceGroupHealth) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{146} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{150} } func (x *BackendServiceGroupHealth) GetAnnotations() map[string]string { @@ -50922,7 +51991,7 @@ type BackendServiceHAPolicy struct { func (x *BackendServiceHAPolicy) Reset() { *x = BackendServiceHAPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[147] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[151] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50934,7 +52003,7 @@ func (x *BackendServiceHAPolicy) String() string { func (*BackendServiceHAPolicy) ProtoMessage() {} func (x *BackendServiceHAPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[147] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[151] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -50947,7 +52016,7 @@ func (x *BackendServiceHAPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceHAPolicy.ProtoReflect.Descriptor instead. func (*BackendServiceHAPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{147} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{151} } func (x *BackendServiceHAPolicy) GetFastIPMove() string { @@ -50987,7 +52056,7 @@ type BackendServiceHAPolicyLeader struct { func (x *BackendServiceHAPolicyLeader) Reset() { *x = BackendServiceHAPolicyLeader{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[148] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[152] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -50999,7 +52068,7 @@ func (x *BackendServiceHAPolicyLeader) String() string { func (*BackendServiceHAPolicyLeader) ProtoMessage() {} func (x *BackendServiceHAPolicyLeader) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[148] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[152] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51012,7 +52081,7 @@ func (x *BackendServiceHAPolicyLeader) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceHAPolicyLeader.ProtoReflect.Descriptor instead. func (*BackendServiceHAPolicyLeader) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{148} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{152} } func (x *BackendServiceHAPolicyLeader) GetBackendGroup() string { @@ -51045,7 +52114,7 @@ type BackendServiceHAPolicyLeaderNetworkEndpoint struct { func (x *BackendServiceHAPolicyLeaderNetworkEndpoint) Reset() { *x = BackendServiceHAPolicyLeaderNetworkEndpoint{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[149] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[153] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51057,7 +52126,7 @@ func (x *BackendServiceHAPolicyLeaderNetworkEndpoint) String() string { func (*BackendServiceHAPolicyLeaderNetworkEndpoint) ProtoMessage() {} func (x *BackendServiceHAPolicyLeaderNetworkEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[149] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[153] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51070,7 +52139,7 @@ func (x *BackendServiceHAPolicyLeaderNetworkEndpoint) ProtoReflect() protoreflec // Deprecated: Use BackendServiceHAPolicyLeaderNetworkEndpoint.ProtoReflect.Descriptor instead. func (*BackendServiceHAPolicyLeaderNetworkEndpoint) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{149} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{153} } func (x *BackendServiceHAPolicyLeaderNetworkEndpoint) GetInstance() string { @@ -51095,7 +52164,7 @@ type BackendServiceHttpCookie struct { func (x *BackendServiceHttpCookie) Reset() { *x = BackendServiceHttpCookie{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[150] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[154] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51107,7 +52176,7 @@ func (x *BackendServiceHttpCookie) String() string { func (*BackendServiceHttpCookie) ProtoMessage() {} func (x *BackendServiceHttpCookie) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[150] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[154] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51120,7 +52189,7 @@ func (x *BackendServiceHttpCookie) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceHttpCookie.ProtoReflect.Descriptor instead. func (*BackendServiceHttpCookie) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{150} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{154} } func (x *BackendServiceHttpCookie) GetName() string { @@ -51167,7 +52236,7 @@ type BackendServiceIAP struct { func (x *BackendServiceIAP) Reset() { *x = BackendServiceIAP{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[151] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[155] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51179,7 +52248,7 @@ func (x *BackendServiceIAP) String() string { func (*BackendServiceIAP) ProtoMessage() {} func (x *BackendServiceIAP) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[151] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[155] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51192,7 +52261,7 @@ func (x *BackendServiceIAP) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceIAP.ProtoReflect.Descriptor instead. func (*BackendServiceIAP) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{151} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{155} } func (x *BackendServiceIAP) GetEnabled() bool { @@ -51248,7 +52317,7 @@ type BackendServiceList struct { func (x *BackendServiceList) Reset() { *x = BackendServiceList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[152] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[156] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51260,7 +52329,7 @@ func (x *BackendServiceList) String() string { func (*BackendServiceList) ProtoMessage() {} func (x *BackendServiceList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[152] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[156] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51273,7 +52342,7 @@ func (x *BackendServiceList) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceList.ProtoReflect.Descriptor instead. func (*BackendServiceList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{152} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{156} } func (x *BackendServiceList) GetId() string { @@ -51344,7 +52413,7 @@ type BackendServiceListUsable struct { func (x *BackendServiceListUsable) Reset() { *x = BackendServiceListUsable{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[153] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[157] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51356,7 +52425,7 @@ func (x *BackendServiceListUsable) String() string { func (*BackendServiceListUsable) ProtoMessage() {} func (x *BackendServiceListUsable) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[153] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[157] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51369,7 +52438,7 @@ func (x *BackendServiceListUsable) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceListUsable.ProtoReflect.Descriptor instead. func (*BackendServiceListUsable) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{153} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{157} } func (x *BackendServiceListUsable) GetId() string { @@ -51426,7 +52495,7 @@ type BackendServiceLocalityLoadBalancingPolicyConfig struct { func (x *BackendServiceLocalityLoadBalancingPolicyConfig) Reset() { *x = BackendServiceLocalityLoadBalancingPolicyConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[154] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[158] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51438,7 +52507,7 @@ func (x *BackendServiceLocalityLoadBalancingPolicyConfig) String() string { func (*BackendServiceLocalityLoadBalancingPolicyConfig) ProtoMessage() {} func (x *BackendServiceLocalityLoadBalancingPolicyConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[154] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[158] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51451,7 +52520,7 @@ func (x *BackendServiceLocalityLoadBalancingPolicyConfig) ProtoReflect() protore // Deprecated: Use BackendServiceLocalityLoadBalancingPolicyConfig.ProtoReflect.Descriptor instead. func (*BackendServiceLocalityLoadBalancingPolicyConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{154} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{158} } func (x *BackendServiceLocalityLoadBalancingPolicyConfig) GetCustomPolicy() *BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy { @@ -51494,7 +52563,7 @@ type BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy struct { func (x *BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy) Reset() { *x = BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[155] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[159] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51506,7 +52575,7 @@ func (x *BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy) String() s func (*BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy) ProtoMessage() {} func (x *BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[155] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[159] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51519,7 +52588,7 @@ func (x *BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy) ProtoRefle // Deprecated: Use BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy.ProtoReflect.Descriptor instead. func (*BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{155} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{159} } func (x *BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy) GetData() string { @@ -51553,7 +52622,7 @@ type BackendServiceLocalityLoadBalancingPolicyConfigPolicy struct { func (x *BackendServiceLocalityLoadBalancingPolicyConfigPolicy) Reset() { *x = BackendServiceLocalityLoadBalancingPolicyConfigPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[156] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[160] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51565,7 +52634,7 @@ func (x *BackendServiceLocalityLoadBalancingPolicyConfigPolicy) String() string func (*BackendServiceLocalityLoadBalancingPolicyConfigPolicy) ProtoMessage() {} func (x *BackendServiceLocalityLoadBalancingPolicyConfigPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[156] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[160] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51578,7 +52647,7 @@ func (x *BackendServiceLocalityLoadBalancingPolicyConfigPolicy) ProtoReflect() p // Deprecated: Use BackendServiceLocalityLoadBalancingPolicyConfigPolicy.ProtoReflect.Descriptor instead. func (*BackendServiceLocalityLoadBalancingPolicyConfigPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{156} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{160} } func (x *BackendServiceLocalityLoadBalancingPolicyConfigPolicy) GetName() string { @@ -51619,7 +52688,7 @@ type BackendServiceLogConfig struct { func (x *BackendServiceLogConfig) Reset() { *x = BackendServiceLogConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[157] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[161] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51631,7 +52700,7 @@ func (x *BackendServiceLogConfig) String() string { func (*BackendServiceLogConfig) ProtoMessage() {} func (x *BackendServiceLogConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[157] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[161] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51644,7 +52713,7 @@ func (x *BackendServiceLogConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceLogConfig.ProtoReflect.Descriptor instead. func (*BackendServiceLogConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{157} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{161} } func (x *BackendServiceLogConfig) GetEnable() bool { @@ -51686,7 +52755,7 @@ type BackendServiceNetworkPassThroughLbTrafficPolicy struct { func (x *BackendServiceNetworkPassThroughLbTrafficPolicy) Reset() { *x = BackendServiceNetworkPassThroughLbTrafficPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[158] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[162] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51698,7 +52767,7 @@ func (x *BackendServiceNetworkPassThroughLbTrafficPolicy) String() string { func (*BackendServiceNetworkPassThroughLbTrafficPolicy) ProtoMessage() {} func (x *BackendServiceNetworkPassThroughLbTrafficPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[158] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[162] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51711,7 +52780,7 @@ func (x *BackendServiceNetworkPassThroughLbTrafficPolicy) ProtoReflect() protore // Deprecated: Use BackendServiceNetworkPassThroughLbTrafficPolicy.ProtoReflect.Descriptor instead. func (*BackendServiceNetworkPassThroughLbTrafficPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{158} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{162} } func (x *BackendServiceNetworkPassThroughLbTrafficPolicy) GetZonalAffinity() *BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity { @@ -51758,7 +52827,7 @@ type BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity struct { func (x *BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity) Reset() { *x = BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[159] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[163] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51770,7 +52839,7 @@ func (x *BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity) String() func (*BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity) ProtoMessage() {} func (x *BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[159] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[163] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51783,7 +52852,7 @@ func (x *BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity) ProtoRefl // Deprecated: Use BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity.ProtoReflect.Descriptor instead. func (*BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{159} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{163} } func (x *BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity) GetSpillover() string { @@ -51813,7 +52882,7 @@ type BackendServiceOrchestrationInfo struct { func (x *BackendServiceOrchestrationInfo) Reset() { *x = BackendServiceOrchestrationInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[160] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[164] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51825,7 +52894,7 @@ func (x *BackendServiceOrchestrationInfo) String() string { func (*BackendServiceOrchestrationInfo) ProtoMessage() {} func (x *BackendServiceOrchestrationInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[160] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[164] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51838,7 +52907,7 @@ func (x *BackendServiceOrchestrationInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceOrchestrationInfo.ProtoReflect.Descriptor instead. func (*BackendServiceOrchestrationInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{160} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{164} } func (x *BackendServiceOrchestrationInfo) GetResourceUri() string { @@ -51870,7 +52939,7 @@ type BackendServiceParams struct { func (x *BackendServiceParams) Reset() { *x = BackendServiceParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[161] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[165] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51882,7 +52951,7 @@ func (x *BackendServiceParams) String() string { func (*BackendServiceParams) ProtoMessage() {} func (x *BackendServiceParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[161] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[165] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51895,7 +52964,7 @@ func (x *BackendServiceParams) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceParams.ProtoReflect.Descriptor instead. func (*BackendServiceParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{161} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{165} } func (x *BackendServiceParams) GetResourceManagerTags() map[string]string { @@ -51914,7 +52983,7 @@ type BackendServiceReference struct { func (x *BackendServiceReference) Reset() { *x = BackendServiceReference{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[162] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[166] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51926,7 +52995,7 @@ func (x *BackendServiceReference) String() string { func (*BackendServiceReference) ProtoMessage() {} func (x *BackendServiceReference) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[162] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[166] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -51939,7 +53008,7 @@ func (x *BackendServiceReference) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceReference.ProtoReflect.Descriptor instead. func (*BackendServiceReference) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{162} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{166} } func (x *BackendServiceReference) GetBackendService() string { @@ -51980,7 +53049,7 @@ type BackendServiceTlsSettings struct { func (x *BackendServiceTlsSettings) Reset() { *x = BackendServiceTlsSettings{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[163] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[167] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -51992,7 +53061,7 @@ func (x *BackendServiceTlsSettings) String() string { func (*BackendServiceTlsSettings) ProtoMessage() {} func (x *BackendServiceTlsSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[163] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[167] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52005,7 +53074,7 @@ func (x *BackendServiceTlsSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceTlsSettings.ProtoReflect.Descriptor instead. func (*BackendServiceTlsSettings) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{163} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{167} } func (x *BackendServiceTlsSettings) GetAuthenticationConfig() string { @@ -52044,7 +53113,7 @@ type BackendServiceTlsSettingsSubjectAltName struct { func (x *BackendServiceTlsSettingsSubjectAltName) Reset() { *x = BackendServiceTlsSettingsSubjectAltName{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[164] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[168] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52056,7 +53125,7 @@ func (x *BackendServiceTlsSettingsSubjectAltName) String() string { func (*BackendServiceTlsSettingsSubjectAltName) ProtoMessage() {} func (x *BackendServiceTlsSettingsSubjectAltName) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[164] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[168] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52069,7 +53138,7 @@ func (x *BackendServiceTlsSettingsSubjectAltName) ProtoReflect() protoreflect.Me // Deprecated: Use BackendServiceTlsSettingsSubjectAltName.ProtoReflect.Descriptor instead. func (*BackendServiceTlsSettingsSubjectAltName) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{164} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{168} } func (x *BackendServiceTlsSettingsSubjectAltName) GetDnsName() string { @@ -52098,7 +53167,7 @@ type BackendServiceUsedBy struct { func (x *BackendServiceUsedBy) Reset() { *x = BackendServiceUsedBy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[165] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[169] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52110,7 +53179,7 @@ func (x *BackendServiceUsedBy) String() string { func (*BackendServiceUsedBy) ProtoMessage() {} func (x *BackendServiceUsedBy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[165] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[169] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52123,7 +53192,7 @@ func (x *BackendServiceUsedBy) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServiceUsedBy.ProtoReflect.Descriptor instead. func (*BackendServiceUsedBy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{165} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{169} } func (x *BackendServiceUsedBy) GetReference() string { @@ -52146,7 +53215,7 @@ type BackendServicesScopedList struct { func (x *BackendServicesScopedList) Reset() { *x = BackendServicesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[166] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[170] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52158,7 +53227,7 @@ func (x *BackendServicesScopedList) String() string { func (*BackendServicesScopedList) ProtoMessage() {} func (x *BackendServicesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[166] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[170] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52171,7 +53240,7 @@ func (x *BackendServicesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use BackendServicesScopedList.ProtoReflect.Descriptor instead. func (*BackendServicesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{166} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{170} } func (x *BackendServicesScopedList) GetBackendServices() []*BackendService { @@ -52243,7 +53312,7 @@ type BfdPacket struct { func (x *BfdPacket) Reset() { *x = BfdPacket{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[167] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[171] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52255,7 +53324,7 @@ func (x *BfdPacket) String() string { func (*BfdPacket) ProtoMessage() {} func (x *BfdPacket) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[167] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[171] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52268,7 +53337,7 @@ func (x *BfdPacket) ProtoReflect() protoreflect.Message { // Deprecated: Use BfdPacket.ProtoReflect.Descriptor instead. func (*BfdPacket) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{167} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{171} } func (x *BfdPacket) GetAuthenticationPresent() bool { @@ -52423,7 +53492,7 @@ type BfdStatus struct { func (x *BfdStatus) Reset() { *x = BfdStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[168] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[172] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52435,7 +53504,7 @@ func (x *BfdStatus) String() string { func (*BfdStatus) ProtoMessage() {} func (x *BfdStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[168] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[172] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52448,7 +53517,7 @@ func (x *BfdStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use BfdStatus.ProtoReflect.Descriptor instead. func (*BfdStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{168} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{172} } func (x *BfdStatus) GetBfdSessionInitializationMode() string { @@ -52541,7 +53610,7 @@ type BfdStatusPacketCounts struct { func (x *BfdStatusPacketCounts) Reset() { *x = BfdStatusPacketCounts{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[169] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[173] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52553,7 +53622,7 @@ func (x *BfdStatusPacketCounts) String() string { func (*BfdStatusPacketCounts) ProtoMessage() {} func (x *BfdStatusPacketCounts) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[169] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[173] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52566,7 +53635,7 @@ func (x *BfdStatusPacketCounts) ProtoReflect() protoreflect.Message { // Deprecated: Use BfdStatusPacketCounts.ProtoReflect.Descriptor instead. func (*BfdStatusPacketCounts) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{169} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{173} } func (x *BfdStatusPacketCounts) GetNumRx() uint32 { @@ -52617,7 +53686,7 @@ type BgpRoute struct { func (x *BgpRoute) Reset() { *x = BgpRoute{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[170] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[174] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52629,7 +53698,7 @@ func (x *BgpRoute) String() string { func (*BgpRoute) ProtoMessage() {} func (x *BgpRoute) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[170] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[174] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52642,7 +53711,7 @@ func (x *BgpRoute) ProtoReflect() protoreflect.Message { // Deprecated: Use BgpRoute.ProtoReflect.Descriptor instead. func (*BgpRoute) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{170} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{174} } func (x *BgpRoute) GetAsPaths() []*BgpRouteAsPath { @@ -52698,7 +53767,7 @@ type BgpRouteAsPath struct { func (x *BgpRouteAsPath) Reset() { *x = BgpRouteAsPath{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[171] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[175] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52710,7 +53779,7 @@ func (x *BgpRouteAsPath) String() string { func (*BgpRouteAsPath) ProtoMessage() {} func (x *BgpRouteAsPath) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[171] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[175] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52723,7 +53792,7 @@ func (x *BgpRouteAsPath) ProtoReflect() protoreflect.Message { // Deprecated: Use BgpRouteAsPath.ProtoReflect.Descriptor instead. func (*BgpRouteAsPath) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{171} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{175} } func (x *BgpRouteAsPath) GetAsns() []int32 { @@ -52761,7 +53830,7 @@ type BgpRouteNetworkLayerReachabilityInformation struct { func (x *BgpRouteNetworkLayerReachabilityInformation) Reset() { *x = BgpRouteNetworkLayerReachabilityInformation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[172] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[176] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52773,7 +53842,7 @@ func (x *BgpRouteNetworkLayerReachabilityInformation) String() string { func (*BgpRouteNetworkLayerReachabilityInformation) ProtoMessage() {} func (x *BgpRouteNetworkLayerReachabilityInformation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[172] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[176] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52786,7 +53855,7 @@ func (x *BgpRouteNetworkLayerReachabilityInformation) ProtoReflect() protoreflec // Deprecated: Use BgpRouteNetworkLayerReachabilityInformation.ProtoReflect.Descriptor instead. func (*BgpRouteNetworkLayerReachabilityInformation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{172} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{176} } func (x *BgpRouteNetworkLayerReachabilityInformation) GetPathId() uint32 { @@ -52912,7 +53981,7 @@ type Binding struct { func (x *Binding) Reset() { *x = Binding{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[173] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[177] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -52924,7 +53993,7 @@ func (x *Binding) String() string { func (*Binding) ProtoMessage() {} func (x *Binding) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[173] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[177] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -52937,7 +54006,7 @@ func (x *Binding) ProtoReflect() protoreflect.Message { // Deprecated: Use Binding.ProtoReflect.Descriptor instead. func (*Binding) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{173} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{177} } func (x *Binding) GetBindingId() string { @@ -52997,7 +54066,7 @@ type BulkInsertDiskRequest struct { func (x *BulkInsertDiskRequest) Reset() { *x = BulkInsertDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[174] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[178] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53009,7 +54078,7 @@ func (x *BulkInsertDiskRequest) String() string { func (*BulkInsertDiskRequest) ProtoMessage() {} func (x *BulkInsertDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[174] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[178] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53022,7 +54091,7 @@ func (x *BulkInsertDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BulkInsertDiskRequest.ProtoReflect.Descriptor instead. func (*BulkInsertDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{174} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{178} } func (x *BulkInsertDiskRequest) GetBulkInsertDiskResourceResource() *BulkInsertDiskResource { @@ -53058,6 +54127,11 @@ func (x *BulkInsertDiskRequest) GetZone() string { // requests and is not persisted. type BulkInsertDiskResource struct { state protoimpl.MessageState `protogen:"open.v1"` + // The parameters for the instant snapshot group. + InstantSnapshotGroupParameters *InstantSnapshotGroupParameters `protobuf:"bytes,17051623,opt,name=instant_snapshot_group_parameters,json=instantSnapshotGroupParameters,proto3,oneof" json:"instant_snapshot_group_parameters,omitempty"` + // The parameters for the snapshot group. The usage of snapshot group feature + // is restricted. + SnapshotGroupParameters *SnapshotGroupParameters `protobuf:"bytes,42252485,opt,name=snapshot_group_parameters,json=snapshotGroupParameters,proto3,oneof" json:"snapshot_group_parameters,omitempty"` // The URL of the DiskConsistencyGroupPolicy for the group of disks to clone. // This may be a full or partial URL, such as: // @@ -53076,7 +54150,7 @@ type BulkInsertDiskResource struct { func (x *BulkInsertDiskResource) Reset() { *x = BulkInsertDiskResource{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[175] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[179] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53088,7 +54162,7 @@ func (x *BulkInsertDiskResource) String() string { func (*BulkInsertDiskResource) ProtoMessage() {} func (x *BulkInsertDiskResource) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[175] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[179] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53101,7 +54175,21 @@ func (x *BulkInsertDiskResource) ProtoReflect() protoreflect.Message { // Deprecated: Use BulkInsertDiskResource.ProtoReflect.Descriptor instead. func (*BulkInsertDiskResource) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{175} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{179} +} + +func (x *BulkInsertDiskResource) GetInstantSnapshotGroupParameters() *InstantSnapshotGroupParameters { + if x != nil { + return x.InstantSnapshotGroupParameters + } + return nil +} + +func (x *BulkInsertDiskResource) GetSnapshotGroupParameters() *SnapshotGroupParameters { + if x != nil { + return x.SnapshotGroupParameters + } + return nil } func (x *BulkInsertDiskResource) GetSourceConsistencyGroupPolicy() string { @@ -53140,7 +54228,7 @@ type BulkInsertInstanceRequest struct { func (x *BulkInsertInstanceRequest) Reset() { *x = BulkInsertInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[176] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[180] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53152,7 +54240,7 @@ func (x *BulkInsertInstanceRequest) String() string { func (*BulkInsertInstanceRequest) ProtoMessage() {} func (x *BulkInsertInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[176] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[180] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53165,7 +54253,7 @@ func (x *BulkInsertInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BulkInsertInstanceRequest.ProtoReflect.Descriptor instead. func (*BulkInsertInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{176} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{180} } func (x *BulkInsertInstanceRequest) GetBulkInsertInstanceResourceResource() *BulkInsertInstanceResource { @@ -53251,7 +54339,7 @@ type BulkInsertInstanceResource struct { func (x *BulkInsertInstanceResource) Reset() { *x = BulkInsertInstanceResource{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[177] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[181] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53263,7 +54351,7 @@ func (x *BulkInsertInstanceResource) String() string { func (*BulkInsertInstanceResource) ProtoMessage() {} func (x *BulkInsertInstanceResource) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[177] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[181] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53276,7 +54364,7 @@ func (x *BulkInsertInstanceResource) ProtoReflect() protoreflect.Message { // Deprecated: Use BulkInsertInstanceResource.ProtoReflect.Descriptor instead. func (*BulkInsertInstanceResource) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{177} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{181} } func (x *BulkInsertInstanceResource) GetCount() int64 { @@ -53350,7 +54438,7 @@ type BulkInsertInstanceResourcePerInstanceProperties struct { func (x *BulkInsertInstanceResourcePerInstanceProperties) Reset() { *x = BulkInsertInstanceResourcePerInstanceProperties{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[178] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[182] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53362,7 +54450,7 @@ func (x *BulkInsertInstanceResourcePerInstanceProperties) String() string { func (*BulkInsertInstanceResourcePerInstanceProperties) ProtoMessage() {} func (x *BulkInsertInstanceResourcePerInstanceProperties) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[178] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[182] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53375,7 +54463,7 @@ func (x *BulkInsertInstanceResourcePerInstanceProperties) ProtoReflect() protore // Deprecated: Use BulkInsertInstanceResourcePerInstanceProperties.ProtoReflect.Descriptor instead. func (*BulkInsertInstanceResourcePerInstanceProperties) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{178} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{182} } func (x *BulkInsertInstanceResourcePerInstanceProperties) GetHostname() string { @@ -53413,7 +54501,7 @@ type BulkInsertOperationStatus struct { func (x *BulkInsertOperationStatus) Reset() { *x = BulkInsertOperationStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[179] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[183] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53425,7 +54513,7 @@ func (x *BulkInsertOperationStatus) String() string { func (*BulkInsertOperationStatus) ProtoMessage() {} func (x *BulkInsertOperationStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[179] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[183] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53438,7 +54526,7 @@ func (x *BulkInsertOperationStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use BulkInsertOperationStatus.ProtoReflect.Descriptor instead. func (*BulkInsertOperationStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{179} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{183} } func (x *BulkInsertOperationStatus) GetCreatedVmCount() int32 { @@ -53505,7 +54593,7 @@ type BulkInsertRegionDiskRequest struct { func (x *BulkInsertRegionDiskRequest) Reset() { *x = BulkInsertRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[180] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[184] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53517,7 +54605,7 @@ func (x *BulkInsertRegionDiskRequest) String() string { func (*BulkInsertRegionDiskRequest) ProtoMessage() {} func (x *BulkInsertRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[180] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[184] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53530,7 +54618,7 @@ func (x *BulkInsertRegionDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BulkInsertRegionDiskRequest.ProtoReflect.Descriptor instead. func (*BulkInsertRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{180} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{184} } func (x *BulkInsertRegionDiskRequest) GetBulkInsertDiskResourceResource() *BulkInsertDiskResource { @@ -53590,7 +54678,7 @@ type BulkInsertRegionInstanceRequest struct { func (x *BulkInsertRegionInstanceRequest) Reset() { *x = BulkInsertRegionInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[181] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[185] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53602,7 +54690,7 @@ func (x *BulkInsertRegionInstanceRequest) String() string { func (*BulkInsertRegionInstanceRequest) ProtoMessage() {} func (x *BulkInsertRegionInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[181] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[185] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53615,7 +54703,7 @@ func (x *BulkInsertRegionInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BulkInsertRegionInstanceRequest.ProtoReflect.Descriptor instead. func (*BulkInsertRegionInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{181} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{185} } func (x *BulkInsertRegionInstanceRequest) GetBulkInsertInstanceResourceResource() *BulkInsertInstanceResource { @@ -53677,7 +54765,7 @@ type BulkSetLabelsDiskRequest struct { func (x *BulkSetLabelsDiskRequest) Reset() { *x = BulkSetLabelsDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[182] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[186] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53689,7 +54777,7 @@ func (x *BulkSetLabelsDiskRequest) String() string { func (*BulkSetLabelsDiskRequest) ProtoMessage() {} func (x *BulkSetLabelsDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[182] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[186] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53702,7 +54790,7 @@ func (x *BulkSetLabelsDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BulkSetLabelsDiskRequest.ProtoReflect.Descriptor instead. func (*BulkSetLabelsDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{182} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{186} } func (x *BulkSetLabelsDiskRequest) GetBulkZoneSetLabelsRequestResource() *BulkZoneSetLabelsRequest { @@ -53757,7 +54845,7 @@ type BulkSetLabelsRequest struct { func (x *BulkSetLabelsRequest) Reset() { *x = BulkSetLabelsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[183] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[187] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53769,7 +54857,7 @@ func (x *BulkSetLabelsRequest) String() string { func (*BulkSetLabelsRequest) ProtoMessage() {} func (x *BulkSetLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[183] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[187] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53782,7 +54870,7 @@ func (x *BulkSetLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BulkSetLabelsRequest.ProtoReflect.Descriptor instead. func (*BulkSetLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{183} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{187} } func (x *BulkSetLabelsRequest) GetLabelFingerprint() string { @@ -53808,7 +54896,7 @@ type BulkZoneSetLabelsRequest struct { func (x *BulkZoneSetLabelsRequest) Reset() { *x = BulkZoneSetLabelsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[184] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[188] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53820,7 +54908,7 @@ func (x *BulkZoneSetLabelsRequest) String() string { func (*BulkZoneSetLabelsRequest) ProtoMessage() {} func (x *BulkZoneSetLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[184] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[188] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53833,7 +54921,7 @@ func (x *BulkZoneSetLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BulkZoneSetLabelsRequest.ProtoReflect.Descriptor instead. func (*BulkZoneSetLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{184} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{188} } func (x *BulkZoneSetLabelsRequest) GetRequests() []*BulkSetLabelsRequest { @@ -53855,7 +54943,7 @@ type BundledLocalSsds struct { func (x *BundledLocalSsds) Reset() { *x = BundledLocalSsds{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[185] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[189] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53867,7 +54955,7 @@ func (x *BundledLocalSsds) String() string { func (*BundledLocalSsds) ProtoMessage() {} func (x *BundledLocalSsds) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[185] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[189] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53880,7 +54968,7 @@ func (x *BundledLocalSsds) ProtoReflect() protoreflect.Message { // Deprecated: Use BundledLocalSsds.ProtoReflect.Descriptor instead. func (*BundledLocalSsds) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{185} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{189} } func (x *BundledLocalSsds) GetDefaultInterface() string { @@ -53920,7 +55008,7 @@ type CacheInvalidationRule struct { func (x *CacheInvalidationRule) Reset() { *x = CacheInvalidationRule{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[186] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[190] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -53932,7 +55020,7 @@ func (x *CacheInvalidationRule) String() string { func (*CacheInvalidationRule) ProtoMessage() {} func (x *CacheInvalidationRule) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[186] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[190] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -53945,7 +55033,7 @@ func (x *CacheInvalidationRule) ProtoReflect() protoreflect.Message { // Deprecated: Use CacheInvalidationRule.ProtoReflect.Descriptor instead. func (*CacheInvalidationRule) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{186} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{190} } func (x *CacheInvalidationRule) GetCacheTags() []string { @@ -54003,7 +55091,7 @@ type CacheKeyPolicy struct { func (x *CacheKeyPolicy) Reset() { *x = CacheKeyPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[187] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[191] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54015,7 +55103,7 @@ func (x *CacheKeyPolicy) String() string { func (*CacheKeyPolicy) ProtoMessage() {} func (x *CacheKeyPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[187] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[191] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54028,7 +55116,7 @@ func (x *CacheKeyPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use CacheKeyPolicy.ProtoReflect.Descriptor instead. func (*CacheKeyPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{187} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{191} } func (x *CacheKeyPolicy) GetIncludeHost() bool { @@ -54080,6 +55168,407 @@ func (x *CacheKeyPolicy) GetQueryStringWhitelist() []string { return nil } +// Message containing CachePolicy configuration for URL Map's Route Action. +type CachePolicy struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Bypass the cache when the specified request headers are matched by name, + // e.g. Pragma or Authorization headers. Values are case-insensitive. Up to 5 + // header names can be specified. The cache is bypassed for all `cacheMode` + // values. + CacheBypassRequestHeaderNames []string `protobuf:"bytes,197581440,rep,name=cache_bypass_request_header_names,json=cacheBypassRequestHeaderNames,proto3" json:"cache_bypass_request_header_names,omitempty"` + // The cache key configuration. If not specified, the default behavior depends + // on the backend type: for Backend Services, the complete request URI is + // used; for Backend Buckets, the request URI is used without the protocol or + // host, and only query parameters known to Cloud Storage are included. + CacheKeyPolicy *CachePolicyCacheKeyPolicy `protobuf:"bytes,159263727,opt,name=cache_key_policy,json=cacheKeyPolicy,proto3,oneof" json:"cache_key_policy,omitempty"` + // Specifies the cache setting for all responses from this route. If not + // specified, Cloud CDN uses `CACHE_ALL_STATIC` mode. + // Check the CacheMode enum for the list of possible values. + CacheMode *string `protobuf:"bytes,28877888,opt,name=cache_mode,json=cacheMode,proto3,oneof" json:"cache_mode,omitempty"` + // Specifies a separate client (e.g. browser client) maximum TTL for cached + // content. This is used to clamp the max-age (or Expires) value sent to the + // client. With `FORCE_CACHE_ALL`, the lesser of `clientTtl` and `defaultTtl` + // is used for the response max-age directive, along with a "public" + // directive. For cacheable content in `CACHE_ALL_STATIC` mode, `clientTtl` + // clamps the max-age from the origin (if specified), or else sets the + // response max-age directive to the lesser of the `clientTtl` and + // `defaultTtl`, and also ensures a "public" cache-control directive is + // present. The maximum allowed value is 31,622,400s (1 year). If not + // specified, Cloud CDN uses 3600s (1 hour) for `CACHE_ALL_STATIC` mode. + // Cannot exceed `maxTtl`. Cannot be specified when `cacheMode` is + // `USE_ORIGIN_HEADERS`. + ClientTtl *Duration `protobuf:"bytes,29034360,opt,name=client_ttl,json=clientTtl,proto3,oneof" json:"client_ttl,omitempty"` + // Specifies the default TTL for cached content for responses that do not have + // an existing valid TTL (max-age or s-maxage). Setting a TTL of "0" means + // "always revalidate". The value of `defaultTtl` cannot be set to a value + // greater than that of `maxTtl`. When the `cacheMode` is set to + // `FORCE_CACHE_ALL`, the `defaultTtl` will overwrite the TTL set in all + // responses. The maximum allowed value is 31,622,400s (1 year). Infrequently + // accessed objects may be evicted from the cache before the defined TTL. If + // not specified, Cloud CDN uses 3600s (1 hour) for `CACHE_ALL_STATIC` and + // `FORCE_CACHE_ALL` modes. Cannot be specified when `cacheMode` is + // `USE_ORIGIN_HEADERS`. + DefaultTtl *Duration `protobuf:"bytes,100253422,opt,name=default_ttl,json=defaultTtl,proto3,oneof" json:"default_ttl,omitempty"` + // Specifies the maximum allowed TTL for cached content. Cache directives that + // attempt to set a max-age or s-maxage higher than this, or an Expires header + // more than `maxTtl` seconds in the future will be capped at the value of + // `maxTtl`, as if it were the value of an s-maxage Cache-Control directive. + // Headers sent to the client will not be modified. Setting a TTL of "0" means + // "always revalidate". The maximum allowed value is 31,622,400s (1 year). + // Infrequently accessed objects may be evicted from the cache before the + // defined TTL. If not specified, Cloud CDN uses 86400s (1 day) for + // `CACHE_ALL_STATIC` mode. Can be specified only for `CACHE_ALL_STATIC` cache + // mode. + MaxTtl *Duration `protobuf:"bytes,307578001,opt,name=max_ttl,json=maxTtl,proto3,oneof" json:"max_ttl,omitempty"` + // Negative caching allows per-status code TTLs to be set, in order + // to apply fine-grained caching for common errors or redirects. + // This can reduce the load on your origin and improve end-user + // experience by reducing response latency. + // When the `cacheMode` is set to `CACHE_ALL_STATIC` or + // `USE_ORIGIN_HEADERS`, negative caching applies to responses with + // the specified response code that lack any Cache-Control, Expires, or + // Pragma: no-cache directives. When the `cacheMode` is set to + // `FORCE_CACHE_ALL`, negative caching applies to all responses + // with the specified response code, and overrides any caching headers. By + // default, Cloud CDN applies the following TTLs to these HTTP status codes: + // + // * 300 (Multiple Choice), 301, 308 (Permanent Redirects): 10m + // * 404 (Not Found), 410 (Gone), 451 (Unavailable For Legal Reasons): 120s + // * 405 (Method Not Found), 501 (Not Implemented): 60s + // + // These defaults can be overridden in `negativeCachingPolicy`. + // If not specified, Cloud CDN applies negative caching by default. + NegativeCaching *bool `protobuf:"varint,336110005,opt,name=negative_caching,json=negativeCaching,proto3,oneof" json:"negative_caching,omitempty"` + // Sets a cache TTL for the specified HTTP status code. + // `negativeCaching` must be enabled to configure `negativeCachingPolicy`. + // Omitting the policy and leaving `negativeCaching` enabled will use Cloud + // CDN's default cache TTLs. Note that when specifying an explicit + // `negativeCachingPolicy`, you should take care to specify a cache TTL for + // all response codes that you wish to cache. Cloud CDN will not apply any + // default negative caching when a policy exists. + NegativeCachingPolicy []*CachePolicyNegativeCachingPolicy `protobuf:"bytes,155359996,rep,name=negative_caching_policy,json=negativeCachingPolicy,proto3" json:"negative_caching_policy,omitempty"` + // If true then Cloud CDN will combine multiple concurrent cache fill + // requests into a small number of requests to the origin. If not specified, + // Cloud CDN applies request coalescing by default. + RequestCoalescing *bool `protobuf:"varint,532808276,opt,name=request_coalescing,json=requestCoalescing,proto3,oneof" json:"request_coalescing,omitempty"` + // Serve existing content from the cache (if available) when revalidating + // content with the origin, or when an error is encountered when refreshing + // the cache. + // This setting defines the default "max-stale" duration for any cached + // responses that do not specify a max-stale directive. Stale responses that + // exceed the TTL configured here will not be served. The default limit + // (max-stale) is 86400s (1 day), which will allow stale content to be + // served up to this limit beyond the max-age (or s-maxage) of a cached + // response. + // The maximum allowed value is 604800 (1 week). + // Set this to zero (0) to disable serve-while-stale. + ServeWhileStale *Duration `protobuf:"bytes,236682203,opt,name=serve_while_stale,json=serveWhileStale,proto3,oneof" json:"serve_while_stale,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CachePolicy) Reset() { + *x = CachePolicy{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[192] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CachePolicy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CachePolicy) ProtoMessage() {} + +func (x *CachePolicy) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[192] + 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 CachePolicy.ProtoReflect.Descriptor instead. +func (*CachePolicy) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{192} +} + +func (x *CachePolicy) GetCacheBypassRequestHeaderNames() []string { + if x != nil { + return x.CacheBypassRequestHeaderNames + } + return nil +} + +func (x *CachePolicy) GetCacheKeyPolicy() *CachePolicyCacheKeyPolicy { + if x != nil { + return x.CacheKeyPolicy + } + return nil +} + +func (x *CachePolicy) GetCacheMode() string { + if x != nil && x.CacheMode != nil { + return *x.CacheMode + } + return "" +} + +func (x *CachePolicy) GetClientTtl() *Duration { + if x != nil { + return x.ClientTtl + } + return nil +} + +func (x *CachePolicy) GetDefaultTtl() *Duration { + if x != nil { + return x.DefaultTtl + } + return nil +} + +func (x *CachePolicy) GetMaxTtl() *Duration { + if x != nil { + return x.MaxTtl + } + return nil +} + +func (x *CachePolicy) GetNegativeCaching() bool { + if x != nil && x.NegativeCaching != nil { + return *x.NegativeCaching + } + return false +} + +func (x *CachePolicy) GetNegativeCachingPolicy() []*CachePolicyNegativeCachingPolicy { + if x != nil { + return x.NegativeCachingPolicy + } + return nil +} + +func (x *CachePolicy) GetRequestCoalescing() bool { + if x != nil && x.RequestCoalescing != nil { + return *x.RequestCoalescing + } + return false +} + +func (x *CachePolicy) GetServeWhileStale() *Duration { + if x != nil { + return x.ServeWhileStale + } + return nil +} + +// Message containing what to include in the cache key for a request for Cache +// Policy defined on Route Action. +type CachePolicyCacheKeyPolicy struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Names of query string parameters to exclude in cache keys. All other + // parameters will be included. Either specify `excludedQueryParameters` + // or `includedQueryParameters`, not both. '&' and '=' will be percent + // encoded and not treated as delimiters. + // + // Note: This field applies to routes that use backend services. Attempting + // to set it on a route that points exclusively to Backend Buckets will + // result in a configuration error. For routes that point to a Backend + // Bucket, use `includedQueryParameters` to define which parameters should + // be part of the cache key. + ExcludedQueryParameters []string `protobuf:"bytes,124896150,rep,name=excluded_query_parameters,json=excludedQueryParameters,proto3" json:"excluded_query_parameters,omitempty"` + // If true, requests to different hosts will be cached separately. + // + // Note: This setting is only applicable to routes that use a Backend + // Service. It does not affect requests served by a Backend Bucket, as the + // host is never included in a Backend Bucket's cache key. Attempting to set + // it on a route that points exclusively to Backend Buckets will result in a + // configuration error. + IncludeHost *bool `protobuf:"varint,486867679,opt,name=include_host,json=includeHost,proto3,oneof" json:"include_host,omitempty"` + // If true, http and https requests will be cached separately. + // + // Note: This setting is only applicable to routes that use a Backend + // Service. It does not affect requests served by a Backend Bucket, as the + // protocol is never included in a Backend Bucket's cache key. Attempting to + // set on a route that points exclusively to Backend Buckets will result in + // a configuration error. + IncludeProtocol *bool `protobuf:"varint,303507535,opt,name=include_protocol,json=includeProtocol,proto3,oneof" json:"include_protocol,omitempty"` + // If true, include query string parameters in the cache key according to + // `includedQueryParameters` and `excludedQueryParameters`. If neither + // is set, the entire query string will be included. If false, the query + // string will be excluded from the cache key entirely. + // + // Note: This field applies to routes that use backend services. Attempting + // to set it on a route that points exclusively to Backend Buckets will + // result in a configuration error. For routes that point to a Backend + // Bucket, use `includedQueryParameters` to define which parameters should + // be part of the cache key. + IncludeQueryString *bool `protobuf:"varint,474036639,opt,name=include_query_string,json=includeQueryString,proto3,oneof" json:"include_query_string,omitempty"` + // Allows HTTP cookies (by name) to be used in the cache key. + // The name=value pair will be used in the cache key Cloud CDN generates. + // + // Note: This setting is only applicable to routes that use a Backend + // Service. It does not affect requests served by a Backend Bucket. + // Attempting to set it on a route that points exclusively to Backend + // Buckets will result in a configuration error. Up to 5 cookie names can be + // specified. + IncludedCookieNames []string `protobuf:"bytes,66987088,rep,name=included_cookie_names,json=includedCookieNames,proto3" json:"included_cookie_names,omitempty"` + // Allows HTTP request headers (by name) to be used in the cache key. + IncludedHeaderNames []string `protobuf:"bytes,533756345,rep,name=included_header_names,json=includedHeaderNames,proto3" json:"included_header_names,omitempty"` + // Names of query string parameters to include in cache keys. All other + // parameters will be excluded. Either specify `includedQueryParameters` + // or `excludedQueryParameters`, not both. '&' and '=' will be percent + // encoded and not treated as delimiters. + IncludedQueryParameters []string `protobuf:"bytes,2319076,rep,name=included_query_parameters,json=includedQueryParameters,proto3" json:"included_query_parameters,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CachePolicyCacheKeyPolicy) Reset() { + *x = CachePolicyCacheKeyPolicy{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[193] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CachePolicyCacheKeyPolicy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CachePolicyCacheKeyPolicy) ProtoMessage() {} + +func (x *CachePolicyCacheKeyPolicy) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[193] + 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 CachePolicyCacheKeyPolicy.ProtoReflect.Descriptor instead. +func (*CachePolicyCacheKeyPolicy) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{193} +} + +func (x *CachePolicyCacheKeyPolicy) GetExcludedQueryParameters() []string { + if x != nil { + return x.ExcludedQueryParameters + } + return nil +} + +func (x *CachePolicyCacheKeyPolicy) GetIncludeHost() bool { + if x != nil && x.IncludeHost != nil { + return *x.IncludeHost + } + return false +} + +func (x *CachePolicyCacheKeyPolicy) GetIncludeProtocol() bool { + if x != nil && x.IncludeProtocol != nil { + return *x.IncludeProtocol + } + return false +} + +func (x *CachePolicyCacheKeyPolicy) GetIncludeQueryString() bool { + if x != nil && x.IncludeQueryString != nil { + return *x.IncludeQueryString + } + return false +} + +func (x *CachePolicyCacheKeyPolicy) GetIncludedCookieNames() []string { + if x != nil { + return x.IncludedCookieNames + } + return nil +} + +func (x *CachePolicyCacheKeyPolicy) GetIncludedHeaderNames() []string { + if x != nil { + return x.IncludedHeaderNames + } + return nil +} + +func (x *CachePolicyCacheKeyPolicy) GetIncludedQueryParameters() []string { + if x != nil { + return x.IncludedQueryParameters + } + return nil +} + +// Specify CDN TTLs for response error codes. +type CachePolicyNegativeCachingPolicy struct { + state protoimpl.MessageState `protogen:"open.v1"` + // The HTTP status code to define a TTL against. Only HTTP status codes + // 300, 301, 302, 307, 308, 404, 405, 410, 421, 451 and 501 can be + // specified as values, and you cannot specify a status code more than + // once. + Code *int32 `protobuf:"varint,3059181,opt,name=code,proto3,oneof" json:"code,omitempty"` + // The TTL (in seconds) for which to cache responses with the + // corresponding status code. + // The maximum allowed value is 1800s (30 minutes). Infrequently accessed + // objects may be evicted from the cache before the defined TTL. + Ttl *Duration `protobuf:"bytes,115180,opt,name=ttl,proto3,oneof" json:"ttl,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CachePolicyNegativeCachingPolicy) Reset() { + *x = CachePolicyNegativeCachingPolicy{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[194] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CachePolicyNegativeCachingPolicy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CachePolicyNegativeCachingPolicy) ProtoMessage() {} + +func (x *CachePolicyNegativeCachingPolicy) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[194] + 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 CachePolicyNegativeCachingPolicy.ProtoReflect.Descriptor instead. +func (*CachePolicyNegativeCachingPolicy) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{194} +} + +func (x *CachePolicyNegativeCachingPolicy) GetCode() int32 { + if x != nil && x.Code != nil { + return *x.Code + } + return 0 +} + +func (x *CachePolicyNegativeCachingPolicy) GetTtl() *Duration { + if x != nil { + return x.Ttl + } + return nil +} + // A request to recommend the best way to consume the specified resources in the // future. type CalendarModeAdviceRequest struct { @@ -54095,7 +55584,7 @@ type CalendarModeAdviceRequest struct { func (x *CalendarModeAdviceRequest) Reset() { *x = CalendarModeAdviceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[188] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[195] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54107,7 +55596,7 @@ func (x *CalendarModeAdviceRequest) String() string { func (*CalendarModeAdviceRequest) ProtoMessage() {} func (x *CalendarModeAdviceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[188] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[195] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54120,7 +55609,7 @@ func (x *CalendarModeAdviceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CalendarModeAdviceRequest.ProtoReflect.Descriptor instead. func (*CalendarModeAdviceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{188} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{195} } func (x *CalendarModeAdviceRequest) GetFutureResourcesSpecs() map[string]*FutureResourcesSpec { @@ -54144,7 +55633,7 @@ type CalendarModeAdviceResponse struct { func (x *CalendarModeAdviceResponse) Reset() { *x = CalendarModeAdviceResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[189] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[196] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54156,7 +55645,7 @@ func (x *CalendarModeAdviceResponse) String() string { func (*CalendarModeAdviceResponse) ProtoMessage() {} func (x *CalendarModeAdviceResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[189] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[196] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54169,7 +55658,7 @@ func (x *CalendarModeAdviceResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CalendarModeAdviceResponse.ProtoReflect.Descriptor instead. func (*CalendarModeAdviceResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{189} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{196} } func (x *CalendarModeAdviceResponse) GetRecommendations() []*CalendarModeRecommendation { @@ -54194,7 +55683,7 @@ type CalendarModeAdviceRpcRequest struct { func (x *CalendarModeAdviceRpcRequest) Reset() { *x = CalendarModeAdviceRpcRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[190] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[197] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54206,7 +55695,7 @@ func (x *CalendarModeAdviceRpcRequest) String() string { func (*CalendarModeAdviceRpcRequest) ProtoMessage() {} func (x *CalendarModeAdviceRpcRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[190] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[197] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54219,7 +55708,7 @@ func (x *CalendarModeAdviceRpcRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CalendarModeAdviceRpcRequest.ProtoReflect.Descriptor instead. func (*CalendarModeAdviceRpcRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{190} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{197} } func (x *CalendarModeAdviceRpcRequest) GetCalendarModeAdviceRequestResource() *CalendarModeAdviceRequest { @@ -54258,7 +55747,7 @@ type CalendarModeRecommendation struct { func (x *CalendarModeRecommendation) Reset() { *x = CalendarModeRecommendation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[191] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[198] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54270,7 +55759,7 @@ func (x *CalendarModeRecommendation) String() string { func (*CalendarModeRecommendation) ProtoMessage() {} func (x *CalendarModeRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[191] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[198] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54283,7 +55772,7 @@ func (x *CalendarModeRecommendation) ProtoReflect() protoreflect.Message { // Deprecated: Use CalendarModeRecommendation.ProtoReflect.Descriptor instead. func (*CalendarModeRecommendation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{191} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{198} } func (x *CalendarModeRecommendation) GetRecommendationsPerSpec() map[string]*FutureResourcesRecommendation { @@ -54322,7 +55811,7 @@ type CancelFutureReservationRequest struct { func (x *CancelFutureReservationRequest) Reset() { *x = CancelFutureReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[192] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[199] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54334,7 +55823,7 @@ func (x *CancelFutureReservationRequest) String() string { func (*CancelFutureReservationRequest) ProtoMessage() {} func (x *CancelFutureReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[192] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[199] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54347,7 +55836,7 @@ func (x *CancelFutureReservationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CancelFutureReservationRequest.ProtoReflect.Descriptor instead. func (*CancelFutureReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{192} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{199} } func (x *CancelFutureReservationRequest) GetFutureReservation() string { @@ -54412,7 +55901,7 @@ type CancelInstanceGroupManagerResizeRequestRequest struct { func (x *CancelInstanceGroupManagerResizeRequestRequest) Reset() { *x = CancelInstanceGroupManagerResizeRequestRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[193] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[200] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54424,7 +55913,7 @@ func (x *CancelInstanceGroupManagerResizeRequestRequest) String() string { func (*CancelInstanceGroupManagerResizeRequestRequest) ProtoMessage() {} func (x *CancelInstanceGroupManagerResizeRequestRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[193] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[200] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54437,7 +55926,7 @@ func (x *CancelInstanceGroupManagerResizeRequestRequest) ProtoReflect() protoref // Deprecated: Use CancelInstanceGroupManagerResizeRequestRequest.ProtoReflect.Descriptor instead. func (*CancelInstanceGroupManagerResizeRequestRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{193} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{200} } func (x *CancelInstanceGroupManagerResizeRequestRequest) GetInstanceGroupManager() string { @@ -54475,6 +55964,103 @@ func (x *CancelInstanceGroupManagerResizeRequestRequest) GetZone() string { return "" } +// A request message for RegionInstanceGroupManagerResizeRequests.Cancel. See the method description for details. +type CancelRegionInstanceGroupManagerResizeRequestRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // The name of the managed instance group. + // Name should conform to RFC1035 or be a resource ID. + InstanceGroupManager string `protobuf:"bytes,249363395,opt,name=instance_group_manager,json=instanceGroupManager,proto3" json:"instance_group_manager,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region + // scoping this request. Name should conform to RFC1035. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // The name of the resize request to cancel. + // Name should conform to RFC1035 or be a resource ID. + ResizeRequest string `protobuf:"bytes,216941060,opt,name=resize_request,json=resizeRequest,proto3" json:"resize_request,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CancelRegionInstanceGroupManagerResizeRequestRequest) Reset() { + *x = CancelRegionInstanceGroupManagerResizeRequestRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[201] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CancelRegionInstanceGroupManagerResizeRequestRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CancelRegionInstanceGroupManagerResizeRequestRequest) ProtoMessage() {} + +func (x *CancelRegionInstanceGroupManagerResizeRequestRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[201] + 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 CancelRegionInstanceGroupManagerResizeRequestRequest.ProtoReflect.Descriptor instead. +func (*CancelRegionInstanceGroupManagerResizeRequestRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{201} +} + +func (x *CancelRegionInstanceGroupManagerResizeRequestRequest) GetInstanceGroupManager() string { + if x != nil { + return x.InstanceGroupManager + } + return "" +} + +func (x *CancelRegionInstanceGroupManagerResizeRequestRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *CancelRegionInstanceGroupManagerResizeRequestRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *CancelRegionInstanceGroupManagerResizeRequestRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *CancelRegionInstanceGroupManagerResizeRequestRequest) GetResizeRequest() string { + if x != nil { + return x.ResizeRequest + } + return "" +} + // Settings controlling the volume of requests, connections and retries to this // backend service. type CircuitBreakers struct { @@ -54514,7 +56100,7 @@ type CircuitBreakers struct { func (x *CircuitBreakers) Reset() { *x = CircuitBreakers{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[194] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[202] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54526,7 +56112,7 @@ func (x *CircuitBreakers) String() string { func (*CircuitBreakers) ProtoMessage() {} func (x *CircuitBreakers) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[194] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[202] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54539,7 +56125,7 @@ func (x *CircuitBreakers) ProtoReflect() protoreflect.Message { // Deprecated: Use CircuitBreakers.ProtoReflect.Descriptor instead. func (*CircuitBreakers) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{194} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{202} } func (x *CircuitBreakers) GetMaxConnections() int32 { @@ -54604,7 +56190,7 @@ type CloneRulesFirewallPolicyRequest struct { func (x *CloneRulesFirewallPolicyRequest) Reset() { *x = CloneRulesFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[195] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[203] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54616,7 +56202,7 @@ func (x *CloneRulesFirewallPolicyRequest) String() string { func (*CloneRulesFirewallPolicyRequest) ProtoMessage() {} func (x *CloneRulesFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[195] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[203] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54629,7 +56215,7 @@ func (x *CloneRulesFirewallPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CloneRulesFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*CloneRulesFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{195} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{203} } func (x *CloneRulesFirewallPolicyRequest) GetFirewallPolicy() string { @@ -54682,7 +56268,7 @@ type CloneRulesNetworkFirewallPolicyRequest struct { func (x *CloneRulesNetworkFirewallPolicyRequest) Reset() { *x = CloneRulesNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[196] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[204] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54694,7 +56280,7 @@ func (x *CloneRulesNetworkFirewallPolicyRequest) String() string { func (*CloneRulesNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *CloneRulesNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[196] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[204] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54707,7 +56293,7 @@ func (x *CloneRulesNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use CloneRulesNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*CloneRulesNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{196} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{204} } func (x *CloneRulesNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -54769,7 +56355,7 @@ type CloneRulesRegionNetworkFirewallPolicyRequest struct { func (x *CloneRulesRegionNetworkFirewallPolicyRequest) Reset() { *x = CloneRulesRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[197] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[205] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54781,7 +56367,7 @@ func (x *CloneRulesRegionNetworkFirewallPolicyRequest) String() string { func (*CloneRulesRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *CloneRulesRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[197] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[205] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54794,7 +56380,7 @@ func (x *CloneRulesRegionNetworkFirewallPolicyRequest) ProtoReflect() protorefle // Deprecated: Use CloneRulesRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*CloneRulesRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{197} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{205} } func (x *CloneRulesRegionNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -54892,6 +56478,9 @@ type Commitment struct { // be a dash, lowercase letter, or digit, except the last character, which // cannot be a dash. Name *string `protobuf:"bytes,3373707,opt,name=name,proto3,oneof" json:"name,omitempty"` + // Input only. Additional params passed with the request, but not persisted + // as part of resource payload. + Params *CommitmentParams `protobuf:"bytes,78313862,opt,name=params,proto3,oneof" json:"params,omitempty"` // The minimum time duration that you commit to purchasing resources. // The plan that you choose determines the preset term length of the // commitment (which is 1 year or 3 years) and affects the discount rate that @@ -54955,7 +56544,7 @@ type Commitment struct { func (x *Commitment) Reset() { *x = Commitment{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[198] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[206] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -54967,7 +56556,7 @@ func (x *Commitment) String() string { func (*Commitment) ProtoMessage() {} func (x *Commitment) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[198] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[206] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -54980,7 +56569,7 @@ func (x *Commitment) ProtoReflect() protoreflect.Message { // Deprecated: Use Commitment.ProtoReflect.Descriptor instead. func (*Commitment) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{198} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{206} } func (x *Commitment) GetAutoRenew() bool { @@ -55067,6 +56656,13 @@ func (x *Commitment) GetName() string { return "" } +func (x *Commitment) GetParams() *CommitmentParams { + if x != nil { + return x.Params + } + return nil +} + func (x *Commitment) GetPlan() string { if x != nil && x.Plan != nil { return *x.Plan @@ -55171,7 +56767,7 @@ type CommitmentAggregatedList struct { func (x *CommitmentAggregatedList) Reset() { *x = CommitmentAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[199] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[207] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55183,7 +56779,7 @@ func (x *CommitmentAggregatedList) String() string { func (*CommitmentAggregatedList) ProtoMessage() {} func (x *CommitmentAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[199] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[207] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55196,7 +56792,7 @@ func (x *CommitmentAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use CommitmentAggregatedList.ProtoReflect.Descriptor instead. func (*CommitmentAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{199} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{207} } func (x *CommitmentAggregatedList) GetId() string { @@ -55274,7 +56870,7 @@ type CommitmentList struct { func (x *CommitmentList) Reset() { *x = CommitmentList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[200] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[208] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55286,7 +56882,7 @@ func (x *CommitmentList) String() string { func (*CommitmentList) ProtoMessage() {} func (x *CommitmentList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[200] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[208] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55299,7 +56895,7 @@ func (x *CommitmentList) ProtoReflect() protoreflect.Message { // Deprecated: Use CommitmentList.ProtoReflect.Descriptor instead. func (*CommitmentList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{200} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{208} } func (x *CommitmentList) GetId() string { @@ -55344,6 +56940,58 @@ func (x *CommitmentList) GetWarning() *Warning { return nil } +// Additional commitment params. +type CommitmentParams struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Input only. Resource manager tags to be bound to the commitment. Tag keys and + // values have the same definition as resource + // manager tags. Keys and values can be either in numeric format, + // such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in + // namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and + // `{tag_value_short_name}`. The field is ignored (both PUT & + // PATCH) when empty. + ResourceManagerTags map[string]string `protobuf:"bytes,377671164,rep,name=resource_manager_tags,json=resourceManagerTags,proto3" json:"resource_manager_tags,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CommitmentParams) Reset() { + *x = CommitmentParams{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[209] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CommitmentParams) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CommitmentParams) ProtoMessage() {} + +func (x *CommitmentParams) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[209] + 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 CommitmentParams.ProtoReflect.Descriptor instead. +func (*CommitmentParams) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{209} +} + +func (x *CommitmentParams) GetResourceManagerTags() map[string]string { + if x != nil { + return x.ResourceManagerTags + } + return nil +} + // [Output Only] Contains output only fields. type CommitmentResourceStatus struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -55357,7 +57005,7 @@ type CommitmentResourceStatus struct { func (x *CommitmentResourceStatus) Reset() { *x = CommitmentResourceStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[201] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[210] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55369,7 +57017,7 @@ func (x *CommitmentResourceStatus) String() string { func (*CommitmentResourceStatus) ProtoMessage() {} func (x *CommitmentResourceStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[201] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[210] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55382,7 +57030,7 @@ func (x *CommitmentResourceStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use CommitmentResourceStatus.ProtoReflect.Descriptor instead. func (*CommitmentResourceStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{201} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{210} } func (x *CommitmentResourceStatus) GetCustomTermEligibilityEndTimestamp() string { @@ -55405,7 +57053,7 @@ type CommitmentsScopedList struct { func (x *CommitmentsScopedList) Reset() { *x = CommitmentsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[202] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[211] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55417,7 +57065,7 @@ func (x *CommitmentsScopedList) String() string { func (*CommitmentsScopedList) ProtoMessage() {} func (x *CommitmentsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[202] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[211] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55430,7 +57078,7 @@ func (x *CommitmentsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use CommitmentsScopedList.ProtoReflect.Descriptor instead. func (*CommitmentsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{202} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{211} } func (x *CommitmentsScopedList) GetCommitments() []*Commitment { @@ -55505,7 +57153,7 @@ type CompositeHealthCheck struct { func (x *CompositeHealthCheck) Reset() { *x = CompositeHealthCheck{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[203] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[212] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55517,7 +57165,7 @@ func (x *CompositeHealthCheck) String() string { func (*CompositeHealthCheck) ProtoMessage() {} func (x *CompositeHealthCheck) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[203] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[212] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55530,7 +57178,7 @@ func (x *CompositeHealthCheck) ProtoReflect() protoreflect.Message { // Deprecated: Use CompositeHealthCheck.ProtoReflect.Descriptor instead. func (*CompositeHealthCheck) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{203} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{212} } func (x *CompositeHealthCheck) GetCreationTimestamp() string { @@ -55637,7 +57285,7 @@ type CompositeHealthCheckAggregatedList struct { func (x *CompositeHealthCheckAggregatedList) Reset() { *x = CompositeHealthCheckAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[204] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[213] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55649,7 +57297,7 @@ func (x *CompositeHealthCheckAggregatedList) String() string { func (*CompositeHealthCheckAggregatedList) ProtoMessage() {} func (x *CompositeHealthCheckAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[204] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[213] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55662,7 +57310,7 @@ func (x *CompositeHealthCheckAggregatedList) ProtoReflect() protoreflect.Message // Deprecated: Use CompositeHealthCheckAggregatedList.ProtoReflect.Descriptor instead. func (*CompositeHealthCheckAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{204} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{213} } func (x *CompositeHealthCheckAggregatedList) GetId() string { @@ -55714,6 +57362,72 @@ func (x *CompositeHealthCheckAggregatedList) GetWarning() *Warning { return nil } +// Response message for RegionCompositeHealthChecks.GetHealth +type CompositeHealthCheckHealth struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Health sources and their corresponding health states. + HealthSources []*CompositeHealthChecksGetHealthResponseHealthSourceHealth `protobuf:"bytes,397879509,rep,name=health_sources,json=healthSources,proto3" json:"health_sources,omitempty"` + // Health state of the CompositeHealthCheck. + // Check the HealthState enum for the list of possible values. + HealthState *string `protobuf:"bytes,324007150,opt,name=health_state,json=healthState,proto3,oneof" json:"health_state,omitempty"` + // Output only. [Output Only] Type of resource. Alwayscompute#compositeHealthCheckHealth for the health of + // composite health checks. + Kind *string `protobuf:"bytes,3292052,opt,name=kind,proto3,oneof" json:"kind,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CompositeHealthCheckHealth) Reset() { + *x = CompositeHealthCheckHealth{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[214] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CompositeHealthCheckHealth) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CompositeHealthCheckHealth) ProtoMessage() {} + +func (x *CompositeHealthCheckHealth) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[214] + 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 CompositeHealthCheckHealth.ProtoReflect.Descriptor instead. +func (*CompositeHealthCheckHealth) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{214} +} + +func (x *CompositeHealthCheckHealth) GetHealthSources() []*CompositeHealthChecksGetHealthResponseHealthSourceHealth { + if x != nil { + return x.HealthSources + } + return nil +} + +func (x *CompositeHealthCheckHealth) GetHealthState() string { + if x != nil && x.HealthState != nil { + return *x.HealthState + } + return "" +} + +func (x *CompositeHealthCheckHealth) GetKind() string { + if x != nil && x.Kind != nil { + return *x.Kind + } + return "" +} + type CompositeHealthCheckList struct { state protoimpl.MessageState `protogen:"open.v1"` // [Output Only] Unique identifier for the resource; defined by the server. @@ -55738,7 +57452,7 @@ type CompositeHealthCheckList struct { func (x *CompositeHealthCheckList) Reset() { *x = CompositeHealthCheckList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[205] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[215] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55750,7 +57464,7 @@ func (x *CompositeHealthCheckList) String() string { func (*CompositeHealthCheckList) ProtoMessage() {} func (x *CompositeHealthCheckList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[205] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[215] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55763,7 +57477,7 @@ func (x *CompositeHealthCheckList) ProtoReflect() protoreflect.Message { // Deprecated: Use CompositeHealthCheckList.ProtoReflect.Descriptor instead. func (*CompositeHealthCheckList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{205} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{215} } func (x *CompositeHealthCheckList) GetId() string { @@ -55808,6 +57522,61 @@ func (x *CompositeHealthCheckList) GetWarning() *Warning { return nil } +type CompositeHealthChecksGetHealthResponseHealthSourceHealth struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Health state of the associated HealthSource resource. + // Check the HealthState enum for the list of possible values. + HealthState *string `protobuf:"bytes,324007150,opt,name=health_state,json=healthState,proto3,oneof" json:"health_state,omitempty"` + // Fully qualified URL of the associated HealthSource resource. + Source *string `protobuf:"bytes,177235995,opt,name=source,proto3,oneof" json:"source,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CompositeHealthChecksGetHealthResponseHealthSourceHealth) Reset() { + *x = CompositeHealthChecksGetHealthResponseHealthSourceHealth{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[216] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CompositeHealthChecksGetHealthResponseHealthSourceHealth) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CompositeHealthChecksGetHealthResponseHealthSourceHealth) ProtoMessage() {} + +func (x *CompositeHealthChecksGetHealthResponseHealthSourceHealth) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[216] + 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 CompositeHealthChecksGetHealthResponseHealthSourceHealth.ProtoReflect.Descriptor instead. +func (*CompositeHealthChecksGetHealthResponseHealthSourceHealth) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{216} +} + +func (x *CompositeHealthChecksGetHealthResponseHealthSourceHealth) GetHealthState() string { + if x != nil && x.HealthState != nil { + return *x.HealthState + } + return "" +} + +func (x *CompositeHealthChecksGetHealthResponseHealthSourceHealth) GetSource() string { + if x != nil && x.Source != nil { + return *x.Source + } + return "" +} + type CompositeHealthChecksScopedList struct { state protoimpl.MessageState `protogen:"open.v1"` // A list of CompositeHealthChecks contained in this scope. @@ -55821,7 +57590,7 @@ type CompositeHealthChecksScopedList struct { func (x *CompositeHealthChecksScopedList) Reset() { *x = CompositeHealthChecksScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[206] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[217] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55833,7 +57602,7 @@ func (x *CompositeHealthChecksScopedList) String() string { func (*CompositeHealthChecksScopedList) ProtoMessage() {} func (x *CompositeHealthChecksScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[206] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[217] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55846,7 +57615,7 @@ func (x *CompositeHealthChecksScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use CompositeHealthChecksScopedList.ProtoReflect.Descriptor instead. func (*CompositeHealthChecksScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{206} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{217} } func (x *CompositeHealthChecksScopedList) GetCompositeHealthChecks() []*CompositeHealthCheck { @@ -55877,7 +57646,7 @@ type ConfidentialInstanceConfig struct { func (x *ConfidentialInstanceConfig) Reset() { *x = ConfidentialInstanceConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[207] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[218] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55889,7 +57658,7 @@ func (x *ConfidentialInstanceConfig) String() string { func (*ConfidentialInstanceConfig) ProtoMessage() {} func (x *ConfidentialInstanceConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[207] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[218] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55902,7 +57671,7 @@ func (x *ConfidentialInstanceConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use ConfidentialInstanceConfig.ProtoReflect.Descriptor instead. func (*ConfidentialInstanceConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{207} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{218} } func (x *ConfidentialInstanceConfig) GetConfidentialInstanceType() string { @@ -55932,7 +57701,7 @@ type ConnectionDraining struct { func (x *ConnectionDraining) Reset() { *x = ConnectionDraining{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[208] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[219] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -55944,7 +57713,7 @@ func (x *ConnectionDraining) String() string { func (*ConnectionDraining) ProtoMessage() {} func (x *ConnectionDraining) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[208] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[219] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -55957,7 +57726,7 @@ func (x *ConnectionDraining) ProtoReflect() protoreflect.Message { // Deprecated: Use ConnectionDraining.ProtoReflect.Descriptor instead. func (*ConnectionDraining) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{208} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{219} } func (x *ConnectionDraining) GetDrainingTimeoutSec() int32 { @@ -55992,7 +57761,7 @@ type ConsistentHashLoadBalancerSettings struct { func (x *ConsistentHashLoadBalancerSettings) Reset() { *x = ConsistentHashLoadBalancerSettings{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[209] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[220] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56004,7 +57773,7 @@ func (x *ConsistentHashLoadBalancerSettings) String() string { func (*ConsistentHashLoadBalancerSettings) ProtoMessage() {} func (x *ConsistentHashLoadBalancerSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[209] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[220] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56017,7 +57786,7 @@ func (x *ConsistentHashLoadBalancerSettings) ProtoReflect() protoreflect.Message // Deprecated: Use ConsistentHashLoadBalancerSettings.ProtoReflect.Descriptor instead. func (*ConsistentHashLoadBalancerSettings) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{209} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{220} } func (x *ConsistentHashLoadBalancerSettings) GetHttpCookie() *ConsistentHashLoadBalancerSettingsHttpCookie { @@ -56057,7 +57826,7 @@ type ConsistentHashLoadBalancerSettingsHttpCookie struct { func (x *ConsistentHashLoadBalancerSettingsHttpCookie) Reset() { *x = ConsistentHashLoadBalancerSettingsHttpCookie{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[210] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[221] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56069,7 +57838,7 @@ func (x *ConsistentHashLoadBalancerSettingsHttpCookie) String() string { func (*ConsistentHashLoadBalancerSettingsHttpCookie) ProtoMessage() {} func (x *ConsistentHashLoadBalancerSettingsHttpCookie) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[210] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[221] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56082,7 +57851,7 @@ func (x *ConsistentHashLoadBalancerSettingsHttpCookie) ProtoReflect() protorefle // Deprecated: Use ConsistentHashLoadBalancerSettingsHttpCookie.ProtoReflect.Descriptor instead. func (*ConsistentHashLoadBalancerSettingsHttpCookie) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{210} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{221} } func (x *ConsistentHashLoadBalancerSettingsHttpCookie) GetName() string { @@ -56133,7 +57902,7 @@ type CopyRulesOrganizationSecurityPolicyRequest struct { func (x *CopyRulesOrganizationSecurityPolicyRequest) Reset() { *x = CopyRulesOrganizationSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[211] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[222] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56145,7 +57914,7 @@ func (x *CopyRulesOrganizationSecurityPolicyRequest) String() string { func (*CopyRulesOrganizationSecurityPolicyRequest) ProtoMessage() {} func (x *CopyRulesOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[211] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[222] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56158,7 +57927,7 @@ func (x *CopyRulesOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect // Deprecated: Use CopyRulesOrganizationSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*CopyRulesOrganizationSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{211} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{222} } func (x *CopyRulesOrganizationSecurityPolicyRequest) GetRequestId() string { @@ -56230,7 +57999,7 @@ type CorsPolicy struct { func (x *CorsPolicy) Reset() { *x = CorsPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[212] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[223] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56242,7 +58011,7 @@ func (x *CorsPolicy) String() string { func (*CorsPolicy) ProtoMessage() {} func (x *CorsPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[212] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[223] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56255,7 +58024,7 @@ func (x *CorsPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use CorsPolicy.ProtoReflect.Descriptor instead. func (*CorsPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{212} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{223} } func (x *CorsPolicy) GetAllowCredentials() bool { @@ -56347,7 +58116,7 @@ type CreateInstancesInstanceGroupManagerRequest struct { func (x *CreateInstancesInstanceGroupManagerRequest) Reset() { *x = CreateInstancesInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[213] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[224] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56359,7 +58128,7 @@ func (x *CreateInstancesInstanceGroupManagerRequest) String() string { func (*CreateInstancesInstanceGroupManagerRequest) ProtoMessage() {} func (x *CreateInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[213] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[224] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56372,7 +58141,7 @@ func (x *CreateInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect // Deprecated: Use CreateInstancesInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*CreateInstancesInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{213} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{224} } func (x *CreateInstancesInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -56443,7 +58212,7 @@ type CreateInstancesRegionInstanceGroupManagerRequest struct { func (x *CreateInstancesRegionInstanceGroupManagerRequest) Reset() { *x = CreateInstancesRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[214] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[225] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56455,7 +58224,7 @@ func (x *CreateInstancesRegionInstanceGroupManagerRequest) String() string { func (*CreateInstancesRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *CreateInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[214] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[225] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56468,7 +58237,7 @@ func (x *CreateInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protor // Deprecated: Use CreateInstancesRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*CreateInstancesRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{214} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{225} } func (x *CreateInstancesRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -56521,7 +58290,7 @@ type CreateMembersInterconnectGroupRequest struct { func (x *CreateMembersInterconnectGroupRequest) Reset() { *x = CreateMembersInterconnectGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[215] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[226] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56533,7 +58302,7 @@ func (x *CreateMembersInterconnectGroupRequest) String() string { func (*CreateMembersInterconnectGroupRequest) ProtoMessage() {} func (x *CreateMembersInterconnectGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[215] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[226] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56546,7 +58315,7 @@ func (x *CreateMembersInterconnectGroupRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use CreateMembersInterconnectGroupRequest.ProtoReflect.Descriptor instead. func (*CreateMembersInterconnectGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{215} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{226} } func (x *CreateMembersInterconnectGroupRequest) GetInterconnectGroup() string { @@ -56604,7 +58373,7 @@ type CreateSnapshotDiskRequest struct { func (x *CreateSnapshotDiskRequest) Reset() { *x = CreateSnapshotDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[216] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[227] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56616,7 +58385,7 @@ func (x *CreateSnapshotDiskRequest) String() string { func (*CreateSnapshotDiskRequest) ProtoMessage() {} func (x *CreateSnapshotDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[216] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[227] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56629,7 +58398,7 @@ func (x *CreateSnapshotDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateSnapshotDiskRequest.ProtoReflect.Descriptor instead. func (*CreateSnapshotDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{216} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{227} } func (x *CreateSnapshotDiskRequest) GetDisk() string { @@ -56705,7 +58474,7 @@ type CreateSnapshotRegionDiskRequest struct { func (x *CreateSnapshotRegionDiskRequest) Reset() { *x = CreateSnapshotRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[217] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[228] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56717,7 +58486,7 @@ func (x *CreateSnapshotRegionDiskRequest) String() string { func (*CreateSnapshotRegionDiskRequest) ProtoMessage() {} func (x *CreateSnapshotRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[217] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[228] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56730,7 +58499,7 @@ func (x *CreateSnapshotRegionDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateSnapshotRegionDiskRequest.ProtoReflect.Descriptor instead. func (*CreateSnapshotRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{217} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{228} } func (x *CreateSnapshotRegionDiskRequest) GetDisk() string { @@ -56800,7 +58569,7 @@ type CrossSiteNetwork struct { func (x *CrossSiteNetwork) Reset() { *x = CrossSiteNetwork{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[218] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[229] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56812,7 +58581,7 @@ func (x *CrossSiteNetwork) String() string { func (*CrossSiteNetwork) ProtoMessage() {} func (x *CrossSiteNetwork) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[218] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[229] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56825,7 +58594,7 @@ func (x *CrossSiteNetwork) ProtoReflect() protoreflect.Message { // Deprecated: Use CrossSiteNetwork.ProtoReflect.Descriptor instead. func (*CrossSiteNetwork) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{218} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{229} } func (x *CrossSiteNetwork) GetCreationTimestamp() string { @@ -56899,7 +58668,7 @@ type CrossSiteNetworkList struct { func (x *CrossSiteNetworkList) Reset() { *x = CrossSiteNetworkList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[219] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[230] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -56911,7 +58680,7 @@ func (x *CrossSiteNetworkList) String() string { func (*CrossSiteNetworkList) ProtoMessage() {} func (x *CrossSiteNetworkList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[219] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[230] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -56924,7 +58693,7 @@ func (x *CrossSiteNetworkList) ProtoReflect() protoreflect.Message { // Deprecated: Use CrossSiteNetworkList.ProtoReflect.Descriptor instead. func (*CrossSiteNetworkList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{219} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{230} } func (x *CrossSiteNetworkList) GetEtag() string { @@ -57018,7 +58787,7 @@ type CustomErrorResponsePolicy struct { func (x *CustomErrorResponsePolicy) Reset() { *x = CustomErrorResponsePolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[220] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[231] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57030,7 +58799,7 @@ func (x *CustomErrorResponsePolicy) String() string { func (*CustomErrorResponsePolicy) ProtoMessage() {} func (x *CustomErrorResponsePolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[220] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[231] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57043,7 +58812,7 @@ func (x *CustomErrorResponsePolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomErrorResponsePolicy.ProtoReflect.Descriptor instead. func (*CustomErrorResponsePolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{220} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{231} } func (x *CustomErrorResponsePolicy) GetErrorResponseRules() []*CustomErrorResponsePolicyCustomErrorResponseRule { @@ -57102,7 +58871,7 @@ type CustomErrorResponsePolicyCustomErrorResponseRule struct { func (x *CustomErrorResponsePolicyCustomErrorResponseRule) Reset() { *x = CustomErrorResponsePolicyCustomErrorResponseRule{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[221] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[232] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57114,7 +58883,7 @@ func (x *CustomErrorResponsePolicyCustomErrorResponseRule) String() string { func (*CustomErrorResponsePolicyCustomErrorResponseRule) ProtoMessage() {} func (x *CustomErrorResponsePolicyCustomErrorResponseRule) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[221] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[232] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57127,7 +58896,7 @@ func (x *CustomErrorResponsePolicyCustomErrorResponseRule) ProtoReflect() protor // Deprecated: Use CustomErrorResponsePolicyCustomErrorResponseRule.ProtoReflect.Descriptor instead. func (*CustomErrorResponsePolicyCustomErrorResponseRule) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{221} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{232} } func (x *CustomErrorResponsePolicyCustomErrorResponseRule) GetMatchResponseCodes() []string { @@ -57213,7 +58982,7 @@ type CustomerEncryptionKey struct { func (x *CustomerEncryptionKey) Reset() { *x = CustomerEncryptionKey{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[222] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[233] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57225,7 +58994,7 @@ func (x *CustomerEncryptionKey) String() string { func (*CustomerEncryptionKey) ProtoMessage() {} func (x *CustomerEncryptionKey) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[222] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[233] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57238,7 +59007,7 @@ func (x *CustomerEncryptionKey) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerEncryptionKey.ProtoReflect.Descriptor instead. func (*CustomerEncryptionKey) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{222} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{233} } func (x *CustomerEncryptionKey) GetKmsKeyName() string { @@ -57294,7 +59063,7 @@ type CustomerEncryptionKeyProtectedDisk struct { func (x *CustomerEncryptionKeyProtectedDisk) Reset() { *x = CustomerEncryptionKeyProtectedDisk{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[223] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[234] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57306,7 +59075,7 @@ func (x *CustomerEncryptionKeyProtectedDisk) String() string { func (*CustomerEncryptionKeyProtectedDisk) ProtoMessage() {} func (x *CustomerEncryptionKeyProtectedDisk) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[223] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[234] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57319,7 +59088,7 @@ func (x *CustomerEncryptionKeyProtectedDisk) ProtoReflect() protoreflect.Message // Deprecated: Use CustomerEncryptionKeyProtectedDisk.ProtoReflect.Descriptor instead. func (*CustomerEncryptionKeyProtectedDisk) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{223} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{234} } func (x *CustomerEncryptionKeyProtectedDisk) GetDiskEncryptionKey() *CustomerEncryptionKey { @@ -57354,7 +59123,7 @@ type Data struct { func (x *Data) Reset() { *x = Data{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[224] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[235] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57366,7 +59135,7 @@ func (x *Data) String() string { func (*Data) ProtoMessage() {} func (x *Data) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[224] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[235] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57379,7 +59148,7 @@ func (x *Data) ProtoReflect() protoreflect.Message { // Deprecated: Use Data.ProtoReflect.Descriptor instead. func (*Data) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{224} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{235} } func (x *Data) GetKey() string { @@ -57430,7 +59199,7 @@ type Date struct { func (x *Date) Reset() { *x = Date{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[225] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[236] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57442,7 +59211,7 @@ func (x *Date) String() string { func (*Date) ProtoMessage() {} func (x *Date) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[225] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[236] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57455,7 +59224,7 @@ func (x *Date) ProtoReflect() protoreflect.Message { // Deprecated: Use Date.ProtoReflect.Descriptor instead. func (*Date) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{225} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{236} } func (x *Date) GetDay() int32 { @@ -57512,7 +59281,7 @@ type DeleteAccessConfigInstanceRequest struct { func (x *DeleteAccessConfigInstanceRequest) Reset() { *x = DeleteAccessConfigInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[226] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[237] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57524,7 +59293,7 @@ func (x *DeleteAccessConfigInstanceRequest) String() string { func (*DeleteAccessConfigInstanceRequest) ProtoMessage() {} func (x *DeleteAccessConfigInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[226] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[237] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57537,7 +59306,7 @@ func (x *DeleteAccessConfigInstanceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteAccessConfigInstanceRequest.ProtoReflect.Descriptor instead. func (*DeleteAccessConfigInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{226} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{237} } func (x *DeleteAccessConfigInstanceRequest) GetAccessConfig() string { @@ -57611,7 +59380,7 @@ type DeleteAddressRequest struct { func (x *DeleteAddressRequest) Reset() { *x = DeleteAddressRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[227] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[238] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57623,7 +59392,7 @@ func (x *DeleteAddressRequest) String() string { func (*DeleteAddressRequest) ProtoMessage() {} func (x *DeleteAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[227] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[238] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57636,7 +59405,7 @@ func (x *DeleteAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteAddressRequest.ProtoReflect.Descriptor instead. func (*DeleteAddressRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{227} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{238} } func (x *DeleteAddressRequest) GetAddress() string { @@ -57696,7 +59465,7 @@ type DeleteAutoscalerRequest struct { func (x *DeleteAutoscalerRequest) Reset() { *x = DeleteAutoscalerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[228] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[239] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57708,7 +59477,7 @@ func (x *DeleteAutoscalerRequest) String() string { func (*DeleteAutoscalerRequest) ProtoMessage() {} func (x *DeleteAutoscalerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[228] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[239] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57721,7 +59490,7 @@ func (x *DeleteAutoscalerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteAutoscalerRequest.ProtoReflect.Descriptor instead. func (*DeleteAutoscalerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{228} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{239} } func (x *DeleteAutoscalerRequest) GetAutoscaler() string { @@ -57779,7 +59548,7 @@ type DeleteBackendBucketRequest struct { func (x *DeleteBackendBucketRequest) Reset() { *x = DeleteBackendBucketRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[229] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[240] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57791,7 +59560,7 @@ func (x *DeleteBackendBucketRequest) String() string { func (*DeleteBackendBucketRequest) ProtoMessage() {} func (x *DeleteBackendBucketRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[229] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[240] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57804,7 +59573,7 @@ func (x *DeleteBackendBucketRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteBackendBucketRequest.ProtoReflect.Descriptor instead. func (*DeleteBackendBucketRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{229} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{240} } func (x *DeleteBackendBucketRequest) GetBackendBucket() string { @@ -57855,7 +59624,7 @@ type DeleteBackendServiceRequest struct { func (x *DeleteBackendServiceRequest) Reset() { *x = DeleteBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[230] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[241] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57867,7 +59636,7 @@ func (x *DeleteBackendServiceRequest) String() string { func (*DeleteBackendServiceRequest) ProtoMessage() {} func (x *DeleteBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[230] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[241] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57880,7 +59649,7 @@ func (x *DeleteBackendServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteBackendServiceRequest.ProtoReflect.Descriptor instead. func (*DeleteBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{230} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{241} } func (x *DeleteBackendServiceRequest) GetBackendService() string { @@ -57932,7 +59701,7 @@ type DeleteCrossSiteNetworkRequest struct { func (x *DeleteCrossSiteNetworkRequest) Reset() { *x = DeleteCrossSiteNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[231] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[242] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -57944,7 +59713,7 @@ func (x *DeleteCrossSiteNetworkRequest) String() string { func (*DeleteCrossSiteNetworkRequest) ProtoMessage() {} func (x *DeleteCrossSiteNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[231] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[242] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -57957,7 +59726,7 @@ func (x *DeleteCrossSiteNetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteCrossSiteNetworkRequest.ProtoReflect.Descriptor instead. func (*DeleteCrossSiteNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{231} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{242} } func (x *DeleteCrossSiteNetworkRequest) GetCrossSiteNetwork() string { @@ -58010,7 +59779,7 @@ type DeleteDiskRequest struct { func (x *DeleteDiskRequest) Reset() { *x = DeleteDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[232] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[243] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58022,7 +59791,7 @@ func (x *DeleteDiskRequest) String() string { func (*DeleteDiskRequest) ProtoMessage() {} func (x *DeleteDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[232] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[243] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58035,7 +59804,7 @@ func (x *DeleteDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteDiskRequest.ProtoReflect.Descriptor instead. func (*DeleteDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{232} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{243} } func (x *DeleteDiskRequest) GetDisk() string { @@ -58093,7 +59862,7 @@ type DeleteExternalVpnGatewayRequest struct { func (x *DeleteExternalVpnGatewayRequest) Reset() { *x = DeleteExternalVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[233] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[244] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58105,7 +59874,7 @@ func (x *DeleteExternalVpnGatewayRequest) String() string { func (*DeleteExternalVpnGatewayRequest) ProtoMessage() {} func (x *DeleteExternalVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[233] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[244] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58118,7 +59887,7 @@ func (x *DeleteExternalVpnGatewayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteExternalVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*DeleteExternalVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{233} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{244} } func (x *DeleteExternalVpnGatewayRequest) GetExternalVpnGateway() string { @@ -58167,7 +59936,7 @@ type DeleteFirewallPolicyRequest struct { func (x *DeleteFirewallPolicyRequest) Reset() { *x = DeleteFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[234] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[245] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58179,7 +59948,7 @@ func (x *DeleteFirewallPolicyRequest) String() string { func (*DeleteFirewallPolicyRequest) ProtoMessage() {} func (x *DeleteFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[234] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[245] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58192,7 +59961,7 @@ func (x *DeleteFirewallPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*DeleteFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{234} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{245} } func (x *DeleteFirewallPolicyRequest) GetFirewallPolicy() string { @@ -58236,7 +60005,7 @@ type DeleteFirewallRequest struct { func (x *DeleteFirewallRequest) Reset() { *x = DeleteFirewallRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[235] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[246] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58248,7 +60017,7 @@ func (x *DeleteFirewallRequest) String() string { func (*DeleteFirewallRequest) ProtoMessage() {} func (x *DeleteFirewallRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[235] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[246] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58261,7 +60030,7 @@ func (x *DeleteFirewallRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteFirewallRequest.ProtoReflect.Descriptor instead. func (*DeleteFirewallRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{235} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{246} } func (x *DeleteFirewallRequest) GetFirewall() string { @@ -58314,7 +60083,7 @@ type DeleteForwardingRuleRequest struct { func (x *DeleteForwardingRuleRequest) Reset() { *x = DeleteForwardingRuleRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[236] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[247] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58326,7 +60095,7 @@ func (x *DeleteForwardingRuleRequest) String() string { func (*DeleteForwardingRuleRequest) ProtoMessage() {} func (x *DeleteForwardingRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[236] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[247] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58339,7 +60108,7 @@ func (x *DeleteForwardingRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteForwardingRuleRequest.ProtoReflect.Descriptor instead. func (*DeleteForwardingRuleRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{236} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{247} } func (x *DeleteForwardingRuleRequest) GetForwardingRule() string { @@ -58399,7 +60168,7 @@ type DeleteFutureReservationRequest struct { func (x *DeleteFutureReservationRequest) Reset() { *x = DeleteFutureReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[237] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[248] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58411,7 +60180,7 @@ func (x *DeleteFutureReservationRequest) String() string { func (*DeleteFutureReservationRequest) ProtoMessage() {} func (x *DeleteFutureReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[237] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[248] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58424,7 +60193,7 @@ func (x *DeleteFutureReservationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteFutureReservationRequest.ProtoReflect.Descriptor instead. func (*DeleteFutureReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{237} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{248} } func (x *DeleteFutureReservationRequest) GetFutureReservation() string { @@ -58482,7 +60251,7 @@ type DeleteGlobalAddressRequest struct { func (x *DeleteGlobalAddressRequest) Reset() { *x = DeleteGlobalAddressRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[238] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[249] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58494,7 +60263,7 @@ func (x *DeleteGlobalAddressRequest) String() string { func (*DeleteGlobalAddressRequest) ProtoMessage() {} func (x *DeleteGlobalAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[238] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[249] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58507,7 +60276,7 @@ func (x *DeleteGlobalAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteGlobalAddressRequest.ProtoReflect.Descriptor instead. func (*DeleteGlobalAddressRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{238} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{249} } func (x *DeleteGlobalAddressRequest) GetAddress() string { @@ -58558,7 +60327,7 @@ type DeleteGlobalForwardingRuleRequest struct { func (x *DeleteGlobalForwardingRuleRequest) Reset() { *x = DeleteGlobalForwardingRuleRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[239] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[250] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58570,7 +60339,7 @@ func (x *DeleteGlobalForwardingRuleRequest) String() string { func (*DeleteGlobalForwardingRuleRequest) ProtoMessage() {} func (x *DeleteGlobalForwardingRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[239] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[250] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58583,7 +60352,7 @@ func (x *DeleteGlobalForwardingRuleRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteGlobalForwardingRuleRequest.ProtoReflect.Descriptor instead. func (*DeleteGlobalForwardingRuleRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{239} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{250} } func (x *DeleteGlobalForwardingRuleRequest) GetForwardingRule() string { @@ -58635,7 +60404,7 @@ type DeleteGlobalNetworkEndpointGroupRequest struct { func (x *DeleteGlobalNetworkEndpointGroupRequest) Reset() { *x = DeleteGlobalNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[240] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[251] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58647,7 +60416,7 @@ func (x *DeleteGlobalNetworkEndpointGroupRequest) String() string { func (*DeleteGlobalNetworkEndpointGroupRequest) ProtoMessage() {} func (x *DeleteGlobalNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[240] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[251] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58660,7 +60429,7 @@ func (x *DeleteGlobalNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Me // Deprecated: Use DeleteGlobalNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*DeleteGlobalNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{240} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{251} } func (x *DeleteGlobalNetworkEndpointGroupRequest) GetNetworkEndpointGroup() string { @@ -58698,7 +60467,7 @@ type DeleteGlobalOperationRequest struct { func (x *DeleteGlobalOperationRequest) Reset() { *x = DeleteGlobalOperationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[241] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[252] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58710,7 +60479,7 @@ func (x *DeleteGlobalOperationRequest) String() string { func (*DeleteGlobalOperationRequest) ProtoMessage() {} func (x *DeleteGlobalOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[241] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[252] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58723,7 +60492,7 @@ func (x *DeleteGlobalOperationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteGlobalOperationRequest.ProtoReflect.Descriptor instead. func (*DeleteGlobalOperationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{241} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{252} } func (x *DeleteGlobalOperationRequest) GetOperation() string { @@ -58749,7 +60518,7 @@ type DeleteGlobalOperationResponse struct { func (x *DeleteGlobalOperationResponse) Reset() { *x = DeleteGlobalOperationResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[242] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[253] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58761,7 +60530,7 @@ func (x *DeleteGlobalOperationResponse) String() string { func (*DeleteGlobalOperationResponse) ProtoMessage() {} func (x *DeleteGlobalOperationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[242] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[253] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58774,7 +60543,7 @@ func (x *DeleteGlobalOperationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteGlobalOperationResponse.ProtoReflect.Descriptor instead. func (*DeleteGlobalOperationResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{242} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{253} } // A request message for GlobalOrganizationOperations.Delete. See the method description for details. @@ -58791,7 +60560,7 @@ type DeleteGlobalOrganizationOperationRequest struct { func (x *DeleteGlobalOrganizationOperationRequest) Reset() { *x = DeleteGlobalOrganizationOperationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[243] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[254] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58803,7 +60572,7 @@ func (x *DeleteGlobalOrganizationOperationRequest) String() string { func (*DeleteGlobalOrganizationOperationRequest) ProtoMessage() {} func (x *DeleteGlobalOrganizationOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[243] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[254] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58816,7 +60585,7 @@ func (x *DeleteGlobalOrganizationOperationRequest) ProtoReflect() protoreflect.M // Deprecated: Use DeleteGlobalOrganizationOperationRequest.ProtoReflect.Descriptor instead. func (*DeleteGlobalOrganizationOperationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{243} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{254} } func (x *DeleteGlobalOrganizationOperationRequest) GetOperation() string { @@ -58842,7 +60611,7 @@ type DeleteGlobalOrganizationOperationResponse struct { func (x *DeleteGlobalOrganizationOperationResponse) Reset() { *x = DeleteGlobalOrganizationOperationResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[244] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[255] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58854,7 +60623,7 @@ func (x *DeleteGlobalOrganizationOperationResponse) String() string { func (*DeleteGlobalOrganizationOperationResponse) ProtoMessage() {} func (x *DeleteGlobalOrganizationOperationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[244] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[255] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58867,7 +60636,7 @@ func (x *DeleteGlobalOrganizationOperationResponse) ProtoReflect() protoreflect. // Deprecated: Use DeleteGlobalOrganizationOperationResponse.ProtoReflect.Descriptor instead. func (*DeleteGlobalOrganizationOperationResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{244} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{255} } // A request message for GlobalPublicDelegatedPrefixes.Delete. See the method description for details. @@ -58897,7 +60666,7 @@ type DeleteGlobalPublicDelegatedPrefixeRequest struct { func (x *DeleteGlobalPublicDelegatedPrefixeRequest) Reset() { *x = DeleteGlobalPublicDelegatedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[245] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[256] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58909,7 +60678,7 @@ func (x *DeleteGlobalPublicDelegatedPrefixeRequest) String() string { func (*DeleteGlobalPublicDelegatedPrefixeRequest) ProtoMessage() {} func (x *DeleteGlobalPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[245] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[256] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58922,7 +60691,7 @@ func (x *DeleteGlobalPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect. // Deprecated: Use DeleteGlobalPublicDelegatedPrefixeRequest.ProtoReflect.Descriptor instead. func (*DeleteGlobalPublicDelegatedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{245} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{256} } func (x *DeleteGlobalPublicDelegatedPrefixeRequest) GetProject() string { @@ -58973,7 +60742,7 @@ type DeleteHealthCheckRequest struct { func (x *DeleteHealthCheckRequest) Reset() { *x = DeleteHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[246] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[257] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58985,7 +60754,7 @@ func (x *DeleteHealthCheckRequest) String() string { func (*DeleteHealthCheckRequest) ProtoMessage() {} func (x *DeleteHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[246] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[257] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -58998,7 +60767,7 @@ func (x *DeleteHealthCheckRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteHealthCheckRequest.ProtoReflect.Descriptor instead. func (*DeleteHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{246} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{257} } func (x *DeleteHealthCheckRequest) GetHealthCheck() string { @@ -59049,7 +60818,7 @@ type DeleteImageRequest struct { func (x *DeleteImageRequest) Reset() { *x = DeleteImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[247] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[258] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59061,7 +60830,7 @@ func (x *DeleteImageRequest) String() string { func (*DeleteImageRequest) ProtoMessage() {} func (x *DeleteImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[247] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[258] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59074,7 +60843,7 @@ func (x *DeleteImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteImageRequest.ProtoReflect.Descriptor instead. func (*DeleteImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{247} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{258} } func (x *DeleteImageRequest) GetImage() string { @@ -59128,7 +60897,7 @@ type DeleteInstanceGroupManagerRequest struct { func (x *DeleteInstanceGroupManagerRequest) Reset() { *x = DeleteInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[248] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[259] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59140,7 +60909,7 @@ func (x *DeleteInstanceGroupManagerRequest) String() string { func (*DeleteInstanceGroupManagerRequest) ProtoMessage() {} func (x *DeleteInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[248] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[259] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59153,7 +60922,7 @@ func (x *DeleteInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*DeleteInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{248} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{259} } func (x *DeleteInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -59218,7 +60987,7 @@ type DeleteInstanceGroupManagerResizeRequestRequest struct { func (x *DeleteInstanceGroupManagerResizeRequestRequest) Reset() { *x = DeleteInstanceGroupManagerResizeRequestRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[249] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[260] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59230,7 +60999,7 @@ func (x *DeleteInstanceGroupManagerResizeRequestRequest) String() string { func (*DeleteInstanceGroupManagerResizeRequestRequest) ProtoMessage() {} func (x *DeleteInstanceGroupManagerResizeRequestRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[249] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[260] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59243,7 +61012,7 @@ func (x *DeleteInstanceGroupManagerResizeRequestRequest) ProtoReflect() protoref // Deprecated: Use DeleteInstanceGroupManagerResizeRequestRequest.ProtoReflect.Descriptor instead. func (*DeleteInstanceGroupManagerResizeRequestRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{249} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{260} } func (x *DeleteInstanceGroupManagerResizeRequestRequest) GetInstanceGroupManager() string { @@ -59311,7 +61080,7 @@ type DeleteInstanceGroupRequest struct { func (x *DeleteInstanceGroupRequest) Reset() { *x = DeleteInstanceGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[250] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[261] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59323,7 +61092,7 @@ func (x *DeleteInstanceGroupRequest) String() string { func (*DeleteInstanceGroupRequest) ProtoMessage() {} func (x *DeleteInstanceGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[250] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[261] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59336,7 +61105,7 @@ func (x *DeleteInstanceGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteInstanceGroupRequest.ProtoReflect.Descriptor instead. func (*DeleteInstanceGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{250} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{261} } func (x *DeleteInstanceGroupRequest) GetInstanceGroup() string { @@ -59396,7 +61165,7 @@ type DeleteInstanceRequest struct { func (x *DeleteInstanceRequest) Reset() { *x = DeleteInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[251] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[262] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59408,7 +61177,7 @@ func (x *DeleteInstanceRequest) String() string { func (*DeleteInstanceRequest) ProtoMessage() {} func (x *DeleteInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[251] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[262] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59421,7 +61190,7 @@ func (x *DeleteInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteInstanceRequest.ProtoReflect.Descriptor instead. func (*DeleteInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{251} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{262} } func (x *DeleteInstanceRequest) GetInstance() string { @@ -59479,7 +61248,7 @@ type DeleteInstanceTemplateRequest struct { func (x *DeleteInstanceTemplateRequest) Reset() { *x = DeleteInstanceTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[252] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[263] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59491,7 +61260,7 @@ func (x *DeleteInstanceTemplateRequest) String() string { func (*DeleteInstanceTemplateRequest) ProtoMessage() {} func (x *DeleteInstanceTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[252] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[263] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59504,7 +61273,7 @@ func (x *DeleteInstanceTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteInstanceTemplateRequest.ProtoReflect.Descriptor instead. func (*DeleteInstanceTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{252} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{263} } func (x *DeleteInstanceTemplateRequest) GetInstanceTemplate() string { @@ -59560,7 +61329,7 @@ type DeleteInstancesInstanceGroupManagerRequest struct { func (x *DeleteInstancesInstanceGroupManagerRequest) Reset() { *x = DeleteInstancesInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[253] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[264] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59572,7 +61341,7 @@ func (x *DeleteInstancesInstanceGroupManagerRequest) String() string { func (*DeleteInstancesInstanceGroupManagerRequest) ProtoMessage() {} func (x *DeleteInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[253] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[264] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59585,7 +61354,7 @@ func (x *DeleteInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect // Deprecated: Use DeleteInstancesInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*DeleteInstancesInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{253} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{264} } func (x *DeleteInstancesInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -59654,7 +61423,7 @@ type DeleteInstancesRegionInstanceGroupManagerRequest struct { func (x *DeleteInstancesRegionInstanceGroupManagerRequest) Reset() { *x = DeleteInstancesRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[254] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[265] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59666,7 +61435,7 @@ func (x *DeleteInstancesRegionInstanceGroupManagerRequest) String() string { func (*DeleteInstancesRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *DeleteInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[254] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[265] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59679,7 +61448,7 @@ func (x *DeleteInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protor // Deprecated: Use DeleteInstancesRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*DeleteInstancesRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{254} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{265} } func (x *DeleteInstancesRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -59717,6 +61486,91 @@ func (x *DeleteInstancesRegionInstanceGroupManagerRequest) GetRequestId() string return "" } +// A request message for InstantSnapshotGroups.Delete. See the method description for details. +type DeleteInstantSnapshotGroupRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the InstantSnapshot resource to delete. + InstantSnapshotGroup string `protobuf:"bytes,223180386,opt,name=instant_snapshot_group,json=instantSnapshotGroup,proto3" json:"instant_snapshot_group,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // The name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DeleteInstantSnapshotGroupRequest) Reset() { + *x = DeleteInstantSnapshotGroupRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[266] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DeleteInstantSnapshotGroupRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteInstantSnapshotGroupRequest) ProtoMessage() {} + +func (x *DeleteInstantSnapshotGroupRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[266] + 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 DeleteInstantSnapshotGroupRequest.ProtoReflect.Descriptor instead. +func (*DeleteInstantSnapshotGroupRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{266} +} + +func (x *DeleteInstantSnapshotGroupRequest) GetInstantSnapshotGroup() string { + if x != nil { + return x.InstantSnapshotGroup + } + return "" +} + +func (x *DeleteInstantSnapshotGroupRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *DeleteInstantSnapshotGroupRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *DeleteInstantSnapshotGroupRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + // A request message for InstantSnapshots.Delete. See the method description for details. type DeleteInstantSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -59746,7 +61600,7 @@ type DeleteInstantSnapshotRequest struct { func (x *DeleteInstantSnapshotRequest) Reset() { *x = DeleteInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[255] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[267] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59758,7 +61612,7 @@ func (x *DeleteInstantSnapshotRequest) String() string { func (*DeleteInstantSnapshotRequest) ProtoMessage() {} func (x *DeleteInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[255] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[267] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59771,7 +61625,7 @@ func (x *DeleteInstantSnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*DeleteInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{255} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{267} } func (x *DeleteInstantSnapshotRequest) GetInstantSnapshot() string { @@ -59830,7 +61684,7 @@ type DeleteInterconnectAttachmentGroupRequest struct { func (x *DeleteInterconnectAttachmentGroupRequest) Reset() { *x = DeleteInterconnectAttachmentGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[256] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[268] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59842,7 +61696,7 @@ func (x *DeleteInterconnectAttachmentGroupRequest) String() string { func (*DeleteInterconnectAttachmentGroupRequest) ProtoMessage() {} func (x *DeleteInterconnectAttachmentGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[256] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[268] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59855,7 +61709,7 @@ func (x *DeleteInterconnectAttachmentGroupRequest) ProtoReflect() protoreflect.M // Deprecated: Use DeleteInterconnectAttachmentGroupRequest.ProtoReflect.Descriptor instead. func (*DeleteInterconnectAttachmentGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{256} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{268} } func (x *DeleteInterconnectAttachmentGroupRequest) GetInterconnectAttachmentGroup() string { @@ -59908,7 +61762,7 @@ type DeleteInterconnectAttachmentRequest struct { func (x *DeleteInterconnectAttachmentRequest) Reset() { *x = DeleteInterconnectAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[257] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[269] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59920,7 +61774,7 @@ func (x *DeleteInterconnectAttachmentRequest) String() string { func (*DeleteInterconnectAttachmentRequest) ProtoMessage() {} func (x *DeleteInterconnectAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[257] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[269] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59933,7 +61787,7 @@ func (x *DeleteInterconnectAttachmentRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use DeleteInterconnectAttachmentRequest.ProtoReflect.Descriptor instead. func (*DeleteInterconnectAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{257} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{269} } func (x *DeleteInterconnectAttachmentRequest) GetInterconnectAttachment() string { @@ -59992,7 +61846,7 @@ type DeleteInterconnectGroupRequest struct { func (x *DeleteInterconnectGroupRequest) Reset() { *x = DeleteInterconnectGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[258] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[270] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60004,7 +61858,7 @@ func (x *DeleteInterconnectGroupRequest) String() string { func (*DeleteInterconnectGroupRequest) ProtoMessage() {} func (x *DeleteInterconnectGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[258] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[270] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60017,7 +61871,7 @@ func (x *DeleteInterconnectGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteInterconnectGroupRequest.ProtoReflect.Descriptor instead. func (*DeleteInterconnectGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{258} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{270} } func (x *DeleteInterconnectGroupRequest) GetInterconnectGroup() string { @@ -60068,7 +61922,7 @@ type DeleteInterconnectRequest struct { func (x *DeleteInterconnectRequest) Reset() { *x = DeleteInterconnectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[259] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[271] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60080,7 +61934,7 @@ func (x *DeleteInterconnectRequest) String() string { func (*DeleteInterconnectRequest) ProtoMessage() {} func (x *DeleteInterconnectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[259] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[271] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60093,7 +61947,7 @@ func (x *DeleteInterconnectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteInterconnectRequest.ProtoReflect.Descriptor instead. func (*DeleteInterconnectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{259} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{271} } func (x *DeleteInterconnectRequest) GetInterconnect() string { @@ -60144,7 +61998,7 @@ type DeleteLicenseRequest struct { func (x *DeleteLicenseRequest) Reset() { *x = DeleteLicenseRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[260] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[272] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60156,7 +62010,7 @@ func (x *DeleteLicenseRequest) String() string { func (*DeleteLicenseRequest) ProtoMessage() {} func (x *DeleteLicenseRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[260] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[272] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60169,7 +62023,7 @@ func (x *DeleteLicenseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteLicenseRequest.ProtoReflect.Descriptor instead. func (*DeleteLicenseRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{260} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{272} } func (x *DeleteLicenseRequest) GetLicense() string { @@ -60220,7 +62074,7 @@ type DeleteMachineImageRequest struct { func (x *DeleteMachineImageRequest) Reset() { *x = DeleteMachineImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[261] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[273] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60232,7 +62086,7 @@ func (x *DeleteMachineImageRequest) String() string { func (*DeleteMachineImageRequest) ProtoMessage() {} func (x *DeleteMachineImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[261] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[273] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60245,7 +62099,7 @@ func (x *DeleteMachineImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteMachineImageRequest.ProtoReflect.Descriptor instead. func (*DeleteMachineImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{261} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{273} } func (x *DeleteMachineImageRequest) GetMachineImage() string { @@ -60299,7 +62153,7 @@ type DeleteNetworkAttachmentRequest struct { func (x *DeleteNetworkAttachmentRequest) Reset() { *x = DeleteNetworkAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[262] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[274] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60311,7 +62165,7 @@ func (x *DeleteNetworkAttachmentRequest) String() string { func (*DeleteNetworkAttachmentRequest) ProtoMessage() {} func (x *DeleteNetworkAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[262] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[274] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60324,7 +62178,7 @@ func (x *DeleteNetworkAttachmentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteNetworkAttachmentRequest.ProtoReflect.Descriptor instead. func (*DeleteNetworkAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{262} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{274} } func (x *DeleteNetworkAttachmentRequest) GetNetworkAttachment() string { @@ -60384,7 +62238,7 @@ type DeleteNetworkEdgeSecurityServiceRequest struct { func (x *DeleteNetworkEdgeSecurityServiceRequest) Reset() { *x = DeleteNetworkEdgeSecurityServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[263] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[275] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60396,7 +62250,7 @@ func (x *DeleteNetworkEdgeSecurityServiceRequest) String() string { func (*DeleteNetworkEdgeSecurityServiceRequest) ProtoMessage() {} func (x *DeleteNetworkEdgeSecurityServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[263] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[275] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60409,7 +62263,7 @@ func (x *DeleteNetworkEdgeSecurityServiceRequest) ProtoReflect() protoreflect.Me // Deprecated: Use DeleteNetworkEdgeSecurityServiceRequest.ProtoReflect.Descriptor instead. func (*DeleteNetworkEdgeSecurityServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{263} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{275} } func (x *DeleteNetworkEdgeSecurityServiceRequest) GetNetworkEdgeSecurityService() string { @@ -60471,7 +62325,7 @@ type DeleteNetworkEndpointGroupRequest struct { func (x *DeleteNetworkEndpointGroupRequest) Reset() { *x = DeleteNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[264] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[276] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60483,7 +62337,7 @@ func (x *DeleteNetworkEndpointGroupRequest) String() string { func (*DeleteNetworkEndpointGroupRequest) ProtoMessage() {} func (x *DeleteNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[264] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[276] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60496,7 +62350,7 @@ func (x *DeleteNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*DeleteNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{264} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{276} } func (x *DeleteNetworkEndpointGroupRequest) GetNetworkEndpointGroup() string { @@ -60554,7 +62408,7 @@ type DeleteNetworkFirewallPolicyRequest struct { func (x *DeleteNetworkFirewallPolicyRequest) Reset() { *x = DeleteNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[265] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[277] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60566,7 +62420,7 @@ func (x *DeleteNetworkFirewallPolicyRequest) String() string { func (*DeleteNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *DeleteNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[265] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[277] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60579,7 +62433,7 @@ func (x *DeleteNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*DeleteNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{265} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{277} } func (x *DeleteNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -60635,7 +62489,7 @@ type DeleteNetworkInterfaceInstanceRequest struct { func (x *DeleteNetworkInterfaceInstanceRequest) Reset() { *x = DeleteNetworkInterfaceInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[266] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[278] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60647,7 +62501,7 @@ func (x *DeleteNetworkInterfaceInstanceRequest) String() string { func (*DeleteNetworkInterfaceInstanceRequest) ProtoMessage() {} func (x *DeleteNetworkInterfaceInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[266] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[278] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60660,7 +62514,7 @@ func (x *DeleteNetworkInterfaceInstanceRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use DeleteNetworkInterfaceInstanceRequest.ProtoReflect.Descriptor instead. func (*DeleteNetworkInterfaceInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{266} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{278} } func (x *DeleteNetworkInterfaceInstanceRequest) GetInstance() string { @@ -60725,7 +62579,7 @@ type DeleteNetworkRequest struct { func (x *DeleteNetworkRequest) Reset() { *x = DeleteNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[267] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[279] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60737,7 +62591,7 @@ func (x *DeleteNetworkRequest) String() string { func (*DeleteNetworkRequest) ProtoMessage() {} func (x *DeleteNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[267] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[279] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60750,7 +62604,7 @@ func (x *DeleteNetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteNetworkRequest.ProtoReflect.Descriptor instead. func (*DeleteNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{267} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{279} } func (x *DeleteNetworkRequest) GetNetwork() string { @@ -60803,7 +62657,7 @@ type DeleteNodeGroupRequest struct { func (x *DeleteNodeGroupRequest) Reset() { *x = DeleteNodeGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[268] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[280] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60815,7 +62669,7 @@ func (x *DeleteNodeGroupRequest) String() string { func (*DeleteNodeGroupRequest) ProtoMessage() {} func (x *DeleteNodeGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[268] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[280] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60828,7 +62682,7 @@ func (x *DeleteNodeGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteNodeGroupRequest.ProtoReflect.Descriptor instead. func (*DeleteNodeGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{268} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{280} } func (x *DeleteNodeGroupRequest) GetNodeGroup() string { @@ -60888,7 +62742,7 @@ type DeleteNodeTemplateRequest struct { func (x *DeleteNodeTemplateRequest) Reset() { *x = DeleteNodeTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[269] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[281] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60900,7 +62754,7 @@ func (x *DeleteNodeTemplateRequest) String() string { func (*DeleteNodeTemplateRequest) ProtoMessage() {} func (x *DeleteNodeTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[269] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[281] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -60913,7 +62767,7 @@ func (x *DeleteNodeTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteNodeTemplateRequest.ProtoReflect.Descriptor instead. func (*DeleteNodeTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{269} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{281} } func (x *DeleteNodeTemplateRequest) GetNodeTemplate() string { @@ -60975,7 +62829,7 @@ type DeleteNodesNodeGroupRequest struct { func (x *DeleteNodesNodeGroupRequest) Reset() { *x = DeleteNodesNodeGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[270] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[282] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60987,7 +62841,7 @@ func (x *DeleteNodesNodeGroupRequest) String() string { func (*DeleteNodesNodeGroupRequest) ProtoMessage() {} func (x *DeleteNodesNodeGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[270] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[282] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61000,7 +62854,7 @@ func (x *DeleteNodesNodeGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteNodesNodeGroupRequest.ProtoReflect.Descriptor instead. func (*DeleteNodesNodeGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{270} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{282} } func (x *DeleteNodesNodeGroupRequest) GetNodeGroup() string { @@ -61063,7 +62917,7 @@ type DeleteOrganizationSecurityPolicyRequest struct { func (x *DeleteOrganizationSecurityPolicyRequest) Reset() { *x = DeleteOrganizationSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[271] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[283] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61075,7 +62929,7 @@ func (x *DeleteOrganizationSecurityPolicyRequest) String() string { func (*DeleteOrganizationSecurityPolicyRequest) ProtoMessage() {} func (x *DeleteOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[271] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[283] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61088,7 +62942,7 @@ func (x *DeleteOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Me // Deprecated: Use DeleteOrganizationSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*DeleteOrganizationSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{271} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{283} } func (x *DeleteOrganizationSecurityPolicyRequest) GetRequestId() string { @@ -61134,7 +62988,7 @@ type DeletePacketMirroringRequest struct { func (x *DeletePacketMirroringRequest) Reset() { *x = DeletePacketMirroringRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[272] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[284] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61146,7 +63000,7 @@ func (x *DeletePacketMirroringRequest) String() string { func (*DeletePacketMirroringRequest) ProtoMessage() {} func (x *DeletePacketMirroringRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[272] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[284] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61159,7 +63013,7 @@ func (x *DeletePacketMirroringRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeletePacketMirroringRequest.ProtoReflect.Descriptor instead. func (*DeletePacketMirroringRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{272} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{284} } func (x *DeletePacketMirroringRequest) GetPacketMirroring() string { @@ -61211,7 +63065,7 @@ type DeletePerInstanceConfigsInstanceGroupManagerRequest struct { func (x *DeletePerInstanceConfigsInstanceGroupManagerRequest) Reset() { *x = DeletePerInstanceConfigsInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[273] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[285] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61223,7 +63077,7 @@ func (x *DeletePerInstanceConfigsInstanceGroupManagerRequest) String() string { func (*DeletePerInstanceConfigsInstanceGroupManagerRequest) ProtoMessage() {} func (x *DeletePerInstanceConfigsInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[273] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[285] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61236,7 +63090,7 @@ func (x *DeletePerInstanceConfigsInstanceGroupManagerRequest) ProtoReflect() pro // Deprecated: Use DeletePerInstanceConfigsInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*DeletePerInstanceConfigsInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{273} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{285} } func (x *DeletePerInstanceConfigsInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -61284,7 +63138,7 @@ type DeletePerInstanceConfigsRegionInstanceGroupManagerRequest struct { func (x *DeletePerInstanceConfigsRegionInstanceGroupManagerRequest) Reset() { *x = DeletePerInstanceConfigsRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[274] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[286] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61296,7 +63150,7 @@ func (x *DeletePerInstanceConfigsRegionInstanceGroupManagerRequest) String() str func (*DeletePerInstanceConfigsRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *DeletePerInstanceConfigsRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[274] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[286] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61309,7 +63163,7 @@ func (x *DeletePerInstanceConfigsRegionInstanceGroupManagerRequest) ProtoReflect // Deprecated: Use DeletePerInstanceConfigsRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*DeletePerInstanceConfigsRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{274} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{286} } func (x *DeletePerInstanceConfigsRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -61367,7 +63221,7 @@ type DeletePublicAdvertisedPrefixeRequest struct { func (x *DeletePublicAdvertisedPrefixeRequest) Reset() { *x = DeletePublicAdvertisedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[275] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[287] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61379,7 +63233,7 @@ func (x *DeletePublicAdvertisedPrefixeRequest) String() string { func (*DeletePublicAdvertisedPrefixeRequest) ProtoMessage() {} func (x *DeletePublicAdvertisedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[275] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[287] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61392,7 +63246,7 @@ func (x *DeletePublicAdvertisedPrefixeRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use DeletePublicAdvertisedPrefixeRequest.ProtoReflect.Descriptor instead. func (*DeletePublicAdvertisedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{275} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{287} } func (x *DeletePublicAdvertisedPrefixeRequest) GetProject() string { @@ -61445,7 +63299,7 @@ type DeletePublicDelegatedPrefixeRequest struct { func (x *DeletePublicDelegatedPrefixeRequest) Reset() { *x = DeletePublicDelegatedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[276] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[288] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61457,7 +63311,7 @@ func (x *DeletePublicDelegatedPrefixeRequest) String() string { func (*DeletePublicDelegatedPrefixeRequest) ProtoMessage() {} func (x *DeletePublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[276] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[288] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61470,7 +63324,7 @@ func (x *DeletePublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use DeletePublicDelegatedPrefixeRequest.ProtoReflect.Descriptor instead. func (*DeletePublicDelegatedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{276} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{288} } func (x *DeletePublicDelegatedPrefixeRequest) GetProject() string { @@ -61530,7 +63384,7 @@ type DeleteRegionAutoscalerRequest struct { func (x *DeleteRegionAutoscalerRequest) Reset() { *x = DeleteRegionAutoscalerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[277] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[289] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61542,7 +63396,7 @@ func (x *DeleteRegionAutoscalerRequest) String() string { func (*DeleteRegionAutoscalerRequest) ProtoMessage() {} func (x *DeleteRegionAutoscalerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[277] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[289] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61555,7 +63409,7 @@ func (x *DeleteRegionAutoscalerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRegionAutoscalerRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionAutoscalerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{277} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{289} } func (x *DeleteRegionAutoscalerRequest) GetAutoscaler() string { @@ -61586,11 +63440,11 @@ func (x *DeleteRegionAutoscalerRequest) GetRequestId() string { return "" } -// A request message for RegionBackendServices.Delete. See the method description for details. -type DeleteRegionBackendServiceRequest struct { +// A request message for RegionBackendBuckets.Delete. See the method description for details. +type DeleteRegionBackendBucketRequest struct { state protoimpl.MessageState `protogen:"open.v1"` - // Name of the BackendService resource to delete. - BackendService string `protobuf:"bytes,306946058,opt,name=backend_service,json=backendService,proto3" json:"backend_service,omitempty"` + // Name of the BackendBucket resource to delete. + BackendBucket string `protobuf:"bytes,91714037,opt,name=backend_bucket,json=backendBucket,proto3" json:"backend_bucket,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` // Name of the region scoping this request. @@ -61608,26 +63462,27 @@ type DeleteRegionBackendServiceRequest struct { // The request ID must be // a valid UUID with the exception that zero UUID is not supported // (00000000-0000-0000-0000-000000000000). + // end_interface: MixerMutationRequestBuilder RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } -func (x *DeleteRegionBackendServiceRequest) Reset() { - *x = DeleteRegionBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[278] +func (x *DeleteRegionBackendBucketRequest) Reset() { + *x = DeleteRegionBackendBucketRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[290] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *DeleteRegionBackendServiceRequest) String() string { +func (x *DeleteRegionBackendBucketRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*DeleteRegionBackendServiceRequest) ProtoMessage() {} +func (*DeleteRegionBackendBucketRequest) ProtoMessage() {} -func (x *DeleteRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[278] +func (x *DeleteRegionBackendBucketRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[290] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61638,44 +63493,44 @@ func (x *DeleteRegionBackendServiceRequest) ProtoReflect() protoreflect.Message return mi.MessageOf(x) } -// Deprecated: Use DeleteRegionBackendServiceRequest.ProtoReflect.Descriptor instead. -func (*DeleteRegionBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{278} +// Deprecated: Use DeleteRegionBackendBucketRequest.ProtoReflect.Descriptor instead. +func (*DeleteRegionBackendBucketRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{290} } -func (x *DeleteRegionBackendServiceRequest) GetBackendService() string { +func (x *DeleteRegionBackendBucketRequest) GetBackendBucket() string { if x != nil { - return x.BackendService + return x.BackendBucket } return "" } -func (x *DeleteRegionBackendServiceRequest) GetProject() string { +func (x *DeleteRegionBackendBucketRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *DeleteRegionBackendServiceRequest) GetRegion() string { +func (x *DeleteRegionBackendBucketRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *DeleteRegionBackendServiceRequest) GetRequestId() string { +func (x *DeleteRegionBackendBucketRequest) GetRequestId() string { if x != nil && x.RequestId != nil { return *x.RequestId } return "" } -// A request message for RegionCompositeHealthChecks.Delete. See the method description for details. -type DeleteRegionCompositeHealthCheckRequest struct { +// A request message for RegionBackendServices.Delete. See the method description for details. +type DeleteRegionBackendServiceRequest struct { state protoimpl.MessageState `protogen:"open.v1"` - // Name of the CompositeHealthCheck resource to delete. - CompositeHealthCheck string `protobuf:"bytes,466984989,opt,name=composite_health_check,json=compositeHealthCheck,proto3" json:"composite_health_check,omitempty"` + // Name of the BackendService resource to delete. + BackendService string `protobuf:"bytes,306946058,opt,name=backend_service,json=backendService,proto3" json:"backend_service,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` // Name of the region scoping this request. @@ -61698,106 +63553,21 @@ type DeleteRegionCompositeHealthCheckRequest struct { sizeCache protoimpl.SizeCache } -func (x *DeleteRegionCompositeHealthCheckRequest) Reset() { - *x = DeleteRegionCompositeHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[279] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) -} - -func (x *DeleteRegionCompositeHealthCheckRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*DeleteRegionCompositeHealthCheckRequest) ProtoMessage() {} - -func (x *DeleteRegionCompositeHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[279] - 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 DeleteRegionCompositeHealthCheckRequest.ProtoReflect.Descriptor instead. -func (*DeleteRegionCompositeHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{279} -} - -func (x *DeleteRegionCompositeHealthCheckRequest) GetCompositeHealthCheck() string { - if x != nil { - return x.CompositeHealthCheck - } - return "" -} - -func (x *DeleteRegionCompositeHealthCheckRequest) GetProject() string { - if x != nil { - return x.Project - } - return "" -} - -func (x *DeleteRegionCompositeHealthCheckRequest) GetRegion() string { - if x != nil { - return x.Region - } - return "" -} - -func (x *DeleteRegionCompositeHealthCheckRequest) GetRequestId() string { - if x != nil && x.RequestId != nil { - return *x.RequestId - } - return "" -} - -// A request message for RegionDisks.Delete. See the method description for details. -type DeleteRegionDiskRequest struct { - state protoimpl.MessageState `protogen:"open.v1"` - // Name of the regional persistent disk to delete. - Disk string `protobuf:"bytes,3083677,opt,name=disk,proto3" json:"disk,omitempty"` - // Project ID for this request. - Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region for this request. - Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` - // An optional request ID to identify requests. Specify a unique request ID so - // that if you must retry your request, the server will know to ignore the - // request if it has already been completed. - // - // For example, consider a situation where you make an initial request and - // the request times out. If you make the request again with the same - // request ID, the server can check if original operation with the same - // request ID was received, and if so, will ignore the second request. This - // prevents clients from accidentally creating duplicate commitments. - // - // The request ID must be - // a valid UUID with the exception that zero UUID is not supported - // (00000000-0000-0000-0000-000000000000). - RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache -} - -func (x *DeleteRegionDiskRequest) Reset() { - *x = DeleteRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[280] +func (x *DeleteRegionBackendServiceRequest) Reset() { + *x = DeleteRegionBackendServiceRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[291] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *DeleteRegionDiskRequest) String() string { +func (x *DeleteRegionBackendServiceRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*DeleteRegionDiskRequest) ProtoMessage() {} +func (*DeleteRegionBackendServiceRequest) ProtoMessage() {} -func (x *DeleteRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[280] +func (x *DeleteRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[291] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61808,44 +63578,44 @@ func (x *DeleteRegionDiskRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use DeleteRegionDiskRequest.ProtoReflect.Descriptor instead. -func (*DeleteRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{280} +// Deprecated: Use DeleteRegionBackendServiceRequest.ProtoReflect.Descriptor instead. +func (*DeleteRegionBackendServiceRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{291} } -func (x *DeleteRegionDiskRequest) GetDisk() string { +func (x *DeleteRegionBackendServiceRequest) GetBackendService() string { if x != nil { - return x.Disk + return x.BackendService } return "" } -func (x *DeleteRegionDiskRequest) GetProject() string { +func (x *DeleteRegionBackendServiceRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *DeleteRegionDiskRequest) GetRegion() string { +func (x *DeleteRegionBackendServiceRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *DeleteRegionDiskRequest) GetRequestId() string { +func (x *DeleteRegionBackendServiceRequest) GetRequestId() string { if x != nil && x.RequestId != nil { return *x.RequestId } return "" } -// A request message for RegionHealthAggregationPolicies.Delete. See the method description for details. -type DeleteRegionHealthAggregationPolicyRequest struct { +// A request message for RegionCompositeHealthChecks.Delete. See the method description for details. +type DeleteRegionCompositeHealthCheckRequest struct { state protoimpl.MessageState `protogen:"open.v1"` - // Name of the HealthAggregationPolicy resource to delete. - HealthAggregationPolicy string `protobuf:"bytes,240314354,opt,name=health_aggregation_policy,json=healthAggregationPolicy,proto3" json:"health_aggregation_policy,omitempty"` + // Name of the CompositeHealthCheck resource to delete. + CompositeHealthCheck string `protobuf:"bytes,466984989,opt,name=composite_health_check,json=compositeHealthCheck,proto3" json:"composite_health_check,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` // Name of the region scoping this request. @@ -61868,21 +63638,21 @@ type DeleteRegionHealthAggregationPolicyRequest struct { sizeCache protoimpl.SizeCache } -func (x *DeleteRegionHealthAggregationPolicyRequest) Reset() { - *x = DeleteRegionHealthAggregationPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[281] +func (x *DeleteRegionCompositeHealthCheckRequest) Reset() { + *x = DeleteRegionCompositeHealthCheckRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[292] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *DeleteRegionHealthAggregationPolicyRequest) String() string { +func (x *DeleteRegionCompositeHealthCheckRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*DeleteRegionHealthAggregationPolicyRequest) ProtoMessage() {} +func (*DeleteRegionCompositeHealthCheckRequest) ProtoMessage() {} -func (x *DeleteRegionHealthAggregationPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[281] +func (x *DeleteRegionCompositeHealthCheckRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[292] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61893,47 +63663,47 @@ func (x *DeleteRegionHealthAggregationPolicyRequest) ProtoReflect() protoreflect return mi.MessageOf(x) } -// Deprecated: Use DeleteRegionHealthAggregationPolicyRequest.ProtoReflect.Descriptor instead. -func (*DeleteRegionHealthAggregationPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{281} +// Deprecated: Use DeleteRegionCompositeHealthCheckRequest.ProtoReflect.Descriptor instead. +func (*DeleteRegionCompositeHealthCheckRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{292} } -func (x *DeleteRegionHealthAggregationPolicyRequest) GetHealthAggregationPolicy() string { +func (x *DeleteRegionCompositeHealthCheckRequest) GetCompositeHealthCheck() string { if x != nil { - return x.HealthAggregationPolicy + return x.CompositeHealthCheck } return "" } -func (x *DeleteRegionHealthAggregationPolicyRequest) GetProject() string { +func (x *DeleteRegionCompositeHealthCheckRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *DeleteRegionHealthAggregationPolicyRequest) GetRegion() string { +func (x *DeleteRegionCompositeHealthCheckRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *DeleteRegionHealthAggregationPolicyRequest) GetRequestId() string { +func (x *DeleteRegionCompositeHealthCheckRequest) GetRequestId() string { if x != nil && x.RequestId != nil { return *x.RequestId } return "" } -// A request message for RegionHealthChecks.Delete. See the method description for details. -type DeleteRegionHealthCheckRequest struct { +// A request message for RegionDisks.Delete. See the method description for details. +type DeleteRegionDiskRequest struct { state protoimpl.MessageState `protogen:"open.v1"` - // Name of the HealthCheck resource to delete. - HealthCheck string `protobuf:"bytes,308876645,opt,name=health_check,json=healthCheck,proto3" json:"health_check,omitempty"` + // Name of the regional persistent disk to delete. + Disk string `protobuf:"bytes,3083677,opt,name=disk,proto3" json:"disk,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. + // Name of the region for this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // An optional request ID to identify requests. Specify a unique request ID so // that if you must retry your request, the server will know to ignore the @@ -61953,21 +63723,21 @@ type DeleteRegionHealthCheckRequest struct { sizeCache protoimpl.SizeCache } -func (x *DeleteRegionHealthCheckRequest) Reset() { - *x = DeleteRegionHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[282] +func (x *DeleteRegionDiskRequest) Reset() { + *x = DeleteRegionDiskRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[293] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *DeleteRegionHealthCheckRequest) String() string { +func (x *DeleteRegionDiskRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*DeleteRegionHealthCheckRequest) ProtoMessage() {} +func (*DeleteRegionDiskRequest) ProtoMessage() {} -func (x *DeleteRegionHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[282] +func (x *DeleteRegionDiskRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[293] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -61978,45 +63748,215 @@ func (x *DeleteRegionHealthCheckRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use DeleteRegionHealthCheckRequest.ProtoReflect.Descriptor instead. -func (*DeleteRegionHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{282} +// Deprecated: Use DeleteRegionDiskRequest.ProtoReflect.Descriptor instead. +func (*DeleteRegionDiskRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{293} } -func (x *DeleteRegionHealthCheckRequest) GetHealthCheck() string { +func (x *DeleteRegionDiskRequest) GetDisk() string { if x != nil { - return x.HealthCheck + return x.Disk } return "" } -func (x *DeleteRegionHealthCheckRequest) GetProject() string { +func (x *DeleteRegionDiskRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *DeleteRegionHealthCheckRequest) GetRegion() string { +func (x *DeleteRegionDiskRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *DeleteRegionHealthCheckRequest) GetRequestId() string { +func (x *DeleteRegionDiskRequest) GetRequestId() string { if x != nil && x.RequestId != nil { return *x.RequestId } return "" } -// A request message for RegionHealthCheckServices.Delete. See the method description for details. -type DeleteRegionHealthCheckServiceRequest struct { +// A request message for RegionHealthAggregationPolicies.Delete. See the method description for details. +type DeleteRegionHealthAggregationPolicyRequest struct { state protoimpl.MessageState `protogen:"open.v1"` - // Name of the HealthCheckService to delete. The name - // must be 1-63 characters long, and comply with RFC1035. - HealthCheckService string `protobuf:"bytes,408374747,opt,name=health_check_service,json=healthCheckService,proto3" json:"health_check_service,omitempty"` + // Name of the HealthAggregationPolicy resource to delete. + HealthAggregationPolicy string `protobuf:"bytes,240314354,opt,name=health_aggregation_policy,json=healthAggregationPolicy,proto3" json:"health_aggregation_policy,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region scoping this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DeleteRegionHealthAggregationPolicyRequest) Reset() { + *x = DeleteRegionHealthAggregationPolicyRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[294] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DeleteRegionHealthAggregationPolicyRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteRegionHealthAggregationPolicyRequest) ProtoMessage() {} + +func (x *DeleteRegionHealthAggregationPolicyRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[294] + 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 DeleteRegionHealthAggregationPolicyRequest.ProtoReflect.Descriptor instead. +func (*DeleteRegionHealthAggregationPolicyRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{294} +} + +func (x *DeleteRegionHealthAggregationPolicyRequest) GetHealthAggregationPolicy() string { + if x != nil { + return x.HealthAggregationPolicy + } + return "" +} + +func (x *DeleteRegionHealthAggregationPolicyRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *DeleteRegionHealthAggregationPolicyRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *DeleteRegionHealthAggregationPolicyRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +// A request message for RegionHealthChecks.Delete. See the method description for details. +type DeleteRegionHealthCheckRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the HealthCheck resource to delete. + HealthCheck string `protobuf:"bytes,308876645,opt,name=health_check,json=healthCheck,proto3" json:"health_check,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region scoping this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DeleteRegionHealthCheckRequest) Reset() { + *x = DeleteRegionHealthCheckRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[295] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DeleteRegionHealthCheckRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteRegionHealthCheckRequest) ProtoMessage() {} + +func (x *DeleteRegionHealthCheckRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[295] + 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 DeleteRegionHealthCheckRequest.ProtoReflect.Descriptor instead. +func (*DeleteRegionHealthCheckRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{295} +} + +func (x *DeleteRegionHealthCheckRequest) GetHealthCheck() string { + if x != nil { + return x.HealthCheck + } + return "" +} + +func (x *DeleteRegionHealthCheckRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *DeleteRegionHealthCheckRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *DeleteRegionHealthCheckRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +// A request message for RegionHealthCheckServices.Delete. See the method description for details. +type DeleteRegionHealthCheckServiceRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the HealthCheckService to delete. The name + // must be 1-63 characters long, and comply with RFC1035. + HealthCheckService string `protobuf:"bytes,408374747,opt,name=health_check_service,json=healthCheckService,proto3" json:"health_check_service,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` // Name of the region scoping this request. @@ -62041,7 +63981,7 @@ type DeleteRegionHealthCheckServiceRequest struct { func (x *DeleteRegionHealthCheckServiceRequest) Reset() { *x = DeleteRegionHealthCheckServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[283] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[296] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62053,7 +63993,7 @@ func (x *DeleteRegionHealthCheckServiceRequest) String() string { func (*DeleteRegionHealthCheckServiceRequest) ProtoMessage() {} func (x *DeleteRegionHealthCheckServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[283] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[296] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -62066,7 +64006,7 @@ func (x *DeleteRegionHealthCheckServiceRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use DeleteRegionHealthCheckServiceRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionHealthCheckServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{283} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{296} } func (x *DeleteRegionHealthCheckServiceRequest) GetHealthCheckService() string { @@ -62126,7 +64066,7 @@ type DeleteRegionHealthSourceRequest struct { func (x *DeleteRegionHealthSourceRequest) Reset() { *x = DeleteRegionHealthSourceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[284] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[297] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62138,7 +64078,7 @@ func (x *DeleteRegionHealthSourceRequest) String() string { func (*DeleteRegionHealthSourceRequest) ProtoMessage() {} func (x *DeleteRegionHealthSourceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[284] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[297] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -62151,7 +64091,7 @@ func (x *DeleteRegionHealthSourceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRegionHealthSourceRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionHealthSourceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{284} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{297} } func (x *DeleteRegionHealthSourceRequest) GetHealthSource() string { @@ -62211,7 +64151,7 @@ type DeleteRegionInstanceGroupManagerRequest struct { func (x *DeleteRegionInstanceGroupManagerRequest) Reset() { *x = DeleteRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[285] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[298] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62223,7 +64163,7 @@ func (x *DeleteRegionInstanceGroupManagerRequest) String() string { func (*DeleteRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *DeleteRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[285] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[298] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -62236,7 +64176,7 @@ func (x *DeleteRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Me // Deprecated: Use DeleteRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{285} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{298} } func (x *DeleteRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -62267,6 +64207,103 @@ func (x *DeleteRegionInstanceGroupManagerRequest) GetRequestId() string { return "" } +// A request message for RegionInstanceGroupManagerResizeRequests.Delete. See the method description for details. +type DeleteRegionInstanceGroupManagerResizeRequestRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // The name of the managed instance group. + // Name should conform to RFC1035 or be a resource ID. + InstanceGroupManager string `protobuf:"bytes,249363395,opt,name=instance_group_manager,json=instanceGroupManager,proto3" json:"instance_group_manager,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region + // scoping this request. Name should conform to RFC1035. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // The name of the resize request to delete. + // Name should conform to RFC1035 or be a resource ID. + ResizeRequest string `protobuf:"bytes,216941060,opt,name=resize_request,json=resizeRequest,proto3" json:"resize_request,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DeleteRegionInstanceGroupManagerResizeRequestRequest) Reset() { + *x = DeleteRegionInstanceGroupManagerResizeRequestRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[299] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DeleteRegionInstanceGroupManagerResizeRequestRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteRegionInstanceGroupManagerResizeRequestRequest) ProtoMessage() {} + +func (x *DeleteRegionInstanceGroupManagerResizeRequestRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[299] + 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 DeleteRegionInstanceGroupManagerResizeRequestRequest.ProtoReflect.Descriptor instead. +func (*DeleteRegionInstanceGroupManagerResizeRequestRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{299} +} + +func (x *DeleteRegionInstanceGroupManagerResizeRequestRequest) GetInstanceGroupManager() string { + if x != nil { + return x.InstanceGroupManager + } + return "" +} + +func (x *DeleteRegionInstanceGroupManagerResizeRequestRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *DeleteRegionInstanceGroupManagerResizeRequestRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *DeleteRegionInstanceGroupManagerResizeRequestRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *DeleteRegionInstanceGroupManagerResizeRequestRequest) GetResizeRequest() string { + if x != nil { + return x.ResizeRequest + } + return "" +} + // A request message for RegionInstanceTemplates.Delete. See the method description for details. type DeleteRegionInstanceTemplateRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -62296,7 +64333,7 @@ type DeleteRegionInstanceTemplateRequest struct { func (x *DeleteRegionInstanceTemplateRequest) Reset() { *x = DeleteRegionInstanceTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[286] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[300] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62308,7 +64345,7 @@ func (x *DeleteRegionInstanceTemplateRequest) String() string { func (*DeleteRegionInstanceTemplateRequest) ProtoMessage() {} func (x *DeleteRegionInstanceTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[286] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[300] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -62321,7 +64358,7 @@ func (x *DeleteRegionInstanceTemplateRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use DeleteRegionInstanceTemplateRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionInstanceTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{286} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{300} } func (x *DeleteRegionInstanceTemplateRequest) GetInstanceTemplate() string { @@ -62352,6 +64389,91 @@ func (x *DeleteRegionInstanceTemplateRequest) GetRequestId() string { return "" } +// A request message for RegionInstantSnapshotGroups.Delete. See the method description for details. +type DeleteRegionInstantSnapshotGroupRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the InstantSnapshotGroup resource to delete. + InstantSnapshotGroup string `protobuf:"bytes,223180386,opt,name=instant_snapshot_group,json=instantSnapshotGroup,proto3" json:"instant_snapshot_group,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DeleteRegionInstantSnapshotGroupRequest) Reset() { + *x = DeleteRegionInstantSnapshotGroupRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[301] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DeleteRegionInstantSnapshotGroupRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteRegionInstantSnapshotGroupRequest) ProtoMessage() {} + +func (x *DeleteRegionInstantSnapshotGroupRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[301] + 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 DeleteRegionInstantSnapshotGroupRequest.ProtoReflect.Descriptor instead. +func (*DeleteRegionInstantSnapshotGroupRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{301} +} + +func (x *DeleteRegionInstantSnapshotGroupRequest) GetInstantSnapshotGroup() string { + if x != nil { + return x.InstantSnapshotGroup + } + return "" +} + +func (x *DeleteRegionInstantSnapshotGroupRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *DeleteRegionInstantSnapshotGroupRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *DeleteRegionInstantSnapshotGroupRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + // A request message for RegionInstantSnapshots.Delete. See the method description for details. type DeleteRegionInstantSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -62381,7 +64503,7 @@ type DeleteRegionInstantSnapshotRequest struct { func (x *DeleteRegionInstantSnapshotRequest) Reset() { *x = DeleteRegionInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[287] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[302] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62393,7 +64515,7 @@ func (x *DeleteRegionInstantSnapshotRequest) String() string { func (*DeleteRegionInstantSnapshotRequest) ProtoMessage() {} func (x *DeleteRegionInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[287] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[302] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -62406,7 +64528,7 @@ func (x *DeleteRegionInstantSnapshotRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteRegionInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{287} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{302} } func (x *DeleteRegionInstantSnapshotRequest) GetInstantSnapshot() string { @@ -62468,7 +64590,7 @@ type DeleteRegionNetworkEndpointGroupRequest struct { func (x *DeleteRegionNetworkEndpointGroupRequest) Reset() { *x = DeleteRegionNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[288] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[303] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62480,7 +64602,7 @@ func (x *DeleteRegionNetworkEndpointGroupRequest) String() string { func (*DeleteRegionNetworkEndpointGroupRequest) ProtoMessage() {} func (x *DeleteRegionNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[288] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[303] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -62493,7 +64615,7 @@ func (x *DeleteRegionNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Me // Deprecated: Use DeleteRegionNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{288} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{303} } func (x *DeleteRegionNetworkEndpointGroupRequest) GetNetworkEndpointGroup() string { @@ -62553,7 +64675,7 @@ type DeleteRegionNetworkFirewallPolicyRequest struct { func (x *DeleteRegionNetworkFirewallPolicyRequest) Reset() { *x = DeleteRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[289] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[304] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62565,7 +64687,7 @@ func (x *DeleteRegionNetworkFirewallPolicyRequest) String() string { func (*DeleteRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *DeleteRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[289] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[304] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -62578,7 +64700,7 @@ func (x *DeleteRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.M // Deprecated: Use DeleteRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{289} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{304} } func (x *DeleteRegionNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -62638,7 +64760,7 @@ type DeleteRegionNotificationEndpointRequest struct { func (x *DeleteRegionNotificationEndpointRequest) Reset() { *x = DeleteRegionNotificationEndpointRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[290] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[305] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62650,7 +64772,7 @@ func (x *DeleteRegionNotificationEndpointRequest) String() string { func (*DeleteRegionNotificationEndpointRequest) ProtoMessage() {} func (x *DeleteRegionNotificationEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[290] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[305] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -62663,7 +64785,7 @@ func (x *DeleteRegionNotificationEndpointRequest) ProtoReflect() protoreflect.Me // Deprecated: Use DeleteRegionNotificationEndpointRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionNotificationEndpointRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{290} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{305} } func (x *DeleteRegionNotificationEndpointRequest) GetNotificationEndpoint() string { @@ -62710,7 +64832,7 @@ type DeleteRegionOperationRequest struct { func (x *DeleteRegionOperationRequest) Reset() { *x = DeleteRegionOperationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[291] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[306] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62722,7 +64844,7 @@ func (x *DeleteRegionOperationRequest) String() string { func (*DeleteRegionOperationRequest) ProtoMessage() {} func (x *DeleteRegionOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[291] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[306] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -62735,7 +64857,7 @@ func (x *DeleteRegionOperationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRegionOperationRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionOperationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{291} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{306} } func (x *DeleteRegionOperationRequest) GetOperation() string { @@ -62768,7 +64890,7 @@ type DeleteRegionOperationResponse struct { func (x *DeleteRegionOperationResponse) Reset() { *x = DeleteRegionOperationResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[292] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[307] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62780,7 +64902,7 @@ func (x *DeleteRegionOperationResponse) String() string { func (*DeleteRegionOperationResponse) ProtoMessage() {} func (x *DeleteRegionOperationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[292] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[307] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -62793,7 +64915,7 @@ func (x *DeleteRegionOperationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRegionOperationResponse.ProtoReflect.Descriptor instead. func (*DeleteRegionOperationResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{292} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{307} } // A request message for RegionSecurityPolicies.Delete. See the method description for details. @@ -62825,7 +64947,7 @@ type DeleteRegionSecurityPolicyRequest struct { func (x *DeleteRegionSecurityPolicyRequest) Reset() { *x = DeleteRegionSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[293] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[308] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62837,7 +64959,7 @@ func (x *DeleteRegionSecurityPolicyRequest) String() string { func (*DeleteRegionSecurityPolicyRequest) ProtoMessage() {} func (x *DeleteRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[293] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[308] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -62850,7 +64972,7 @@ func (x *DeleteRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteRegionSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{293} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{308} } func (x *DeleteRegionSecurityPolicyRequest) GetProject() string { @@ -62881,6 +65003,91 @@ func (x *DeleteRegionSecurityPolicyRequest) GetSecurityPolicy() string { return "" } +// A request message for RegionSnapshots.Delete. See the method description for details. +type DeleteRegionSnapshotRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // Name of the snapshot resource to delete. + Snapshot string `protobuf:"bytes,284874180,opt,name=snapshot,proto3" json:"snapshot,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DeleteRegionSnapshotRequest) Reset() { + *x = DeleteRegionSnapshotRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[309] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DeleteRegionSnapshotRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteRegionSnapshotRequest) ProtoMessage() {} + +func (x *DeleteRegionSnapshotRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[309] + 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 DeleteRegionSnapshotRequest.ProtoReflect.Descriptor instead. +func (*DeleteRegionSnapshotRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{309} +} + +func (x *DeleteRegionSnapshotRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *DeleteRegionSnapshotRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *DeleteRegionSnapshotRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *DeleteRegionSnapshotRequest) GetSnapshot() string { + if x != nil { + return x.Snapshot + } + return "" +} + // A request message for RegionSslCertificates.Delete. See the method description for details. type DeleteRegionSslCertificateRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -62910,7 +65117,7 @@ type DeleteRegionSslCertificateRequest struct { func (x *DeleteRegionSslCertificateRequest) Reset() { *x = DeleteRegionSslCertificateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[294] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[310] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62922,7 +65129,7 @@ func (x *DeleteRegionSslCertificateRequest) String() string { func (*DeleteRegionSslCertificateRequest) ProtoMessage() {} func (x *DeleteRegionSslCertificateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[294] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[310] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -62935,7 +65142,7 @@ func (x *DeleteRegionSslCertificateRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteRegionSslCertificateRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionSslCertificateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{294} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{310} } func (x *DeleteRegionSslCertificateRequest) GetProject() string { @@ -62996,7 +65203,7 @@ type DeleteRegionSslPolicyRequest struct { func (x *DeleteRegionSslPolicyRequest) Reset() { *x = DeleteRegionSslPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[295] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[311] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63008,7 +65215,7 @@ func (x *DeleteRegionSslPolicyRequest) String() string { func (*DeleteRegionSslPolicyRequest) ProtoMessage() {} func (x *DeleteRegionSslPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[295] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[311] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -63021,7 +65228,7 @@ func (x *DeleteRegionSslPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRegionSslPolicyRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionSslPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{295} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{311} } func (x *DeleteRegionSslPolicyRequest) GetProject() string { @@ -63081,7 +65288,7 @@ type DeleteRegionTargetHttpProxyRequest struct { func (x *DeleteRegionTargetHttpProxyRequest) Reset() { *x = DeleteRegionTargetHttpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[296] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[312] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63093,7 +65300,7 @@ func (x *DeleteRegionTargetHttpProxyRequest) String() string { func (*DeleteRegionTargetHttpProxyRequest) ProtoMessage() {} func (x *DeleteRegionTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[296] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[312] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -63106,7 +65313,7 @@ func (x *DeleteRegionTargetHttpProxyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteRegionTargetHttpProxyRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionTargetHttpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{296} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{312} } func (x *DeleteRegionTargetHttpProxyRequest) GetProject() string { @@ -63166,7 +65373,7 @@ type DeleteRegionTargetHttpsProxyRequest struct { func (x *DeleteRegionTargetHttpsProxyRequest) Reset() { *x = DeleteRegionTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[297] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[313] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63178,7 +65385,7 @@ func (x *DeleteRegionTargetHttpsProxyRequest) String() string { func (*DeleteRegionTargetHttpsProxyRequest) ProtoMessage() {} func (x *DeleteRegionTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[297] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[313] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -63191,7 +65398,7 @@ func (x *DeleteRegionTargetHttpsProxyRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use DeleteRegionTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{297} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{313} } func (x *DeleteRegionTargetHttpsProxyRequest) GetProject() string { @@ -63251,7 +65458,7 @@ type DeleteRegionTargetTcpProxyRequest struct { func (x *DeleteRegionTargetTcpProxyRequest) Reset() { *x = DeleteRegionTargetTcpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[298] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[314] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63263,7 +65470,7 @@ func (x *DeleteRegionTargetTcpProxyRequest) String() string { func (*DeleteRegionTargetTcpProxyRequest) ProtoMessage() {} func (x *DeleteRegionTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[298] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[314] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -63276,7 +65483,7 @@ func (x *DeleteRegionTargetTcpProxyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DeleteRegionTargetTcpProxyRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionTargetTcpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{298} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{314} } func (x *DeleteRegionTargetTcpProxyRequest) GetProject() string { @@ -63325,7 +65532,7 @@ type DeleteRegionUrlMapRequest struct { func (x *DeleteRegionUrlMapRequest) Reset() { *x = DeleteRegionUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[299] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[315] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63337,7 +65544,7 @@ func (x *DeleteRegionUrlMapRequest) String() string { func (*DeleteRegionUrlMapRequest) ProtoMessage() {} func (x *DeleteRegionUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[299] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[315] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -63350,7 +65557,7 @@ func (x *DeleteRegionUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRegionUrlMapRequest.ProtoReflect.Descriptor instead. func (*DeleteRegionUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{299} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{315} } func (x *DeleteRegionUrlMapRequest) GetProject() string { @@ -63410,7 +65617,7 @@ type DeleteReservationRequest struct { func (x *DeleteReservationRequest) Reset() { *x = DeleteReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[300] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[316] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63422,7 +65629,7 @@ func (x *DeleteReservationRequest) String() string { func (*DeleteReservationRequest) ProtoMessage() {} func (x *DeleteReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[300] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[316] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -63435,7 +65642,7 @@ func (x *DeleteReservationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteReservationRequest.ProtoReflect.Descriptor instead. func (*DeleteReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{300} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{316} } func (x *DeleteReservationRequest) GetProject() string { @@ -63495,7 +65702,7 @@ type DeleteResourcePolicyRequest struct { func (x *DeleteResourcePolicyRequest) Reset() { *x = DeleteResourcePolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[301] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[317] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63507,7 +65714,7 @@ func (x *DeleteResourcePolicyRequest) String() string { func (*DeleteResourcePolicyRequest) ProtoMessage() {} func (x *DeleteResourcePolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[301] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[317] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -63520,7 +65727,7 @@ func (x *DeleteResourcePolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteResourcePolicyRequest.ProtoReflect.Descriptor instead. func (*DeleteResourcePolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{301} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{317} } func (x *DeleteResourcePolicyRequest) GetProject() string { @@ -63582,7 +65789,7 @@ type DeleteRoutePolicyRouterRequest struct { func (x *DeleteRoutePolicyRouterRequest) Reset() { *x = DeleteRoutePolicyRouterRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[302] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[318] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63594,7 +65801,7 @@ func (x *DeleteRoutePolicyRouterRequest) String() string { func (*DeleteRoutePolicyRouterRequest) ProtoMessage() {} func (x *DeleteRoutePolicyRouterRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[302] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[318] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -63607,7 +65814,7 @@ func (x *DeleteRoutePolicyRouterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRoutePolicyRouterRequest.ProtoReflect.Descriptor instead. func (*DeleteRoutePolicyRouterRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{302} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{318} } func (x *DeleteRoutePolicyRouterRequest) GetPolicy() string { @@ -63672,7 +65879,7 @@ type DeleteRouteRequest struct { func (x *DeleteRouteRequest) Reset() { *x = DeleteRouteRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[303] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[319] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63684,7 +65891,7 @@ func (x *DeleteRouteRequest) String() string { func (*DeleteRouteRequest) ProtoMessage() {} func (x *DeleteRouteRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[303] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[319] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -63697,7 +65904,7 @@ func (x *DeleteRouteRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRouteRequest.ProtoReflect.Descriptor instead. func (*DeleteRouteRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{303} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{319} } func (x *DeleteRouteRequest) GetProject() string { @@ -63750,7 +65957,7 @@ type DeleteRouterRequest struct { func (x *DeleteRouterRequest) Reset() { *x = DeleteRouterRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[304] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[320] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63762,7 +65969,7 @@ func (x *DeleteRouterRequest) String() string { func (*DeleteRouterRequest) ProtoMessage() {} func (x *DeleteRouterRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[304] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[320] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -63775,7 +65982,7 @@ func (x *DeleteRouterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteRouterRequest.ProtoReflect.Descriptor instead. func (*DeleteRouterRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{304} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{320} } func (x *DeleteRouterRequest) GetProject() string { @@ -63833,7 +66040,7 @@ type DeleteSecurityPolicyRequest struct { func (x *DeleteSecurityPolicyRequest) Reset() { *x = DeleteSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[305] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[321] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63845,7 +66052,7 @@ func (x *DeleteSecurityPolicyRequest) String() string { func (*DeleteSecurityPolicyRequest) ProtoMessage() {} func (x *DeleteSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[305] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[321] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -63858,7 +66065,7 @@ func (x *DeleteSecurityPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*DeleteSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{305} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{321} } func (x *DeleteSecurityPolicyRequest) GetProject() string { @@ -63911,7 +66118,7 @@ type DeleteServiceAttachmentRequest struct { func (x *DeleteServiceAttachmentRequest) Reset() { *x = DeleteServiceAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[306] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[322] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63923,7 +66130,7 @@ func (x *DeleteServiceAttachmentRequest) String() string { func (*DeleteServiceAttachmentRequest) ProtoMessage() {} func (x *DeleteServiceAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[306] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[322] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -63936,7 +66143,7 @@ func (x *DeleteServiceAttachmentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteServiceAttachmentRequest.ProtoReflect.Descriptor instead. func (*DeleteServiceAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{306} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{322} } func (x *DeleteServiceAttachmentRequest) GetProject() string { @@ -63997,7 +66204,7 @@ type DeleteSignedUrlKeyBackendBucketRequest struct { func (x *DeleteSignedUrlKeyBackendBucketRequest) Reset() { *x = DeleteSignedUrlKeyBackendBucketRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[307] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[323] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64009,7 +66216,7 @@ func (x *DeleteSignedUrlKeyBackendBucketRequest) String() string { func (*DeleteSignedUrlKeyBackendBucketRequest) ProtoMessage() {} func (x *DeleteSignedUrlKeyBackendBucketRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[307] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[323] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64022,7 +66229,7 @@ func (x *DeleteSignedUrlKeyBackendBucketRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use DeleteSignedUrlKeyBackendBucketRequest.ProtoReflect.Descriptor instead. func (*DeleteSignedUrlKeyBackendBucketRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{307} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{323} } func (x *DeleteSignedUrlKeyBackendBucketRequest) GetBackendBucket() string { @@ -64083,7 +66290,7 @@ type DeleteSignedUrlKeyBackendServiceRequest struct { func (x *DeleteSignedUrlKeyBackendServiceRequest) Reset() { *x = DeleteSignedUrlKeyBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[308] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[324] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64095,7 +66302,7 @@ func (x *DeleteSignedUrlKeyBackendServiceRequest) String() string { func (*DeleteSignedUrlKeyBackendServiceRequest) ProtoMessage() {} func (x *DeleteSignedUrlKeyBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[308] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[324] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64108,7 +66315,7 @@ func (x *DeleteSignedUrlKeyBackendServiceRequest) ProtoReflect() protoreflect.Me // Deprecated: Use DeleteSignedUrlKeyBackendServiceRequest.ProtoReflect.Descriptor instead. func (*DeleteSignedUrlKeyBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{308} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{324} } func (x *DeleteSignedUrlKeyBackendServiceRequest) GetBackendService() string { @@ -64166,7 +66373,7 @@ type DeleteSnapshotRequest struct { func (x *DeleteSnapshotRequest) Reset() { *x = DeleteSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[309] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[325] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64178,7 +66385,7 @@ func (x *DeleteSnapshotRequest) String() string { func (*DeleteSnapshotRequest) ProtoMessage() {} func (x *DeleteSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[309] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[325] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64191,7 +66398,7 @@ func (x *DeleteSnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteSnapshotRequest.ProtoReflect.Descriptor instead. func (*DeleteSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{309} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{325} } func (x *DeleteSnapshotRequest) GetProject() string { @@ -64242,7 +66449,7 @@ type DeleteSslCertificateRequest struct { func (x *DeleteSslCertificateRequest) Reset() { *x = DeleteSslCertificateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[310] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[326] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64254,7 +66461,7 @@ func (x *DeleteSslCertificateRequest) String() string { func (*DeleteSslCertificateRequest) ProtoMessage() {} func (x *DeleteSslCertificateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[310] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[326] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64267,7 +66474,7 @@ func (x *DeleteSslCertificateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteSslCertificateRequest.ProtoReflect.Descriptor instead. func (*DeleteSslCertificateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{310} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{326} } func (x *DeleteSslCertificateRequest) GetProject() string { @@ -64319,7 +66526,7 @@ type DeleteSslPolicyRequest struct { func (x *DeleteSslPolicyRequest) Reset() { *x = DeleteSslPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[311] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[327] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64331,7 +66538,7 @@ func (x *DeleteSslPolicyRequest) String() string { func (*DeleteSslPolicyRequest) ProtoMessage() {} func (x *DeleteSslPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[311] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[327] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64344,7 +66551,7 @@ func (x *DeleteSslPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteSslPolicyRequest.ProtoReflect.Descriptor instead. func (*DeleteSslPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{311} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{327} } func (x *DeleteSslPolicyRequest) GetProject() string { @@ -64397,7 +66604,7 @@ type DeleteStoragePoolRequest struct { func (x *DeleteStoragePoolRequest) Reset() { *x = DeleteStoragePoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[312] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[328] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64409,7 +66616,7 @@ func (x *DeleteStoragePoolRequest) String() string { func (*DeleteStoragePoolRequest) ProtoMessage() {} func (x *DeleteStoragePoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[312] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[328] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64422,7 +66629,7 @@ func (x *DeleteStoragePoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteStoragePoolRequest.ProtoReflect.Descriptor instead. func (*DeleteStoragePoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{312} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{328} } func (x *DeleteStoragePoolRequest) GetProject() string { @@ -64482,7 +66689,7 @@ type DeleteSubnetworkRequest struct { func (x *DeleteSubnetworkRequest) Reset() { *x = DeleteSubnetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[313] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[329] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64494,7 +66701,7 @@ func (x *DeleteSubnetworkRequest) String() string { func (*DeleteSubnetworkRequest) ProtoMessage() {} func (x *DeleteSubnetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[313] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[329] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64507,7 +66714,7 @@ func (x *DeleteSubnetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteSubnetworkRequest.ProtoReflect.Descriptor instead. func (*DeleteSubnetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{313} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{329} } func (x *DeleteSubnetworkRequest) GetProject() string { @@ -64565,7 +66772,7 @@ type DeleteTargetGrpcProxyRequest struct { func (x *DeleteTargetGrpcProxyRequest) Reset() { *x = DeleteTargetGrpcProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[314] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[330] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64577,7 +66784,7 @@ func (x *DeleteTargetGrpcProxyRequest) String() string { func (*DeleteTargetGrpcProxyRequest) ProtoMessage() {} func (x *DeleteTargetGrpcProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[314] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[330] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64590,7 +66797,7 @@ func (x *DeleteTargetGrpcProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTargetGrpcProxyRequest.ProtoReflect.Descriptor instead. func (*DeleteTargetGrpcProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{314} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{330} } func (x *DeleteTargetGrpcProxyRequest) GetProject() string { @@ -64641,7 +66848,7 @@ type DeleteTargetHttpProxyRequest struct { func (x *DeleteTargetHttpProxyRequest) Reset() { *x = DeleteTargetHttpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[315] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[331] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64653,7 +66860,7 @@ func (x *DeleteTargetHttpProxyRequest) String() string { func (*DeleteTargetHttpProxyRequest) ProtoMessage() {} func (x *DeleteTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[315] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[331] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64666,7 +66873,7 @@ func (x *DeleteTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTargetHttpProxyRequest.ProtoReflect.Descriptor instead. func (*DeleteTargetHttpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{315} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{331} } func (x *DeleteTargetHttpProxyRequest) GetProject() string { @@ -64717,7 +66924,7 @@ type DeleteTargetHttpsProxyRequest struct { func (x *DeleteTargetHttpsProxyRequest) Reset() { *x = DeleteTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[316] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[332] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64729,7 +66936,7 @@ func (x *DeleteTargetHttpsProxyRequest) String() string { func (*DeleteTargetHttpsProxyRequest) ProtoMessage() {} func (x *DeleteTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[316] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[332] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64742,7 +66949,7 @@ func (x *DeleteTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*DeleteTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{316} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{332} } func (x *DeleteTargetHttpsProxyRequest) GetProject() string { @@ -64795,7 +67002,7 @@ type DeleteTargetInstanceRequest struct { func (x *DeleteTargetInstanceRequest) Reset() { *x = DeleteTargetInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[317] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[333] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64807,7 +67014,7 @@ func (x *DeleteTargetInstanceRequest) String() string { func (*DeleteTargetInstanceRequest) ProtoMessage() {} func (x *DeleteTargetInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[317] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[333] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64820,7 +67027,7 @@ func (x *DeleteTargetInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTargetInstanceRequest.ProtoReflect.Descriptor instead. func (*DeleteTargetInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{317} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{333} } func (x *DeleteTargetInstanceRequest) GetProject() string { @@ -64880,7 +67087,7 @@ type DeleteTargetPoolRequest struct { func (x *DeleteTargetPoolRequest) Reset() { *x = DeleteTargetPoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[318] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[334] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64892,7 +67099,7 @@ func (x *DeleteTargetPoolRequest) String() string { func (*DeleteTargetPoolRequest) ProtoMessage() {} func (x *DeleteTargetPoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[318] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[334] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64905,7 +67112,7 @@ func (x *DeleteTargetPoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTargetPoolRequest.ProtoReflect.Descriptor instead. func (*DeleteTargetPoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{318} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{334} } func (x *DeleteTargetPoolRequest) GetProject() string { @@ -64963,7 +67170,7 @@ type DeleteTargetSslProxyRequest struct { func (x *DeleteTargetSslProxyRequest) Reset() { *x = DeleteTargetSslProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[319] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[335] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64975,7 +67182,7 @@ func (x *DeleteTargetSslProxyRequest) String() string { func (*DeleteTargetSslProxyRequest) ProtoMessage() {} func (x *DeleteTargetSslProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[319] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[335] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -64988,7 +67195,7 @@ func (x *DeleteTargetSslProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTargetSslProxyRequest.ProtoReflect.Descriptor instead. func (*DeleteTargetSslProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{319} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{335} } func (x *DeleteTargetSslProxyRequest) GetProject() string { @@ -65039,7 +67246,7 @@ type DeleteTargetTcpProxyRequest struct { func (x *DeleteTargetTcpProxyRequest) Reset() { *x = DeleteTargetTcpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[320] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[336] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65051,7 +67258,7 @@ func (x *DeleteTargetTcpProxyRequest) String() string { func (*DeleteTargetTcpProxyRequest) ProtoMessage() {} func (x *DeleteTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[320] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[336] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -65064,7 +67271,7 @@ func (x *DeleteTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTargetTcpProxyRequest.ProtoReflect.Descriptor instead. func (*DeleteTargetTcpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{320} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{336} } func (x *DeleteTargetTcpProxyRequest) GetProject() string { @@ -65117,7 +67324,7 @@ type DeleteTargetVpnGatewayRequest struct { func (x *DeleteTargetVpnGatewayRequest) Reset() { *x = DeleteTargetVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[321] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[337] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65129,7 +67336,7 @@ func (x *DeleteTargetVpnGatewayRequest) String() string { func (*DeleteTargetVpnGatewayRequest) ProtoMessage() {} func (x *DeleteTargetVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[321] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[337] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -65142,7 +67349,7 @@ func (x *DeleteTargetVpnGatewayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteTargetVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*DeleteTargetVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{321} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{337} } func (x *DeleteTargetVpnGatewayRequest) GetProject() string { @@ -65200,7 +67407,7 @@ type DeleteUrlMapRequest struct { func (x *DeleteUrlMapRequest) Reset() { *x = DeleteUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[322] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[338] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65212,7 +67419,7 @@ func (x *DeleteUrlMapRequest) String() string { func (*DeleteUrlMapRequest) ProtoMessage() {} func (x *DeleteUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[322] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[338] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -65225,7 +67432,7 @@ func (x *DeleteUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteUrlMapRequest.ProtoReflect.Descriptor instead. func (*DeleteUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{322} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{338} } func (x *DeleteUrlMapRequest) GetProject() string { @@ -65278,7 +67485,7 @@ type DeleteVpnGatewayRequest struct { func (x *DeleteVpnGatewayRequest) Reset() { *x = DeleteVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[323] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[339] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65290,7 +67497,7 @@ func (x *DeleteVpnGatewayRequest) String() string { func (*DeleteVpnGatewayRequest) ProtoMessage() {} func (x *DeleteVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[323] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[339] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -65303,7 +67510,7 @@ func (x *DeleteVpnGatewayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*DeleteVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{323} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{339} } func (x *DeleteVpnGatewayRequest) GetProject() string { @@ -65363,7 +67570,7 @@ type DeleteVpnTunnelRequest struct { func (x *DeleteVpnTunnelRequest) Reset() { *x = DeleteVpnTunnelRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[324] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[340] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65375,7 +67582,7 @@ func (x *DeleteVpnTunnelRequest) String() string { func (*DeleteVpnTunnelRequest) ProtoMessage() {} func (x *DeleteVpnTunnelRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[324] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[340] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -65388,7 +67595,7 @@ func (x *DeleteVpnTunnelRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteVpnTunnelRequest.ProtoReflect.Descriptor instead. func (*DeleteVpnTunnelRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{324} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{340} } func (x *DeleteVpnTunnelRequest) GetProject() string { @@ -65448,7 +67655,7 @@ type DeleteWireGroupRequest struct { func (x *DeleteWireGroupRequest) Reset() { *x = DeleteWireGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[325] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[341] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65460,7 +67667,7 @@ func (x *DeleteWireGroupRequest) String() string { func (*DeleteWireGroupRequest) ProtoMessage() {} func (x *DeleteWireGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[325] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[341] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -65473,7 +67680,7 @@ func (x *DeleteWireGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteWireGroupRequest.ProtoReflect.Descriptor instead. func (*DeleteWireGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{325} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{341} } func (x *DeleteWireGroupRequest) GetCrossSiteNetwork() string { @@ -65520,7 +67727,7 @@ type DeleteZoneOperationRequest struct { func (x *DeleteZoneOperationRequest) Reset() { *x = DeleteZoneOperationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[326] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[342] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65532,7 +67739,7 @@ func (x *DeleteZoneOperationRequest) String() string { func (*DeleteZoneOperationRequest) ProtoMessage() {} func (x *DeleteZoneOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[326] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[342] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -65545,7 +67752,7 @@ func (x *DeleteZoneOperationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteZoneOperationRequest.ProtoReflect.Descriptor instead. func (*DeleteZoneOperationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{326} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{342} } func (x *DeleteZoneOperationRequest) GetOperation() string { @@ -65578,7 +67785,7 @@ type DeleteZoneOperationResponse struct { func (x *DeleteZoneOperationResponse) Reset() { *x = DeleteZoneOperationResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[327] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[343] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65590,7 +67797,7 @@ func (x *DeleteZoneOperationResponse) String() string { func (*DeleteZoneOperationResponse) ProtoMessage() {} func (x *DeleteZoneOperationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[327] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[343] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -65603,7 +67810,92 @@ func (x *DeleteZoneOperationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteZoneOperationResponse.ProtoReflect.Descriptor instead. func (*DeleteZoneOperationResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{327} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{343} +} + +// A request message for ZoneVmExtensionPolicies.Delete. See the method description for details. +type DeleteZoneVmExtensionPolicyRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // Name of the zone VM extension policy to delete. + VmExtensionPolicy string `protobuf:"bytes,331532730,opt,name=vm_extension_policy,json=vmExtensionPolicy,proto3" json:"vm_extension_policy,omitempty"` + // Name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DeleteZoneVmExtensionPolicyRequest) Reset() { + *x = DeleteZoneVmExtensionPolicyRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[344] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DeleteZoneVmExtensionPolicyRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteZoneVmExtensionPolicyRequest) ProtoMessage() {} + +func (x *DeleteZoneVmExtensionPolicyRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[344] + 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 DeleteZoneVmExtensionPolicyRequest.ProtoReflect.Descriptor instead. +func (*DeleteZoneVmExtensionPolicyRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{344} +} + +func (x *DeleteZoneVmExtensionPolicyRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *DeleteZoneVmExtensionPolicyRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *DeleteZoneVmExtensionPolicyRequest) GetVmExtensionPolicy() string { + if x != nil { + return x.VmExtensionPolicy + } + return "" +} + +func (x *DeleteZoneVmExtensionPolicyRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" } type Denied struct { @@ -65626,7 +67918,7 @@ type Denied struct { func (x *Denied) Reset() { *x = Denied{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[328] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[345] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65638,7 +67930,7 @@ func (x *Denied) String() string { func (*Denied) ProtoMessage() {} func (x *Denied) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[328] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[345] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -65651,7 +67943,7 @@ func (x *Denied) ProtoReflect() protoreflect.Message { // Deprecated: Use Denied.ProtoReflect.Descriptor instead. func (*Denied) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{328} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{345} } func (x *Denied) GetIPProtocol() string { @@ -65697,7 +67989,7 @@ type DeprecateImageRequest struct { func (x *DeprecateImageRequest) Reset() { *x = DeprecateImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[329] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[346] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65709,7 +68001,7 @@ func (x *DeprecateImageRequest) String() string { func (*DeprecateImageRequest) ProtoMessage() {} func (x *DeprecateImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[329] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[346] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -65722,7 +68014,7 @@ func (x *DeprecateImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeprecateImageRequest.ProtoReflect.Descriptor instead. func (*DeprecateImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{329} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{346} } func (x *DeprecateImageRequest) GetDeprecationStatusResource() *DeprecationStatus { @@ -65787,7 +68079,7 @@ type DeprecationStatus struct { func (x *DeprecationStatus) Reset() { *x = DeprecationStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[330] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[347] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65799,7 +68091,7 @@ func (x *DeprecationStatus) String() string { func (*DeprecationStatus) ProtoMessage() {} func (x *DeprecationStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[330] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[347] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -65812,7 +68104,7 @@ func (x *DeprecationStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use DeprecationStatus.ProtoReflect.Descriptor instead. func (*DeprecationStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{330} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{347} } func (x *DeprecationStatus) GetDeleted() string { @@ -65882,7 +68174,7 @@ type DetachDiskInstanceRequest struct { func (x *DetachDiskInstanceRequest) Reset() { *x = DetachDiskInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[331] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[348] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65894,7 +68186,7 @@ func (x *DetachDiskInstanceRequest) String() string { func (*DetachDiskInstanceRequest) ProtoMessage() {} func (x *DetachDiskInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[331] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[348] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -65907,7 +68199,7 @@ func (x *DetachDiskInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DetachDiskInstanceRequest.ProtoReflect.Descriptor instead. func (*DetachDiskInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{331} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{348} } func (x *DetachDiskInstanceRequest) GetDeviceName() string { @@ -65975,7 +68267,7 @@ type DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest struct { func (x *DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest) Reset() { *x = DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[332] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[349] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65987,7 +68279,7 @@ func (x *DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest) String() strin func (*DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest) ProtoMessage() {} func (x *DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[332] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[349] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -66000,7 +68292,7 @@ func (x *DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest) ProtoReflect() // Deprecated: Use DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{332} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{349} } func (x *DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest) GetGlobalNetworkEndpointGroupsDetachEndpointsRequestResource() *GlobalNetworkEndpointGroupsDetachEndpointsRequest { @@ -66064,7 +68356,7 @@ type DetachNetworkEndpointsNetworkEndpointGroupRequest struct { func (x *DetachNetworkEndpointsNetworkEndpointGroupRequest) Reset() { *x = DetachNetworkEndpointsNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[333] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[350] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66076,7 +68368,7 @@ func (x *DetachNetworkEndpointsNetworkEndpointGroupRequest) String() string { func (*DetachNetworkEndpointsNetworkEndpointGroupRequest) ProtoMessage() {} func (x *DetachNetworkEndpointsNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[333] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[350] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -66089,7 +68381,7 @@ func (x *DetachNetworkEndpointsNetworkEndpointGroupRequest) ProtoReflect() proto // Deprecated: Use DetachNetworkEndpointsNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*DetachNetworkEndpointsNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{333} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{350} } func (x *DetachNetworkEndpointsNetworkEndpointGroupRequest) GetNetworkEndpointGroup() string { @@ -66162,7 +68454,7 @@ type DetachNetworkEndpointsRegionNetworkEndpointGroupRequest struct { func (x *DetachNetworkEndpointsRegionNetworkEndpointGroupRequest) Reset() { *x = DetachNetworkEndpointsRegionNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[334] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[351] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66174,7 +68466,7 @@ func (x *DetachNetworkEndpointsRegionNetworkEndpointGroupRequest) String() strin func (*DetachNetworkEndpointsRegionNetworkEndpointGroupRequest) ProtoMessage() {} func (x *DetachNetworkEndpointsRegionNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[334] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[351] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -66187,7 +68479,7 @@ func (x *DetachNetworkEndpointsRegionNetworkEndpointGroupRequest) ProtoReflect() // Deprecated: Use DetachNetworkEndpointsRegionNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*DetachNetworkEndpointsRegionNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{334} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{351} } func (x *DetachNetworkEndpointsRegionNetworkEndpointGroupRequest) GetNetworkEndpointGroup() string { @@ -66250,7 +68542,7 @@ type DisableXpnHostProjectRequest struct { func (x *DisableXpnHostProjectRequest) Reset() { *x = DisableXpnHostProjectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[335] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[352] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66262,7 +68554,7 @@ func (x *DisableXpnHostProjectRequest) String() string { func (*DisableXpnHostProjectRequest) ProtoMessage() {} func (x *DisableXpnHostProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[335] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[352] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -66275,7 +68567,7 @@ func (x *DisableXpnHostProjectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DisableXpnHostProjectRequest.ProtoReflect.Descriptor instead. func (*DisableXpnHostProjectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{335} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{352} } func (x *DisableXpnHostProjectRequest) GetProject() string { @@ -66319,7 +68611,7 @@ type DisableXpnResourceProjectRequest struct { func (x *DisableXpnResourceProjectRequest) Reset() { *x = DisableXpnResourceProjectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[336] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[353] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66331,7 +68623,7 @@ func (x *DisableXpnResourceProjectRequest) String() string { func (*DisableXpnResourceProjectRequest) ProtoMessage() {} func (x *DisableXpnResourceProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[336] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[353] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -66344,7 +68636,7 @@ func (x *DisableXpnResourceProjectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DisableXpnResourceProjectRequest.ProtoReflect.Descriptor instead. func (*DisableXpnResourceProjectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{336} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{353} } func (x *DisableXpnResourceProjectRequest) GetProject() string { @@ -66677,7 +68969,7 @@ type Disk struct { func (x *Disk) Reset() { *x = Disk{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[337] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[354] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66689,7 +68981,7 @@ func (x *Disk) String() string { func (*Disk) ProtoMessage() {} func (x *Disk) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[337] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[354] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -66702,7 +68994,7 @@ func (x *Disk) ProtoReflect() protoreflect.Message { // Deprecated: Use Disk.ProtoReflect.Descriptor instead. func (*Disk) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{337} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{354} } func (x *Disk) GetAccessMode() string { @@ -67082,7 +69374,7 @@ type DiskAggregatedList struct { func (x *DiskAggregatedList) Reset() { *x = DiskAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[338] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[355] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67094,7 +69386,7 @@ func (x *DiskAggregatedList) String() string { func (*DiskAggregatedList) ProtoMessage() {} func (x *DiskAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[338] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[355] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -67107,7 +69399,7 @@ func (x *DiskAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use DiskAggregatedList.ProtoReflect.Descriptor instead. func (*DiskAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{338} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{355} } func (x *DiskAggregatedList) GetId() string { @@ -67188,7 +69480,7 @@ type DiskAsyncReplication struct { func (x *DiskAsyncReplication) Reset() { *x = DiskAsyncReplication{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[339] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[356] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67200,7 +69492,7 @@ func (x *DiskAsyncReplication) String() string { func (*DiskAsyncReplication) ProtoMessage() {} func (x *DiskAsyncReplication) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[339] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[356] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -67213,7 +69505,7 @@ func (x *DiskAsyncReplication) ProtoReflect() protoreflect.Message { // Deprecated: Use DiskAsyncReplication.ProtoReflect.Descriptor instead. func (*DiskAsyncReplication) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{339} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{356} } func (x *DiskAsyncReplication) GetConsistencyGroupPolicy() string { @@ -67253,7 +69545,7 @@ type DiskAsyncReplicationList struct { func (x *DiskAsyncReplicationList) Reset() { *x = DiskAsyncReplicationList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[340] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[357] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67265,7 +69557,7 @@ func (x *DiskAsyncReplicationList) String() string { func (*DiskAsyncReplicationList) ProtoMessage() {} func (x *DiskAsyncReplicationList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[340] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[357] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -67278,7 +69570,7 @@ func (x *DiskAsyncReplicationList) ProtoReflect() protoreflect.Message { // Deprecated: Use DiskAsyncReplicationList.ProtoReflect.Descriptor instead. func (*DiskAsyncReplicationList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{340} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{357} } func (x *DiskAsyncReplicationList) GetAsyncReplicationDisk() *DiskAsyncReplication { @@ -67326,7 +69618,7 @@ type DiskInstantiationConfig struct { func (x *DiskInstantiationConfig) Reset() { *x = DiskInstantiationConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[341] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[358] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67338,7 +69630,7 @@ func (x *DiskInstantiationConfig) String() string { func (*DiskInstantiationConfig) ProtoMessage() {} func (x *DiskInstantiationConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[341] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[358] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -67351,7 +69643,7 @@ func (x *DiskInstantiationConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use DiskInstantiationConfig.ProtoReflect.Descriptor instead. func (*DiskInstantiationConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{341} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{358} } func (x *DiskInstantiationConfig) GetAutoDelete() bool { @@ -67408,7 +69700,7 @@ type DiskList struct { func (x *DiskList) Reset() { *x = DiskList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[342] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[359] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67420,7 +69712,7 @@ func (x *DiskList) String() string { func (*DiskList) ProtoMessage() {} func (x *DiskList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[342] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[359] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -67433,7 +69725,7 @@ func (x *DiskList) ProtoReflect() protoreflect.Message { // Deprecated: Use DiskList.ProtoReflect.Descriptor instead. func (*DiskList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{342} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{359} } func (x *DiskList) GetId() string { @@ -67500,7 +69792,7 @@ type DiskMoveRequest struct { func (x *DiskMoveRequest) Reset() { *x = DiskMoveRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[343] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[360] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67512,7 +69804,7 @@ func (x *DiskMoveRequest) String() string { func (*DiskMoveRequest) ProtoMessage() {} func (x *DiskMoveRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[343] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[360] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -67525,7 +69817,7 @@ func (x *DiskMoveRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DiskMoveRequest.ProtoReflect.Descriptor instead. func (*DiskMoveRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{343} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{360} } func (x *DiskMoveRequest) GetDestinationZone() string { @@ -67559,7 +69851,7 @@ type DiskParams struct { func (x *DiskParams) Reset() { *x = DiskParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[344] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[361] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67571,7 +69863,7 @@ func (x *DiskParams) String() string { func (*DiskParams) ProtoMessage() {} func (x *DiskParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[344] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[361] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -67584,7 +69876,7 @@ func (x *DiskParams) ProtoReflect() protoreflect.Message { // Deprecated: Use DiskParams.ProtoReflect.Descriptor instead. func (*DiskParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{344} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{361} } func (x *DiskParams) GetResourceManagerTags() map[string]string { @@ -67605,7 +69897,7 @@ type DiskResourceStatus struct { func (x *DiskResourceStatus) Reset() { *x = DiskResourceStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[345] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[362] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67617,7 +69909,7 @@ func (x *DiskResourceStatus) String() string { func (*DiskResourceStatus) ProtoMessage() {} func (x *DiskResourceStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[345] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[362] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -67630,7 +69922,7 @@ func (x *DiskResourceStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use DiskResourceStatus.ProtoReflect.Descriptor instead. func (*DiskResourceStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{345} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{362} } func (x *DiskResourceStatus) GetAsyncPrimaryDisk() *DiskResourceStatusAsyncReplicationStatus { @@ -67657,7 +69949,7 @@ type DiskResourceStatusAsyncReplicationStatus struct { func (x *DiskResourceStatusAsyncReplicationStatus) Reset() { *x = DiskResourceStatusAsyncReplicationStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[346] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[363] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67669,7 +69961,7 @@ func (x *DiskResourceStatusAsyncReplicationStatus) String() string { func (*DiskResourceStatusAsyncReplicationStatus) ProtoMessage() {} func (x *DiskResourceStatusAsyncReplicationStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[346] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[363] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -67682,7 +69974,7 @@ func (x *DiskResourceStatusAsyncReplicationStatus) ProtoReflect() protoreflect.M // Deprecated: Use DiskResourceStatusAsyncReplicationStatus.ProtoReflect.Descriptor instead. func (*DiskResourceStatusAsyncReplicationStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{346} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{363} } func (x *DiskResourceStatusAsyncReplicationStatus) GetState() string { @@ -67747,7 +70039,7 @@ type DiskType struct { func (x *DiskType) Reset() { *x = DiskType{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[347] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[364] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67759,7 +70051,7 @@ func (x *DiskType) String() string { func (*DiskType) ProtoMessage() {} func (x *DiskType) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[347] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[364] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -67772,7 +70064,7 @@ func (x *DiskType) ProtoReflect() protoreflect.Message { // Deprecated: Use DiskType.ProtoReflect.Descriptor instead. func (*DiskType) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{347} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{364} } func (x *DiskType) GetCreationTimestamp() string { @@ -67878,7 +70170,7 @@ type DiskTypeAggregatedList struct { func (x *DiskTypeAggregatedList) Reset() { *x = DiskTypeAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[348] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[365] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67890,7 +70182,7 @@ func (x *DiskTypeAggregatedList) String() string { func (*DiskTypeAggregatedList) ProtoMessage() {} func (x *DiskTypeAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[348] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[365] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -67903,7 +70195,7 @@ func (x *DiskTypeAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use DiskTypeAggregatedList.ProtoReflect.Descriptor instead. func (*DiskTypeAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{348} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{365} } func (x *DiskTypeAggregatedList) GetId() string { @@ -67981,7 +70273,7 @@ type DiskTypeList struct { func (x *DiskTypeList) Reset() { *x = DiskTypeList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[349] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[366] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67993,7 +70285,7 @@ func (x *DiskTypeList) String() string { func (*DiskTypeList) ProtoMessage() {} func (x *DiskTypeList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[349] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[366] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68006,7 +70298,7 @@ func (x *DiskTypeList) ProtoReflect() protoreflect.Message { // Deprecated: Use DiskTypeList.ProtoReflect.Descriptor instead. func (*DiskTypeList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{349} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{366} } func (x *DiskTypeList) GetId() string { @@ -68064,7 +70356,7 @@ type DiskTypesScopedList struct { func (x *DiskTypesScopedList) Reset() { *x = DiskTypesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[350] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[367] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68076,7 +70368,7 @@ func (x *DiskTypesScopedList) String() string { func (*DiskTypesScopedList) ProtoMessage() {} func (x *DiskTypesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[350] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[367] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68089,7 +70381,7 @@ func (x *DiskTypesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use DiskTypesScopedList.ProtoReflect.Descriptor instead. func (*DiskTypesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{350} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{367} } func (x *DiskTypesScopedList) GetDiskTypes() []*DiskType { @@ -68106,6 +70398,60 @@ func (x *DiskTypesScopedList) GetWarning() *Warning { return nil } +type DiskUpdateKmsKeyRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional. The new KMS key to replace the current one on the disk. If empty, the disk + // will be re-encrypted using the primary version of the disk's current KMS + // key. + // + // The KMS key can be provided in the following formats: + // + // - projects/project_id/locations/location/keyRings/key_ring/cryptoKeys/key + // + // Where project is the project ID or + // project number. + KmsKeyName *string `protobuf:"bytes,484373913,opt,name=kms_key_name,json=kmsKeyName,proto3,oneof" json:"kms_key_name,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *DiskUpdateKmsKeyRequest) Reset() { + *x = DiskUpdateKmsKeyRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[368] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *DiskUpdateKmsKeyRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DiskUpdateKmsKeyRequest) ProtoMessage() {} + +func (x *DiskUpdateKmsKeyRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[368] + 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 DiskUpdateKmsKeyRequest.ProtoReflect.Descriptor instead. +func (*DiskUpdateKmsKeyRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{368} +} + +func (x *DiskUpdateKmsKeyRequest) GetKmsKeyName() string { + if x != nil && x.KmsKeyName != nil { + return *x.KmsKeyName + } + return "" +} + type DisksAddResourcePoliciesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Full or relative path to the resource policy to be added to this disk. You @@ -68117,7 +70463,7 @@ type DisksAddResourcePoliciesRequest struct { func (x *DisksAddResourcePoliciesRequest) Reset() { *x = DisksAddResourcePoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[351] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[369] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68129,7 +70475,7 @@ func (x *DisksAddResourcePoliciesRequest) String() string { func (*DisksAddResourcePoliciesRequest) ProtoMessage() {} func (x *DisksAddResourcePoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[351] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[369] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68142,7 +70488,7 @@ func (x *DisksAddResourcePoliciesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DisksAddResourcePoliciesRequest.ProtoReflect.Descriptor instead. func (*DisksAddResourcePoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{351} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{369} } func (x *DisksAddResourcePoliciesRequest) GetResourcePolicies() []string { @@ -68162,7 +70508,7 @@ type DisksRemoveResourcePoliciesRequest struct { func (x *DisksRemoveResourcePoliciesRequest) Reset() { *x = DisksRemoveResourcePoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[352] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[370] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68174,7 +70520,7 @@ func (x *DisksRemoveResourcePoliciesRequest) String() string { func (*DisksRemoveResourcePoliciesRequest) ProtoMessage() {} func (x *DisksRemoveResourcePoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[352] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[370] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68187,7 +70533,7 @@ func (x *DisksRemoveResourcePoliciesRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DisksRemoveResourcePoliciesRequest.ProtoReflect.Descriptor instead. func (*DisksRemoveResourcePoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{352} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{370} } func (x *DisksRemoveResourcePoliciesRequest) GetResourcePolicies() []string { @@ -68207,7 +70553,7 @@ type DisksResizeRequest struct { func (x *DisksResizeRequest) Reset() { *x = DisksResizeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[353] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[371] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68219,7 +70565,7 @@ func (x *DisksResizeRequest) String() string { func (*DisksResizeRequest) ProtoMessage() {} func (x *DisksResizeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[353] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[371] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68232,7 +70578,7 @@ func (x *DisksResizeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DisksResizeRequest.ProtoReflect.Descriptor instead. func (*DisksResizeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{353} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{371} } func (x *DisksResizeRequest) GetSizeGb() int64 { @@ -68255,7 +70601,7 @@ type DisksScopedList struct { func (x *DisksScopedList) Reset() { *x = DisksScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[354] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[372] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68267,7 +70613,7 @@ func (x *DisksScopedList) String() string { func (*DisksScopedList) ProtoMessage() {} func (x *DisksScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[354] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[372] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68280,7 +70626,7 @@ func (x *DisksScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use DisksScopedList.ProtoReflect.Descriptor instead. func (*DisksScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{354} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{372} } func (x *DisksScopedList) GetDisks() []*Disk { @@ -68327,7 +70673,7 @@ type DisksStartAsyncReplicationRequest struct { func (x *DisksStartAsyncReplicationRequest) Reset() { *x = DisksStartAsyncReplicationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[355] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[373] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68339,7 +70685,7 @@ func (x *DisksStartAsyncReplicationRequest) String() string { func (*DisksStartAsyncReplicationRequest) ProtoMessage() {} func (x *DisksStartAsyncReplicationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[355] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[373] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68352,7 +70698,7 @@ func (x *DisksStartAsyncReplicationRequest) ProtoReflect() protoreflect.Message // Deprecated: Use DisksStartAsyncReplicationRequest.ProtoReflect.Descriptor instead. func (*DisksStartAsyncReplicationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{355} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{373} } func (x *DisksStartAsyncReplicationRequest) GetAsyncSecondaryDisk() string { @@ -68385,7 +70731,7 @@ type DisksStopGroupAsyncReplicationResource struct { func (x *DisksStopGroupAsyncReplicationResource) Reset() { *x = DisksStopGroupAsyncReplicationResource{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[356] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[374] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68397,7 +70743,7 @@ func (x *DisksStopGroupAsyncReplicationResource) String() string { func (*DisksStopGroupAsyncReplicationResource) ProtoMessage() {} func (x *DisksStopGroupAsyncReplicationResource) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[356] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[374] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68410,7 +70756,7 @@ func (x *DisksStopGroupAsyncReplicationResource) ProtoReflect() protoreflect.Mes // Deprecated: Use DisksStopGroupAsyncReplicationResource.ProtoReflect.Descriptor instead. func (*DisksStopGroupAsyncReplicationResource) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{356} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{374} } func (x *DisksStopGroupAsyncReplicationResource) GetResourcePolicy() string { @@ -68431,7 +70777,7 @@ type DisplayDevice struct { func (x *DisplayDevice) Reset() { *x = DisplayDevice{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[357] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[375] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68443,7 +70789,7 @@ func (x *DisplayDevice) String() string { func (*DisplayDevice) ProtoMessage() {} func (x *DisplayDevice) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[357] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[375] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68456,7 +70802,7 @@ func (x *DisplayDevice) ProtoReflect() protoreflect.Message { // Deprecated: Use DisplayDevice.ProtoReflect.Descriptor instead. func (*DisplayDevice) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{357} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{375} } func (x *DisplayDevice) GetEnableDisplay() bool { @@ -68486,7 +70832,7 @@ type DistributionPolicy struct { func (x *DistributionPolicy) Reset() { *x = DistributionPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[358] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[376] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68498,7 +70844,7 @@ func (x *DistributionPolicy) String() string { func (*DistributionPolicy) ProtoMessage() {} func (x *DistributionPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[358] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[376] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68511,7 +70857,7 @@ func (x *DistributionPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use DistributionPolicy.ProtoReflect.Descriptor instead. func (*DistributionPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{358} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{376} } func (x *DistributionPolicy) GetTargetShape() string { @@ -68540,7 +70886,7 @@ type DistributionPolicyZoneConfiguration struct { func (x *DistributionPolicyZoneConfiguration) Reset() { *x = DistributionPolicyZoneConfiguration{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[359] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[377] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68552,7 +70898,7 @@ func (x *DistributionPolicyZoneConfiguration) String() string { func (*DistributionPolicyZoneConfiguration) ProtoMessage() {} func (x *DistributionPolicyZoneConfiguration) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[359] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[377] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68565,7 +70911,7 @@ func (x *DistributionPolicyZoneConfiguration) ProtoReflect() protoreflect.Messag // Deprecated: Use DistributionPolicyZoneConfiguration.ProtoReflect.Descriptor instead. func (*DistributionPolicyZoneConfiguration) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{359} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{377} } func (x *DistributionPolicyZoneConfiguration) GetZone() string { @@ -68596,7 +70942,7 @@ type Duration struct { func (x *Duration) Reset() { *x = Duration{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[360] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[378] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68608,7 +70954,7 @@ func (x *Duration) String() string { func (*Duration) ProtoMessage() {} func (x *Duration) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[360] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[378] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68621,7 +70967,7 @@ func (x *Duration) ProtoReflect() protoreflect.Message { // Deprecated: Use Duration.ProtoReflect.Descriptor instead. func (*Duration) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{360} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{378} } func (x *Duration) GetNanos() int32 { @@ -68663,7 +71009,7 @@ type EnableXpnHostProjectRequest struct { func (x *EnableXpnHostProjectRequest) Reset() { *x = EnableXpnHostProjectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[361] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[379] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68675,7 +71021,7 @@ func (x *EnableXpnHostProjectRequest) String() string { func (*EnableXpnHostProjectRequest) ProtoMessage() {} func (x *EnableXpnHostProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[361] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[379] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68688,7 +71034,7 @@ func (x *EnableXpnHostProjectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EnableXpnHostProjectRequest.ProtoReflect.Descriptor instead. func (*EnableXpnHostProjectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{361} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{379} } func (x *EnableXpnHostProjectRequest) GetProject() string { @@ -68732,7 +71078,7 @@ type EnableXpnResourceProjectRequest struct { func (x *EnableXpnResourceProjectRequest) Reset() { *x = EnableXpnResourceProjectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[362] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[380] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68744,7 +71090,7 @@ func (x *EnableXpnResourceProjectRequest) String() string { func (*EnableXpnResourceProjectRequest) ProtoMessage() {} func (x *EnableXpnResourceProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[362] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[380] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68757,7 +71103,7 @@ func (x *EnableXpnResourceProjectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EnableXpnResourceProjectRequest.ProtoReflect.Descriptor instead. func (*EnableXpnResourceProjectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{362} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{380} } func (x *EnableXpnResourceProjectRequest) GetProject() string { @@ -68781,7 +71127,7 @@ func (x *EnableXpnResourceProjectRequest) GetRequestId() string { return "" } -// Output only. [Output Only] Encountered errors. +// Output only. Encountered errors. type Error struct { state protoimpl.MessageState `protogen:"open.v1"` // [Output Only] The array of errors encountered while processing this @@ -68793,7 +71139,7 @@ type Error struct { func (x *Error) Reset() { *x = Error{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[363] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[381] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68805,7 +71151,7 @@ func (x *Error) String() string { func (*Error) ProtoMessage() {} func (x *Error) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[363] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[381] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68818,7 +71164,7 @@ func (x *Error) ProtoReflect() protoreflect.Message { // Deprecated: Use Error.ProtoReflect.Descriptor instead. func (*Error) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{363} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{381} } func (x *Error) GetErrors() []*Errors { @@ -68840,7 +71186,7 @@ type ErrorDetails struct { func (x *ErrorDetails) Reset() { *x = ErrorDetails{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[364] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[382] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68852,7 +71198,7 @@ func (x *ErrorDetails) String() string { func (*ErrorDetails) ProtoMessage() {} func (x *ErrorDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[364] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[382] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68865,7 +71211,7 @@ func (x *ErrorDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use ErrorDetails.ProtoReflect.Descriptor instead. func (*ErrorDetails) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{364} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{382} } func (x *ErrorDetails) GetErrorInfo() *ErrorInfo { @@ -68951,7 +71297,7 @@ type ErrorInfo struct { func (x *ErrorInfo) Reset() { *x = ErrorInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[365] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[383] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68963,7 +71309,7 @@ func (x *ErrorInfo) String() string { func (*ErrorInfo) ProtoMessage() {} func (x *ErrorInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[365] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[383] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -68976,7 +71322,7 @@ func (x *ErrorInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ErrorInfo.ProtoReflect.Descriptor instead. func (*ErrorInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{365} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{383} } func (x *ErrorInfo) GetDomain() string { @@ -69021,7 +71367,7 @@ type Errors struct { func (x *Errors) Reset() { *x = Errors{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[366] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[384] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69033,7 +71379,7 @@ func (x *Errors) String() string { func (*Errors) ProtoMessage() {} func (x *Errors) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[366] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[384] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -69046,7 +71392,7 @@ func (x *Errors) ProtoReflect() protoreflect.Message { // Deprecated: Use Errors.ProtoReflect.Descriptor instead. func (*Errors) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{366} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{384} } func (x *Errors) GetCode() string { @@ -69100,7 +71446,7 @@ type ExchangedPeeringRoute struct { func (x *ExchangedPeeringRoute) Reset() { *x = ExchangedPeeringRoute{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[367] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[385] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69112,7 +71458,7 @@ func (x *ExchangedPeeringRoute) String() string { func (*ExchangedPeeringRoute) ProtoMessage() {} func (x *ExchangedPeeringRoute) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[367] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[385] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -69125,7 +71471,7 @@ func (x *ExchangedPeeringRoute) ProtoReflect() protoreflect.Message { // Deprecated: Use ExchangedPeeringRoute.ProtoReflect.Descriptor instead. func (*ExchangedPeeringRoute) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{367} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{385} } func (x *ExchangedPeeringRoute) GetDestRange() string { @@ -69188,7 +71534,7 @@ type ExchangedPeeringRoutesList struct { func (x *ExchangedPeeringRoutesList) Reset() { *x = ExchangedPeeringRoutesList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[368] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[386] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69200,7 +71546,7 @@ func (x *ExchangedPeeringRoutesList) String() string { func (*ExchangedPeeringRoutesList) ProtoMessage() {} func (x *ExchangedPeeringRoutesList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[368] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[386] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -69213,7 +71559,7 @@ func (x *ExchangedPeeringRoutesList) ProtoReflect() protoreflect.Message { // Deprecated: Use ExchangedPeeringRoutesList.ProtoReflect.Descriptor instead. func (*ExchangedPeeringRoutesList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{368} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{386} } func (x *ExchangedPeeringRoutesList) GetId() string { @@ -69289,7 +71635,7 @@ type ExpandIpCidrRangeSubnetworkRequest struct { func (x *ExpandIpCidrRangeSubnetworkRequest) Reset() { *x = ExpandIpCidrRangeSubnetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[369] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[387] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69301,7 +71647,7 @@ func (x *ExpandIpCidrRangeSubnetworkRequest) String() string { func (*ExpandIpCidrRangeSubnetworkRequest) ProtoMessage() {} func (x *ExpandIpCidrRangeSubnetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[369] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[387] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -69314,7 +71660,7 @@ func (x *ExpandIpCidrRangeSubnetworkRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ExpandIpCidrRangeSubnetworkRequest.ProtoReflect.Descriptor instead. func (*ExpandIpCidrRangeSubnetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{369} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{387} } func (x *ExpandIpCidrRangeSubnetworkRequest) GetProject() string { @@ -69404,7 +71750,7 @@ type Expr struct { func (x *Expr) Reset() { *x = Expr{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[370] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[388] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69416,7 +71762,7 @@ func (x *Expr) String() string { func (*Expr) ProtoMessage() {} func (x *Expr) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[370] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[388] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -69429,7 +71775,7 @@ func (x *Expr) ProtoReflect() protoreflect.Message { // Deprecated: Use Expr.ProtoReflect.Descriptor instead. func (*Expr) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{370} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{388} } func (x *Expr) GetDescription() string { @@ -69526,7 +71872,7 @@ type ExternalVpnGateway struct { func (x *ExternalVpnGateway) Reset() { *x = ExternalVpnGateway{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[371] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[389] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69538,7 +71884,7 @@ func (x *ExternalVpnGateway) String() string { func (*ExternalVpnGateway) ProtoMessage() {} func (x *ExternalVpnGateway) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[371] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[389] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -69551,7 +71897,7 @@ func (x *ExternalVpnGateway) ProtoReflect() protoreflect.Message { // Deprecated: Use ExternalVpnGateway.ProtoReflect.Descriptor instead. func (*ExternalVpnGateway) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{371} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{389} } func (x *ExternalVpnGateway) GetCreationTimestamp() string { @@ -69660,7 +72006,7 @@ type ExternalVpnGatewayInterface struct { func (x *ExternalVpnGatewayInterface) Reset() { *x = ExternalVpnGatewayInterface{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[372] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[390] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69672,7 +72018,7 @@ func (x *ExternalVpnGatewayInterface) String() string { func (*ExternalVpnGatewayInterface) ProtoMessage() {} func (x *ExternalVpnGatewayInterface) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[372] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[390] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -69685,7 +72031,7 @@ func (x *ExternalVpnGatewayInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use ExternalVpnGatewayInterface.ProtoReflect.Descriptor instead. func (*ExternalVpnGatewayInterface) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{372} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{390} } func (x *ExternalVpnGatewayInterface) GetId() uint32 { @@ -69735,7 +72081,7 @@ type ExternalVpnGatewayList struct { func (x *ExternalVpnGatewayList) Reset() { *x = ExternalVpnGatewayList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[373] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[391] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69747,7 +72093,7 @@ func (x *ExternalVpnGatewayList) String() string { func (*ExternalVpnGatewayList) ProtoMessage() {} func (x *ExternalVpnGatewayList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[373] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[391] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -69760,7 +72106,7 @@ func (x *ExternalVpnGatewayList) ProtoReflect() protoreflect.Message { // Deprecated: Use ExternalVpnGatewayList.ProtoReflect.Descriptor instead. func (*ExternalVpnGatewayList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{373} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{391} } func (x *ExternalVpnGatewayList) GetEtag() string { @@ -69835,7 +72181,7 @@ type ExternalVpnGatewayParams struct { func (x *ExternalVpnGatewayParams) Reset() { *x = ExternalVpnGatewayParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[374] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[392] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69847,7 +72193,7 @@ func (x *ExternalVpnGatewayParams) String() string { func (*ExternalVpnGatewayParams) ProtoMessage() {} func (x *ExternalVpnGatewayParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[374] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[392] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -69860,7 +72206,7 @@ func (x *ExternalVpnGatewayParams) ProtoReflect() protoreflect.Message { // Deprecated: Use ExternalVpnGatewayParams.ProtoReflect.Descriptor instead. func (*ExternalVpnGatewayParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{374} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{392} } func (x *ExternalVpnGatewayParams) GetResourceManagerTags() map[string]string { @@ -69883,7 +72229,7 @@ type FileContentBuffer struct { func (x *FileContentBuffer) Reset() { *x = FileContentBuffer{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[375] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[393] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69895,7 +72241,7 @@ func (x *FileContentBuffer) String() string { func (*FileContentBuffer) ProtoMessage() {} func (x *FileContentBuffer) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[375] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[393] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -69908,7 +72254,7 @@ func (x *FileContentBuffer) ProtoReflect() protoreflect.Message { // Deprecated: Use FileContentBuffer.ProtoReflect.Descriptor instead. func (*FileContentBuffer) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{375} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{393} } func (x *FileContentBuffer) GetContent() string { @@ -70054,7 +72400,7 @@ type Firewall struct { func (x *Firewall) Reset() { *x = Firewall{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[376] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[394] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70066,7 +72412,7 @@ func (x *Firewall) String() string { func (*Firewall) ProtoMessage() {} func (x *Firewall) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[376] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[394] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -70079,7 +72425,7 @@ func (x *Firewall) ProtoReflect() protoreflect.Message { // Deprecated: Use Firewall.ProtoReflect.Descriptor instead. func (*Firewall) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{376} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{394} } func (x *Firewall) GetAllowed() []*Allowed { @@ -70248,7 +72594,7 @@ type FirewallList struct { func (x *FirewallList) Reset() { *x = FirewallList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[377] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[395] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70260,7 +72606,7 @@ func (x *FirewallList) String() string { func (*FirewallList) ProtoMessage() {} func (x *FirewallList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[377] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[395] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -70273,7 +72619,7 @@ func (x *FirewallList) ProtoReflect() protoreflect.Message { // Deprecated: Use FirewallList.ProtoReflect.Descriptor instead. func (*FirewallList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{377} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{395} } func (x *FirewallList) GetId() string { @@ -70335,7 +72681,7 @@ type FirewallLogConfig struct { func (x *FirewallLogConfig) Reset() { *x = FirewallLogConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[378] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[396] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70347,7 +72693,7 @@ func (x *FirewallLogConfig) String() string { func (*FirewallLogConfig) ProtoMessage() {} func (x *FirewallLogConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[378] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[396] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -70360,7 +72706,7 @@ func (x *FirewallLogConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use FirewallLogConfig.ProtoReflect.Descriptor instead. func (*FirewallLogConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{378} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{396} } func (x *FirewallLogConfig) GetEnable() bool { @@ -70399,7 +72745,7 @@ type FirewallParams struct { func (x *FirewallParams) Reset() { *x = FirewallParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[379] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[397] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70411,7 +72757,7 @@ func (x *FirewallParams) String() string { func (*FirewallParams) ProtoMessage() {} func (x *FirewallParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[379] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[397] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -70424,7 +72770,7 @@ func (x *FirewallParams) ProtoReflect() protoreflect.Message { // Deprecated: Use FirewallParams.ProtoReflect.Descriptor instead. func (*FirewallParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{379} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{397} } func (x *FirewallParams) GetResourceManagerTags() map[string]string { @@ -70447,7 +72793,7 @@ type FirewallPoliciesListAssociationsResponse struct { func (x *FirewallPoliciesListAssociationsResponse) Reset() { *x = FirewallPoliciesListAssociationsResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[380] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[398] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70459,7 +72805,7 @@ func (x *FirewallPoliciesListAssociationsResponse) String() string { func (*FirewallPoliciesListAssociationsResponse) ProtoMessage() {} func (x *FirewallPoliciesListAssociationsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[380] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[398] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -70472,7 +72818,7 @@ func (x *FirewallPoliciesListAssociationsResponse) ProtoReflect() protoreflect.M // Deprecated: Use FirewallPoliciesListAssociationsResponse.ProtoReflect.Descriptor instead. func (*FirewallPoliciesListAssociationsResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{380} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{398} } func (x *FirewallPoliciesListAssociationsResponse) GetAssociations() []*FirewallPolicyAssociation { @@ -70502,7 +72848,7 @@ type FirewallPoliciesScopedList struct { func (x *FirewallPoliciesScopedList) Reset() { *x = FirewallPoliciesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[381] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[399] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70514,7 +72860,7 @@ func (x *FirewallPoliciesScopedList) String() string { func (*FirewallPoliciesScopedList) ProtoMessage() {} func (x *FirewallPoliciesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[381] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[399] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -70527,7 +72873,7 @@ func (x *FirewallPoliciesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use FirewallPoliciesScopedList.ProtoReflect.Descriptor instead. func (*FirewallPoliciesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{381} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{399} } func (x *FirewallPoliciesScopedList) GetFirewallPolicies() []*FirewallPolicy { @@ -70630,7 +72976,7 @@ type FirewallPolicy struct { func (x *FirewallPolicy) Reset() { *x = FirewallPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[382] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[400] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70642,7 +72988,7 @@ func (x *FirewallPolicy) String() string { func (*FirewallPolicy) ProtoMessage() {} func (x *FirewallPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[382] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[400] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -70655,7 +73001,7 @@ func (x *FirewallPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use FirewallPolicy.ProtoReflect.Descriptor instead. func (*FirewallPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{382} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{400} } func (x *FirewallPolicy) GetAssociations() []*FirewallPolicyAssociation { @@ -70796,7 +73142,7 @@ type FirewallPolicyAssociation struct { func (x *FirewallPolicyAssociation) Reset() { *x = FirewallPolicyAssociation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[383] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[401] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70808,7 +73154,7 @@ func (x *FirewallPolicyAssociation) String() string { func (*FirewallPolicyAssociation) ProtoMessage() {} func (x *FirewallPolicyAssociation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[383] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[401] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -70821,7 +73167,7 @@ func (x *FirewallPolicyAssociation) ProtoReflect() protoreflect.Message { // Deprecated: Use FirewallPolicyAssociation.ProtoReflect.Descriptor instead. func (*FirewallPolicyAssociation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{383} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{401} } func (x *FirewallPolicyAssociation) GetAttachmentTarget() string { @@ -70881,7 +73227,7 @@ type FirewallPolicyList struct { func (x *FirewallPolicyList) Reset() { *x = FirewallPolicyList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[384] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[402] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70893,7 +73239,7 @@ func (x *FirewallPolicyList) String() string { func (*FirewallPolicyList) ProtoMessage() {} func (x *FirewallPolicyList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[384] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[402] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -70906,7 +73252,7 @@ func (x *FirewallPolicyList) ProtoReflect() protoreflect.Message { // Deprecated: Use FirewallPolicyList.ProtoReflect.Descriptor instead. func (*FirewallPolicyList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{384} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{402} } func (x *FirewallPolicyList) GetId() string { @@ -71017,7 +73363,7 @@ type FirewallPolicyRule struct { func (x *FirewallPolicyRule) Reset() { *x = FirewallPolicyRule{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[385] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[403] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71029,7 +73375,7 @@ func (x *FirewallPolicyRule) String() string { func (*FirewallPolicyRule) ProtoMessage() {} func (x *FirewallPolicyRule) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[385] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[403] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -71042,7 +73388,7 @@ func (x *FirewallPolicyRule) ProtoReflect() protoreflect.Message { // Deprecated: Use FirewallPolicyRule.ProtoReflect.Descriptor instead. func (*FirewallPolicyRule) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{385} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{403} } func (x *FirewallPolicyRule) GetAction() string { @@ -71242,7 +73588,7 @@ type FirewallPolicyRuleMatcher struct { func (x *FirewallPolicyRuleMatcher) Reset() { *x = FirewallPolicyRuleMatcher{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[386] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[404] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71254,7 +73600,7 @@ func (x *FirewallPolicyRuleMatcher) String() string { func (*FirewallPolicyRuleMatcher) ProtoMessage() {} func (x *FirewallPolicyRuleMatcher) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[386] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[404] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -71267,7 +73613,7 @@ func (x *FirewallPolicyRuleMatcher) ProtoReflect() protoreflect.Message { // Deprecated: Use FirewallPolicyRuleMatcher.ProtoReflect.Descriptor instead. func (*FirewallPolicyRuleMatcher) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{386} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{404} } func (x *FirewallPolicyRuleMatcher) GetDestAddressGroups() []string { @@ -71409,7 +73755,7 @@ type FirewallPolicyRuleMatcherLayer4Config struct { func (x *FirewallPolicyRuleMatcherLayer4Config) Reset() { *x = FirewallPolicyRuleMatcherLayer4Config{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[387] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[405] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71421,7 +73767,7 @@ func (x *FirewallPolicyRuleMatcherLayer4Config) String() string { func (*FirewallPolicyRuleMatcherLayer4Config) ProtoMessage() {} func (x *FirewallPolicyRuleMatcherLayer4Config) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[387] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[405] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -71434,7 +73780,7 @@ func (x *FirewallPolicyRuleMatcherLayer4Config) ProtoReflect() protoreflect.Mess // Deprecated: Use FirewallPolicyRuleMatcherLayer4Config.ProtoReflect.Descriptor instead. func (*FirewallPolicyRuleMatcherLayer4Config) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{387} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{405} } func (x *FirewallPolicyRuleMatcherLayer4Config) GetIpProtocol() string { @@ -71466,7 +73812,7 @@ type FirewallPolicyRuleSecureTag struct { func (x *FirewallPolicyRuleSecureTag) Reset() { *x = FirewallPolicyRuleSecureTag{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[388] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[406] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71478,7 +73824,7 @@ func (x *FirewallPolicyRuleSecureTag) String() string { func (*FirewallPolicyRuleSecureTag) ProtoMessage() {} func (x *FirewallPolicyRuleSecureTag) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[388] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[406] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -71491,7 +73837,7 @@ func (x *FirewallPolicyRuleSecureTag) ProtoReflect() protoreflect.Message { // Deprecated: Use FirewallPolicyRuleSecureTag.ProtoReflect.Descriptor instead. func (*FirewallPolicyRuleSecureTag) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{388} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{406} } func (x *FirewallPolicyRuleSecureTag) GetName() string { @@ -71534,7 +73880,7 @@ type FixedOrPercent struct { func (x *FixedOrPercent) Reset() { *x = FixedOrPercent{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[389] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[407] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71546,7 +73892,7 @@ func (x *FixedOrPercent) String() string { func (*FixedOrPercent) ProtoMessage() {} func (x *FixedOrPercent) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[389] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[407] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -71559,7 +73905,7 @@ func (x *FixedOrPercent) ProtoReflect() protoreflect.Message { // Deprecated: Use FixedOrPercent.ProtoReflect.Descriptor instead. func (*FixedOrPercent) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{389} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{407} } func (x *FixedOrPercent) GetCalculated() int32 { @@ -71599,7 +73945,7 @@ type FlexibleTimeRange struct { func (x *FlexibleTimeRange) Reset() { *x = FlexibleTimeRange{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[390] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[408] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71611,7 +73957,7 @@ func (x *FlexibleTimeRange) String() string { func (*FlexibleTimeRange) ProtoMessage() {} func (x *FlexibleTimeRange) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[390] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[408] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -71624,7 +73970,7 @@ func (x *FlexibleTimeRange) ProtoReflect() protoreflect.Message { // Deprecated: Use FlexibleTimeRange.ProtoReflect.Descriptor instead. func (*FlexibleTimeRange) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{390} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{408} } func (x *FlexibleTimeRange) GetMaxDuration() string { @@ -72024,7 +74370,7 @@ type ForwardingRule struct { func (x *ForwardingRule) Reset() { *x = ForwardingRule{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[391] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[409] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72036,7 +74382,7 @@ func (x *ForwardingRule) String() string { func (*ForwardingRule) ProtoMessage() {} func (x *ForwardingRule) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[391] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[409] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -72049,7 +74395,7 @@ func (x *ForwardingRule) ProtoReflect() protoreflect.Message { // Deprecated: Use ForwardingRule.ProtoReflect.Descriptor instead. func (*ForwardingRule) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{391} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{409} } func (x *ForwardingRule) GetIPAddress() string { @@ -72344,7 +74690,7 @@ type ForwardingRuleAggregatedList struct { func (x *ForwardingRuleAggregatedList) Reset() { *x = ForwardingRuleAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[392] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[410] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72356,7 +74702,7 @@ func (x *ForwardingRuleAggregatedList) String() string { func (*ForwardingRuleAggregatedList) ProtoMessage() {} func (x *ForwardingRuleAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[392] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[410] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -72369,7 +74715,7 @@ func (x *ForwardingRuleAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use ForwardingRuleAggregatedList.ProtoReflect.Descriptor instead. func (*ForwardingRuleAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{392} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{410} } func (x *ForwardingRuleAggregatedList) GetId() string { @@ -72446,7 +74792,7 @@ type ForwardingRuleList struct { func (x *ForwardingRuleList) Reset() { *x = ForwardingRuleList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[393] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[411] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72458,7 +74804,7 @@ func (x *ForwardingRuleList) String() string { func (*ForwardingRuleList) ProtoMessage() {} func (x *ForwardingRuleList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[393] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[411] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -72471,7 +74817,7 @@ func (x *ForwardingRuleList) ProtoReflect() protoreflect.Message { // Deprecated: Use ForwardingRuleList.ProtoReflect.Descriptor instead. func (*ForwardingRuleList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{393} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{411} } func (x *ForwardingRuleList) GetId() string { @@ -72525,7 +74871,7 @@ type ForwardingRuleReference struct { func (x *ForwardingRuleReference) Reset() { *x = ForwardingRuleReference{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[394] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[412] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72537,7 +74883,7 @@ func (x *ForwardingRuleReference) String() string { func (*ForwardingRuleReference) ProtoMessage() {} func (x *ForwardingRuleReference) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[394] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[412] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -72550,7 +74896,7 @@ func (x *ForwardingRuleReference) ProtoReflect() protoreflect.Message { // Deprecated: Use ForwardingRuleReference.ProtoReflect.Descriptor instead. func (*ForwardingRuleReference) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{394} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{412} } func (x *ForwardingRuleReference) GetForwardingRule() string { @@ -72580,7 +74926,7 @@ type ForwardingRuleServiceDirectoryRegistration struct { func (x *ForwardingRuleServiceDirectoryRegistration) Reset() { *x = ForwardingRuleServiceDirectoryRegistration{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[395] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[413] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72592,7 +74938,7 @@ func (x *ForwardingRuleServiceDirectoryRegistration) String() string { func (*ForwardingRuleServiceDirectoryRegistration) ProtoMessage() {} func (x *ForwardingRuleServiceDirectoryRegistration) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[395] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[413] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -72605,7 +74951,7 @@ func (x *ForwardingRuleServiceDirectoryRegistration) ProtoReflect() protoreflect // Deprecated: Use ForwardingRuleServiceDirectoryRegistration.ProtoReflect.Descriptor instead. func (*ForwardingRuleServiceDirectoryRegistration) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{395} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{413} } func (x *ForwardingRuleServiceDirectoryRegistration) GetNamespace() string { @@ -72642,7 +74988,7 @@ type ForwardingRulesScopedList struct { func (x *ForwardingRulesScopedList) Reset() { *x = ForwardingRulesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[396] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[414] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72654,7 +75000,7 @@ func (x *ForwardingRulesScopedList) String() string { func (*ForwardingRulesScopedList) ProtoMessage() {} func (x *ForwardingRulesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[396] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[414] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -72667,7 +75013,7 @@ func (x *ForwardingRulesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use ForwardingRulesScopedList.ProtoReflect.Descriptor instead. func (*ForwardingRulesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{396} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{414} } func (x *ForwardingRulesScopedList) GetForwardingRules() []*ForwardingRule { @@ -72710,6 +75056,8 @@ type FutureReservation struct { // If not present, then FR will not deliver a new commitment or update an // existing commitment. CommitmentInfo *FutureReservationCommitmentInfo `protobuf:"bytes,164362136,opt,name=commitment_info,json=commitmentInfo,proto3,oneof" json:"commitment_info,omitempty"` + // Check the ConfidentialComputeType enum for the list of possible values. + ConfidentialComputeType *string `protobuf:"bytes,386447257,opt,name=confidential_compute_type,json=confidentialComputeType,proto3,oneof" json:"confidential_compute_type,omitempty"` // Output only. [Output Only] The creation timestamp for this future reservation inRFC3339 // text format. CreationTimestamp *string `protobuf:"bytes,30525366,opt,name=creation_timestamp,json=creationTimestamp,proto3,oneof" json:"creation_timestamp,omitempty"` @@ -72740,6 +75088,9 @@ type FutureReservation struct { // Maximum allowed length for name prefix is 20. Automatically created // reservations name format will be -date-####. NamePrefix *string `protobuf:"bytes,236409542,opt,name=name_prefix,json=namePrefix,proto3,oneof" json:"name_prefix,omitempty"` + // Input only. Additional params passed with the request, but not persisted + // as part of resource payload. + Params *FutureReservationParams `protobuf:"bytes,78313862,opt,name=params,proto3,oneof" json:"params,omitempty"` // Planning state before being submitted for evaluation // Check the PlanningStatus enum for the list of possible values. PlanningStatus *string `protobuf:"bytes,19714836,opt,name=planning_status,json=planningStatus,proto3,oneof" json:"planning_status,omitempty"` @@ -72781,7 +75132,7 @@ type FutureReservation struct { func (x *FutureReservation) Reset() { *x = FutureReservation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[397] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[415] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72793,7 +75144,7 @@ func (x *FutureReservation) String() string { func (*FutureReservation) ProtoMessage() {} func (x *FutureReservation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[397] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[415] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -72806,7 +75157,7 @@ func (x *FutureReservation) ProtoReflect() protoreflect.Message { // Deprecated: Use FutureReservation.ProtoReflect.Descriptor instead. func (*FutureReservation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{397} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{415} } func (x *FutureReservation) GetAggregateReservation() *AllocationAggregateReservation { @@ -72844,6 +75195,13 @@ func (x *FutureReservation) GetCommitmentInfo() *FutureReservationCommitmentInfo return nil } +func (x *FutureReservation) GetConfidentialComputeType() string { + if x != nil && x.ConfidentialComputeType != nil { + return *x.ConfidentialComputeType + } + return "" +} + func (x *FutureReservation) GetCreationTimestamp() string { if x != nil && x.CreationTimestamp != nil { return *x.CreationTimestamp @@ -72900,6 +75258,13 @@ func (x *FutureReservation) GetNamePrefix() string { return "" } +func (x *FutureReservation) GetParams() *FutureReservationParams { + if x != nil { + return x.Params + } + return nil +} + func (x *FutureReservation) GetPlanningStatus() string { if x != nil && x.PlanningStatus != nil { return *x.PlanningStatus @@ -73004,7 +75369,7 @@ type FutureReservationCommitmentInfo struct { func (x *FutureReservationCommitmentInfo) Reset() { *x = FutureReservationCommitmentInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[398] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[416] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73016,7 +75381,7 @@ func (x *FutureReservationCommitmentInfo) String() string { func (*FutureReservationCommitmentInfo) ProtoMessage() {} func (x *FutureReservationCommitmentInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[398] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[416] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73029,7 +75394,7 @@ func (x *FutureReservationCommitmentInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use FutureReservationCommitmentInfo.ProtoReflect.Descriptor instead. func (*FutureReservationCommitmentInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{398} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{416} } func (x *FutureReservationCommitmentInfo) GetCommitmentName() string { @@ -73053,6 +75418,58 @@ func (x *FutureReservationCommitmentInfo) GetPreviousCommitmentTerms() string { return "" } +// Additional future reservation params. +type FutureReservationParams struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Input only. Resource manager tags to be bound to the future reservation. Tag keys and + // values have the same definition as resource + // manager tags. Keys and values can be either in numeric format, + // such as `tagKeys/{tag_key_id}` and `tagValues/{tag_value_id}` or in + // namespaced format such as `{org_id|project_id}/{tag_key_short_name}` and + // `{tag_value_short_name}`. The field is ignored (both PUT & + // PATCH) when empty. + ResourceManagerTags map[string]string `protobuf:"bytes,377671164,rep,name=resource_manager_tags,json=resourceManagerTags,proto3" json:"resource_manager_tags,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *FutureReservationParams) Reset() { + *x = FutureReservationParams{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[417] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *FutureReservationParams) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*FutureReservationParams) ProtoMessage() {} + +func (x *FutureReservationParams) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[417] + 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 FutureReservationParams.ProtoReflect.Descriptor instead. +func (*FutureReservationParams) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{417} +} + +func (x *FutureReservationParams) GetResourceManagerTags() map[string]string { + if x != nil { + return x.ResourceManagerTags + } + return nil +} + type FutureReservationSpecificSKUProperties struct { state protoimpl.MessageState `protogen:"open.v1"` // Properties of the SKU instances being reserved. @@ -73069,7 +75486,7 @@ type FutureReservationSpecificSKUProperties struct { func (x *FutureReservationSpecificSKUProperties) Reset() { *x = FutureReservationSpecificSKUProperties{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[399] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[418] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73081,7 +75498,7 @@ func (x *FutureReservationSpecificSKUProperties) String() string { func (*FutureReservationSpecificSKUProperties) ProtoMessage() {} func (x *FutureReservationSpecificSKUProperties) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[399] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[418] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73094,7 +75511,7 @@ func (x *FutureReservationSpecificSKUProperties) ProtoReflect() protoreflect.Mes // Deprecated: Use FutureReservationSpecificSKUProperties.ProtoReflect.Descriptor instead. func (*FutureReservationSpecificSKUProperties) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{399} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{418} } func (x *FutureReservationSpecificSKUProperties) GetInstanceProperties() *AllocationSpecificSKUAllocationReservedInstanceProperties { @@ -73156,7 +75573,7 @@ type FutureReservationStatus struct { func (x *FutureReservationStatus) Reset() { *x = FutureReservationStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[400] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[419] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73168,7 +75585,7 @@ func (x *FutureReservationStatus) String() string { func (*FutureReservationStatus) ProtoMessage() {} func (x *FutureReservationStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[400] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[419] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73181,7 +75598,7 @@ func (x *FutureReservationStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use FutureReservationStatus.ProtoReflect.Descriptor instead. func (*FutureReservationStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{400} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{419} } func (x *FutureReservationStatus) GetAmendmentStatus() string { @@ -73255,7 +75672,7 @@ type FutureReservationStatusExistingMatchingUsageInfo struct { func (x *FutureReservationStatusExistingMatchingUsageInfo) Reset() { *x = FutureReservationStatusExistingMatchingUsageInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[401] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[420] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73267,7 +75684,7 @@ func (x *FutureReservationStatusExistingMatchingUsageInfo) String() string { func (*FutureReservationStatusExistingMatchingUsageInfo) ProtoMessage() {} func (x *FutureReservationStatusExistingMatchingUsageInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[401] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[420] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73280,7 +75697,7 @@ func (x *FutureReservationStatusExistingMatchingUsageInfo) ProtoReflect() protor // Deprecated: Use FutureReservationStatusExistingMatchingUsageInfo.ProtoReflect.Descriptor instead. func (*FutureReservationStatusExistingMatchingUsageInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{401} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{420} } func (x *FutureReservationStatusExistingMatchingUsageInfo) GetCount() int64 { @@ -73324,7 +75741,7 @@ type FutureReservationStatusLastKnownGoodState struct { func (x *FutureReservationStatusLastKnownGoodState) Reset() { *x = FutureReservationStatusLastKnownGoodState{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[402] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[421] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73336,7 +75753,7 @@ func (x *FutureReservationStatusLastKnownGoodState) String() string { func (*FutureReservationStatusLastKnownGoodState) ProtoMessage() {} func (x *FutureReservationStatusLastKnownGoodState) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[402] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[421] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73349,7 +75766,7 @@ func (x *FutureReservationStatusLastKnownGoodState) ProtoReflect() protoreflect. // Deprecated: Use FutureReservationStatusLastKnownGoodState.ProtoReflect.Descriptor instead. func (*FutureReservationStatusLastKnownGoodState) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{402} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{421} } func (x *FutureReservationStatusLastKnownGoodState) GetDescription() string { @@ -73410,7 +75827,7 @@ type FutureReservationStatusLastKnownGoodStateFutureReservationSpecs struct { func (x *FutureReservationStatusLastKnownGoodStateFutureReservationSpecs) Reset() { *x = FutureReservationStatusLastKnownGoodStateFutureReservationSpecs{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[403] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[422] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73422,7 +75839,7 @@ func (x *FutureReservationStatusLastKnownGoodStateFutureReservationSpecs) String func (*FutureReservationStatusLastKnownGoodStateFutureReservationSpecs) ProtoMessage() {} func (x *FutureReservationStatusLastKnownGoodStateFutureReservationSpecs) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[403] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[422] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73435,7 +75852,7 @@ func (x *FutureReservationStatusLastKnownGoodStateFutureReservationSpecs) ProtoR // Deprecated: Use FutureReservationStatusLastKnownGoodStateFutureReservationSpecs.ProtoReflect.Descriptor instead. func (*FutureReservationStatusLastKnownGoodStateFutureReservationSpecs) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{403} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{422} } func (x *FutureReservationStatusLastKnownGoodStateFutureReservationSpecs) GetShareSettings() *ShareSettings { @@ -73471,7 +75888,7 @@ type FutureReservationStatusSpecificSKUProperties struct { func (x *FutureReservationStatusSpecificSKUProperties) Reset() { *x = FutureReservationStatusSpecificSKUProperties{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[404] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[423] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73483,7 +75900,7 @@ func (x *FutureReservationStatusSpecificSKUProperties) String() string { func (*FutureReservationStatusSpecificSKUProperties) ProtoMessage() {} func (x *FutureReservationStatusSpecificSKUProperties) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[404] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[423] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73496,7 +75913,7 @@ func (x *FutureReservationStatusSpecificSKUProperties) ProtoReflect() protorefle // Deprecated: Use FutureReservationStatusSpecificSKUProperties.ProtoReflect.Descriptor instead. func (*FutureReservationStatusSpecificSKUProperties) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{404} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{423} } func (x *FutureReservationStatusSpecificSKUProperties) GetSourceInstanceTemplateId() string { @@ -73519,7 +75936,7 @@ type FutureReservationTimeWindow struct { func (x *FutureReservationTimeWindow) Reset() { *x = FutureReservationTimeWindow{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[405] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[424] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73531,7 +75948,7 @@ func (x *FutureReservationTimeWindow) String() string { func (*FutureReservationTimeWindow) ProtoMessage() {} func (x *FutureReservationTimeWindow) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[405] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[424] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73544,7 +75961,7 @@ func (x *FutureReservationTimeWindow) ProtoReflect() protoreflect.Message { // Deprecated: Use FutureReservationTimeWindow.ProtoReflect.Descriptor instead. func (*FutureReservationTimeWindow) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{405} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{424} } func (x *FutureReservationTimeWindow) GetDuration() *Duration { @@ -73597,7 +76014,7 @@ type FutureReservationsAggregatedListResponse struct { func (x *FutureReservationsAggregatedListResponse) Reset() { *x = FutureReservationsAggregatedListResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[406] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[425] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73609,7 +76026,7 @@ func (x *FutureReservationsAggregatedListResponse) String() string { func (*FutureReservationsAggregatedListResponse) ProtoMessage() {} func (x *FutureReservationsAggregatedListResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[406] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[425] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73622,7 +76039,7 @@ func (x *FutureReservationsAggregatedListResponse) ProtoReflect() protoreflect.M // Deprecated: Use FutureReservationsAggregatedListResponse.ProtoReflect.Descriptor instead. func (*FutureReservationsAggregatedListResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{406} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{425} } func (x *FutureReservationsAggregatedListResponse) GetEtag() string { @@ -73710,7 +76127,7 @@ type FutureReservationsListResponse struct { func (x *FutureReservationsListResponse) Reset() { *x = FutureReservationsListResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[407] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[426] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73722,7 +76139,7 @@ func (x *FutureReservationsListResponse) String() string { func (*FutureReservationsListResponse) ProtoMessage() {} func (x *FutureReservationsListResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[407] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[426] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73735,7 +76152,7 @@ func (x *FutureReservationsListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use FutureReservationsListResponse.ProtoReflect.Descriptor instead. func (*FutureReservationsListResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{407} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{426} } func (x *FutureReservationsListResponse) GetEtag() string { @@ -73807,7 +76224,7 @@ type FutureReservationsScopedList struct { func (x *FutureReservationsScopedList) Reset() { *x = FutureReservationsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[408] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[427] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73819,7 +76236,7 @@ func (x *FutureReservationsScopedList) String() string { func (*FutureReservationsScopedList) ProtoMessage() {} func (x *FutureReservationsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[408] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[427] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73832,7 +76249,7 @@ func (x *FutureReservationsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use FutureReservationsScopedList.ProtoReflect.Descriptor instead. func (*FutureReservationsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{408} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{427} } func (x *FutureReservationsScopedList) GetFutureReservations() []*FutureReservation { @@ -73875,7 +76292,7 @@ type FutureResourcesRecommendation struct { func (x *FutureResourcesRecommendation) Reset() { *x = FutureResourcesRecommendation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[409] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[428] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73887,7 +76304,7 @@ func (x *FutureResourcesRecommendation) String() string { func (*FutureResourcesRecommendation) ProtoMessage() {} func (x *FutureResourcesRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[409] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[428] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73900,7 +76317,7 @@ func (x *FutureResourcesRecommendation) ProtoReflect() protoreflect.Message { // Deprecated: Use FutureResourcesRecommendation.ProtoReflect.Descriptor instead. func (*FutureResourcesRecommendation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{409} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{428} } func (x *FutureResourcesRecommendation) GetEndTime() string { @@ -73963,7 +76380,7 @@ type FutureResourcesRecommendationOtherLocation struct { func (x *FutureResourcesRecommendationOtherLocation) Reset() { *x = FutureResourcesRecommendationOtherLocation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[410] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[429] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73975,7 +76392,7 @@ func (x *FutureResourcesRecommendationOtherLocation) String() string { func (*FutureResourcesRecommendationOtherLocation) ProtoMessage() {} func (x *FutureResourcesRecommendationOtherLocation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[410] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[429] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73988,7 +76405,7 @@ func (x *FutureResourcesRecommendationOtherLocation) ProtoReflect() protoreflect // Deprecated: Use FutureResourcesRecommendationOtherLocation.ProtoReflect.Descriptor instead. func (*FutureResourcesRecommendationOtherLocation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{410} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{429} } func (x *FutureResourcesRecommendationOtherLocation) GetDetails() string { @@ -74028,7 +76445,7 @@ type FutureResourcesSpec struct { func (x *FutureResourcesSpec) Reset() { *x = FutureResourcesSpec{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[411] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[430] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74040,7 +76457,7 @@ func (x *FutureResourcesSpec) String() string { func (*FutureResourcesSpec) ProtoMessage() {} func (x *FutureResourcesSpec) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[411] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[430] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74053,7 +76470,7 @@ func (x *FutureResourcesSpec) ProtoReflect() protoreflect.Message { // Deprecated: Use FutureResourcesSpec.ProtoReflect.Descriptor instead. func (*FutureResourcesSpec) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{411} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{430} } func (x *FutureResourcesSpec) GetDeploymentType() string { @@ -74101,7 +76518,7 @@ type FutureResourcesSpecAggregateResources struct { func (x *FutureResourcesSpecAggregateResources) Reset() { *x = FutureResourcesSpecAggregateResources{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[412] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[431] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74113,7 +76530,7 @@ func (x *FutureResourcesSpecAggregateResources) String() string { func (*FutureResourcesSpecAggregateResources) ProtoMessage() {} func (x *FutureResourcesSpecAggregateResources) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[412] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[431] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74126,7 +76543,7 @@ func (x *FutureResourcesSpecAggregateResources) ProtoReflect() protoreflect.Mess // Deprecated: Use FutureResourcesSpecAggregateResources.ProtoReflect.Descriptor instead. func (*FutureResourcesSpecAggregateResources) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{412} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{431} } func (x *FutureResourcesSpecAggregateResources) GetAcceleratorCount() int64 { @@ -74163,7 +76580,7 @@ type FutureResourcesSpecLocalSsdPartition struct { func (x *FutureResourcesSpecLocalSsdPartition) Reset() { *x = FutureResourcesSpecLocalSsdPartition{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[413] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[432] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74175,7 +76592,7 @@ func (x *FutureResourcesSpecLocalSsdPartition) String() string { func (*FutureResourcesSpecLocalSsdPartition) ProtoMessage() {} func (x *FutureResourcesSpecLocalSsdPartition) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[413] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[432] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74188,7 +76605,7 @@ func (x *FutureResourcesSpecLocalSsdPartition) ProtoReflect() protoreflect.Messa // Deprecated: Use FutureResourcesSpecLocalSsdPartition.ProtoReflect.Descriptor instead. func (*FutureResourcesSpecLocalSsdPartition) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{413} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{432} } func (x *FutureResourcesSpecLocalSsdPartition) GetDiskInterface() string { @@ -74219,7 +76636,7 @@ type FutureResourcesSpecLocationPolicy struct { func (x *FutureResourcesSpecLocationPolicy) Reset() { *x = FutureResourcesSpecLocationPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[414] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[433] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74231,7 +76648,7 @@ func (x *FutureResourcesSpecLocationPolicy) String() string { func (*FutureResourcesSpecLocationPolicy) ProtoMessage() {} func (x *FutureResourcesSpecLocationPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[414] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[433] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74244,7 +76661,7 @@ func (x *FutureResourcesSpecLocationPolicy) ProtoReflect() protoreflect.Message // Deprecated: Use FutureResourcesSpecLocationPolicy.ProtoReflect.Descriptor instead. func (*FutureResourcesSpecLocationPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{414} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{433} } func (x *FutureResourcesSpecLocationPolicy) GetLocations() map[string]*FutureResourcesSpecLocationPolicyLocation { @@ -74266,7 +76683,7 @@ type FutureResourcesSpecLocationPolicyLocation struct { func (x *FutureResourcesSpecLocationPolicyLocation) Reset() { *x = FutureResourcesSpecLocationPolicyLocation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[415] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[434] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74278,7 +76695,7 @@ func (x *FutureResourcesSpecLocationPolicyLocation) String() string { func (*FutureResourcesSpecLocationPolicyLocation) ProtoMessage() {} func (x *FutureResourcesSpecLocationPolicyLocation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[415] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[434] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74291,7 +76708,7 @@ func (x *FutureResourcesSpecLocationPolicyLocation) ProtoReflect() protoreflect. // Deprecated: Use FutureResourcesSpecLocationPolicyLocation.ProtoReflect.Descriptor instead. func (*FutureResourcesSpecLocationPolicyLocation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{415} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{434} } func (x *FutureResourcesSpecLocationPolicyLocation) GetPreference() string { @@ -74320,7 +76737,7 @@ type FutureResourcesSpecSpecificSKUResources struct { func (x *FutureResourcesSpecSpecificSKUResources) Reset() { *x = FutureResourcesSpecSpecificSKUResources{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[416] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[435] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74332,7 +76749,7 @@ func (x *FutureResourcesSpecSpecificSKUResources) String() string { func (*FutureResourcesSpecSpecificSKUResources) ProtoMessage() {} func (x *FutureResourcesSpecSpecificSKUResources) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[416] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[435] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74345,7 +76762,7 @@ func (x *FutureResourcesSpecSpecificSKUResources) ProtoReflect() protoreflect.Me // Deprecated: Use FutureResourcesSpecSpecificSKUResources.ProtoReflect.Descriptor instead. func (*FutureResourcesSpecSpecificSKUResources) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{416} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{435} } func (x *FutureResourcesSpecSpecificSKUResources) GetInstanceCount() int64 { @@ -74380,7 +76797,7 @@ type FutureResourcesSpecTargetResources struct { func (x *FutureResourcesSpecTargetResources) Reset() { *x = FutureResourcesSpecTargetResources{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[417] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[436] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74392,7 +76809,7 @@ func (x *FutureResourcesSpecTargetResources) String() string { func (*FutureResourcesSpecTargetResources) ProtoMessage() {} func (x *FutureResourcesSpecTargetResources) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[417] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[436] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74405,7 +76822,7 @@ func (x *FutureResourcesSpecTargetResources) ProtoReflect() protoreflect.Message // Deprecated: Use FutureResourcesSpecTargetResources.ProtoReflect.Descriptor instead. func (*FutureResourcesSpecTargetResources) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{417} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{436} } func (x *FutureResourcesSpecTargetResources) GetAggregateResources() *FutureResourcesSpecAggregateResources { @@ -74472,7 +76889,7 @@ type GRPCHealthCheck struct { func (x *GRPCHealthCheck) Reset() { *x = GRPCHealthCheck{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[418] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[437] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74484,7 +76901,7 @@ func (x *GRPCHealthCheck) String() string { func (*GRPCHealthCheck) ProtoMessage() {} func (x *GRPCHealthCheck) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[418] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[437] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74497,7 +76914,7 @@ func (x *GRPCHealthCheck) ProtoReflect() protoreflect.Message { // Deprecated: Use GRPCHealthCheck.ProtoReflect.Descriptor instead. func (*GRPCHealthCheck) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{418} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{437} } func (x *GRPCHealthCheck) GetGrpcServiceName() string { @@ -74576,7 +76993,7 @@ type GRPCTLSHealthCheck struct { func (x *GRPCTLSHealthCheck) Reset() { *x = GRPCTLSHealthCheck{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[419] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[438] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74588,7 +77005,7 @@ func (x *GRPCTLSHealthCheck) String() string { func (*GRPCTLSHealthCheck) ProtoMessage() {} func (x *GRPCTLSHealthCheck) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[419] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[438] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74601,7 +77018,7 @@ func (x *GRPCTLSHealthCheck) ProtoReflect() protoreflect.Message { // Deprecated: Use GRPCTLSHealthCheck.ProtoReflect.Descriptor instead. func (*GRPCTLSHealthCheck) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{419} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{438} } func (x *GRPCTLSHealthCheck) GetGrpcServiceName() string { @@ -74640,7 +77057,7 @@ type GetAcceleratorTypeRequest struct { func (x *GetAcceleratorTypeRequest) Reset() { *x = GetAcceleratorTypeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[420] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[439] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74652,7 +77069,7 @@ func (x *GetAcceleratorTypeRequest) String() string { func (*GetAcceleratorTypeRequest) ProtoMessage() {} func (x *GetAcceleratorTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[420] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[439] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74665,7 +77082,7 @@ func (x *GetAcceleratorTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetAcceleratorTypeRequest.ProtoReflect.Descriptor instead. func (*GetAcceleratorTypeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{420} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{439} } func (x *GetAcceleratorTypeRequest) GetAcceleratorType() string { @@ -74704,7 +77121,7 @@ type GetAddressRequest struct { func (x *GetAddressRequest) Reset() { *x = GetAddressRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[421] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[440] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74716,7 +77133,7 @@ func (x *GetAddressRequest) String() string { func (*GetAddressRequest) ProtoMessage() {} func (x *GetAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[421] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[440] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74729,7 +77146,7 @@ func (x *GetAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetAddressRequest.ProtoReflect.Descriptor instead. func (*GetAddressRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{421} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{440} } func (x *GetAddressRequest) GetAddress() string { @@ -74766,7 +77183,7 @@ type GetAssociationFirewallPolicyRequest struct { func (x *GetAssociationFirewallPolicyRequest) Reset() { *x = GetAssociationFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[422] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[441] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74778,7 +77195,7 @@ func (x *GetAssociationFirewallPolicyRequest) String() string { func (*GetAssociationFirewallPolicyRequest) ProtoMessage() {} func (x *GetAssociationFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[422] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[441] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74791,7 +77208,7 @@ func (x *GetAssociationFirewallPolicyRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use GetAssociationFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetAssociationFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{422} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{441} } func (x *GetAssociationFirewallPolicyRequest) GetFirewallPolicy() string { @@ -74823,7 +77240,7 @@ type GetAssociationNetworkFirewallPolicyRequest struct { func (x *GetAssociationNetworkFirewallPolicyRequest) Reset() { *x = GetAssociationNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[423] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[442] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74835,7 +77252,7 @@ func (x *GetAssociationNetworkFirewallPolicyRequest) String() string { func (*GetAssociationNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *GetAssociationNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[423] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[442] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74848,7 +77265,7 @@ func (x *GetAssociationNetworkFirewallPolicyRequest) ProtoReflect() protoreflect // Deprecated: Use GetAssociationNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetAssociationNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{423} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{442} } func (x *GetAssociationNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -74885,7 +77302,7 @@ type GetAssociationOrganizationSecurityPolicyRequest struct { func (x *GetAssociationOrganizationSecurityPolicyRequest) Reset() { *x = GetAssociationOrganizationSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[424] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[443] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74897,7 +77314,7 @@ func (x *GetAssociationOrganizationSecurityPolicyRequest) String() string { func (*GetAssociationOrganizationSecurityPolicyRequest) ProtoMessage() {} func (x *GetAssociationOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[424] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[443] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74910,7 +77327,7 @@ func (x *GetAssociationOrganizationSecurityPolicyRequest) ProtoReflect() protore // Deprecated: Use GetAssociationOrganizationSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*GetAssociationOrganizationSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{424} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{443} } func (x *GetAssociationOrganizationSecurityPolicyRequest) GetName() string { @@ -74944,7 +77361,7 @@ type GetAssociationRegionNetworkFirewallPolicyRequest struct { func (x *GetAssociationRegionNetworkFirewallPolicyRequest) Reset() { *x = GetAssociationRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[425] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[444] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74956,7 +77373,7 @@ func (x *GetAssociationRegionNetworkFirewallPolicyRequest) String() string { func (*GetAssociationRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *GetAssociationRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[425] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[444] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74969,7 +77386,7 @@ func (x *GetAssociationRegionNetworkFirewallPolicyRequest) ProtoReflect() protor // Deprecated: Use GetAssociationRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetAssociationRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{425} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{444} } func (x *GetAssociationRegionNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -75015,7 +77432,7 @@ type GetAutoscalerRequest struct { func (x *GetAutoscalerRequest) Reset() { *x = GetAutoscalerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[426] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[445] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75027,7 +77444,7 @@ func (x *GetAutoscalerRequest) String() string { func (*GetAutoscalerRequest) ProtoMessage() {} func (x *GetAutoscalerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[426] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[445] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75040,7 +77457,7 @@ func (x *GetAutoscalerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetAutoscalerRequest.ProtoReflect.Descriptor instead. func (*GetAutoscalerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{426} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{445} } func (x *GetAutoscalerRequest) GetAutoscaler() string { @@ -75077,7 +77494,7 @@ type GetBackendBucketRequest struct { func (x *GetBackendBucketRequest) Reset() { *x = GetBackendBucketRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[427] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[446] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75089,7 +77506,7 @@ func (x *GetBackendBucketRequest) String() string { func (*GetBackendBucketRequest) ProtoMessage() {} func (x *GetBackendBucketRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[427] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[446] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75102,7 +77519,7 @@ func (x *GetBackendBucketRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBackendBucketRequest.ProtoReflect.Descriptor instead. func (*GetBackendBucketRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{427} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{446} } func (x *GetBackendBucketRequest) GetBackendBucket() string { @@ -75132,7 +77549,7 @@ type GetBackendServiceRequest struct { func (x *GetBackendServiceRequest) Reset() { *x = GetBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[428] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[447] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75144,7 +77561,7 @@ func (x *GetBackendServiceRequest) String() string { func (*GetBackendServiceRequest) ProtoMessage() {} func (x *GetBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[428] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[447] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75157,7 +77574,7 @@ func (x *GetBackendServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBackendServiceRequest.ProtoReflect.Descriptor instead. func (*GetBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{428} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{447} } func (x *GetBackendServiceRequest) GetBackendService() string { @@ -75187,7 +77604,7 @@ type GetCrossSiteNetworkRequest struct { func (x *GetCrossSiteNetworkRequest) Reset() { *x = GetCrossSiteNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[429] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[448] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75199,7 +77616,7 @@ func (x *GetCrossSiteNetworkRequest) String() string { func (*GetCrossSiteNetworkRequest) ProtoMessage() {} func (x *GetCrossSiteNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[429] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[448] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75212,7 +77629,7 @@ func (x *GetCrossSiteNetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetCrossSiteNetworkRequest.ProtoReflect.Descriptor instead. func (*GetCrossSiteNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{429} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{448} } func (x *GetCrossSiteNetworkRequest) GetCrossSiteNetwork() string { @@ -75242,7 +77659,7 @@ type GetDiagnosticsInterconnectRequest struct { func (x *GetDiagnosticsInterconnectRequest) Reset() { *x = GetDiagnosticsInterconnectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[430] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[449] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75254,7 +77671,7 @@ func (x *GetDiagnosticsInterconnectRequest) String() string { func (*GetDiagnosticsInterconnectRequest) ProtoMessage() {} func (x *GetDiagnosticsInterconnectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[430] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[449] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75267,7 +77684,7 @@ func (x *GetDiagnosticsInterconnectRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetDiagnosticsInterconnectRequest.ProtoReflect.Descriptor instead. func (*GetDiagnosticsInterconnectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{430} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{449} } func (x *GetDiagnosticsInterconnectRequest) GetInterconnect() string { @@ -75299,7 +77716,7 @@ type GetDiskRequest struct { func (x *GetDiskRequest) Reset() { *x = GetDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[431] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[450] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75311,7 +77728,7 @@ func (x *GetDiskRequest) String() string { func (*GetDiskRequest) ProtoMessage() {} func (x *GetDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[431] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[450] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75324,7 +77741,7 @@ func (x *GetDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetDiskRequest.ProtoReflect.Descriptor instead. func (*GetDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{431} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{450} } func (x *GetDiskRequest) GetDisk() string { @@ -75363,7 +77780,7 @@ type GetDiskTypeRequest struct { func (x *GetDiskTypeRequest) Reset() { *x = GetDiskTypeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[432] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[451] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75375,7 +77792,7 @@ func (x *GetDiskTypeRequest) String() string { func (*GetDiskTypeRequest) ProtoMessage() {} func (x *GetDiskTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[432] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[451] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75388,7 +77805,7 @@ func (x *GetDiskTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetDiskTypeRequest.ProtoReflect.Descriptor instead. func (*GetDiskTypeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{432} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{451} } func (x *GetDiskTypeRequest) GetDiskType() string { @@ -75429,7 +77846,7 @@ type GetEffectiveFirewallsInstanceRequest struct { func (x *GetEffectiveFirewallsInstanceRequest) Reset() { *x = GetEffectiveFirewallsInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[433] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[452] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75441,7 +77858,7 @@ func (x *GetEffectiveFirewallsInstanceRequest) String() string { func (*GetEffectiveFirewallsInstanceRequest) ProtoMessage() {} func (x *GetEffectiveFirewallsInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[433] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[452] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75454,7 +77871,7 @@ func (x *GetEffectiveFirewallsInstanceRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetEffectiveFirewallsInstanceRequest.ProtoReflect.Descriptor instead. func (*GetEffectiveFirewallsInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{433} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{452} } func (x *GetEffectiveFirewallsInstanceRequest) GetInstance() string { @@ -75498,7 +77915,7 @@ type GetEffectiveFirewallsNetworkRequest struct { func (x *GetEffectiveFirewallsNetworkRequest) Reset() { *x = GetEffectiveFirewallsNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[434] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[453] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75510,7 +77927,7 @@ func (x *GetEffectiveFirewallsNetworkRequest) String() string { func (*GetEffectiveFirewallsNetworkRequest) ProtoMessage() {} func (x *GetEffectiveFirewallsNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[434] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[453] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75523,7 +77940,7 @@ func (x *GetEffectiveFirewallsNetworkRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use GetEffectiveFirewallsNetworkRequest.ProtoReflect.Descriptor instead. func (*GetEffectiveFirewallsNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{434} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{453} } func (x *GetEffectiveFirewallsNetworkRequest) GetNetwork() string { @@ -75555,7 +77972,7 @@ type GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest struct { func (x *GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest) Reset() { *x = GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[435] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[454] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75567,7 +77984,7 @@ func (x *GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest) String() strin func (*GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[435] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[454] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75580,7 +77997,7 @@ func (x *GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest) ProtoReflect() // Deprecated: Use GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{435} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{454} } func (x *GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest) GetNetwork() string { @@ -75617,7 +78034,7 @@ type GetEffectiveSecurityPoliciesBackendServiceRequest struct { func (x *GetEffectiveSecurityPoliciesBackendServiceRequest) Reset() { *x = GetEffectiveSecurityPoliciesBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[436] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[455] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75629,7 +78046,7 @@ func (x *GetEffectiveSecurityPoliciesBackendServiceRequest) String() string { func (*GetEffectiveSecurityPoliciesBackendServiceRequest) ProtoMessage() {} func (x *GetEffectiveSecurityPoliciesBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[436] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[455] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75642,7 +78059,7 @@ func (x *GetEffectiveSecurityPoliciesBackendServiceRequest) ProtoReflect() proto // Deprecated: Use GetEffectiveSecurityPoliciesBackendServiceRequest.ProtoReflect.Descriptor instead. func (*GetEffectiveSecurityPoliciesBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{436} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{455} } func (x *GetEffectiveSecurityPoliciesBackendServiceRequest) GetBackendService() string { @@ -75668,7 +78085,7 @@ type GetEffectiveSecurityPoliciesBackendServiceResponse struct { func (x *GetEffectiveSecurityPoliciesBackendServiceResponse) Reset() { *x = GetEffectiveSecurityPoliciesBackendServiceResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[437] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[456] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75680,7 +78097,7 @@ func (x *GetEffectiveSecurityPoliciesBackendServiceResponse) String() string { func (*GetEffectiveSecurityPoliciesBackendServiceResponse) ProtoMessage() {} func (x *GetEffectiveSecurityPoliciesBackendServiceResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[437] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[456] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75693,7 +78110,7 @@ func (x *GetEffectiveSecurityPoliciesBackendServiceResponse) ProtoReflect() prot // Deprecated: Use GetEffectiveSecurityPoliciesBackendServiceResponse.ProtoReflect.Descriptor instead. func (*GetEffectiveSecurityPoliciesBackendServiceResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{437} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{456} } // A request message for ExternalVpnGateways.Get. See the method description for details. @@ -75709,7 +78126,7 @@ type GetExternalVpnGatewayRequest struct { func (x *GetExternalVpnGatewayRequest) Reset() { *x = GetExternalVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[438] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[457] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75721,7 +78138,7 @@ func (x *GetExternalVpnGatewayRequest) String() string { func (*GetExternalVpnGatewayRequest) ProtoMessage() {} func (x *GetExternalVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[438] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[457] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75734,7 +78151,7 @@ func (x *GetExternalVpnGatewayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetExternalVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*GetExternalVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{438} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{457} } func (x *GetExternalVpnGatewayRequest) GetExternalVpnGateway() string { @@ -75762,7 +78179,7 @@ type GetFirewallPolicyRequest struct { func (x *GetFirewallPolicyRequest) Reset() { *x = GetFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[439] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[458] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75774,7 +78191,7 @@ func (x *GetFirewallPolicyRequest) String() string { func (*GetFirewallPolicyRequest) ProtoMessage() {} func (x *GetFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[439] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[458] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75787,7 +78204,7 @@ func (x *GetFirewallPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{439} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{458} } func (x *GetFirewallPolicyRequest) GetFirewallPolicy() string { @@ -75810,7 +78227,7 @@ type GetFirewallRequest struct { func (x *GetFirewallRequest) Reset() { *x = GetFirewallRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[440] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[459] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75822,7 +78239,7 @@ func (x *GetFirewallRequest) String() string { func (*GetFirewallRequest) ProtoMessage() {} func (x *GetFirewallRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[440] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[459] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75835,7 +78252,7 @@ func (x *GetFirewallRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetFirewallRequest.ProtoReflect.Descriptor instead. func (*GetFirewallRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{440} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{459} } func (x *GetFirewallRequest) GetFirewall() string { @@ -75867,7 +78284,7 @@ type GetForwardingRuleRequest struct { func (x *GetForwardingRuleRequest) Reset() { *x = GetForwardingRuleRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[441] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[460] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75879,7 +78296,7 @@ func (x *GetForwardingRuleRequest) String() string { func (*GetForwardingRuleRequest) ProtoMessage() {} func (x *GetForwardingRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[441] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[460] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75892,7 +78309,7 @@ func (x *GetForwardingRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetForwardingRuleRequest.ProtoReflect.Descriptor instead. func (*GetForwardingRuleRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{441} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{460} } func (x *GetForwardingRuleRequest) GetForwardingRule() string { @@ -75930,7 +78347,7 @@ type GetFromFamilyImageRequest struct { func (x *GetFromFamilyImageRequest) Reset() { *x = GetFromFamilyImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[442] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[461] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75942,7 +78359,7 @@ func (x *GetFromFamilyImageRequest) String() string { func (*GetFromFamilyImageRequest) ProtoMessage() {} func (x *GetFromFamilyImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[442] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[461] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75955,7 +78372,7 @@ func (x *GetFromFamilyImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetFromFamilyImageRequest.ProtoReflect.Descriptor instead. func (*GetFromFamilyImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{442} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{461} } func (x *GetFromFamilyImageRequest) GetFamily() string { @@ -75987,7 +78404,7 @@ type GetFutureReservationRequest struct { func (x *GetFutureReservationRequest) Reset() { *x = GetFutureReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[443] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[462] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75999,7 +78416,7 @@ func (x *GetFutureReservationRequest) String() string { func (*GetFutureReservationRequest) ProtoMessage() {} func (x *GetFutureReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[443] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[462] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76012,7 +78429,7 @@ func (x *GetFutureReservationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetFutureReservationRequest.ProtoReflect.Descriptor instead. func (*GetFutureReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{443} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{462} } func (x *GetFutureReservationRequest) GetFutureReservation() string { @@ -76049,7 +78466,7 @@ type GetGlobalAddressRequest struct { func (x *GetGlobalAddressRequest) Reset() { *x = GetGlobalAddressRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[444] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[463] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76061,7 +78478,7 @@ func (x *GetGlobalAddressRequest) String() string { func (*GetGlobalAddressRequest) ProtoMessage() {} func (x *GetGlobalAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[444] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[463] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76074,7 +78491,7 @@ func (x *GetGlobalAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetGlobalAddressRequest.ProtoReflect.Descriptor instead. func (*GetGlobalAddressRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{444} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{463} } func (x *GetGlobalAddressRequest) GetAddress() string { @@ -76104,7 +78521,7 @@ type GetGlobalForwardingRuleRequest struct { func (x *GetGlobalForwardingRuleRequest) Reset() { *x = GetGlobalForwardingRuleRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[445] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[464] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76116,7 +78533,7 @@ func (x *GetGlobalForwardingRuleRequest) String() string { func (*GetGlobalForwardingRuleRequest) ProtoMessage() {} func (x *GetGlobalForwardingRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[445] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[464] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76129,7 +78546,7 @@ func (x *GetGlobalForwardingRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetGlobalForwardingRuleRequest.ProtoReflect.Descriptor instead. func (*GetGlobalForwardingRuleRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{445} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{464} } func (x *GetGlobalForwardingRuleRequest) GetForwardingRule() string { @@ -76159,7 +78576,7 @@ type GetGlobalNetworkEndpointGroupRequest struct { func (x *GetGlobalNetworkEndpointGroupRequest) Reset() { *x = GetGlobalNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[446] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[465] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76171,7 +78588,7 @@ func (x *GetGlobalNetworkEndpointGroupRequest) String() string { func (*GetGlobalNetworkEndpointGroupRequest) ProtoMessage() {} func (x *GetGlobalNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[446] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[465] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76184,7 +78601,7 @@ func (x *GetGlobalNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetGlobalNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*GetGlobalNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{446} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{465} } func (x *GetGlobalNetworkEndpointGroupRequest) GetNetworkEndpointGroup() string { @@ -76215,7 +78632,7 @@ type GetGlobalOperationRequest struct { func (x *GetGlobalOperationRequest) Reset() { *x = GetGlobalOperationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[447] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[466] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76227,7 +78644,7 @@ func (x *GetGlobalOperationRequest) String() string { func (*GetGlobalOperationRequest) ProtoMessage() {} func (x *GetGlobalOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[447] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[466] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76240,7 +78657,7 @@ func (x *GetGlobalOperationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetGlobalOperationRequest.ProtoReflect.Descriptor instead. func (*GetGlobalOperationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{447} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{466} } func (x *GetGlobalOperationRequest) GetOperation() string { @@ -76271,7 +78688,7 @@ type GetGlobalOrganizationOperationRequest struct { func (x *GetGlobalOrganizationOperationRequest) Reset() { *x = GetGlobalOrganizationOperationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[448] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[467] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76283,7 +78700,7 @@ func (x *GetGlobalOrganizationOperationRequest) String() string { func (*GetGlobalOrganizationOperationRequest) ProtoMessage() {} func (x *GetGlobalOrganizationOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[448] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[467] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76296,7 +78713,7 @@ func (x *GetGlobalOrganizationOperationRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use GetGlobalOrganizationOperationRequest.ProtoReflect.Descriptor instead. func (*GetGlobalOrganizationOperationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{448} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{467} } func (x *GetGlobalOrganizationOperationRequest) GetOperation() string { @@ -76326,7 +78743,7 @@ type GetGlobalPublicDelegatedPrefixeRequest struct { func (x *GetGlobalPublicDelegatedPrefixeRequest) Reset() { *x = GetGlobalPublicDelegatedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[449] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[468] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76338,7 +78755,7 @@ func (x *GetGlobalPublicDelegatedPrefixeRequest) String() string { func (*GetGlobalPublicDelegatedPrefixeRequest) ProtoMessage() {} func (x *GetGlobalPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[449] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[468] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76351,7 +78768,7 @@ func (x *GetGlobalPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use GetGlobalPublicDelegatedPrefixeRequest.ProtoReflect.Descriptor instead. func (*GetGlobalPublicDelegatedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{449} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{468} } func (x *GetGlobalPublicDelegatedPrefixeRequest) GetProject() string { @@ -76387,7 +78804,7 @@ type GetGuestAttributesInstanceRequest struct { func (x *GetGuestAttributesInstanceRequest) Reset() { *x = GetGuestAttributesInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[450] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[469] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76399,7 +78816,7 @@ func (x *GetGuestAttributesInstanceRequest) String() string { func (*GetGuestAttributesInstanceRequest) ProtoMessage() {} func (x *GetGuestAttributesInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[450] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[469] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76412,7 +78829,7 @@ func (x *GetGuestAttributesInstanceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetGuestAttributesInstanceRequest.ProtoReflect.Descriptor instead. func (*GetGuestAttributesInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{450} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{469} } func (x *GetGuestAttributesInstanceRequest) GetInstance() string { @@ -76464,7 +78881,7 @@ type GetHealthBackendServiceRequest struct { func (x *GetHealthBackendServiceRequest) Reset() { *x = GetHealthBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[451] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[470] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76476,7 +78893,7 @@ func (x *GetHealthBackendServiceRequest) String() string { func (*GetHealthBackendServiceRequest) ProtoMessage() {} func (x *GetHealthBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[451] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[470] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76489,7 +78906,7 @@ func (x *GetHealthBackendServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetHealthBackendServiceRequest.ProtoReflect.Descriptor instead. func (*GetHealthBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{451} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{470} } func (x *GetHealthBackendServiceRequest) GetBackendService() string { @@ -76526,7 +78943,7 @@ type GetHealthCheckRequest struct { func (x *GetHealthCheckRequest) Reset() { *x = GetHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[452] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[471] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76538,7 +78955,7 @@ func (x *GetHealthCheckRequest) String() string { func (*GetHealthCheckRequest) ProtoMessage() {} func (x *GetHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[452] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[471] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76551,7 +78968,7 @@ func (x *GetHealthCheckRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetHealthCheckRequest.ProtoReflect.Descriptor instead. func (*GetHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{452} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{471} } func (x *GetHealthCheckRequest) GetHealthCheck() string { @@ -76584,7 +79001,7 @@ type GetHealthRegionBackendServiceRequest struct { func (x *GetHealthRegionBackendServiceRequest) Reset() { *x = GetHealthRegionBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[453] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[472] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76596,7 +79013,7 @@ func (x *GetHealthRegionBackendServiceRequest) String() string { func (*GetHealthRegionBackendServiceRequest) ProtoMessage() {} func (x *GetHealthRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[453] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[472] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76609,7 +79026,7 @@ func (x *GetHealthRegionBackendServiceRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetHealthRegionBackendServiceRequest.ProtoReflect.Descriptor instead. func (*GetHealthRegionBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{453} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{472} } func (x *GetHealthRegionBackendServiceRequest) GetBackendService() string { @@ -76640,6 +79057,134 @@ func (x *GetHealthRegionBackendServiceRequest) GetResourceGroupReferenceResource return nil } +// A request message for RegionCompositeHealthChecks.GetHealth. See the method description for details. +type GetHealthRegionCompositeHealthCheckRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the CompositeHealthCheck resource to get health for. + CompositeHealthCheck string `protobuf:"bytes,466984989,opt,name=composite_health_check,json=compositeHealthCheck,proto3" json:"composite_health_check,omitempty"` + // Name of the project scoping this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region scoping this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetHealthRegionCompositeHealthCheckRequest) Reset() { + *x = GetHealthRegionCompositeHealthCheckRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[473] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetHealthRegionCompositeHealthCheckRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetHealthRegionCompositeHealthCheckRequest) ProtoMessage() {} + +func (x *GetHealthRegionCompositeHealthCheckRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[473] + 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 GetHealthRegionCompositeHealthCheckRequest.ProtoReflect.Descriptor instead. +func (*GetHealthRegionCompositeHealthCheckRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{473} +} + +func (x *GetHealthRegionCompositeHealthCheckRequest) GetCompositeHealthCheck() string { + if x != nil { + return x.CompositeHealthCheck + } + return "" +} + +func (x *GetHealthRegionCompositeHealthCheckRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetHealthRegionCompositeHealthCheckRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +// A request message for RegionHealthSources.GetHealth. See the method description for details. +type GetHealthRegionHealthSourceRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the HealthSource resource to get health for. + HealthSource string `protobuf:"bytes,376521566,opt,name=health_source,json=healthSource,proto3" json:"health_source,omitempty"` + // Name of the project scoping this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region scoping this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetHealthRegionHealthSourceRequest) Reset() { + *x = GetHealthRegionHealthSourceRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[474] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetHealthRegionHealthSourceRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetHealthRegionHealthSourceRequest) ProtoMessage() {} + +func (x *GetHealthRegionHealthSourceRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[474] + 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 GetHealthRegionHealthSourceRequest.ProtoReflect.Descriptor instead. +func (*GetHealthRegionHealthSourceRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{474} +} + +func (x *GetHealthRegionHealthSourceRequest) GetHealthSource() string { + if x != nil { + return x.HealthSource + } + return "" +} + +func (x *GetHealthRegionHealthSourceRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetHealthRegionHealthSourceRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + // A request message for TargetPools.GetHealth. See the method description for details. type GetHealthTargetPoolRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -76657,7 +79202,7 @@ type GetHealthTargetPoolRequest struct { func (x *GetHealthTargetPoolRequest) Reset() { *x = GetHealthTargetPoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[454] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[475] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76669,7 +79214,7 @@ func (x *GetHealthTargetPoolRequest) String() string { func (*GetHealthTargetPoolRequest) ProtoMessage() {} func (x *GetHealthTargetPoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[454] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[475] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76682,7 +79227,7 @@ func (x *GetHealthTargetPoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetHealthTargetPoolRequest.ProtoReflect.Descriptor instead. func (*GetHealthTargetPoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{454} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{475} } func (x *GetHealthTargetPoolRequest) GetInstanceReferenceResource() *InstanceReference { @@ -76728,7 +79273,7 @@ type GetIamPolicyBackendBucketRequest struct { func (x *GetIamPolicyBackendBucketRequest) Reset() { *x = GetIamPolicyBackendBucketRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[455] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[476] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76740,7 +79285,7 @@ func (x *GetIamPolicyBackendBucketRequest) String() string { func (*GetIamPolicyBackendBucketRequest) ProtoMessage() {} func (x *GetIamPolicyBackendBucketRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[455] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[476] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76753,7 +79298,7 @@ func (x *GetIamPolicyBackendBucketRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicyBackendBucketRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyBackendBucketRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{455} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{476} } func (x *GetIamPolicyBackendBucketRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -76792,7 +79337,7 @@ type GetIamPolicyBackendServiceRequest struct { func (x *GetIamPolicyBackendServiceRequest) Reset() { *x = GetIamPolicyBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[456] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[477] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76804,7 +79349,7 @@ func (x *GetIamPolicyBackendServiceRequest) String() string { func (*GetIamPolicyBackendServiceRequest) ProtoMessage() {} func (x *GetIamPolicyBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[456] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[477] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76817,7 +79362,7 @@ func (x *GetIamPolicyBackendServiceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetIamPolicyBackendServiceRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{456} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{477} } func (x *GetIamPolicyBackendServiceRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -76858,7 +79403,7 @@ type GetIamPolicyDiskRequest struct { func (x *GetIamPolicyDiskRequest) Reset() { *x = GetIamPolicyDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[457] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[478] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76870,7 +79415,7 @@ func (x *GetIamPolicyDiskRequest) String() string { func (*GetIamPolicyDiskRequest) ProtoMessage() {} func (x *GetIamPolicyDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[457] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[478] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76883,7 +79428,7 @@ func (x *GetIamPolicyDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicyDiskRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{457} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{478} } func (x *GetIamPolicyDiskRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -76927,7 +79472,7 @@ type GetIamPolicyFirewallPolicyRequest struct { func (x *GetIamPolicyFirewallPolicyRequest) Reset() { *x = GetIamPolicyFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[458] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[479] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76939,7 +79484,7 @@ func (x *GetIamPolicyFirewallPolicyRequest) String() string { func (*GetIamPolicyFirewallPolicyRequest) ProtoMessage() {} func (x *GetIamPolicyFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[458] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[479] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76952,7 +79497,7 @@ func (x *GetIamPolicyFirewallPolicyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetIamPolicyFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{458} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{479} } func (x *GetIamPolicyFirewallPolicyRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -76984,7 +79529,7 @@ type GetIamPolicyImageRequest struct { func (x *GetIamPolicyImageRequest) Reset() { *x = GetIamPolicyImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[459] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[480] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76996,7 +79541,7 @@ func (x *GetIamPolicyImageRequest) String() string { func (*GetIamPolicyImageRequest) ProtoMessage() {} func (x *GetIamPolicyImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[459] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[480] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77009,7 +79554,7 @@ func (x *GetIamPolicyImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicyImageRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{459} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{480} } func (x *GetIamPolicyImageRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77050,7 +79595,7 @@ type GetIamPolicyInstanceRequest struct { func (x *GetIamPolicyInstanceRequest) Reset() { *x = GetIamPolicyInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[460] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[481] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77062,7 +79607,7 @@ func (x *GetIamPolicyInstanceRequest) String() string { func (*GetIamPolicyInstanceRequest) ProtoMessage() {} func (x *GetIamPolicyInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[460] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[481] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77075,7 +79620,7 @@ func (x *GetIamPolicyInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicyInstanceRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{460} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{481} } func (x *GetIamPolicyInstanceRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77121,7 +79666,7 @@ type GetIamPolicyInstanceTemplateRequest struct { func (x *GetIamPolicyInstanceTemplateRequest) Reset() { *x = GetIamPolicyInstanceTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[461] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[482] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77133,7 +79678,7 @@ func (x *GetIamPolicyInstanceTemplateRequest) String() string { func (*GetIamPolicyInstanceTemplateRequest) ProtoMessage() {} func (x *GetIamPolicyInstanceTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[461] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[482] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77146,7 +79691,7 @@ func (x *GetIamPolicyInstanceTemplateRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use GetIamPolicyInstanceTemplateRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyInstanceTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{461} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{482} } func (x *GetIamPolicyInstanceTemplateRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77170,6 +79715,79 @@ func (x *GetIamPolicyInstanceTemplateRequest) GetResource() string { return "" } +// A request message for InstantSnapshotGroups.GetIamPolicy. See the method description for details. +type GetIamPolicyInstantSnapshotGroupRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Requested IAM Policy version. + OptionsRequestedPolicyVersion *int32 `protobuf:"varint,499220029,opt,name=options_requested_policy_version,json=optionsRequestedPolicyVersion,proto3,oneof" json:"options_requested_policy_version,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + // The name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetIamPolicyInstantSnapshotGroupRequest) Reset() { + *x = GetIamPolicyInstantSnapshotGroupRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[483] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetIamPolicyInstantSnapshotGroupRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetIamPolicyInstantSnapshotGroupRequest) ProtoMessage() {} + +func (x *GetIamPolicyInstantSnapshotGroupRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[483] + 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 GetIamPolicyInstantSnapshotGroupRequest.ProtoReflect.Descriptor instead. +func (*GetIamPolicyInstantSnapshotGroupRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{483} +} + +func (x *GetIamPolicyInstantSnapshotGroupRequest) GetOptionsRequestedPolicyVersion() int32 { + if x != nil && x.OptionsRequestedPolicyVersion != nil { + return *x.OptionsRequestedPolicyVersion + } + return 0 +} + +func (x *GetIamPolicyInstantSnapshotGroupRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetIamPolicyInstantSnapshotGroupRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + +func (x *GetIamPolicyInstantSnapshotGroupRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + // A request message for InstantSnapshots.GetIamPolicy. See the method description for details. type GetIamPolicyInstantSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -77187,7 +79805,7 @@ type GetIamPolicyInstantSnapshotRequest struct { func (x *GetIamPolicyInstantSnapshotRequest) Reset() { *x = GetIamPolicyInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[462] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[484] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77199,7 +79817,7 @@ func (x *GetIamPolicyInstantSnapshotRequest) String() string { func (*GetIamPolicyInstantSnapshotRequest) ProtoMessage() {} func (x *GetIamPolicyInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[462] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[484] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77212,7 +79830,7 @@ func (x *GetIamPolicyInstantSnapshotRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetIamPolicyInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{462} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{484} } func (x *GetIamPolicyInstantSnapshotRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77258,7 +79876,7 @@ type GetIamPolicyInterconnectAttachmentGroupRequest struct { func (x *GetIamPolicyInterconnectAttachmentGroupRequest) Reset() { *x = GetIamPolicyInterconnectAttachmentGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[463] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[485] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77270,7 +79888,7 @@ func (x *GetIamPolicyInterconnectAttachmentGroupRequest) String() string { func (*GetIamPolicyInterconnectAttachmentGroupRequest) ProtoMessage() {} func (x *GetIamPolicyInterconnectAttachmentGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[463] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[485] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77283,7 +79901,7 @@ func (x *GetIamPolicyInterconnectAttachmentGroupRequest) ProtoReflect() protoref // Deprecated: Use GetIamPolicyInterconnectAttachmentGroupRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyInterconnectAttachmentGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{463} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{485} } func (x *GetIamPolicyInterconnectAttachmentGroupRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77322,7 +79940,7 @@ type GetIamPolicyInterconnectGroupRequest struct { func (x *GetIamPolicyInterconnectGroupRequest) Reset() { *x = GetIamPolicyInterconnectGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[464] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[486] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77334,7 +79952,7 @@ func (x *GetIamPolicyInterconnectGroupRequest) String() string { func (*GetIamPolicyInterconnectGroupRequest) ProtoMessage() {} func (x *GetIamPolicyInterconnectGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[464] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[486] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77347,7 +79965,7 @@ func (x *GetIamPolicyInterconnectGroupRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetIamPolicyInterconnectGroupRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyInterconnectGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{464} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{486} } func (x *GetIamPolicyInterconnectGroupRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77386,7 +80004,7 @@ type GetIamPolicyLicenseRequest struct { func (x *GetIamPolicyLicenseRequest) Reset() { *x = GetIamPolicyLicenseRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[465] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[487] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77398,7 +80016,7 @@ func (x *GetIamPolicyLicenseRequest) String() string { func (*GetIamPolicyLicenseRequest) ProtoMessage() {} func (x *GetIamPolicyLicenseRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[465] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[487] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77411,7 +80029,7 @@ func (x *GetIamPolicyLicenseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicyLicenseRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyLicenseRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{465} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{487} } func (x *GetIamPolicyLicenseRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77450,7 +80068,7 @@ type GetIamPolicyMachineImageRequest struct { func (x *GetIamPolicyMachineImageRequest) Reset() { *x = GetIamPolicyMachineImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[466] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[488] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77462,7 +80080,7 @@ func (x *GetIamPolicyMachineImageRequest) String() string { func (*GetIamPolicyMachineImageRequest) ProtoMessage() {} func (x *GetIamPolicyMachineImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[466] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[488] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77475,7 +80093,7 @@ func (x *GetIamPolicyMachineImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicyMachineImageRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyMachineImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{466} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{488} } func (x *GetIamPolicyMachineImageRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77516,7 +80134,7 @@ type GetIamPolicyNetworkAttachmentRequest struct { func (x *GetIamPolicyNetworkAttachmentRequest) Reset() { *x = GetIamPolicyNetworkAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[467] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[489] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77528,7 +80146,7 @@ func (x *GetIamPolicyNetworkAttachmentRequest) String() string { func (*GetIamPolicyNetworkAttachmentRequest) ProtoMessage() {} func (x *GetIamPolicyNetworkAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[467] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[489] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77541,7 +80159,7 @@ func (x *GetIamPolicyNetworkAttachmentRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetIamPolicyNetworkAttachmentRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyNetworkAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{467} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{489} } func (x *GetIamPolicyNetworkAttachmentRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77587,7 +80205,7 @@ type GetIamPolicyNetworkFirewallPolicyRequest struct { func (x *GetIamPolicyNetworkFirewallPolicyRequest) Reset() { *x = GetIamPolicyNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[468] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[490] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77599,7 +80217,7 @@ func (x *GetIamPolicyNetworkFirewallPolicyRequest) String() string { func (*GetIamPolicyNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *GetIamPolicyNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[468] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[490] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77612,7 +80230,7 @@ func (x *GetIamPolicyNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.M // Deprecated: Use GetIamPolicyNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{468} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{490} } func (x *GetIamPolicyNetworkFirewallPolicyRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77653,7 +80271,7 @@ type GetIamPolicyNodeGroupRequest struct { func (x *GetIamPolicyNodeGroupRequest) Reset() { *x = GetIamPolicyNodeGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[469] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[491] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77665,7 +80283,7 @@ func (x *GetIamPolicyNodeGroupRequest) String() string { func (*GetIamPolicyNodeGroupRequest) ProtoMessage() {} func (x *GetIamPolicyNodeGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[469] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[491] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77678,7 +80296,7 @@ func (x *GetIamPolicyNodeGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicyNodeGroupRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyNodeGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{469} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{491} } func (x *GetIamPolicyNodeGroupRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77726,7 +80344,7 @@ type GetIamPolicyNodeTemplateRequest struct { func (x *GetIamPolicyNodeTemplateRequest) Reset() { *x = GetIamPolicyNodeTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[470] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[492] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77738,7 +80356,7 @@ func (x *GetIamPolicyNodeTemplateRequest) String() string { func (*GetIamPolicyNodeTemplateRequest) ProtoMessage() {} func (x *GetIamPolicyNodeTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[470] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[492] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77751,7 +80369,7 @@ func (x *GetIamPolicyNodeTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicyNodeTemplateRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyNodeTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{470} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{492} } func (x *GetIamPolicyNodeTemplateRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77782,6 +80400,79 @@ func (x *GetIamPolicyNodeTemplateRequest) GetResource() string { return "" } +// A request message for RegionBackendBuckets.GetIamPolicy. See the method description for details. +type GetIamPolicyRegionBackendBucketRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Requested IAM Policy version. + OptionsRequestedPolicyVersion *int32 `protobuf:"varint,499220029,opt,name=options_requested_policy_version,json=optionsRequestedPolicyVersion,proto3,oneof" json:"options_requested_policy_version,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetIamPolicyRegionBackendBucketRequest) Reset() { + *x = GetIamPolicyRegionBackendBucketRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[493] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetIamPolicyRegionBackendBucketRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetIamPolicyRegionBackendBucketRequest) ProtoMessage() {} + +func (x *GetIamPolicyRegionBackendBucketRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[493] + 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 GetIamPolicyRegionBackendBucketRequest.ProtoReflect.Descriptor instead. +func (*GetIamPolicyRegionBackendBucketRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{493} +} + +func (x *GetIamPolicyRegionBackendBucketRequest) GetOptionsRequestedPolicyVersion() int32 { + if x != nil && x.OptionsRequestedPolicyVersion != nil { + return *x.OptionsRequestedPolicyVersion + } + return 0 +} + +func (x *GetIamPolicyRegionBackendBucketRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetIamPolicyRegionBackendBucketRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *GetIamPolicyRegionBackendBucketRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + // A request message for RegionBackendServices.GetIamPolicy. See the method description for details. type GetIamPolicyRegionBackendServiceRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -77799,7 +80490,7 @@ type GetIamPolicyRegionBackendServiceRequest struct { func (x *GetIamPolicyRegionBackendServiceRequest) Reset() { *x = GetIamPolicyRegionBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[471] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[494] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77811,7 +80502,7 @@ func (x *GetIamPolicyRegionBackendServiceRequest) String() string { func (*GetIamPolicyRegionBackendServiceRequest) ProtoMessage() {} func (x *GetIamPolicyRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[471] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[494] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77824,7 +80515,7 @@ func (x *GetIamPolicyRegionBackendServiceRequest) ProtoReflect() protoreflect.Me // Deprecated: Use GetIamPolicyRegionBackendServiceRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyRegionBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{471} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{494} } func (x *GetIamPolicyRegionBackendServiceRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77872,7 +80563,7 @@ type GetIamPolicyRegionDiskRequest struct { func (x *GetIamPolicyRegionDiskRequest) Reset() { *x = GetIamPolicyRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[472] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[495] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77884,7 +80575,7 @@ func (x *GetIamPolicyRegionDiskRequest) String() string { func (*GetIamPolicyRegionDiskRequest) ProtoMessage() {} func (x *GetIamPolicyRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[472] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[495] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77897,7 +80588,7 @@ func (x *GetIamPolicyRegionDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicyRegionDiskRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{472} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{495} } func (x *GetIamPolicyRegionDiskRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -77928,6 +80619,79 @@ func (x *GetIamPolicyRegionDiskRequest) GetResource() string { return "" } +// A request message for RegionInstantSnapshotGroups.GetIamPolicy. See the method description for details. +type GetIamPolicyRegionInstantSnapshotGroupRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Requested IAM Policy version. + OptionsRequestedPolicyVersion *int32 `protobuf:"varint,499220029,opt,name=options_requested_policy_version,json=optionsRequestedPolicyVersion,proto3,oneof" json:"options_requested_policy_version,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetIamPolicyRegionInstantSnapshotGroupRequest) Reset() { + *x = GetIamPolicyRegionInstantSnapshotGroupRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[496] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetIamPolicyRegionInstantSnapshotGroupRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetIamPolicyRegionInstantSnapshotGroupRequest) ProtoMessage() {} + +func (x *GetIamPolicyRegionInstantSnapshotGroupRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[496] + 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 GetIamPolicyRegionInstantSnapshotGroupRequest.ProtoReflect.Descriptor instead. +func (*GetIamPolicyRegionInstantSnapshotGroupRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{496} +} + +func (x *GetIamPolicyRegionInstantSnapshotGroupRequest) GetOptionsRequestedPolicyVersion() int32 { + if x != nil && x.OptionsRequestedPolicyVersion != nil { + return *x.OptionsRequestedPolicyVersion + } + return 0 +} + +func (x *GetIamPolicyRegionInstantSnapshotGroupRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetIamPolicyRegionInstantSnapshotGroupRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *GetIamPolicyRegionInstantSnapshotGroupRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + // A request message for RegionInstantSnapshots.GetIamPolicy. See the method description for details. type GetIamPolicyRegionInstantSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -77945,7 +80709,7 @@ type GetIamPolicyRegionInstantSnapshotRequest struct { func (x *GetIamPolicyRegionInstantSnapshotRequest) Reset() { *x = GetIamPolicyRegionInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[473] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[497] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77957,7 +80721,7 @@ func (x *GetIamPolicyRegionInstantSnapshotRequest) String() string { func (*GetIamPolicyRegionInstantSnapshotRequest) ProtoMessage() {} func (x *GetIamPolicyRegionInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[473] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[497] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77970,7 +80734,7 @@ func (x *GetIamPolicyRegionInstantSnapshotRequest) ProtoReflect() protoreflect.M // Deprecated: Use GetIamPolicyRegionInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyRegionInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{473} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{497} } func (x *GetIamPolicyRegionInstantSnapshotRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -78018,7 +80782,7 @@ type GetIamPolicyRegionNetworkFirewallPolicyRequest struct { func (x *GetIamPolicyRegionNetworkFirewallPolicyRequest) Reset() { *x = GetIamPolicyRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[474] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[498] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78030,7 +80794,7 @@ func (x *GetIamPolicyRegionNetworkFirewallPolicyRequest) String() string { func (*GetIamPolicyRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *GetIamPolicyRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[474] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[498] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78043,7 +80807,7 @@ func (x *GetIamPolicyRegionNetworkFirewallPolicyRequest) ProtoReflect() protoref // Deprecated: Use GetIamPolicyRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{474} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{498} } func (x *GetIamPolicyRegionNetworkFirewallPolicyRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -78074,6 +80838,79 @@ func (x *GetIamPolicyRegionNetworkFirewallPolicyRequest) GetResource() string { return "" } +// A request message for RegionSnapshots.GetIamPolicy. See the method description for details. +type GetIamPolicyRegionSnapshotRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Requested IAM Policy version. + OptionsRequestedPolicyVersion *int32 `protobuf:"varint,499220029,opt,name=options_requested_policy_version,json=optionsRequestedPolicyVersion,proto3,oneof" json:"options_requested_policy_version,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetIamPolicyRegionSnapshotRequest) Reset() { + *x = GetIamPolicyRegionSnapshotRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[499] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetIamPolicyRegionSnapshotRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetIamPolicyRegionSnapshotRequest) ProtoMessage() {} + +func (x *GetIamPolicyRegionSnapshotRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[499] + 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 GetIamPolicyRegionSnapshotRequest.ProtoReflect.Descriptor instead. +func (*GetIamPolicyRegionSnapshotRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{499} +} + +func (x *GetIamPolicyRegionSnapshotRequest) GetOptionsRequestedPolicyVersion() int32 { + if x != nil && x.OptionsRequestedPolicyVersion != nil { + return *x.OptionsRequestedPolicyVersion + } + return 0 +} + +func (x *GetIamPolicyRegionSnapshotRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetIamPolicyRegionSnapshotRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *GetIamPolicyRegionSnapshotRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + // A request message for ReservationBlocks.GetIamPolicy. See the method description for details. type GetIamPolicyReservationBlockRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -78093,7 +80930,7 @@ type GetIamPolicyReservationBlockRequest struct { func (x *GetIamPolicyReservationBlockRequest) Reset() { *x = GetIamPolicyReservationBlockRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[475] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[500] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78105,7 +80942,7 @@ func (x *GetIamPolicyReservationBlockRequest) String() string { func (*GetIamPolicyReservationBlockRequest) ProtoMessage() {} func (x *GetIamPolicyReservationBlockRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[475] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[500] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78118,7 +80955,7 @@ func (x *GetIamPolicyReservationBlockRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use GetIamPolicyReservationBlockRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyReservationBlockRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{475} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{500} } func (x *GetIamPolicyReservationBlockRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -78173,7 +81010,7 @@ type GetIamPolicyReservationRequest struct { func (x *GetIamPolicyReservationRequest) Reset() { *x = GetIamPolicyReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[476] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[501] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78185,7 +81022,7 @@ func (x *GetIamPolicyReservationRequest) String() string { func (*GetIamPolicyReservationRequest) ProtoMessage() {} func (x *GetIamPolicyReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[476] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[501] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78198,7 +81035,7 @@ func (x *GetIamPolicyReservationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicyReservationRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{476} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{501} } func (x *GetIamPolicyReservationRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -78248,7 +81085,7 @@ type GetIamPolicyReservationSubBlockRequest struct { func (x *GetIamPolicyReservationSubBlockRequest) Reset() { *x = GetIamPolicyReservationSubBlockRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[477] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[502] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78260,7 +81097,7 @@ func (x *GetIamPolicyReservationSubBlockRequest) String() string { func (*GetIamPolicyReservationSubBlockRequest) ProtoMessage() {} func (x *GetIamPolicyReservationSubBlockRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[477] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[502] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78273,7 +81110,7 @@ func (x *GetIamPolicyReservationSubBlockRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use GetIamPolicyReservationSubBlockRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyReservationSubBlockRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{477} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{502} } func (x *GetIamPolicyReservationSubBlockRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -78328,7 +81165,7 @@ type GetIamPolicyResourcePolicyRequest struct { func (x *GetIamPolicyResourcePolicyRequest) Reset() { *x = GetIamPolicyResourcePolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[478] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[503] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78340,7 +81177,7 @@ func (x *GetIamPolicyResourcePolicyRequest) String() string { func (*GetIamPolicyResourcePolicyRequest) ProtoMessage() {} func (x *GetIamPolicyResourcePolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[478] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[503] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78353,7 +81190,7 @@ func (x *GetIamPolicyResourcePolicyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetIamPolicyResourcePolicyRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyResourcePolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{478} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{503} } func (x *GetIamPolicyResourcePolicyRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -78401,7 +81238,7 @@ type GetIamPolicyServiceAttachmentRequest struct { func (x *GetIamPolicyServiceAttachmentRequest) Reset() { *x = GetIamPolicyServiceAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[479] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[504] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78413,7 +81250,7 @@ func (x *GetIamPolicyServiceAttachmentRequest) String() string { func (*GetIamPolicyServiceAttachmentRequest) ProtoMessage() {} func (x *GetIamPolicyServiceAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[479] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[504] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78426,7 +81263,7 @@ func (x *GetIamPolicyServiceAttachmentRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetIamPolicyServiceAttachmentRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyServiceAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{479} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{504} } func (x *GetIamPolicyServiceAttachmentRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -78472,7 +81309,7 @@ type GetIamPolicySnapshotRequest struct { func (x *GetIamPolicySnapshotRequest) Reset() { *x = GetIamPolicySnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[480] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[505] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78484,7 +81321,7 @@ func (x *GetIamPolicySnapshotRequest) String() string { func (*GetIamPolicySnapshotRequest) ProtoMessage() {} func (x *GetIamPolicySnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[480] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[505] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78497,7 +81334,7 @@ func (x *GetIamPolicySnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicySnapshotRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicySnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{480} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{505} } func (x *GetIamPolicySnapshotRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -78538,7 +81375,7 @@ type GetIamPolicyStoragePoolRequest struct { func (x *GetIamPolicyStoragePoolRequest) Reset() { *x = GetIamPolicyStoragePoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[481] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[506] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78550,7 +81387,7 @@ func (x *GetIamPolicyStoragePoolRequest) String() string { func (*GetIamPolicyStoragePoolRequest) ProtoMessage() {} func (x *GetIamPolicyStoragePoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[481] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[506] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78563,7 +81400,7 @@ func (x *GetIamPolicyStoragePoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicyStoragePoolRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicyStoragePoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{481} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{506} } func (x *GetIamPolicyStoragePoolRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -78611,7 +81448,7 @@ type GetIamPolicySubnetworkRequest struct { func (x *GetIamPolicySubnetworkRequest) Reset() { *x = GetIamPolicySubnetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[482] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[507] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78623,7 +81460,7 @@ func (x *GetIamPolicySubnetworkRequest) String() string { func (*GetIamPolicySubnetworkRequest) ProtoMessage() {} func (x *GetIamPolicySubnetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[482] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[507] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78636,7 +81473,7 @@ func (x *GetIamPolicySubnetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIamPolicySubnetworkRequest.ProtoReflect.Descriptor instead. func (*GetIamPolicySubnetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{482} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{507} } func (x *GetIamPolicySubnetworkRequest) GetOptionsRequestedPolicyVersion() int32 { @@ -78682,7 +81519,7 @@ type GetImageFamilyViewRequest struct { func (x *GetImageFamilyViewRequest) Reset() { *x = GetImageFamilyViewRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[483] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[508] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78694,7 +81531,7 @@ func (x *GetImageFamilyViewRequest) String() string { func (*GetImageFamilyViewRequest) ProtoMessage() {} func (x *GetImageFamilyViewRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[483] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[508] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78707,7 +81544,7 @@ func (x *GetImageFamilyViewRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetImageFamilyViewRequest.ProtoReflect.Descriptor instead. func (*GetImageFamilyViewRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{483} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{508} } func (x *GetImageFamilyViewRequest) GetFamily() string { @@ -78744,7 +81581,7 @@ type GetImageRequest struct { func (x *GetImageRequest) Reset() { *x = GetImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[484] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[509] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78756,7 +81593,7 @@ func (x *GetImageRequest) String() string { func (*GetImageRequest) ProtoMessage() {} func (x *GetImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[484] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[509] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78769,7 +81606,7 @@ func (x *GetImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetImageRequest.ProtoReflect.Descriptor instead. func (*GetImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{484} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{509} } func (x *GetImageRequest) GetImage() string { @@ -78802,7 +81639,7 @@ type GetInstanceGroupManagerRequest struct { func (x *GetInstanceGroupManagerRequest) Reset() { *x = GetInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[485] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[510] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78814,7 +81651,7 @@ func (x *GetInstanceGroupManagerRequest) String() string { func (*GetInstanceGroupManagerRequest) ProtoMessage() {} func (x *GetInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[485] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[510] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78827,7 +81664,7 @@ func (x *GetInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*GetInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{485} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{510} } func (x *GetInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -78871,7 +81708,7 @@ type GetInstanceGroupManagerResizeRequestRequest struct { func (x *GetInstanceGroupManagerResizeRequestRequest) Reset() { *x = GetInstanceGroupManagerResizeRequestRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[486] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[511] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78883,7 +81720,7 @@ func (x *GetInstanceGroupManagerResizeRequestRequest) String() string { func (*GetInstanceGroupManagerResizeRequestRequest) ProtoMessage() {} func (x *GetInstanceGroupManagerResizeRequestRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[486] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[511] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78896,7 +81733,7 @@ func (x *GetInstanceGroupManagerResizeRequestRequest) ProtoReflect() protoreflec // Deprecated: Use GetInstanceGroupManagerResizeRequestRequest.ProtoReflect.Descriptor instead. func (*GetInstanceGroupManagerResizeRequestRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{486} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{511} } func (x *GetInstanceGroupManagerResizeRequestRequest) GetInstanceGroupManager() string { @@ -78943,7 +81780,7 @@ type GetInstanceGroupRequest struct { func (x *GetInstanceGroupRequest) Reset() { *x = GetInstanceGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[487] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[512] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78955,7 +81792,7 @@ func (x *GetInstanceGroupRequest) String() string { func (*GetInstanceGroupRequest) ProtoMessage() {} func (x *GetInstanceGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[487] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[512] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78968,7 +81805,7 @@ func (x *GetInstanceGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInstanceGroupRequest.ProtoReflect.Descriptor instead. func (*GetInstanceGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{487} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{512} } func (x *GetInstanceGroupRequest) GetInstanceGroup() string { @@ -79007,7 +81844,7 @@ type GetInstanceRequest struct { func (x *GetInstanceRequest) Reset() { *x = GetInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[488] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[513] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79019,7 +81856,7 @@ func (x *GetInstanceRequest) String() string { func (*GetInstanceRequest) ProtoMessage() {} func (x *GetInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[488] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[513] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79032,7 +81869,7 @@ func (x *GetInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInstanceRequest.ProtoReflect.Descriptor instead. func (*GetInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{488} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{513} } func (x *GetInstanceRequest) GetInstance() string { @@ -79069,7 +81906,7 @@ type GetInstanceSettingRequest struct { func (x *GetInstanceSettingRequest) Reset() { *x = GetInstanceSettingRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[489] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[514] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79081,7 +81918,7 @@ func (x *GetInstanceSettingRequest) String() string { func (*GetInstanceSettingRequest) ProtoMessage() {} func (x *GetInstanceSettingRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[489] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[514] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79094,7 +81931,7 @@ func (x *GetInstanceSettingRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInstanceSettingRequest.ProtoReflect.Descriptor instead. func (*GetInstanceSettingRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{489} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{514} } func (x *GetInstanceSettingRequest) GetProject() string { @@ -79124,7 +81961,7 @@ type GetInstanceTemplateRequest struct { func (x *GetInstanceTemplateRequest) Reset() { *x = GetInstanceTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[490] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[515] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79136,7 +81973,7 @@ func (x *GetInstanceTemplateRequest) String() string { func (*GetInstanceTemplateRequest) ProtoMessage() {} func (x *GetInstanceTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[490] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[515] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79149,7 +81986,7 @@ func (x *GetInstanceTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInstanceTemplateRequest.ProtoReflect.Descriptor instead. func (*GetInstanceTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{490} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{515} } func (x *GetInstanceTemplateRequest) GetInstanceTemplate() string { @@ -79166,6 +82003,70 @@ func (x *GetInstanceTemplateRequest) GetProject() string { return "" } +// A request message for InstantSnapshotGroups.Get. See the method description for details. +type GetInstantSnapshotGroupRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the InstantSnapshotGroup resource to return. + InstantSnapshotGroup string `protobuf:"bytes,223180386,opt,name=instant_snapshot_group,json=instantSnapshotGroup,proto3" json:"instant_snapshot_group,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetInstantSnapshotGroupRequest) Reset() { + *x = GetInstantSnapshotGroupRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[516] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetInstantSnapshotGroupRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetInstantSnapshotGroupRequest) ProtoMessage() {} + +func (x *GetInstantSnapshotGroupRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[516] + 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 GetInstantSnapshotGroupRequest.ProtoReflect.Descriptor instead. +func (*GetInstantSnapshotGroupRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{516} +} + +func (x *GetInstantSnapshotGroupRequest) GetInstantSnapshotGroup() string { + if x != nil { + return x.InstantSnapshotGroup + } + return "" +} + +func (x *GetInstantSnapshotGroupRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetInstantSnapshotGroupRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + // A request message for InstantSnapshots.Get. See the method description for details. type GetInstantSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -79181,7 +82082,7 @@ type GetInstantSnapshotRequest struct { func (x *GetInstantSnapshotRequest) Reset() { *x = GetInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[491] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[517] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79193,7 +82094,7 @@ func (x *GetInstantSnapshotRequest) String() string { func (*GetInstantSnapshotRequest) ProtoMessage() {} func (x *GetInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[491] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[517] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79206,7 +82107,7 @@ func (x *GetInstantSnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*GetInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{491} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{517} } func (x *GetInstantSnapshotRequest) GetInstantSnapshot() string { @@ -79243,7 +82144,7 @@ type GetInterconnectAttachmentGroupRequest struct { func (x *GetInterconnectAttachmentGroupRequest) Reset() { *x = GetInterconnectAttachmentGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[492] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[518] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79255,7 +82156,7 @@ func (x *GetInterconnectAttachmentGroupRequest) String() string { func (*GetInterconnectAttachmentGroupRequest) ProtoMessage() {} func (x *GetInterconnectAttachmentGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[492] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[518] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79268,7 +82169,7 @@ func (x *GetInterconnectAttachmentGroupRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use GetInterconnectAttachmentGroupRequest.ProtoReflect.Descriptor instead. func (*GetInterconnectAttachmentGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{492} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{518} } func (x *GetInterconnectAttachmentGroupRequest) GetInterconnectAttachmentGroup() string { @@ -79300,7 +82201,7 @@ type GetInterconnectAttachmentRequest struct { func (x *GetInterconnectAttachmentRequest) Reset() { *x = GetInterconnectAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[493] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[519] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79312,7 +82213,7 @@ func (x *GetInterconnectAttachmentRequest) String() string { func (*GetInterconnectAttachmentRequest) ProtoMessage() {} func (x *GetInterconnectAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[493] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[519] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79325,7 +82226,7 @@ func (x *GetInterconnectAttachmentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInterconnectAttachmentRequest.ProtoReflect.Descriptor instead. func (*GetInterconnectAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{493} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{519} } func (x *GetInterconnectAttachmentRequest) GetInterconnectAttachment() string { @@ -79362,7 +82263,7 @@ type GetInterconnectGroupRequest struct { func (x *GetInterconnectGroupRequest) Reset() { *x = GetInterconnectGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[494] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[520] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79374,7 +82275,7 @@ func (x *GetInterconnectGroupRequest) String() string { func (*GetInterconnectGroupRequest) ProtoMessage() {} func (x *GetInterconnectGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[494] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[520] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79387,7 +82288,7 @@ func (x *GetInterconnectGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInterconnectGroupRequest.ProtoReflect.Descriptor instead. func (*GetInterconnectGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{494} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{520} } func (x *GetInterconnectGroupRequest) GetInterconnectGroup() string { @@ -79417,7 +82318,7 @@ type GetInterconnectLocationRequest struct { func (x *GetInterconnectLocationRequest) Reset() { *x = GetInterconnectLocationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[495] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[521] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79429,7 +82330,7 @@ func (x *GetInterconnectLocationRequest) String() string { func (*GetInterconnectLocationRequest) ProtoMessage() {} func (x *GetInterconnectLocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[495] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[521] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79442,7 +82343,7 @@ func (x *GetInterconnectLocationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInterconnectLocationRequest.ProtoReflect.Descriptor instead. func (*GetInterconnectLocationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{495} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{521} } func (x *GetInterconnectLocationRequest) GetInterconnectLocation() string { @@ -79472,7 +82373,7 @@ type GetInterconnectRemoteLocationRequest struct { func (x *GetInterconnectRemoteLocationRequest) Reset() { *x = GetInterconnectRemoteLocationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[496] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[522] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79484,7 +82385,7 @@ func (x *GetInterconnectRemoteLocationRequest) String() string { func (*GetInterconnectRemoteLocationRequest) ProtoMessage() {} func (x *GetInterconnectRemoteLocationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[496] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[522] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79497,7 +82398,7 @@ func (x *GetInterconnectRemoteLocationRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetInterconnectRemoteLocationRequest.ProtoReflect.Descriptor instead. func (*GetInterconnectRemoteLocationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{496} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{522} } func (x *GetInterconnectRemoteLocationRequest) GetInterconnectRemoteLocation() string { @@ -79527,7 +82428,7 @@ type GetInterconnectRequest struct { func (x *GetInterconnectRequest) Reset() { *x = GetInterconnectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[497] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[523] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79539,7 +82440,7 @@ func (x *GetInterconnectRequest) String() string { func (*GetInterconnectRequest) ProtoMessage() {} func (x *GetInterconnectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[497] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[523] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79552,7 +82453,7 @@ func (x *GetInterconnectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInterconnectRequest.ProtoReflect.Descriptor instead. func (*GetInterconnectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{497} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{523} } func (x *GetInterconnectRequest) GetInterconnect() string { @@ -79582,7 +82483,7 @@ type GetLicenseCodeRequest struct { func (x *GetLicenseCodeRequest) Reset() { *x = GetLicenseCodeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[498] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[524] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79594,7 +82495,7 @@ func (x *GetLicenseCodeRequest) String() string { func (*GetLicenseCodeRequest) ProtoMessage() {} func (x *GetLicenseCodeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[498] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[524] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79607,7 +82508,7 @@ func (x *GetLicenseCodeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetLicenseCodeRequest.ProtoReflect.Descriptor instead. func (*GetLicenseCodeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{498} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{524} } func (x *GetLicenseCodeRequest) GetLicenseCode() string { @@ -79637,7 +82538,7 @@ type GetLicenseRequest struct { func (x *GetLicenseRequest) Reset() { *x = GetLicenseRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[499] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[525] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79649,7 +82550,7 @@ func (x *GetLicenseRequest) String() string { func (*GetLicenseRequest) ProtoMessage() {} func (x *GetLicenseRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[499] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[525] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79662,7 +82563,7 @@ func (x *GetLicenseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetLicenseRequest.ProtoReflect.Descriptor instead. func (*GetLicenseRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{499} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{525} } func (x *GetLicenseRequest) GetLicense() string { @@ -79692,7 +82593,7 @@ type GetMachineImageRequest struct { func (x *GetMachineImageRequest) Reset() { *x = GetMachineImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[500] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[526] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79704,7 +82605,7 @@ func (x *GetMachineImageRequest) String() string { func (*GetMachineImageRequest) ProtoMessage() {} func (x *GetMachineImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[500] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[526] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79717,7 +82618,7 @@ func (x *GetMachineImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetMachineImageRequest.ProtoReflect.Descriptor instead. func (*GetMachineImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{500} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{526} } func (x *GetMachineImageRequest) GetMachineImage() string { @@ -79749,7 +82650,7 @@ type GetMachineTypeRequest struct { func (x *GetMachineTypeRequest) Reset() { *x = GetMachineTypeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[501] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[527] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79761,7 +82662,7 @@ func (x *GetMachineTypeRequest) String() string { func (*GetMachineTypeRequest) ProtoMessage() {} func (x *GetMachineTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[501] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[527] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79774,7 +82675,7 @@ func (x *GetMachineTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetMachineTypeRequest.ProtoReflect.Descriptor instead. func (*GetMachineTypeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{501} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{527} } func (x *GetMachineTypeRequest) GetMachineType() string { @@ -79811,7 +82712,7 @@ type GetMacsecConfigInterconnectRequest struct { func (x *GetMacsecConfigInterconnectRequest) Reset() { *x = GetMacsecConfigInterconnectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[502] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[528] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79823,7 +82724,7 @@ func (x *GetMacsecConfigInterconnectRequest) String() string { func (*GetMacsecConfigInterconnectRequest) ProtoMessage() {} func (x *GetMacsecConfigInterconnectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[502] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[528] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79836,7 +82737,7 @@ func (x *GetMacsecConfigInterconnectRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetMacsecConfigInterconnectRequest.ProtoReflect.Descriptor instead. func (*GetMacsecConfigInterconnectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{502} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{528} } func (x *GetMacsecConfigInterconnectRequest) GetInterconnect() string { @@ -79873,7 +82774,7 @@ type GetNatIpInfoRouterRequest struct { func (x *GetNatIpInfoRouterRequest) Reset() { *x = GetNatIpInfoRouterRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[503] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[529] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79885,7 +82786,7 @@ func (x *GetNatIpInfoRouterRequest) String() string { func (*GetNatIpInfoRouterRequest) ProtoMessage() {} func (x *GetNatIpInfoRouterRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[503] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[529] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79898,7 +82799,7 @@ func (x *GetNatIpInfoRouterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNatIpInfoRouterRequest.ProtoReflect.Descriptor instead. func (*GetNatIpInfoRouterRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{503} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{529} } func (x *GetNatIpInfoRouterRequest) GetNatName() string { @@ -80037,7 +82938,7 @@ type GetNatMappingInfoRoutersRequest struct { func (x *GetNatMappingInfoRoutersRequest) Reset() { *x = GetNatMappingInfoRoutersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[504] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[530] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80049,7 +82950,7 @@ func (x *GetNatMappingInfoRoutersRequest) String() string { func (*GetNatMappingInfoRoutersRequest) ProtoMessage() {} func (x *GetNatMappingInfoRoutersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[504] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[530] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80062,7 +82963,7 @@ func (x *GetNatMappingInfoRoutersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNatMappingInfoRoutersRequest.ProtoReflect.Descriptor instead. func (*GetNatMappingInfoRoutersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{504} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{530} } func (x *GetNatMappingInfoRoutersRequest) GetFilter() string { @@ -80143,7 +83044,7 @@ type GetNetworkAttachmentRequest struct { func (x *GetNetworkAttachmentRequest) Reset() { *x = GetNetworkAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[505] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[531] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80155,7 +83056,7 @@ func (x *GetNetworkAttachmentRequest) String() string { func (*GetNetworkAttachmentRequest) ProtoMessage() {} func (x *GetNetworkAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[505] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[531] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80168,7 +83069,7 @@ func (x *GetNetworkAttachmentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNetworkAttachmentRequest.ProtoReflect.Descriptor instead. func (*GetNetworkAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{505} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{531} } func (x *GetNetworkAttachmentRequest) GetNetworkAttachment() string { @@ -80207,7 +83108,7 @@ type GetNetworkEdgeSecurityServiceRequest struct { func (x *GetNetworkEdgeSecurityServiceRequest) Reset() { *x = GetNetworkEdgeSecurityServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[506] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[532] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80219,7 +83120,7 @@ func (x *GetNetworkEdgeSecurityServiceRequest) String() string { func (*GetNetworkEdgeSecurityServiceRequest) ProtoMessage() {} func (x *GetNetworkEdgeSecurityServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[506] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[532] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80232,7 +83133,7 @@ func (x *GetNetworkEdgeSecurityServiceRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetNetworkEdgeSecurityServiceRequest.ProtoReflect.Descriptor instead. func (*GetNetworkEdgeSecurityServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{506} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{532} } func (x *GetNetworkEdgeSecurityServiceRequest) GetNetworkEdgeSecurityService() string { @@ -80272,7 +83173,7 @@ type GetNetworkEndpointGroupRequest struct { func (x *GetNetworkEndpointGroupRequest) Reset() { *x = GetNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[507] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[533] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80284,7 +83185,7 @@ func (x *GetNetworkEndpointGroupRequest) String() string { func (*GetNetworkEndpointGroupRequest) ProtoMessage() {} func (x *GetNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[507] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[533] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80297,7 +83198,7 @@ func (x *GetNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*GetNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{507} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{533} } func (x *GetNetworkEndpointGroupRequest) GetNetworkEndpointGroup() string { @@ -80334,7 +83235,7 @@ type GetNetworkFirewallPolicyRequest struct { func (x *GetNetworkFirewallPolicyRequest) Reset() { *x = GetNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[508] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[534] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80346,7 +83247,7 @@ func (x *GetNetworkFirewallPolicyRequest) String() string { func (*GetNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *GetNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[508] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[534] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80359,7 +83260,7 @@ func (x *GetNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{508} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{534} } func (x *GetNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -80389,7 +83290,7 @@ type GetNetworkProfileRequest struct { func (x *GetNetworkProfileRequest) Reset() { *x = GetNetworkProfileRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[509] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[535] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80401,7 +83302,7 @@ func (x *GetNetworkProfileRequest) String() string { func (*GetNetworkProfileRequest) ProtoMessage() {} func (x *GetNetworkProfileRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[509] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[535] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80414,7 +83315,7 @@ func (x *GetNetworkProfileRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNetworkProfileRequest.ProtoReflect.Descriptor instead. func (*GetNetworkProfileRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{509} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{535} } func (x *GetNetworkProfileRequest) GetNetworkProfile() string { @@ -80444,7 +83345,7 @@ type GetNetworkRequest struct { func (x *GetNetworkRequest) Reset() { *x = GetNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[510] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[536] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80456,7 +83357,7 @@ func (x *GetNetworkRequest) String() string { func (*GetNetworkRequest) ProtoMessage() {} func (x *GetNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[510] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[536] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80469,7 +83370,7 @@ func (x *GetNetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNetworkRequest.ProtoReflect.Descriptor instead. func (*GetNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{510} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{536} } func (x *GetNetworkRequest) GetNetwork() string { @@ -80501,7 +83402,7 @@ type GetNodeGroupRequest struct { func (x *GetNodeGroupRequest) Reset() { *x = GetNodeGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[511] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[537] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80513,7 +83414,7 @@ func (x *GetNodeGroupRequest) String() string { func (*GetNodeGroupRequest) ProtoMessage() {} func (x *GetNodeGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[511] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[537] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80526,7 +83427,7 @@ func (x *GetNodeGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNodeGroupRequest.ProtoReflect.Descriptor instead. func (*GetNodeGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{511} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{537} } func (x *GetNodeGroupRequest) GetNodeGroup() string { @@ -80565,7 +83466,7 @@ type GetNodeTemplateRequest struct { func (x *GetNodeTemplateRequest) Reset() { *x = GetNodeTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[512] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[538] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80577,7 +83478,7 @@ func (x *GetNodeTemplateRequest) String() string { func (*GetNodeTemplateRequest) ProtoMessage() {} func (x *GetNodeTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[512] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[538] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80590,7 +83491,7 @@ func (x *GetNodeTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNodeTemplateRequest.ProtoReflect.Descriptor instead. func (*GetNodeTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{512} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{538} } func (x *GetNodeTemplateRequest) GetNodeTemplate() string { @@ -80629,7 +83530,7 @@ type GetNodeTypeRequest struct { func (x *GetNodeTypeRequest) Reset() { *x = GetNodeTypeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[513] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[539] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80641,7 +83542,7 @@ func (x *GetNodeTypeRequest) String() string { func (*GetNodeTypeRequest) ProtoMessage() {} func (x *GetNodeTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[513] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[539] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80654,7 +83555,7 @@ func (x *GetNodeTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetNodeTypeRequest.ProtoReflect.Descriptor instead. func (*GetNodeTypeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{513} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{539} } func (x *GetNodeTypeRequest) GetNodeType() string { @@ -80691,7 +83592,7 @@ type GetOperationalStatusInterconnectAttachmentGroupRequest struct { func (x *GetOperationalStatusInterconnectAttachmentGroupRequest) Reset() { *x = GetOperationalStatusInterconnectAttachmentGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[514] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[540] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80703,7 +83604,7 @@ func (x *GetOperationalStatusInterconnectAttachmentGroupRequest) String() string func (*GetOperationalStatusInterconnectAttachmentGroupRequest) ProtoMessage() {} func (x *GetOperationalStatusInterconnectAttachmentGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[514] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[540] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80716,7 +83617,7 @@ func (x *GetOperationalStatusInterconnectAttachmentGroupRequest) ProtoReflect() // Deprecated: Use GetOperationalStatusInterconnectAttachmentGroupRequest.ProtoReflect.Descriptor instead. func (*GetOperationalStatusInterconnectAttachmentGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{514} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{540} } func (x *GetOperationalStatusInterconnectAttachmentGroupRequest) GetInterconnectAttachmentGroup() string { @@ -80746,7 +83647,7 @@ type GetOperationalStatusInterconnectGroupRequest struct { func (x *GetOperationalStatusInterconnectGroupRequest) Reset() { *x = GetOperationalStatusInterconnectGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[515] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[541] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80758,7 +83659,7 @@ func (x *GetOperationalStatusInterconnectGroupRequest) String() string { func (*GetOperationalStatusInterconnectGroupRequest) ProtoMessage() {} func (x *GetOperationalStatusInterconnectGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[515] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[541] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80771,7 +83672,7 @@ func (x *GetOperationalStatusInterconnectGroupRequest) ProtoReflect() protorefle // Deprecated: Use GetOperationalStatusInterconnectGroupRequest.ProtoReflect.Descriptor instead. func (*GetOperationalStatusInterconnectGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{515} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{541} } func (x *GetOperationalStatusInterconnectGroupRequest) GetInterconnectGroup() string { @@ -80799,7 +83700,7 @@ type GetOrganizationSecurityPolicyRequest struct { func (x *GetOrganizationSecurityPolicyRequest) Reset() { *x = GetOrganizationSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[516] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[542] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80811,7 +83712,7 @@ func (x *GetOrganizationSecurityPolicyRequest) String() string { func (*GetOrganizationSecurityPolicyRequest) ProtoMessage() {} func (x *GetOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[516] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[542] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80824,7 +83725,7 @@ func (x *GetOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetOrganizationSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*GetOrganizationSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{516} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{542} } func (x *GetOrganizationSecurityPolicyRequest) GetSecurityPolicy() string { @@ -80849,7 +83750,7 @@ type GetPacketMirroringRequest struct { func (x *GetPacketMirroringRequest) Reset() { *x = GetPacketMirroringRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[517] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[543] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80861,7 +83762,7 @@ func (x *GetPacketMirroringRequest) String() string { func (*GetPacketMirroringRequest) ProtoMessage() {} func (x *GetPacketMirroringRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[517] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[543] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80874,7 +83775,7 @@ func (x *GetPacketMirroringRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPacketMirroringRequest.ProtoReflect.Descriptor instead. func (*GetPacketMirroringRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{517} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{543} } func (x *GetPacketMirroringRequest) GetPacketMirroring() string { @@ -80913,7 +83814,7 @@ type GetPacketMirroringRuleNetworkFirewallPolicyRequest struct { func (x *GetPacketMirroringRuleNetworkFirewallPolicyRequest) Reset() { *x = GetPacketMirroringRuleNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[518] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[544] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80925,7 +83826,7 @@ func (x *GetPacketMirroringRuleNetworkFirewallPolicyRequest) String() string { func (*GetPacketMirroringRuleNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *GetPacketMirroringRuleNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[518] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[544] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80938,7 +83839,7 @@ func (x *GetPacketMirroringRuleNetworkFirewallPolicyRequest) ProtoReflect() prot // Deprecated: Use GetPacketMirroringRuleNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetPacketMirroringRuleNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{518} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{544} } func (x *GetPacketMirroringRuleNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -80975,7 +83876,7 @@ type GetPreviewFeatureRequest struct { func (x *GetPreviewFeatureRequest) Reset() { *x = GetPreviewFeatureRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[519] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[545] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80987,7 +83888,7 @@ func (x *GetPreviewFeatureRequest) String() string { func (*GetPreviewFeatureRequest) ProtoMessage() {} func (x *GetPreviewFeatureRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[519] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[545] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81000,7 +83901,7 @@ func (x *GetPreviewFeatureRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPreviewFeatureRequest.ProtoReflect.Descriptor instead. func (*GetPreviewFeatureRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{519} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{545} } func (x *GetPreviewFeatureRequest) GetPreviewFeature() string { @@ -81028,7 +83929,7 @@ type GetProjectRequest struct { func (x *GetProjectRequest) Reset() { *x = GetProjectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[520] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[546] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81040,7 +83941,7 @@ func (x *GetProjectRequest) String() string { func (*GetProjectRequest) ProtoMessage() {} func (x *GetProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[520] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[546] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81053,7 +83954,7 @@ func (x *GetProjectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetProjectRequest.ProtoReflect.Descriptor instead. func (*GetProjectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{520} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{546} } func (x *GetProjectRequest) GetProject() string { @@ -81076,7 +83977,7 @@ type GetPublicAdvertisedPrefixeRequest struct { func (x *GetPublicAdvertisedPrefixeRequest) Reset() { *x = GetPublicAdvertisedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[521] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[547] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81088,7 +83989,7 @@ func (x *GetPublicAdvertisedPrefixeRequest) String() string { func (*GetPublicAdvertisedPrefixeRequest) ProtoMessage() {} func (x *GetPublicAdvertisedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[521] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[547] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81101,7 +84002,7 @@ func (x *GetPublicAdvertisedPrefixeRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetPublicAdvertisedPrefixeRequest.ProtoReflect.Descriptor instead. func (*GetPublicAdvertisedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{521} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{547} } func (x *GetPublicAdvertisedPrefixeRequest) GetProject() string { @@ -81133,7 +84034,7 @@ type GetPublicDelegatedPrefixeRequest struct { func (x *GetPublicDelegatedPrefixeRequest) Reset() { *x = GetPublicDelegatedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[522] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[548] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81145,7 +84046,7 @@ func (x *GetPublicDelegatedPrefixeRequest) String() string { func (*GetPublicDelegatedPrefixeRequest) ProtoMessage() {} func (x *GetPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[522] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[548] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81158,7 +84059,7 @@ func (x *GetPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPublicDelegatedPrefixeRequest.ProtoReflect.Descriptor instead. func (*GetPublicDelegatedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{522} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{548} } func (x *GetPublicDelegatedPrefixeRequest) GetProject() string { @@ -81197,7 +84098,7 @@ type GetRegionAutoscalerRequest struct { func (x *GetRegionAutoscalerRequest) Reset() { *x = GetRegionAutoscalerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[523] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[549] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81209,7 +84110,7 @@ func (x *GetRegionAutoscalerRequest) String() string { func (*GetRegionAutoscalerRequest) ProtoMessage() {} func (x *GetRegionAutoscalerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[523] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[549] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81222,7 +84123,7 @@ func (x *GetRegionAutoscalerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionAutoscalerRequest.ProtoReflect.Descriptor instead. func (*GetRegionAutoscalerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{523} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{549} } func (x *GetRegionAutoscalerRequest) GetAutoscaler() string { @@ -81246,6 +84147,70 @@ func (x *GetRegionAutoscalerRequest) GetRegion() string { return "" } +// A request message for RegionBackendBuckets.Get. See the method description for details. +type GetRegionBackendBucketRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the BackendBucket resource to return. + BackendBucket string `protobuf:"bytes,91714037,opt,name=backend_bucket,json=backendBucket,proto3" json:"backend_bucket,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region scoping this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetRegionBackendBucketRequest) Reset() { + *x = GetRegionBackendBucketRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[550] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetRegionBackendBucketRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetRegionBackendBucketRequest) ProtoMessage() {} + +func (x *GetRegionBackendBucketRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[550] + 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 GetRegionBackendBucketRequest.ProtoReflect.Descriptor instead. +func (*GetRegionBackendBucketRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{550} +} + +func (x *GetRegionBackendBucketRequest) GetBackendBucket() string { + if x != nil { + return x.BackendBucket + } + return "" +} + +func (x *GetRegionBackendBucketRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetRegionBackendBucketRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + // A request message for RegionBackendServices.Get. See the method description for details. type GetRegionBackendServiceRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -81261,7 +84226,7 @@ type GetRegionBackendServiceRequest struct { func (x *GetRegionBackendServiceRequest) Reset() { *x = GetRegionBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[524] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[551] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81273,7 +84238,7 @@ func (x *GetRegionBackendServiceRequest) String() string { func (*GetRegionBackendServiceRequest) ProtoMessage() {} func (x *GetRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[524] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[551] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81286,7 +84251,7 @@ func (x *GetRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionBackendServiceRequest.ProtoReflect.Descriptor instead. func (*GetRegionBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{524} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{551} } func (x *GetRegionBackendServiceRequest) GetBackendService() string { @@ -81325,7 +84290,7 @@ type GetRegionCommitmentRequest struct { func (x *GetRegionCommitmentRequest) Reset() { *x = GetRegionCommitmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[525] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[552] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81337,7 +84302,7 @@ func (x *GetRegionCommitmentRequest) String() string { func (*GetRegionCommitmentRequest) ProtoMessage() {} func (x *GetRegionCommitmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[525] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[552] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81350,7 +84315,7 @@ func (x *GetRegionCommitmentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionCommitmentRequest.ProtoReflect.Descriptor instead. func (*GetRegionCommitmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{525} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{552} } func (x *GetRegionCommitmentRequest) GetCommitment() string { @@ -81389,7 +84354,7 @@ type GetRegionCompositeHealthCheckRequest struct { func (x *GetRegionCompositeHealthCheckRequest) Reset() { *x = GetRegionCompositeHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[526] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[553] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81401,7 +84366,7 @@ func (x *GetRegionCompositeHealthCheckRequest) String() string { func (*GetRegionCompositeHealthCheckRequest) ProtoMessage() {} func (x *GetRegionCompositeHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[526] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[553] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81414,7 +84379,7 @@ func (x *GetRegionCompositeHealthCheckRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetRegionCompositeHealthCheckRequest.ProtoReflect.Descriptor instead. func (*GetRegionCompositeHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{526} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{553} } func (x *GetRegionCompositeHealthCheckRequest) GetCompositeHealthCheck() string { @@ -81453,7 +84418,7 @@ type GetRegionDiskRequest struct { func (x *GetRegionDiskRequest) Reset() { *x = GetRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[527] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[554] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81465,7 +84430,7 @@ func (x *GetRegionDiskRequest) String() string { func (*GetRegionDiskRequest) ProtoMessage() {} func (x *GetRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[527] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[554] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81478,7 +84443,7 @@ func (x *GetRegionDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionDiskRequest.ProtoReflect.Descriptor instead. func (*GetRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{527} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{554} } func (x *GetRegionDiskRequest) GetDisk() string { @@ -81517,7 +84482,7 @@ type GetRegionDiskTypeRequest struct { func (x *GetRegionDiskTypeRequest) Reset() { *x = GetRegionDiskTypeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[528] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[555] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81529,7 +84494,7 @@ func (x *GetRegionDiskTypeRequest) String() string { func (*GetRegionDiskTypeRequest) ProtoMessage() {} func (x *GetRegionDiskTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[528] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[555] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81542,7 +84507,7 @@ func (x *GetRegionDiskTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionDiskTypeRequest.ProtoReflect.Descriptor instead. func (*GetRegionDiskTypeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{528} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{555} } func (x *GetRegionDiskTypeRequest) GetDiskType() string { @@ -81581,7 +84546,7 @@ type GetRegionHealthAggregationPolicyRequest struct { func (x *GetRegionHealthAggregationPolicyRequest) Reset() { *x = GetRegionHealthAggregationPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[529] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[556] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81593,7 +84558,7 @@ func (x *GetRegionHealthAggregationPolicyRequest) String() string { func (*GetRegionHealthAggregationPolicyRequest) ProtoMessage() {} func (x *GetRegionHealthAggregationPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[529] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[556] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81606,7 +84571,7 @@ func (x *GetRegionHealthAggregationPolicyRequest) ProtoReflect() protoreflect.Me // Deprecated: Use GetRegionHealthAggregationPolicyRequest.ProtoReflect.Descriptor instead. func (*GetRegionHealthAggregationPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{529} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{556} } func (x *GetRegionHealthAggregationPolicyRequest) GetHealthAggregationPolicy() string { @@ -81645,7 +84610,7 @@ type GetRegionHealthCheckRequest struct { func (x *GetRegionHealthCheckRequest) Reset() { *x = GetRegionHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[530] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[557] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81657,7 +84622,7 @@ func (x *GetRegionHealthCheckRequest) String() string { func (*GetRegionHealthCheckRequest) ProtoMessage() {} func (x *GetRegionHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[530] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[557] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81670,7 +84635,7 @@ func (x *GetRegionHealthCheckRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionHealthCheckRequest.ProtoReflect.Descriptor instead. func (*GetRegionHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{530} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{557} } func (x *GetRegionHealthCheckRequest) GetHealthCheck() string { @@ -81710,7 +84675,7 @@ type GetRegionHealthCheckServiceRequest struct { func (x *GetRegionHealthCheckServiceRequest) Reset() { *x = GetRegionHealthCheckServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[531] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[558] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81722,7 +84687,7 @@ func (x *GetRegionHealthCheckServiceRequest) String() string { func (*GetRegionHealthCheckServiceRequest) ProtoMessage() {} func (x *GetRegionHealthCheckServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[531] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[558] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81735,7 +84700,7 @@ func (x *GetRegionHealthCheckServiceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetRegionHealthCheckServiceRequest.ProtoReflect.Descriptor instead. func (*GetRegionHealthCheckServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{531} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{558} } func (x *GetRegionHealthCheckServiceRequest) GetHealthCheckService() string { @@ -81774,7 +84739,7 @@ type GetRegionHealthSourceRequest struct { func (x *GetRegionHealthSourceRequest) Reset() { *x = GetRegionHealthSourceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[532] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[559] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81786,7 +84751,7 @@ func (x *GetRegionHealthSourceRequest) String() string { func (*GetRegionHealthSourceRequest) ProtoMessage() {} func (x *GetRegionHealthSourceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[532] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[559] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81799,7 +84764,7 @@ func (x *GetRegionHealthSourceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionHealthSourceRequest.ProtoReflect.Descriptor instead. func (*GetRegionHealthSourceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{532} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{559} } func (x *GetRegionHealthSourceRequest) GetHealthSource() string { @@ -81838,7 +84803,7 @@ type GetRegionInstanceGroupManagerRequest struct { func (x *GetRegionInstanceGroupManagerRequest) Reset() { *x = GetRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[533] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[560] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81850,7 +84815,7 @@ func (x *GetRegionInstanceGroupManagerRequest) String() string { func (*GetRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *GetRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[533] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[560] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81863,7 +84828,7 @@ func (x *GetRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*GetRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{533} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{560} } func (x *GetRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -81887,6 +84852,82 @@ func (x *GetRegionInstanceGroupManagerRequest) GetRegion() string { return "" } +// A request message for RegionInstanceGroupManagerResizeRequests.Get. See the method description for details. +type GetRegionInstanceGroupManagerResizeRequestRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // The name of the managed instance group. + // Name should conform to RFC1035 or be a resource ID. + InstanceGroupManager string `protobuf:"bytes,249363395,opt,name=instance_group_manager,json=instanceGroupManager,proto3" json:"instance_group_manager,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region + // scoping this request. Name should conform to RFC1035. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // The name of the resize request. + // Name should conform to RFC1035 or be a resource ID. + ResizeRequest string `protobuf:"bytes,216941060,opt,name=resize_request,json=resizeRequest,proto3" json:"resize_request,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetRegionInstanceGroupManagerResizeRequestRequest) Reset() { + *x = GetRegionInstanceGroupManagerResizeRequestRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[561] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetRegionInstanceGroupManagerResizeRequestRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetRegionInstanceGroupManagerResizeRequestRequest) ProtoMessage() {} + +func (x *GetRegionInstanceGroupManagerResizeRequestRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[561] + 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 GetRegionInstanceGroupManagerResizeRequestRequest.ProtoReflect.Descriptor instead. +func (*GetRegionInstanceGroupManagerResizeRequestRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{561} +} + +func (x *GetRegionInstanceGroupManagerResizeRequestRequest) GetInstanceGroupManager() string { + if x != nil { + return x.InstanceGroupManager + } + return "" +} + +func (x *GetRegionInstanceGroupManagerResizeRequestRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetRegionInstanceGroupManagerResizeRequestRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *GetRegionInstanceGroupManagerResizeRequestRequest) GetResizeRequest() string { + if x != nil { + return x.ResizeRequest + } + return "" +} + // A request message for RegionInstanceGroups.Get. See the method description for details. type GetRegionInstanceGroupRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -81902,7 +84943,7 @@ type GetRegionInstanceGroupRequest struct { func (x *GetRegionInstanceGroupRequest) Reset() { *x = GetRegionInstanceGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[534] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[562] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81914,7 +84955,7 @@ func (x *GetRegionInstanceGroupRequest) String() string { func (*GetRegionInstanceGroupRequest) ProtoMessage() {} func (x *GetRegionInstanceGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[534] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[562] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81927,7 +84968,7 @@ func (x *GetRegionInstanceGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionInstanceGroupRequest.ProtoReflect.Descriptor instead. func (*GetRegionInstanceGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{534} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{562} } func (x *GetRegionInstanceGroupRequest) GetInstanceGroup() string { @@ -81966,7 +85007,7 @@ type GetRegionInstanceTemplateRequest struct { func (x *GetRegionInstanceTemplateRequest) Reset() { *x = GetRegionInstanceTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[535] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[563] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81978,7 +85019,7 @@ func (x *GetRegionInstanceTemplateRequest) String() string { func (*GetRegionInstanceTemplateRequest) ProtoMessage() {} func (x *GetRegionInstanceTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[535] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[563] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81991,7 +85032,7 @@ func (x *GetRegionInstanceTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionInstanceTemplateRequest.ProtoReflect.Descriptor instead. func (*GetRegionInstanceTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{535} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{563} } func (x *GetRegionInstanceTemplateRequest) GetInstanceTemplate() string { @@ -82015,6 +85056,70 @@ func (x *GetRegionInstanceTemplateRequest) GetRegion() string { return "" } +// A request message for RegionInstantSnapshotGroups.Get. See the method description for details. +type GetRegionInstantSnapshotGroupRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the InstantSnapshotGroup resource to return. + InstantSnapshotGroup string `protobuf:"bytes,223180386,opt,name=instant_snapshot_group,json=instantSnapshotGroup,proto3" json:"instant_snapshot_group,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetRegionInstantSnapshotGroupRequest) Reset() { + *x = GetRegionInstantSnapshotGroupRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[564] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetRegionInstantSnapshotGroupRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetRegionInstantSnapshotGroupRequest) ProtoMessage() {} + +func (x *GetRegionInstantSnapshotGroupRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[564] + 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 GetRegionInstantSnapshotGroupRequest.ProtoReflect.Descriptor instead. +func (*GetRegionInstantSnapshotGroupRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{564} +} + +func (x *GetRegionInstantSnapshotGroupRequest) GetInstantSnapshotGroup() string { + if x != nil { + return x.InstantSnapshotGroup + } + return "" +} + +func (x *GetRegionInstantSnapshotGroupRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetRegionInstantSnapshotGroupRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + // A request message for RegionInstantSnapshots.Get. See the method description for details. type GetRegionInstantSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -82030,7 +85135,7 @@ type GetRegionInstantSnapshotRequest struct { func (x *GetRegionInstantSnapshotRequest) Reset() { *x = GetRegionInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[536] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[565] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82042,7 +85147,7 @@ func (x *GetRegionInstantSnapshotRequest) String() string { func (*GetRegionInstantSnapshotRequest) ProtoMessage() {} func (x *GetRegionInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[536] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[565] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82055,7 +85160,7 @@ func (x *GetRegionInstantSnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*GetRegionInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{536} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{565} } func (x *GetRegionInstantSnapshotRequest) GetInstantSnapshot() string { @@ -82095,7 +85200,7 @@ type GetRegionNetworkEndpointGroupRequest struct { func (x *GetRegionNetworkEndpointGroupRequest) Reset() { *x = GetRegionNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[537] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[566] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82107,7 +85212,7 @@ func (x *GetRegionNetworkEndpointGroupRequest) String() string { func (*GetRegionNetworkEndpointGroupRequest) ProtoMessage() {} func (x *GetRegionNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[537] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[566] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82120,7 +85225,7 @@ func (x *GetRegionNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetRegionNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*GetRegionNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{537} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{566} } func (x *GetRegionNetworkEndpointGroupRequest) GetNetworkEndpointGroup() string { @@ -82159,7 +85264,7 @@ type GetRegionNetworkFirewallPolicyRequest struct { func (x *GetRegionNetworkFirewallPolicyRequest) Reset() { *x = GetRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[538] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[567] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82171,7 +85276,7 @@ func (x *GetRegionNetworkFirewallPolicyRequest) String() string { func (*GetRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *GetRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[538] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[567] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82184,7 +85289,7 @@ func (x *GetRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use GetRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{538} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{567} } func (x *GetRegionNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -82223,7 +85328,7 @@ type GetRegionNotificationEndpointRequest struct { func (x *GetRegionNotificationEndpointRequest) Reset() { *x = GetRegionNotificationEndpointRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[539] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[568] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82235,7 +85340,7 @@ func (x *GetRegionNotificationEndpointRequest) String() string { func (*GetRegionNotificationEndpointRequest) ProtoMessage() {} func (x *GetRegionNotificationEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[539] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[568] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82248,7 +85353,7 @@ func (x *GetRegionNotificationEndpointRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetRegionNotificationEndpointRequest.ProtoReflect.Descriptor instead. func (*GetRegionNotificationEndpointRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{539} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{568} } func (x *GetRegionNotificationEndpointRequest) GetNotificationEndpoint() string { @@ -82288,7 +85393,7 @@ type GetRegionOperationRequest struct { func (x *GetRegionOperationRequest) Reset() { *x = GetRegionOperationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[540] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[569] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82300,7 +85405,7 @@ func (x *GetRegionOperationRequest) String() string { func (*GetRegionOperationRequest) ProtoMessage() {} func (x *GetRegionOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[540] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[569] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82313,7 +85418,7 @@ func (x *GetRegionOperationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionOperationRequest.ProtoReflect.Descriptor instead. func (*GetRegionOperationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{540} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{569} } func (x *GetRegionOperationRequest) GetOperation() string { @@ -82350,7 +85455,7 @@ type GetRegionRequest struct { func (x *GetRegionRequest) Reset() { *x = GetRegionRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[541] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[570] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82362,7 +85467,7 @@ func (x *GetRegionRequest) String() string { func (*GetRegionRequest) ProtoMessage() {} func (x *GetRegionRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[541] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[570] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82375,7 +85480,7 @@ func (x *GetRegionRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionRequest.ProtoReflect.Descriptor instead. func (*GetRegionRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{541} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{570} } func (x *GetRegionRequest) GetProject() string { @@ -82407,7 +85512,7 @@ type GetRegionSecurityPolicyRequest struct { func (x *GetRegionSecurityPolicyRequest) Reset() { *x = GetRegionSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[542] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[571] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82419,7 +85524,7 @@ func (x *GetRegionSecurityPolicyRequest) String() string { func (*GetRegionSecurityPolicyRequest) ProtoMessage() {} func (x *GetRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[542] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[571] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82432,7 +85537,7 @@ func (x *GetRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*GetRegionSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{542} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{571} } func (x *GetRegionSecurityPolicyRequest) GetProject() string { @@ -82456,6 +85561,125 @@ func (x *GetRegionSecurityPolicyRequest) GetSecurityPolicy() string { return "" } +// A request message for RegionSnapshots.Get. See the method description for details. +type GetRegionSnapshotRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // Name of the Snapshot resource to return. + Snapshot string `protobuf:"bytes,284874180,opt,name=snapshot,proto3" json:"snapshot,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetRegionSnapshotRequest) Reset() { + *x = GetRegionSnapshotRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[572] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetRegionSnapshotRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetRegionSnapshotRequest) ProtoMessage() {} + +func (x *GetRegionSnapshotRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[572] + 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 GetRegionSnapshotRequest.ProtoReflect.Descriptor instead. +func (*GetRegionSnapshotRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{572} +} + +func (x *GetRegionSnapshotRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetRegionSnapshotRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *GetRegionSnapshotRequest) GetSnapshot() string { + if x != nil { + return x.Snapshot + } + return "" +} + +// A request message for RegionSnapshotSettings.Get. See the method description for details. +type GetRegionSnapshotSettingRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetRegionSnapshotSettingRequest) Reset() { + *x = GetRegionSnapshotSettingRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[573] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetRegionSnapshotSettingRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetRegionSnapshotSettingRequest) ProtoMessage() {} + +func (x *GetRegionSnapshotSettingRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[573] + 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 GetRegionSnapshotSettingRequest.ProtoReflect.Descriptor instead. +func (*GetRegionSnapshotSettingRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{573} +} + +func (x *GetRegionSnapshotSettingRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetRegionSnapshotSettingRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + // A request message for RegionSslCertificates.Get. See the method description for details. type GetRegionSslCertificateRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -82471,7 +85695,7 @@ type GetRegionSslCertificateRequest struct { func (x *GetRegionSslCertificateRequest) Reset() { *x = GetRegionSslCertificateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[543] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[574] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82483,7 +85707,7 @@ func (x *GetRegionSslCertificateRequest) String() string { func (*GetRegionSslCertificateRequest) ProtoMessage() {} func (x *GetRegionSslCertificateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[543] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[574] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82496,7 +85720,7 @@ func (x *GetRegionSslCertificateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionSslCertificateRequest.ProtoReflect.Descriptor instead. func (*GetRegionSslCertificateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{543} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{574} } func (x *GetRegionSslCertificateRequest) GetProject() string { @@ -82536,7 +85760,7 @@ type GetRegionSslPolicyRequest struct { func (x *GetRegionSslPolicyRequest) Reset() { *x = GetRegionSslPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[544] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[575] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82548,7 +85772,7 @@ func (x *GetRegionSslPolicyRequest) String() string { func (*GetRegionSslPolicyRequest) ProtoMessage() {} func (x *GetRegionSslPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[544] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[575] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82561,7 +85785,7 @@ func (x *GetRegionSslPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionSslPolicyRequest.ProtoReflect.Descriptor instead. func (*GetRegionSslPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{544} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{575} } func (x *GetRegionSslPolicyRequest) GetProject() string { @@ -82600,7 +85824,7 @@ type GetRegionTargetHttpProxyRequest struct { func (x *GetRegionTargetHttpProxyRequest) Reset() { *x = GetRegionTargetHttpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[545] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[576] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82612,7 +85836,7 @@ func (x *GetRegionTargetHttpProxyRequest) String() string { func (*GetRegionTargetHttpProxyRequest) ProtoMessage() {} func (x *GetRegionTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[545] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[576] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82625,7 +85849,7 @@ func (x *GetRegionTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionTargetHttpProxyRequest.ProtoReflect.Descriptor instead. func (*GetRegionTargetHttpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{545} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{576} } func (x *GetRegionTargetHttpProxyRequest) GetProject() string { @@ -82664,7 +85888,7 @@ type GetRegionTargetHttpsProxyRequest struct { func (x *GetRegionTargetHttpsProxyRequest) Reset() { *x = GetRegionTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[546] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[577] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82676,7 +85900,7 @@ func (x *GetRegionTargetHttpsProxyRequest) String() string { func (*GetRegionTargetHttpsProxyRequest) ProtoMessage() {} func (x *GetRegionTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[546] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[577] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82689,7 +85913,7 @@ func (x *GetRegionTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*GetRegionTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{546} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{577} } func (x *GetRegionTargetHttpsProxyRequest) GetProject() string { @@ -82728,7 +85952,7 @@ type GetRegionTargetTcpProxyRequest struct { func (x *GetRegionTargetTcpProxyRequest) Reset() { *x = GetRegionTargetTcpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[547] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[578] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82740,7 +85964,7 @@ func (x *GetRegionTargetTcpProxyRequest) String() string { func (*GetRegionTargetTcpProxyRequest) ProtoMessage() {} func (x *GetRegionTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[547] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[578] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82753,7 +85977,7 @@ func (x *GetRegionTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionTargetTcpProxyRequest.ProtoReflect.Descriptor instead. func (*GetRegionTargetTcpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{547} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{578} } func (x *GetRegionTargetTcpProxyRequest) GetProject() string { @@ -82792,7 +86016,7 @@ type GetRegionUrlMapRequest struct { func (x *GetRegionUrlMapRequest) Reset() { *x = GetRegionUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[548] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[579] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82804,7 +86028,7 @@ func (x *GetRegionUrlMapRequest) String() string { func (*GetRegionUrlMapRequest) ProtoMessage() {} func (x *GetRegionUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[548] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[579] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82817,7 +86041,7 @@ func (x *GetRegionUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRegionUrlMapRequest.ProtoReflect.Descriptor instead. func (*GetRegionUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{548} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{579} } func (x *GetRegionUrlMapRequest) GetProject() string { @@ -82863,7 +86087,7 @@ type GetReservationBlockRequest struct { func (x *GetReservationBlockRequest) Reset() { *x = GetReservationBlockRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[549] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[580] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82875,7 +86099,7 @@ func (x *GetReservationBlockRequest) String() string { func (*GetReservationBlockRequest) ProtoMessage() {} func (x *GetReservationBlockRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[549] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[580] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82888,7 +86112,7 @@ func (x *GetReservationBlockRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetReservationBlockRequest.ProtoReflect.Descriptor instead. func (*GetReservationBlockRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{549} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{580} } func (x *GetReservationBlockRequest) GetProject() string { @@ -82941,7 +86165,7 @@ type GetReservationRequest struct { func (x *GetReservationRequest) Reset() { *x = GetReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[550] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[581] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82953,7 +86177,7 @@ func (x *GetReservationRequest) String() string { func (*GetReservationRequest) ProtoMessage() {} func (x *GetReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[550] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[581] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82966,7 +86190,7 @@ func (x *GetReservationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetReservationRequest.ProtoReflect.Descriptor instead. func (*GetReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{550} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{581} } func (x *GetReservationRequest) GetProject() string { @@ -83009,7 +86233,7 @@ type GetReservationSlotRequest struct { func (x *GetReservationSlotRequest) Reset() { *x = GetReservationSlotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[551] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[582] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83021,7 +86245,7 @@ func (x *GetReservationSlotRequest) String() string { func (*GetReservationSlotRequest) ProtoMessage() {} func (x *GetReservationSlotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[551] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[582] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83034,7 +86258,7 @@ func (x *GetReservationSlotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetReservationSlotRequest.ProtoReflect.Descriptor instead. func (*GetReservationSlotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{551} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{582} } func (x *GetReservationSlotRequest) GetParentName() string { @@ -83087,7 +86311,7 @@ type GetReservationSubBlockRequest struct { func (x *GetReservationSubBlockRequest) Reset() { *x = GetReservationSubBlockRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[552] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[583] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83099,7 +86323,7 @@ func (x *GetReservationSubBlockRequest) String() string { func (*GetReservationSubBlockRequest) ProtoMessage() {} func (x *GetReservationSubBlockRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[552] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[583] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83112,7 +86336,7 @@ func (x *GetReservationSubBlockRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetReservationSubBlockRequest.ProtoReflect.Descriptor instead. func (*GetReservationSubBlockRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{552} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{583} } func (x *GetReservationSubBlockRequest) GetParentName() string { @@ -83165,7 +86389,7 @@ type GetResourcePolicyRequest struct { func (x *GetResourcePolicyRequest) Reset() { *x = GetResourcePolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[553] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[584] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83177,7 +86401,7 @@ func (x *GetResourcePolicyRequest) String() string { func (*GetResourcePolicyRequest) ProtoMessage() {} func (x *GetResourcePolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[553] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[584] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83190,7 +86414,7 @@ func (x *GetResourcePolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetResourcePolicyRequest.ProtoReflect.Descriptor instead. func (*GetResourcePolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{553} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{584} } func (x *GetResourcePolicyRequest) GetProject() string { @@ -83232,7 +86456,7 @@ type GetRoutePolicyRouterRequest struct { func (x *GetRoutePolicyRouterRequest) Reset() { *x = GetRoutePolicyRouterRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[554] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[585] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83244,7 +86468,7 @@ func (x *GetRoutePolicyRouterRequest) String() string { func (*GetRoutePolicyRouterRequest) ProtoMessage() {} func (x *GetRoutePolicyRouterRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[554] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[585] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83257,7 +86481,7 @@ func (x *GetRoutePolicyRouterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRoutePolicyRouterRequest.ProtoReflect.Descriptor instead. func (*GetRoutePolicyRouterRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{554} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{585} } func (x *GetRoutePolicyRouterRequest) GetPolicy() string { @@ -83301,7 +86525,7 @@ type GetRouteRequest struct { func (x *GetRouteRequest) Reset() { *x = GetRouteRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[555] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[586] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83313,7 +86537,7 @@ func (x *GetRouteRequest) String() string { func (*GetRouteRequest) ProtoMessage() {} func (x *GetRouteRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[555] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[586] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83326,7 +86550,7 @@ func (x *GetRouteRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRouteRequest.ProtoReflect.Descriptor instead. func (*GetRouteRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{555} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{586} } func (x *GetRouteRequest) GetProject() string { @@ -83358,7 +86582,7 @@ type GetRouterRequest struct { func (x *GetRouterRequest) Reset() { *x = GetRouterRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[556] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[587] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83370,7 +86594,7 @@ func (x *GetRouterRequest) String() string { func (*GetRouterRequest) ProtoMessage() {} func (x *GetRouterRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[556] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[587] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83383,7 +86607,7 @@ func (x *GetRouterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRouterRequest.ProtoReflect.Descriptor instead. func (*GetRouterRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{556} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{587} } func (x *GetRouterRequest) GetProject() string { @@ -83422,7 +86646,7 @@ type GetRouterStatusRouterRequest struct { func (x *GetRouterStatusRouterRequest) Reset() { *x = GetRouterStatusRouterRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[557] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[588] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83434,7 +86658,7 @@ func (x *GetRouterStatusRouterRequest) String() string { func (*GetRouterStatusRouterRequest) ProtoMessage() {} func (x *GetRouterStatusRouterRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[557] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[588] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83447,7 +86671,7 @@ func (x *GetRouterStatusRouterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRouterStatusRouterRequest.ProtoReflect.Descriptor instead. func (*GetRouterStatusRouterRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{557} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{588} } func (x *GetRouterStatusRouterRequest) GetProject() string { @@ -83484,7 +86708,7 @@ type GetRuleFirewallPolicyRequest struct { func (x *GetRuleFirewallPolicyRequest) Reset() { *x = GetRuleFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[558] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[589] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83496,7 +86720,7 @@ func (x *GetRuleFirewallPolicyRequest) String() string { func (*GetRuleFirewallPolicyRequest) ProtoMessage() {} func (x *GetRuleFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[558] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[589] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83509,7 +86733,7 @@ func (x *GetRuleFirewallPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRuleFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetRuleFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{558} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{589} } func (x *GetRuleFirewallPolicyRequest) GetFirewallPolicy() string { @@ -83541,7 +86765,7 @@ type GetRuleNetworkFirewallPolicyRequest struct { func (x *GetRuleNetworkFirewallPolicyRequest) Reset() { *x = GetRuleNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[559] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[590] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83553,7 +86777,7 @@ func (x *GetRuleNetworkFirewallPolicyRequest) String() string { func (*GetRuleNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *GetRuleNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[559] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[590] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83566,7 +86790,7 @@ func (x *GetRuleNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use GetRuleNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetRuleNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{559} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{590} } func (x *GetRuleNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -83603,7 +86827,7 @@ type GetRuleOrganizationSecurityPolicyRequest struct { func (x *GetRuleOrganizationSecurityPolicyRequest) Reset() { *x = GetRuleOrganizationSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[560] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[591] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83615,7 +86839,7 @@ func (x *GetRuleOrganizationSecurityPolicyRequest) String() string { func (*GetRuleOrganizationSecurityPolicyRequest) ProtoMessage() {} func (x *GetRuleOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[560] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[591] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83628,7 +86852,7 @@ func (x *GetRuleOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.M // Deprecated: Use GetRuleOrganizationSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*GetRuleOrganizationSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{560} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{591} } func (x *GetRuleOrganizationSecurityPolicyRequest) GetPriority() int32 { @@ -83662,7 +86886,7 @@ type GetRuleRegionNetworkFirewallPolicyRequest struct { func (x *GetRuleRegionNetworkFirewallPolicyRequest) Reset() { *x = GetRuleRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[561] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[592] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83674,7 +86898,7 @@ func (x *GetRuleRegionNetworkFirewallPolicyRequest) String() string { func (*GetRuleRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *GetRuleRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[561] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[592] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83687,7 +86911,7 @@ func (x *GetRuleRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect. // Deprecated: Use GetRuleRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*GetRuleRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{561} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{592} } func (x *GetRuleRegionNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -83735,7 +86959,7 @@ type GetRuleRegionSecurityPolicyRequest struct { func (x *GetRuleRegionSecurityPolicyRequest) Reset() { *x = GetRuleRegionSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[562] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[593] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83747,7 +86971,7 @@ func (x *GetRuleRegionSecurityPolicyRequest) String() string { func (*GetRuleRegionSecurityPolicyRequest) ProtoMessage() {} func (x *GetRuleRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[562] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[593] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83760,7 +86984,7 @@ func (x *GetRuleRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetRuleRegionSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*GetRuleRegionSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{562} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{593} } func (x *GetRuleRegionSecurityPolicyRequest) GetPriority() int32 { @@ -83806,7 +87030,7 @@ type GetRuleSecurityPolicyRequest struct { func (x *GetRuleSecurityPolicyRequest) Reset() { *x = GetRuleSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[563] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[594] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83818,7 +87042,7 @@ func (x *GetRuleSecurityPolicyRequest) String() string { func (*GetRuleSecurityPolicyRequest) ProtoMessage() {} func (x *GetRuleSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[563] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[594] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83831,7 +87055,7 @@ func (x *GetRuleSecurityPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetRuleSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*GetRuleSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{563} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{594} } func (x *GetRuleSecurityPolicyRequest) GetPriority() int32 { @@ -83870,7 +87094,7 @@ type GetScreenshotInstanceRequest struct { func (x *GetScreenshotInstanceRequest) Reset() { *x = GetScreenshotInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[564] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[595] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83882,7 +87106,7 @@ func (x *GetScreenshotInstanceRequest) String() string { func (*GetScreenshotInstanceRequest) ProtoMessage() {} func (x *GetScreenshotInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[564] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[595] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83895,7 +87119,7 @@ func (x *GetScreenshotInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetScreenshotInstanceRequest.ProtoReflect.Descriptor instead. func (*GetScreenshotInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{564} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{595} } func (x *GetScreenshotInstanceRequest) GetInstance() string { @@ -83932,7 +87156,7 @@ type GetSecurityPolicyRequest struct { func (x *GetSecurityPolicyRequest) Reset() { *x = GetSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[565] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[596] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83944,7 +87168,7 @@ func (x *GetSecurityPolicyRequest) String() string { func (*GetSecurityPolicyRequest) ProtoMessage() {} func (x *GetSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[565] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[596] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83957,7 +87181,7 @@ func (x *GetSecurityPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*GetSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{565} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{596} } func (x *GetSecurityPolicyRequest) GetProject() string { @@ -84009,7 +87233,7 @@ type GetSerialPortOutputInstanceRequest struct { func (x *GetSerialPortOutputInstanceRequest) Reset() { *x = GetSerialPortOutputInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[566] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[597] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84021,7 +87245,7 @@ func (x *GetSerialPortOutputInstanceRequest) String() string { func (*GetSerialPortOutputInstanceRequest) ProtoMessage() {} func (x *GetSerialPortOutputInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[566] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[597] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84034,7 +87258,7 @@ func (x *GetSerialPortOutputInstanceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetSerialPortOutputInstanceRequest.ProtoReflect.Descriptor instead. func (*GetSerialPortOutputInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{566} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{597} } func (x *GetSerialPortOutputInstanceRequest) GetInstance() string { @@ -84089,7 +87313,7 @@ type GetServiceAttachmentRequest struct { func (x *GetServiceAttachmentRequest) Reset() { *x = GetServiceAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[567] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[598] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84101,7 +87325,7 @@ func (x *GetServiceAttachmentRequest) String() string { func (*GetServiceAttachmentRequest) ProtoMessage() {} func (x *GetServiceAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[567] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[598] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84114,7 +87338,7 @@ func (x *GetServiceAttachmentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetServiceAttachmentRequest.ProtoReflect.Descriptor instead. func (*GetServiceAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{567} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{598} } func (x *GetServiceAttachmentRequest) GetProject() string { @@ -84160,7 +87384,7 @@ type GetShieldedInstanceIdentityInstanceRequest struct { func (x *GetShieldedInstanceIdentityInstanceRequest) Reset() { *x = GetShieldedInstanceIdentityInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[568] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[599] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84172,7 +87396,7 @@ func (x *GetShieldedInstanceIdentityInstanceRequest) String() string { func (*GetShieldedInstanceIdentityInstanceRequest) ProtoMessage() {} func (x *GetShieldedInstanceIdentityInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[568] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[599] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84185,7 +87409,7 @@ func (x *GetShieldedInstanceIdentityInstanceRequest) ProtoReflect() protoreflect // Deprecated: Use GetShieldedInstanceIdentityInstanceRequest.ProtoReflect.Descriptor instead. func (*GetShieldedInstanceIdentityInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{568} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{599} } func (x *GetShieldedInstanceIdentityInstanceRequest) GetInstance() string { @@ -84222,7 +87446,7 @@ type GetSnapshotRequest struct { func (x *GetSnapshotRequest) Reset() { *x = GetSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[569] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[600] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84234,7 +87458,7 @@ func (x *GetSnapshotRequest) String() string { func (*GetSnapshotRequest) ProtoMessage() {} func (x *GetSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[569] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[600] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84247,7 +87471,7 @@ func (x *GetSnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSnapshotRequest.ProtoReflect.Descriptor instead. func (*GetSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{569} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{600} } func (x *GetSnapshotRequest) GetProject() string { @@ -84275,7 +87499,7 @@ type GetSnapshotSettingRequest struct { func (x *GetSnapshotSettingRequest) Reset() { *x = GetSnapshotSettingRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[570] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[601] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84287,7 +87511,7 @@ func (x *GetSnapshotSettingRequest) String() string { func (*GetSnapshotSettingRequest) ProtoMessage() {} func (x *GetSnapshotSettingRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[570] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[601] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84300,7 +87524,7 @@ func (x *GetSnapshotSettingRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSnapshotSettingRequest.ProtoReflect.Descriptor instead. func (*GetSnapshotSettingRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{570} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{601} } func (x *GetSnapshotSettingRequest) GetProject() string { @@ -84323,7 +87547,7 @@ type GetSslCertificateRequest struct { func (x *GetSslCertificateRequest) Reset() { *x = GetSslCertificateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[571] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[602] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84335,7 +87559,7 @@ func (x *GetSslCertificateRequest) String() string { func (*GetSslCertificateRequest) ProtoMessage() {} func (x *GetSslCertificateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[571] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[602] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84348,7 +87572,7 @@ func (x *GetSslCertificateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSslCertificateRequest.ProtoReflect.Descriptor instead. func (*GetSslCertificateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{571} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{602} } func (x *GetSslCertificateRequest) GetProject() string { @@ -84379,7 +87603,7 @@ type GetSslPolicyRequest struct { func (x *GetSslPolicyRequest) Reset() { *x = GetSslPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[572] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[603] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84391,7 +87615,7 @@ func (x *GetSslPolicyRequest) String() string { func (*GetSslPolicyRequest) ProtoMessage() {} func (x *GetSslPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[572] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[603] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84404,7 +87628,7 @@ func (x *GetSslPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSslPolicyRequest.ProtoReflect.Descriptor instead. func (*GetSslPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{572} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{603} } func (x *GetSslPolicyRequest) GetProject() string { @@ -84436,7 +87660,7 @@ type GetStatusVpnGatewayRequest struct { func (x *GetStatusVpnGatewayRequest) Reset() { *x = GetStatusVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[573] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[604] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84448,7 +87672,7 @@ func (x *GetStatusVpnGatewayRequest) String() string { func (*GetStatusVpnGatewayRequest) ProtoMessage() {} func (x *GetStatusVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[573] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[604] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84461,7 +87685,7 @@ func (x *GetStatusVpnGatewayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetStatusVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*GetStatusVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{573} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{604} } func (x *GetStatusVpnGatewayRequest) GetProject() string { @@ -84500,7 +87724,7 @@ type GetStoragePoolRequest struct { func (x *GetStoragePoolRequest) Reset() { *x = GetStoragePoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[574] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[605] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84512,7 +87736,7 @@ func (x *GetStoragePoolRequest) String() string { func (*GetStoragePoolRequest) ProtoMessage() {} func (x *GetStoragePoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[574] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[605] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84525,7 +87749,7 @@ func (x *GetStoragePoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetStoragePoolRequest.ProtoReflect.Descriptor instead. func (*GetStoragePoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{574} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{605} } func (x *GetStoragePoolRequest) GetProject() string { @@ -84564,7 +87788,7 @@ type GetStoragePoolTypeRequest struct { func (x *GetStoragePoolTypeRequest) Reset() { *x = GetStoragePoolTypeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[575] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[606] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84576,7 +87800,7 @@ func (x *GetStoragePoolTypeRequest) String() string { func (*GetStoragePoolTypeRequest) ProtoMessage() {} func (x *GetStoragePoolTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[575] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[606] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84589,7 +87813,7 @@ func (x *GetStoragePoolTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetStoragePoolTypeRequest.ProtoReflect.Descriptor instead. func (*GetStoragePoolTypeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{575} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{606} } func (x *GetStoragePoolTypeRequest) GetProject() string { @@ -84636,7 +87860,7 @@ type GetSubnetworkRequest struct { func (x *GetSubnetworkRequest) Reset() { *x = GetSubnetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[576] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[607] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84648,7 +87872,7 @@ func (x *GetSubnetworkRequest) String() string { func (*GetSubnetworkRequest) ProtoMessage() {} func (x *GetSubnetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[576] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[607] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84661,7 +87885,7 @@ func (x *GetSubnetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSubnetworkRequest.ProtoReflect.Descriptor instead. func (*GetSubnetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{576} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{607} } func (x *GetSubnetworkRequest) GetProject() string { @@ -84705,7 +87929,7 @@ type GetTargetGrpcProxyRequest struct { func (x *GetTargetGrpcProxyRequest) Reset() { *x = GetTargetGrpcProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[577] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[608] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84717,7 +87941,7 @@ func (x *GetTargetGrpcProxyRequest) String() string { func (*GetTargetGrpcProxyRequest) ProtoMessage() {} func (x *GetTargetGrpcProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[577] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[608] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84730,7 +87954,7 @@ func (x *GetTargetGrpcProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTargetGrpcProxyRequest.ProtoReflect.Descriptor instead. func (*GetTargetGrpcProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{577} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{608} } func (x *GetTargetGrpcProxyRequest) GetProject() string { @@ -84760,7 +87984,7 @@ type GetTargetHttpProxyRequest struct { func (x *GetTargetHttpProxyRequest) Reset() { *x = GetTargetHttpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[578] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[609] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84772,7 +87996,7 @@ func (x *GetTargetHttpProxyRequest) String() string { func (*GetTargetHttpProxyRequest) ProtoMessage() {} func (x *GetTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[578] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[609] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84785,7 +88009,7 @@ func (x *GetTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTargetHttpProxyRequest.ProtoReflect.Descriptor instead. func (*GetTargetHttpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{578} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{609} } func (x *GetTargetHttpProxyRequest) GetProject() string { @@ -84815,7 +88039,7 @@ type GetTargetHttpsProxyRequest struct { func (x *GetTargetHttpsProxyRequest) Reset() { *x = GetTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[579] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[610] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84827,7 +88051,7 @@ func (x *GetTargetHttpsProxyRequest) String() string { func (*GetTargetHttpsProxyRequest) ProtoMessage() {} func (x *GetTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[579] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[610] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84840,7 +88064,7 @@ func (x *GetTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*GetTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{579} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{610} } func (x *GetTargetHttpsProxyRequest) GetProject() string { @@ -84872,7 +88096,7 @@ type GetTargetInstanceRequest struct { func (x *GetTargetInstanceRequest) Reset() { *x = GetTargetInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[580] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[611] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84884,7 +88108,7 @@ func (x *GetTargetInstanceRequest) String() string { func (*GetTargetInstanceRequest) ProtoMessage() {} func (x *GetTargetInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[580] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[611] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84897,7 +88121,7 @@ func (x *GetTargetInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTargetInstanceRequest.ProtoReflect.Descriptor instead. func (*GetTargetInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{580} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{611} } func (x *GetTargetInstanceRequest) GetProject() string { @@ -84936,7 +88160,7 @@ type GetTargetPoolRequest struct { func (x *GetTargetPoolRequest) Reset() { *x = GetTargetPoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[581] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[612] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84948,7 +88172,7 @@ func (x *GetTargetPoolRequest) String() string { func (*GetTargetPoolRequest) ProtoMessage() {} func (x *GetTargetPoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[581] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[612] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84961,7 +88185,7 @@ func (x *GetTargetPoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTargetPoolRequest.ProtoReflect.Descriptor instead. func (*GetTargetPoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{581} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{612} } func (x *GetTargetPoolRequest) GetProject() string { @@ -84998,7 +88222,7 @@ type GetTargetSslProxyRequest struct { func (x *GetTargetSslProxyRequest) Reset() { *x = GetTargetSslProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[582] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[613] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85010,7 +88234,7 @@ func (x *GetTargetSslProxyRequest) String() string { func (*GetTargetSslProxyRequest) ProtoMessage() {} func (x *GetTargetSslProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[582] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[613] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85023,7 +88247,7 @@ func (x *GetTargetSslProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTargetSslProxyRequest.ProtoReflect.Descriptor instead. func (*GetTargetSslProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{582} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{613} } func (x *GetTargetSslProxyRequest) GetProject() string { @@ -85053,7 +88277,7 @@ type GetTargetTcpProxyRequest struct { func (x *GetTargetTcpProxyRequest) Reset() { *x = GetTargetTcpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[583] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[614] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85065,7 +88289,7 @@ func (x *GetTargetTcpProxyRequest) String() string { func (*GetTargetTcpProxyRequest) ProtoMessage() {} func (x *GetTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[583] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[614] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85078,7 +88302,7 @@ func (x *GetTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTargetTcpProxyRequest.ProtoReflect.Descriptor instead. func (*GetTargetTcpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{583} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{614} } func (x *GetTargetTcpProxyRequest) GetProject() string { @@ -85110,7 +88334,7 @@ type GetTargetVpnGatewayRequest struct { func (x *GetTargetVpnGatewayRequest) Reset() { *x = GetTargetVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[584] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[615] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85122,7 +88346,7 @@ func (x *GetTargetVpnGatewayRequest) String() string { func (*GetTargetVpnGatewayRequest) ProtoMessage() {} func (x *GetTargetVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[584] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[615] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85135,7 +88359,7 @@ func (x *GetTargetVpnGatewayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTargetVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*GetTargetVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{584} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{615} } func (x *GetTargetVpnGatewayRequest) GetProject() string { @@ -85172,7 +88396,7 @@ type GetUrlMapRequest struct { func (x *GetUrlMapRequest) Reset() { *x = GetUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[585] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[616] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85184,7 +88408,7 @@ func (x *GetUrlMapRequest) String() string { func (*GetUrlMapRequest) ProtoMessage() {} func (x *GetUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[585] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[616] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85197,7 +88421,7 @@ func (x *GetUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetUrlMapRequest.ProtoReflect.Descriptor instead. func (*GetUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{585} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{616} } func (x *GetUrlMapRequest) GetProject() string { @@ -85223,7 +88447,7 @@ type GetVersionOperationMetadata struct { func (x *GetVersionOperationMetadata) Reset() { *x = GetVersionOperationMetadata{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[586] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[617] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85235,7 +88459,7 @@ func (x *GetVersionOperationMetadata) String() string { func (*GetVersionOperationMetadata) ProtoMessage() {} func (x *GetVersionOperationMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[586] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[617] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85248,7 +88472,7 @@ func (x *GetVersionOperationMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use GetVersionOperationMetadata.ProtoReflect.Descriptor instead. func (*GetVersionOperationMetadata) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{586} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{617} } func (x *GetVersionOperationMetadata) GetInlineSbomInfo() *GetVersionOperationMetadataSbomInfo { @@ -85272,7 +88496,7 @@ type GetVersionOperationMetadataSbomInfo struct { func (x *GetVersionOperationMetadataSbomInfo) Reset() { *x = GetVersionOperationMetadataSbomInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[587] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[618] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85284,7 +88508,7 @@ func (x *GetVersionOperationMetadataSbomInfo) String() string { func (*GetVersionOperationMetadataSbomInfo) ProtoMessage() {} func (x *GetVersionOperationMetadataSbomInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[587] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[618] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85297,7 +88521,7 @@ func (x *GetVersionOperationMetadataSbomInfo) ProtoReflect() protoreflect.Messag // Deprecated: Use GetVersionOperationMetadataSbomInfo.ProtoReflect.Descriptor instead. func (*GetVersionOperationMetadataSbomInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{587} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{618} } func (x *GetVersionOperationMetadataSbomInfo) GetCurrentComponentVersions() map[string]string { @@ -85349,7 +88573,7 @@ type GetVersionReservationSlotRequest struct { func (x *GetVersionReservationSlotRequest) Reset() { *x = GetVersionReservationSlotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[588] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[619] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85361,7 +88585,7 @@ func (x *GetVersionReservationSlotRequest) String() string { func (*GetVersionReservationSlotRequest) ProtoMessage() {} func (x *GetVersionReservationSlotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[588] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[619] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85374,7 +88598,7 @@ func (x *GetVersionReservationSlotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetVersionReservationSlotRequest.ProtoReflect.Descriptor instead. func (*GetVersionReservationSlotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{588} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{619} } func (x *GetVersionReservationSlotRequest) GetParentName() string { @@ -85454,7 +88678,7 @@ type GetVersionReservationSubBlockRequest struct { func (x *GetVersionReservationSubBlockRequest) Reset() { *x = GetVersionReservationSubBlockRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[589] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[620] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85466,7 +88690,7 @@ func (x *GetVersionReservationSubBlockRequest) String() string { func (*GetVersionReservationSubBlockRequest) ProtoMessage() {} func (x *GetVersionReservationSubBlockRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[589] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[620] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85479,7 +88703,7 @@ func (x *GetVersionReservationSubBlockRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use GetVersionReservationSubBlockRequest.ProtoReflect.Descriptor instead. func (*GetVersionReservationSubBlockRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{589} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{620} } func (x *GetVersionReservationSubBlockRequest) GetParentName() string { @@ -85539,7 +88763,7 @@ type GetVpnGatewayRequest struct { func (x *GetVpnGatewayRequest) Reset() { *x = GetVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[590] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[621] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85551,7 +88775,7 @@ func (x *GetVpnGatewayRequest) String() string { func (*GetVpnGatewayRequest) ProtoMessage() {} func (x *GetVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[590] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[621] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85564,7 +88788,7 @@ func (x *GetVpnGatewayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*GetVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{590} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{621} } func (x *GetVpnGatewayRequest) GetProject() string { @@ -85603,7 +88827,7 @@ type GetVpnTunnelRequest struct { func (x *GetVpnTunnelRequest) Reset() { *x = GetVpnTunnelRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[591] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[622] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85615,7 +88839,7 @@ func (x *GetVpnTunnelRequest) String() string { func (*GetVpnTunnelRequest) ProtoMessage() {} func (x *GetVpnTunnelRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[591] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[622] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85628,7 +88852,7 @@ func (x *GetVpnTunnelRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetVpnTunnelRequest.ProtoReflect.Descriptor instead. func (*GetVpnTunnelRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{591} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{622} } func (x *GetVpnTunnelRequest) GetProject() string { @@ -85666,7 +88890,7 @@ type GetWireGroupRequest struct { func (x *GetWireGroupRequest) Reset() { *x = GetWireGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[592] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[623] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85678,7 +88902,7 @@ func (x *GetWireGroupRequest) String() string { func (*GetWireGroupRequest) ProtoMessage() {} func (x *GetWireGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[592] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[623] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85691,7 +88915,7 @@ func (x *GetWireGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetWireGroupRequest.ProtoReflect.Descriptor instead. func (*GetWireGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{592} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{623} } func (x *GetWireGroupRequest) GetCrossSiteNetwork() string { @@ -85726,7 +88950,7 @@ type GetXpnHostProjectRequest struct { func (x *GetXpnHostProjectRequest) Reset() { *x = GetXpnHostProjectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[593] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[624] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85738,7 +88962,7 @@ func (x *GetXpnHostProjectRequest) String() string { func (*GetXpnHostProjectRequest) ProtoMessage() {} func (x *GetXpnHostProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[593] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[624] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85751,7 +88975,7 @@ func (x *GetXpnHostProjectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetXpnHostProjectRequest.ProtoReflect.Descriptor instead. func (*GetXpnHostProjectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{593} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{624} } func (x *GetXpnHostProjectRequest) GetProject() string { @@ -85860,7 +89084,7 @@ type GetXpnResourcesProjectsRequest struct { func (x *GetXpnResourcesProjectsRequest) Reset() { *x = GetXpnResourcesProjectsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[594] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[625] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85872,7 +89096,7 @@ func (x *GetXpnResourcesProjectsRequest) String() string { func (*GetXpnResourcesProjectsRequest) ProtoMessage() {} func (x *GetXpnResourcesProjectsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[594] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[625] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85885,7 +89109,7 @@ func (x *GetXpnResourcesProjectsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetXpnResourcesProjectsRequest.ProtoReflect.Descriptor instead. func (*GetXpnResourcesProjectsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{594} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{625} } func (x *GetXpnResourcesProjectsRequest) GetFilter() string { @@ -85946,7 +89170,7 @@ type GetZoneOperationRequest struct { func (x *GetZoneOperationRequest) Reset() { *x = GetZoneOperationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[595] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[626] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85958,7 +89182,7 @@ func (x *GetZoneOperationRequest) String() string { func (*GetZoneOperationRequest) ProtoMessage() {} func (x *GetZoneOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[595] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[626] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85971,7 +89195,7 @@ func (x *GetZoneOperationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetZoneOperationRequest.ProtoReflect.Descriptor instead. func (*GetZoneOperationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{595} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{626} } func (x *GetZoneOperationRequest) GetOperation() string { @@ -86008,7 +89232,7 @@ type GetZoneRequest struct { func (x *GetZoneRequest) Reset() { *x = GetZoneRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[596] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[627] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86020,7 +89244,7 @@ func (x *GetZoneRequest) String() string { func (*GetZoneRequest) ProtoMessage() {} func (x *GetZoneRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[596] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[627] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86033,7 +89257,7 @@ func (x *GetZoneRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetZoneRequest.ProtoReflect.Descriptor instead. func (*GetZoneRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{596} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{627} } func (x *GetZoneRequest) GetProject() string { @@ -86050,6 +89274,70 @@ func (x *GetZoneRequest) GetZone() string { return "" } +// A request message for ZoneVmExtensionPolicies.Get. See the method description for details. +type GetZoneVmExtensionPolicyRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the VM extension policy resource to return. + VmExtensionPolicy string `protobuf:"bytes,331532730,opt,name=vm_extension_policy,json=vmExtensionPolicy,proto3" json:"vm_extension_policy,omitempty"` + // Name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GetZoneVmExtensionPolicyRequest) Reset() { + *x = GetZoneVmExtensionPolicyRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[628] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GetZoneVmExtensionPolicyRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GetZoneVmExtensionPolicyRequest) ProtoMessage() {} + +func (x *GetZoneVmExtensionPolicyRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[628] + 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 GetZoneVmExtensionPolicyRequest.ProtoReflect.Descriptor instead. +func (*GetZoneVmExtensionPolicyRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{628} +} + +func (x *GetZoneVmExtensionPolicyRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *GetZoneVmExtensionPolicyRequest) GetVmExtensionPolicy() string { + if x != nil { + return x.VmExtensionPolicy + } + return "" +} + +func (x *GetZoneVmExtensionPolicyRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + type GlobalAddressesMoveRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // An optional destination address description if intended to be different @@ -86069,7 +89357,7 @@ type GlobalAddressesMoveRequest struct { func (x *GlobalAddressesMoveRequest) Reset() { *x = GlobalAddressesMoveRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[597] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[629] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86081,7 +89369,7 @@ func (x *GlobalAddressesMoveRequest) String() string { func (*GlobalAddressesMoveRequest) ProtoMessage() {} func (x *GlobalAddressesMoveRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[597] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[629] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86094,7 +89382,7 @@ func (x *GlobalAddressesMoveRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GlobalAddressesMoveRequest.ProtoReflect.Descriptor instead. func (*GlobalAddressesMoveRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{597} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{629} } func (x *GlobalAddressesMoveRequest) GetDescription() string { @@ -86121,7 +89409,7 @@ type GlobalNetworkEndpointGroupsAttachEndpointsRequest struct { func (x *GlobalNetworkEndpointGroupsAttachEndpointsRequest) Reset() { *x = GlobalNetworkEndpointGroupsAttachEndpointsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[598] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[630] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86133,7 +89421,7 @@ func (x *GlobalNetworkEndpointGroupsAttachEndpointsRequest) String() string { func (*GlobalNetworkEndpointGroupsAttachEndpointsRequest) ProtoMessage() {} func (x *GlobalNetworkEndpointGroupsAttachEndpointsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[598] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[630] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86146,7 +89434,7 @@ func (x *GlobalNetworkEndpointGroupsAttachEndpointsRequest) ProtoReflect() proto // Deprecated: Use GlobalNetworkEndpointGroupsAttachEndpointsRequest.ProtoReflect.Descriptor instead. func (*GlobalNetworkEndpointGroupsAttachEndpointsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{598} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{630} } func (x *GlobalNetworkEndpointGroupsAttachEndpointsRequest) GetNetworkEndpoints() []*NetworkEndpoint { @@ -86166,7 +89454,7 @@ type GlobalNetworkEndpointGroupsDetachEndpointsRequest struct { func (x *GlobalNetworkEndpointGroupsDetachEndpointsRequest) Reset() { *x = GlobalNetworkEndpointGroupsDetachEndpointsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[599] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[631] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86178,7 +89466,7 @@ func (x *GlobalNetworkEndpointGroupsDetachEndpointsRequest) String() string { func (*GlobalNetworkEndpointGroupsDetachEndpointsRequest) ProtoMessage() {} func (x *GlobalNetworkEndpointGroupsDetachEndpointsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[599] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[631] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86191,7 +89479,7 @@ func (x *GlobalNetworkEndpointGroupsDetachEndpointsRequest) ProtoReflect() proto // Deprecated: Use GlobalNetworkEndpointGroupsDetachEndpointsRequest.ProtoReflect.Descriptor instead. func (*GlobalNetworkEndpointGroupsDetachEndpointsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{599} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{631} } func (x *GlobalNetworkEndpointGroupsDetachEndpointsRequest) GetNetworkEndpoints() []*NetworkEndpoint { @@ -86219,7 +89507,7 @@ type GlobalOrganizationSetPolicyRequest struct { func (x *GlobalOrganizationSetPolicyRequest) Reset() { *x = GlobalOrganizationSetPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[600] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[632] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86231,7 +89519,7 @@ func (x *GlobalOrganizationSetPolicyRequest) String() string { func (*GlobalOrganizationSetPolicyRequest) ProtoMessage() {} func (x *GlobalOrganizationSetPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[600] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[632] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86244,7 +89532,7 @@ func (x *GlobalOrganizationSetPolicyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GlobalOrganizationSetPolicyRequest.ProtoReflect.Descriptor instead. func (*GlobalOrganizationSetPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{600} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{632} } func (x *GlobalOrganizationSetPolicyRequest) GetBindings() []*Binding { @@ -86288,7 +89576,7 @@ type GlobalSetLabelsRequest struct { func (x *GlobalSetLabelsRequest) Reset() { *x = GlobalSetLabelsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[601] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[633] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86300,7 +89588,7 @@ func (x *GlobalSetLabelsRequest) String() string { func (*GlobalSetLabelsRequest) ProtoMessage() {} func (x *GlobalSetLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[601] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[633] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86313,7 +89601,7 @@ func (x *GlobalSetLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GlobalSetLabelsRequest.ProtoReflect.Descriptor instead. func (*GlobalSetLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{601} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{633} } func (x *GlobalSetLabelsRequest) GetLabelFingerprint() string { @@ -86348,7 +89636,7 @@ type GlobalSetPolicyRequest struct { func (x *GlobalSetPolicyRequest) Reset() { *x = GlobalSetPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[602] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[634] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86360,7 +89648,7 @@ func (x *GlobalSetPolicyRequest) String() string { func (*GlobalSetPolicyRequest) ProtoMessage() {} func (x *GlobalSetPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[602] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[634] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86373,7 +89661,7 @@ func (x *GlobalSetPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GlobalSetPolicyRequest.ProtoReflect.Descriptor instead. func (*GlobalSetPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{602} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{634} } func (x *GlobalSetPolicyRequest) GetBindings() []*Binding { @@ -86432,7 +89720,7 @@ type GroupMaintenanceInfo struct { func (x *GroupMaintenanceInfo) Reset() { *x = GroupMaintenanceInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[603] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[635] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86444,7 +89732,7 @@ func (x *GroupMaintenanceInfo) String() string { func (*GroupMaintenanceInfo) ProtoMessage() {} func (x *GroupMaintenanceInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[603] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[635] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86457,7 +89745,7 @@ func (x *GroupMaintenanceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use GroupMaintenanceInfo.ProtoReflect.Descriptor instead. func (*GroupMaintenanceInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{603} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{635} } func (x *GroupMaintenanceInfo) GetInstanceMaintenanceOngoingCount() int32 { @@ -86539,7 +89827,7 @@ type GuestAttributes struct { func (x *GuestAttributes) Reset() { *x = GuestAttributes{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[604] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[636] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86551,7 +89839,7 @@ func (x *GuestAttributes) String() string { func (*GuestAttributes) ProtoMessage() {} func (x *GuestAttributes) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[604] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[636] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86564,7 +89852,7 @@ func (x *GuestAttributes) ProtoReflect() protoreflect.Message { // Deprecated: Use GuestAttributes.ProtoReflect.Descriptor instead. func (*GuestAttributes) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{604} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{636} } func (x *GuestAttributes) GetKind() string { @@ -86624,7 +89912,7 @@ type GuestAttributesEntry struct { func (x *GuestAttributesEntry) Reset() { *x = GuestAttributesEntry{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[605] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[637] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86636,7 +89924,7 @@ func (x *GuestAttributesEntry) String() string { func (*GuestAttributesEntry) ProtoMessage() {} func (x *GuestAttributesEntry) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[605] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[637] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86649,7 +89937,7 @@ func (x *GuestAttributesEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use GuestAttributesEntry.ProtoReflect.Descriptor instead. func (*GuestAttributesEntry) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{605} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{637} } func (x *GuestAttributesEntry) GetKey() string { @@ -86683,7 +89971,7 @@ type GuestAttributesValue struct { func (x *GuestAttributesValue) Reset() { *x = GuestAttributesValue{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[606] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[638] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86695,7 +89983,7 @@ func (x *GuestAttributesValue) String() string { func (*GuestAttributesValue) ProtoMessage() {} func (x *GuestAttributesValue) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[606] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[638] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86708,7 +89996,7 @@ func (x *GuestAttributesValue) ProtoReflect() protoreflect.Message { // Deprecated: Use GuestAttributesValue.ProtoReflect.Descriptor instead. func (*GuestAttributesValue) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{606} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{638} } func (x *GuestAttributesValue) GetItems() []*GuestAttributesEntry { @@ -86736,6 +90024,7 @@ type GuestOsFeature struct { // - TDX_CAPABLE // - IDPF // - SNP_SVSM_CAPABLE + // - CCA_CAPABLE // // For more information, see // Enabling guest operating system features. @@ -86747,7 +90036,7 @@ type GuestOsFeature struct { func (x *GuestOsFeature) Reset() { *x = GuestOsFeature{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[607] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[639] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86759,7 +90048,7 @@ func (x *GuestOsFeature) String() string { func (*GuestOsFeature) ProtoMessage() {} func (x *GuestOsFeature) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[607] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[639] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86772,7 +90061,7 @@ func (x *GuestOsFeature) ProtoReflect() protoreflect.Message { // Deprecated: Use GuestOsFeature.ProtoReflect.Descriptor instead. func (*GuestOsFeature) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{607} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{639} } func (x *GuestOsFeature) GetType() string { @@ -86840,7 +90129,7 @@ type HTTP2HealthCheck struct { func (x *HTTP2HealthCheck) Reset() { *x = HTTP2HealthCheck{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[608] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[640] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86852,7 +90141,7 @@ func (x *HTTP2HealthCheck) String() string { func (*HTTP2HealthCheck) ProtoMessage() {} func (x *HTTP2HealthCheck) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[608] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[640] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86865,7 +90154,7 @@ func (x *HTTP2HealthCheck) ProtoReflect() protoreflect.Message { // Deprecated: Use HTTP2HealthCheck.ProtoReflect.Descriptor instead. func (*HTTP2HealthCheck) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{608} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{640} } func (x *HTTP2HealthCheck) GetHost() string { @@ -86972,7 +90261,7 @@ type HTTPHealthCheck struct { func (x *HTTPHealthCheck) Reset() { *x = HTTPHealthCheck{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[609] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[641] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86984,7 +90273,7 @@ func (x *HTTPHealthCheck) String() string { func (*HTTPHealthCheck) ProtoMessage() {} func (x *HTTPHealthCheck) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[609] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[641] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86997,7 +90286,7 @@ func (x *HTTPHealthCheck) ProtoReflect() protoreflect.Message { // Deprecated: Use HTTPHealthCheck.ProtoReflect.Descriptor instead. func (*HTTPHealthCheck) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{609} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{641} } func (x *HTTPHealthCheck) GetHost() string { @@ -87107,7 +90396,7 @@ type HTTPSHealthCheck struct { func (x *HTTPSHealthCheck) Reset() { *x = HTTPSHealthCheck{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[610] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[642] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -87119,7 +90408,7 @@ func (x *HTTPSHealthCheck) String() string { func (*HTTPSHealthCheck) ProtoMessage() {} func (x *HTTPSHealthCheck) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[610] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[642] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87132,7 +90421,7 @@ func (x *HTTPSHealthCheck) ProtoReflect() protoreflect.Message { // Deprecated: Use HTTPSHealthCheck.ProtoReflect.Descriptor instead. func (*HTTPSHealthCheck) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{610} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{642} } func (x *HTTPSHealthCheck) GetHost() string { @@ -87197,7 +90486,7 @@ type HealthAggregationPoliciesScopedList struct { func (x *HealthAggregationPoliciesScopedList) Reset() { *x = HealthAggregationPoliciesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[611] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[643] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -87209,7 +90498,7 @@ func (x *HealthAggregationPoliciesScopedList) String() string { func (*HealthAggregationPoliciesScopedList) ProtoMessage() {} func (x *HealthAggregationPoliciesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[611] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[643] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87222,7 +90511,7 @@ func (x *HealthAggregationPoliciesScopedList) ProtoReflect() protoreflect.Messag // Deprecated: Use HealthAggregationPoliciesScopedList.ProtoReflect.Descriptor instead. func (*HealthAggregationPoliciesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{611} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{643} } func (x *HealthAggregationPoliciesScopedList) GetHealthAggregationPolicies() []*HealthAggregationPolicy { @@ -87317,7 +90606,7 @@ type HealthAggregationPolicy struct { func (x *HealthAggregationPolicy) Reset() { *x = HealthAggregationPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[612] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[644] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -87329,7 +90618,7 @@ func (x *HealthAggregationPolicy) String() string { func (*HealthAggregationPolicy) ProtoMessage() {} func (x *HealthAggregationPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[612] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[644] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87342,7 +90631,7 @@ func (x *HealthAggregationPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthAggregationPolicy.ProtoReflect.Descriptor instead. func (*HealthAggregationPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{612} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{644} } func (x *HealthAggregationPolicy) GetCreationTimestamp() string { @@ -87456,7 +90745,7 @@ type HealthAggregationPolicyAggregatedList struct { func (x *HealthAggregationPolicyAggregatedList) Reset() { *x = HealthAggregationPolicyAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[613] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[645] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -87468,7 +90757,7 @@ func (x *HealthAggregationPolicyAggregatedList) String() string { func (*HealthAggregationPolicyAggregatedList) ProtoMessage() {} func (x *HealthAggregationPolicyAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[613] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[645] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87481,7 +90770,7 @@ func (x *HealthAggregationPolicyAggregatedList) ProtoReflect() protoreflect.Mess // Deprecated: Use HealthAggregationPolicyAggregatedList.ProtoReflect.Descriptor instead. func (*HealthAggregationPolicyAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{613} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{645} } func (x *HealthAggregationPolicyAggregatedList) GetId() string { @@ -87558,7 +90847,7 @@ type HealthAggregationPolicyList struct { func (x *HealthAggregationPolicyList) Reset() { *x = HealthAggregationPolicyList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[614] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[646] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -87570,7 +90859,7 @@ func (x *HealthAggregationPolicyList) String() string { func (*HealthAggregationPolicyList) ProtoMessage() {} func (x *HealthAggregationPolicyList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[614] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[646] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87583,7 +90872,7 @@ func (x *HealthAggregationPolicyList) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthAggregationPolicyList.ProtoReflect.Descriptor instead. func (*HealthAggregationPolicyList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{614} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{646} } func (x *HealthAggregationPolicyList) GetId() string { @@ -87728,7 +91017,7 @@ type HealthCheck struct { func (x *HealthCheck) Reset() { *x = HealthCheck{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[615] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[647] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -87740,7 +91029,7 @@ func (x *HealthCheck) String() string { func (*HealthCheck) ProtoMessage() {} func (x *HealthCheck) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[615] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[647] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87753,7 +91042,7 @@ func (x *HealthCheck) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthCheck.ProtoReflect.Descriptor instead. func (*HealthCheck) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{615} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{647} } func (x *HealthCheck) GetCheckIntervalSec() int32 { @@ -87928,7 +91217,7 @@ type HealthCheckList struct { func (x *HealthCheckList) Reset() { *x = HealthCheckList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[616] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[648] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -87940,7 +91229,7 @@ func (x *HealthCheckList) String() string { func (*HealthCheckList) ProtoMessage() {} func (x *HealthCheckList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[616] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[648] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87953,7 +91242,7 @@ func (x *HealthCheckList) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthCheckList.ProtoReflect.Descriptor instead. func (*HealthCheckList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{616} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{648} } func (x *HealthCheckList) GetId() string { @@ -88011,7 +91300,7 @@ type HealthCheckLogConfig struct { func (x *HealthCheckLogConfig) Reset() { *x = HealthCheckLogConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[617] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[649] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88023,7 +91312,7 @@ func (x *HealthCheckLogConfig) String() string { func (*HealthCheckLogConfig) ProtoMessage() {} func (x *HealthCheckLogConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[617] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[649] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88036,7 +91325,7 @@ func (x *HealthCheckLogConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthCheckLogConfig.ProtoReflect.Descriptor instead. func (*HealthCheckLogConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{617} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{649} } func (x *HealthCheckLogConfig) GetEnable() bool { @@ -88061,7 +91350,7 @@ type HealthCheckReference struct { func (x *HealthCheckReference) Reset() { *x = HealthCheckReference{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[618] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[650] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88073,7 +91362,7 @@ func (x *HealthCheckReference) String() string { func (*HealthCheckReference) ProtoMessage() {} func (x *HealthCheckReference) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[618] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[650] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88086,7 +91375,7 @@ func (x *HealthCheckReference) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthCheckReference.ProtoReflect.Descriptor instead. func (*HealthCheckReference) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{618} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{650} } func (x *HealthCheckReference) GetHealthCheck() string { @@ -88170,7 +91459,7 @@ type HealthCheckService struct { func (x *HealthCheckService) Reset() { *x = HealthCheckService{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[619] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[651] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88182,7 +91471,7 @@ func (x *HealthCheckService) String() string { func (*HealthCheckService) ProtoMessage() {} func (x *HealthCheckService) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[619] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[651] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88195,7 +91484,7 @@ func (x *HealthCheckService) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthCheckService.ProtoReflect.Descriptor instead. func (*HealthCheckService) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{619} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{651} } func (x *HealthCheckService) GetCreationTimestamp() string { @@ -88309,7 +91598,7 @@ type HealthCheckServiceAggregatedList struct { func (x *HealthCheckServiceAggregatedList) Reset() { *x = HealthCheckServiceAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[620] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[652] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88321,7 +91610,7 @@ func (x *HealthCheckServiceAggregatedList) String() string { func (*HealthCheckServiceAggregatedList) ProtoMessage() {} func (x *HealthCheckServiceAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[620] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[652] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88334,7 +91623,7 @@ func (x *HealthCheckServiceAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthCheckServiceAggregatedList.ProtoReflect.Descriptor instead. func (*HealthCheckServiceAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{620} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{652} } func (x *HealthCheckServiceAggregatedList) GetId() string { @@ -88401,7 +91690,7 @@ type HealthCheckServiceReference struct { func (x *HealthCheckServiceReference) Reset() { *x = HealthCheckServiceReference{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[621] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[653] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88413,7 +91702,7 @@ func (x *HealthCheckServiceReference) String() string { func (*HealthCheckServiceReference) ProtoMessage() {} func (x *HealthCheckServiceReference) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[621] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[653] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88426,7 +91715,7 @@ func (x *HealthCheckServiceReference) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthCheckServiceReference.ProtoReflect.Descriptor instead. func (*HealthCheckServiceReference) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{621} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{653} } func (x *HealthCheckServiceReference) GetHealthCheckService() string { @@ -88461,7 +91750,7 @@ type HealthCheckServicesList struct { func (x *HealthCheckServicesList) Reset() { *x = HealthCheckServicesList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[622] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[654] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88473,7 +91762,7 @@ func (x *HealthCheckServicesList) String() string { func (*HealthCheckServicesList) ProtoMessage() {} func (x *HealthCheckServicesList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[622] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[654] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88486,7 +91775,7 @@ func (x *HealthCheckServicesList) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthCheckServicesList.ProtoReflect.Descriptor instead. func (*HealthCheckServicesList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{622} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{654} } func (x *HealthCheckServicesList) GetId() string { @@ -88544,7 +91833,7 @@ type HealthCheckServicesScopedList struct { func (x *HealthCheckServicesScopedList) Reset() { *x = HealthCheckServicesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[623] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[655] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88556,7 +91845,7 @@ func (x *HealthCheckServicesScopedList) String() string { func (*HealthCheckServicesScopedList) ProtoMessage() {} func (x *HealthCheckServicesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[623] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[655] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88569,7 +91858,7 @@ func (x *HealthCheckServicesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthCheckServicesScopedList.ProtoReflect.Descriptor instead. func (*HealthCheckServicesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{623} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{655} } func (x *HealthCheckServicesScopedList) GetResources() []*HealthCheckService { @@ -88612,7 +91901,7 @@ type HealthChecksAggregatedList struct { func (x *HealthChecksAggregatedList) Reset() { *x = HealthChecksAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[624] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[656] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88624,7 +91913,7 @@ func (x *HealthChecksAggregatedList) String() string { func (*HealthChecksAggregatedList) ProtoMessage() {} func (x *HealthChecksAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[624] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[656] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88637,7 +91926,7 @@ func (x *HealthChecksAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthChecksAggregatedList.ProtoReflect.Descriptor instead. func (*HealthChecksAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{624} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{656} } func (x *HealthChecksAggregatedList) GetId() string { @@ -88702,7 +91991,7 @@ type HealthChecksScopedList struct { func (x *HealthChecksScopedList) Reset() { *x = HealthChecksScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[625] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[657] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88714,7 +92003,7 @@ func (x *HealthChecksScopedList) String() string { func (*HealthChecksScopedList) ProtoMessage() {} func (x *HealthChecksScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[625] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[657] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88727,7 +92016,7 @@ func (x *HealthChecksScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthChecksScopedList.ProtoReflect.Descriptor instead. func (*HealthChecksScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{625} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{657} } func (x *HealthChecksScopedList) GetHealthChecks() []*HealthCheck { @@ -88807,7 +92096,7 @@ type HealthSource struct { func (x *HealthSource) Reset() { *x = HealthSource{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[626] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[658] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88819,7 +92108,7 @@ func (x *HealthSource) String() string { func (*HealthSource) ProtoMessage() {} func (x *HealthSource) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[626] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[658] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88832,7 +92121,7 @@ func (x *HealthSource) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthSource.ProtoReflect.Descriptor instead. func (*HealthSource) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{626} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{658} } func (x *HealthSource) GetCreationTimestamp() string { @@ -88946,7 +92235,7 @@ type HealthSourceAggregatedList struct { func (x *HealthSourceAggregatedList) Reset() { *x = HealthSourceAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[627] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[659] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88958,7 +92247,7 @@ func (x *HealthSourceAggregatedList) String() string { func (*HealthSourceAggregatedList) ProtoMessage() {} func (x *HealthSourceAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[627] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[659] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88971,7 +92260,7 @@ func (x *HealthSourceAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthSourceAggregatedList.ProtoReflect.Descriptor instead. func (*HealthSourceAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{627} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{659} } func (x *HealthSourceAggregatedList) GetId() string { @@ -89023,6 +92312,71 @@ func (x *HealthSourceAggregatedList) GetWarning() *Warning { return nil } +// Response message for RegionHealthSources.GetHealth +type HealthSourceHealth struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Health state of the HealthSource. + // Check the HealthState enum for the list of possible values. + HealthState *string `protobuf:"bytes,324007150,opt,name=health_state,json=healthState,proto3,oneof" json:"health_state,omitempty"` + // Output only. [Output Only] Type of resource. Alwayscompute#healthSourceHealth for the health of health sources. + Kind *string `protobuf:"bytes,3292052,opt,name=kind,proto3,oneof" json:"kind,omitempty"` + // Health state details of the sources. + Sources []*HealthSourcesGetHealthResponseSourceInfo `protobuf:"bytes,125606840,rep,name=sources,proto3" json:"sources,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *HealthSourceHealth) Reset() { + *x = HealthSourceHealth{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[660] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *HealthSourceHealth) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*HealthSourceHealth) ProtoMessage() {} + +func (x *HealthSourceHealth) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[660] + 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 HealthSourceHealth.ProtoReflect.Descriptor instead. +func (*HealthSourceHealth) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{660} +} + +func (x *HealthSourceHealth) GetHealthState() string { + if x != nil && x.HealthState != nil { + return *x.HealthState + } + return "" +} + +func (x *HealthSourceHealth) GetKind() string { + if x != nil && x.Kind != nil { + return *x.Kind + } + return "" +} + +func (x *HealthSourceHealth) GetSources() []*HealthSourcesGetHealthResponseSourceInfo { + if x != nil { + return x.Sources + } + return nil +} + type HealthSourceList struct { state protoimpl.MessageState `protogen:"open.v1"` // [Output Only] Unique identifier for the resource; defined by the server. @@ -89047,7 +92401,7 @@ type HealthSourceList struct { func (x *HealthSourceList) Reset() { *x = HealthSourceList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[628] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[661] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89059,7 +92413,7 @@ func (x *HealthSourceList) String() string { func (*HealthSourceList) ProtoMessage() {} func (x *HealthSourceList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[628] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[661] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89072,7 +92426,7 @@ func (x *HealthSourceList) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthSourceList.ProtoReflect.Descriptor instead. func (*HealthSourceList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{628} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{661} } func (x *HealthSourceList) GetId() string { @@ -89117,6 +92471,139 @@ func (x *HealthSourceList) GetWarning() *Warning { return nil } +type HealthSourcesGetHealthResponseSourceInfo struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Represents an instance group or network endpoint group behind the source + // backend service. Only used if the sourceType of the regionHealthSource + // is BACKEND_SERVICE. + Backends []*HealthSourcesGetHealthResponseSourceInfoBackendInfo `protobuf:"bytes,510839903,rep,name=backends,proto3" json:"backends,omitempty"` + // Fully qualified URL of the forwarding rule associated with the source + // resource if it is a L4ILB backend service. + ForwardingRule *string `protobuf:"bytes,269964030,opt,name=forwarding_rule,json=forwardingRule,proto3,oneof" json:"forwarding_rule,omitempty"` + // Fully qualified URL of the associated source resource. This is always a + // backend service URL. + Source *string `protobuf:"bytes,177235995,opt,name=source,proto3,oneof" json:"source,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *HealthSourcesGetHealthResponseSourceInfo) Reset() { + *x = HealthSourcesGetHealthResponseSourceInfo{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[662] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *HealthSourcesGetHealthResponseSourceInfo) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*HealthSourcesGetHealthResponseSourceInfo) ProtoMessage() {} + +func (x *HealthSourcesGetHealthResponseSourceInfo) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[662] + 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 HealthSourcesGetHealthResponseSourceInfo.ProtoReflect.Descriptor instead. +func (*HealthSourcesGetHealthResponseSourceInfo) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{662} +} + +func (x *HealthSourcesGetHealthResponseSourceInfo) GetBackends() []*HealthSourcesGetHealthResponseSourceInfoBackendInfo { + if x != nil { + return x.Backends + } + return nil +} + +func (x *HealthSourcesGetHealthResponseSourceInfo) GetForwardingRule() string { + if x != nil && x.ForwardingRule != nil { + return *x.ForwardingRule + } + return "" +} + +func (x *HealthSourcesGetHealthResponseSourceInfo) GetSource() string { + if x != nil && x.Source != nil { + return *x.Source + } + return "" +} + +type HealthSourcesGetHealthResponseSourceInfoBackendInfo struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Total number of endpoints when determining the health of the + // regionHealthSource. + EndpointCount *int32 `protobuf:"varint,486641125,opt,name=endpoint_count,json=endpointCount,proto3,oneof" json:"endpoint_count,omitempty"` + // Fully qualified URL of an instance group or network endpoint group + // behind the source backend service. + Group *string `protobuf:"bytes,98629247,opt,name=group,proto3,oneof" json:"group,omitempty"` + // Number of endpoints considered healthy when determining health of the + // regionHealthSource. + HealthyEndpointCount *int32 `protobuf:"varint,291284167,opt,name=healthy_endpoint_count,json=healthyEndpointCount,proto3,oneof" json:"healthy_endpoint_count,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *HealthSourcesGetHealthResponseSourceInfoBackendInfo) Reset() { + *x = HealthSourcesGetHealthResponseSourceInfoBackendInfo{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[663] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *HealthSourcesGetHealthResponseSourceInfoBackendInfo) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*HealthSourcesGetHealthResponseSourceInfoBackendInfo) ProtoMessage() {} + +func (x *HealthSourcesGetHealthResponseSourceInfoBackendInfo) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[663] + 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 HealthSourcesGetHealthResponseSourceInfoBackendInfo.ProtoReflect.Descriptor instead. +func (*HealthSourcesGetHealthResponseSourceInfoBackendInfo) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{663} +} + +func (x *HealthSourcesGetHealthResponseSourceInfoBackendInfo) GetEndpointCount() int32 { + if x != nil && x.EndpointCount != nil { + return *x.EndpointCount + } + return 0 +} + +func (x *HealthSourcesGetHealthResponseSourceInfoBackendInfo) GetGroup() string { + if x != nil && x.Group != nil { + return *x.Group + } + return "" +} + +func (x *HealthSourcesGetHealthResponseSourceInfoBackendInfo) GetHealthyEndpointCount() int32 { + if x != nil && x.HealthyEndpointCount != nil { + return *x.HealthyEndpointCount + } + return 0 +} + type HealthSourcesScopedList struct { state protoimpl.MessageState `protogen:"open.v1"` // A list of HealthSources contained in this scope. @@ -89130,7 +92617,7 @@ type HealthSourcesScopedList struct { func (x *HealthSourcesScopedList) Reset() { *x = HealthSourcesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[629] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[664] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89142,7 +92629,7 @@ func (x *HealthSourcesScopedList) String() string { func (*HealthSourcesScopedList) ProtoMessage() {} func (x *HealthSourcesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[629] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[664] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89155,7 +92642,7 @@ func (x *HealthSourcesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthSourcesScopedList.ProtoReflect.Descriptor instead. func (*HealthSourcesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{629} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{664} } func (x *HealthSourcesScopedList) GetHealthSources() []*HealthSource { @@ -89206,7 +92693,7 @@ type HealthStatus struct { func (x *HealthStatus) Reset() { *x = HealthStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[630] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[665] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89218,7 +92705,7 @@ func (x *HealthStatus) String() string { func (*HealthStatus) ProtoMessage() {} func (x *HealthStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[630] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[665] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89231,7 +92718,7 @@ func (x *HealthStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthStatus.ProtoReflect.Descriptor instead. func (*HealthStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{630} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{665} } func (x *HealthStatus) GetAnnotations() map[string]string { @@ -89339,7 +92826,7 @@ type HealthStatusForNetworkEndpoint struct { func (x *HealthStatusForNetworkEndpoint) Reset() { *x = HealthStatusForNetworkEndpoint{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[631] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[666] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89351,7 +92838,7 @@ func (x *HealthStatusForNetworkEndpoint) String() string { func (*HealthStatusForNetworkEndpoint) ProtoMessage() {} func (x *HealthStatusForNetworkEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[631] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[666] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89364,7 +92851,7 @@ func (x *HealthStatusForNetworkEndpoint) ProtoReflect() protoreflect.Message { // Deprecated: Use HealthStatusForNetworkEndpoint.ProtoReflect.Descriptor instead. func (*HealthStatusForNetworkEndpoint) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{631} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{666} } func (x *HealthStatusForNetworkEndpoint) GetBackendService() *BackendServiceReference { @@ -89424,7 +92911,7 @@ type Help struct { func (x *Help) Reset() { *x = Help{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[632] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[667] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89436,7 +92923,7 @@ func (x *Help) String() string { func (*Help) ProtoMessage() {} func (x *Help) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[632] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[667] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89449,7 +92936,7 @@ func (x *Help) ProtoReflect() protoreflect.Message { // Deprecated: Use Help.ProtoReflect.Descriptor instead. func (*Help) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{632} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{667} } func (x *Help) GetLinks() []*HelpLink { @@ -89472,7 +92959,7 @@ type HelpLink struct { func (x *HelpLink) Reset() { *x = HelpLink{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[633] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[668] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89484,7 +92971,7 @@ func (x *HelpLink) String() string { func (*HelpLink) ProtoMessage() {} func (x *HelpLink) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[633] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[668] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89497,7 +92984,7 @@ func (x *HelpLink) ProtoReflect() protoreflect.Message { // Deprecated: Use HelpLink.ProtoReflect.Descriptor instead. func (*HelpLink) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{633} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{668} } func (x *HelpLink) GetDescription() string { @@ -89540,7 +93027,7 @@ type HostRule struct { func (x *HostRule) Reset() { *x = HostRule{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[634] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[669] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89552,7 +93039,7 @@ func (x *HostRule) String() string { func (*HostRule) ProtoMessage() {} func (x *HostRule) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[634] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[669] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89565,7 +93052,7 @@ func (x *HostRule) ProtoReflect() protoreflect.Message { // Deprecated: Use HostRule.ProtoReflect.Descriptor instead. func (*HostRule) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{634} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{669} } func (x *HostRule) GetDescription() string { @@ -89613,7 +93100,7 @@ type HttpFaultAbort struct { func (x *HttpFaultAbort) Reset() { *x = HttpFaultAbort{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[635] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[670] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89625,7 +93112,7 @@ func (x *HttpFaultAbort) String() string { func (*HttpFaultAbort) ProtoMessage() {} func (x *HttpFaultAbort) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[635] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[670] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89638,7 +93125,7 @@ func (x *HttpFaultAbort) ProtoReflect() protoreflect.Message { // Deprecated: Use HttpFaultAbort.ProtoReflect.Descriptor instead. func (*HttpFaultAbort) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{635} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{670} } func (x *HttpFaultAbort) GetHttpStatus() uint32 { @@ -89672,7 +93159,7 @@ type HttpFaultDelay struct { func (x *HttpFaultDelay) Reset() { *x = HttpFaultDelay{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[636] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[671] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89684,7 +93171,7 @@ func (x *HttpFaultDelay) String() string { func (*HttpFaultDelay) ProtoMessage() {} func (x *HttpFaultDelay) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[636] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[671] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89697,7 +93184,7 @@ func (x *HttpFaultDelay) ProtoReflect() protoreflect.Message { // Deprecated: Use HttpFaultDelay.ProtoReflect.Descriptor instead. func (*HttpFaultDelay) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{636} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{671} } func (x *HttpFaultDelay) GetFixedDelay() *Duration { @@ -89734,7 +93221,7 @@ type HttpFaultInjection struct { func (x *HttpFaultInjection) Reset() { *x = HttpFaultInjection{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[637] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[672] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89746,7 +93233,7 @@ func (x *HttpFaultInjection) String() string { func (*HttpFaultInjection) ProtoMessage() {} func (x *HttpFaultInjection) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[637] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[672] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89759,7 +93246,7 @@ func (x *HttpFaultInjection) ProtoReflect() protoreflect.Message { // Deprecated: Use HttpFaultInjection.ProtoReflect.Descriptor instead. func (*HttpFaultInjection) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{637} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{672} } func (x *HttpFaultInjection) GetAbort() *HttpFaultAbort { @@ -89797,7 +93284,7 @@ type HttpHeaderAction struct { func (x *HttpHeaderAction) Reset() { *x = HttpHeaderAction{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[638] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[673] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89809,7 +93296,7 @@ func (x *HttpHeaderAction) String() string { func (*HttpHeaderAction) ProtoMessage() {} func (x *HttpHeaderAction) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[638] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[673] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89822,7 +93309,7 @@ func (x *HttpHeaderAction) ProtoReflect() protoreflect.Message { // Deprecated: Use HttpHeaderAction.ProtoReflect.Descriptor instead. func (*HttpHeaderAction) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{638} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{673} } func (x *HttpHeaderAction) GetRequestHeadersToAdd() []*HttpHeaderOption { @@ -89933,7 +93420,7 @@ type HttpHeaderMatch struct { func (x *HttpHeaderMatch) Reset() { *x = HttpHeaderMatch{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[639] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[674] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89945,7 +93432,7 @@ func (x *HttpHeaderMatch) String() string { func (*HttpHeaderMatch) ProtoMessage() {} func (x *HttpHeaderMatch) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[639] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[674] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89958,7 +93445,7 @@ func (x *HttpHeaderMatch) ProtoReflect() protoreflect.Message { // Deprecated: Use HttpHeaderMatch.ProtoReflect.Descriptor instead. func (*HttpHeaderMatch) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{639} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{674} } func (x *HttpHeaderMatch) GetExactMatch() string { @@ -90040,7 +93527,7 @@ type HttpHeaderOption struct { func (x *HttpHeaderOption) Reset() { *x = HttpHeaderOption{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[640] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[675] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90052,7 +93539,7 @@ func (x *HttpHeaderOption) String() string { func (*HttpHeaderOption) ProtoMessage() {} func (x *HttpHeaderOption) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[640] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[675] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90065,7 +93552,7 @@ func (x *HttpHeaderOption) ProtoReflect() protoreflect.Message { // Deprecated: Use HttpHeaderOption.ProtoReflect.Descriptor instead. func (*HttpHeaderOption) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{640} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{675} } func (x *HttpHeaderOption) GetHeaderName() string { @@ -90122,7 +93609,7 @@ type HttpQueryParameterMatch struct { func (x *HttpQueryParameterMatch) Reset() { *x = HttpQueryParameterMatch{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[641] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[676] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90134,7 +93621,7 @@ func (x *HttpQueryParameterMatch) String() string { func (*HttpQueryParameterMatch) ProtoMessage() {} func (x *HttpQueryParameterMatch) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[641] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[676] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90147,7 +93634,7 @@ func (x *HttpQueryParameterMatch) ProtoReflect() protoreflect.Message { // Deprecated: Use HttpQueryParameterMatch.ProtoReflect.Descriptor instead. func (*HttpQueryParameterMatch) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{641} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{676} } func (x *HttpQueryParameterMatch) GetExactMatch() string { @@ -90241,7 +93728,7 @@ type HttpRedirectAction struct { func (x *HttpRedirectAction) Reset() { *x = HttpRedirectAction{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[642] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[677] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90253,7 +93740,7 @@ func (x *HttpRedirectAction) String() string { func (*HttpRedirectAction) ProtoMessage() {} func (x *HttpRedirectAction) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[642] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[677] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90266,7 +93753,7 @@ func (x *HttpRedirectAction) ProtoReflect() protoreflect.Message { // Deprecated: Use HttpRedirectAction.ProtoReflect.Descriptor instead. func (*HttpRedirectAction) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{642} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{677} } func (x *HttpRedirectAction) GetHostRedirect() string { @@ -90371,7 +93858,7 @@ type HttpRetryPolicy struct { func (x *HttpRetryPolicy) Reset() { *x = HttpRetryPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[643] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[678] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90383,7 +93870,7 @@ func (x *HttpRetryPolicy) String() string { func (*HttpRetryPolicy) ProtoMessage() {} func (x *HttpRetryPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[643] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[678] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90396,7 +93883,7 @@ func (x *HttpRetryPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use HttpRetryPolicy.ProtoReflect.Descriptor instead. func (*HttpRetryPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{643} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{678} } func (x *HttpRetryPolicy) GetNumRetries() uint32 { @@ -90422,6 +93909,11 @@ func (x *HttpRetryPolicy) GetRetryConditions() []string { type HttpRouteAction struct { state protoimpl.MessageState `protogen:"open.v1"` + // Specifies the cache policy configuration for matched traffic. Available + // only for Global `EXTERNAL_MANAGED` load balancer schemes. At least one + // property must be specified. This policy cannot be specified if any target + // backend has Identity-Aware Proxy enabled. + CachePolicy *CachePolicy `protobuf:"bytes,457366671,opt,name=cache_policy,json=cachePolicy,proto3,oneof" json:"cache_policy,omitempty"` // The specification for allowing client-side cross-origin requests. For more // information about the W3C recommendation for cross-origin resource sharing // (CORS), see Fetch API Living @@ -90504,7 +93996,7 @@ type HttpRouteAction struct { func (x *HttpRouteAction) Reset() { *x = HttpRouteAction{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[644] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[679] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90516,7 +94008,7 @@ func (x *HttpRouteAction) String() string { func (*HttpRouteAction) ProtoMessage() {} func (x *HttpRouteAction) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[644] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[679] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90529,7 +94021,14 @@ func (x *HttpRouteAction) ProtoReflect() protoreflect.Message { // Deprecated: Use HttpRouteAction.ProtoReflect.Descriptor instead. func (*HttpRouteAction) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{644} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{679} +} + +func (x *HttpRouteAction) GetCachePolicy() *CachePolicy { + if x != nil { + return x.CachePolicy + } + return nil } func (x *HttpRouteAction) GetCorsPolicy() *CorsPolicy { @@ -90693,7 +94192,7 @@ type HttpRouteRule struct { func (x *HttpRouteRule) Reset() { *x = HttpRouteRule{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[645] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[680] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90705,7 +94204,7 @@ func (x *HttpRouteRule) String() string { func (*HttpRouteRule) ProtoMessage() {} func (x *HttpRouteRule) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[645] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[680] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90718,7 +94217,7 @@ func (x *HttpRouteRule) ProtoReflect() protoreflect.Message { // Deprecated: Use HttpRouteRule.ProtoReflect.Descriptor instead. func (*HttpRouteRule) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{645} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{680} } func (x *HttpRouteRule) GetCustomErrorResponsePolicy() *CustomErrorResponsePolicy { @@ -90875,7 +94374,7 @@ type HttpRouteRuleMatch struct { func (x *HttpRouteRuleMatch) Reset() { *x = HttpRouteRuleMatch{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[646] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[681] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90887,7 +94386,7 @@ func (x *HttpRouteRuleMatch) String() string { func (*HttpRouteRuleMatch) ProtoMessage() {} func (x *HttpRouteRuleMatch) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[646] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[681] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90900,7 +94399,7 @@ func (x *HttpRouteRuleMatch) ProtoReflect() protoreflect.Message { // Deprecated: Use HttpRouteRuleMatch.ProtoReflect.Descriptor instead. func (*HttpRouteRuleMatch) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{646} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{681} } func (x *HttpRouteRuleMatch) GetFullPathMatch() string { @@ -91145,7 +94644,7 @@ type Image struct { func (x *Image) Reset() { *x = Image{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[647] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[682] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -91157,7 +94656,7 @@ func (x *Image) String() string { func (*Image) ProtoMessage() {} func (x *Image) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[647] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[682] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91170,7 +94669,7 @@ func (x *Image) ProtoReflect() protoreflect.Message { // Deprecated: Use Image.ProtoReflect.Descriptor instead. func (*Image) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{647} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{682} } func (x *Image) GetArchitecture() string { @@ -91429,7 +94928,7 @@ type ImageFamilyView struct { func (x *ImageFamilyView) Reset() { *x = ImageFamilyView{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[648] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[683] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -91441,7 +94940,7 @@ func (x *ImageFamilyView) String() string { func (*ImageFamilyView) ProtoMessage() {} func (x *ImageFamilyView) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[648] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[683] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91454,7 +94953,7 @@ func (x *ImageFamilyView) ProtoReflect() protoreflect.Message { // Deprecated: Use ImageFamilyView.ProtoReflect.Descriptor instead. func (*ImageFamilyView) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{648} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{683} } func (x *ImageFamilyView) GetImage() *Image { @@ -91489,7 +94988,7 @@ type ImageList struct { func (x *ImageList) Reset() { *x = ImageList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[649] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[684] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -91501,7 +95000,7 @@ func (x *ImageList) String() string { func (*ImageList) ProtoMessage() {} func (x *ImageList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[649] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[684] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91514,7 +95013,7 @@ func (x *ImageList) ProtoReflect() protoreflect.Message { // Deprecated: Use ImageList.ProtoReflect.Descriptor instead. func (*ImageList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{649} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{684} } func (x *ImageList) GetId() string { @@ -91576,7 +95075,7 @@ type ImageParams struct { func (x *ImageParams) Reset() { *x = ImageParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[650] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[685] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -91588,7 +95087,7 @@ func (x *ImageParams) String() string { func (*ImageParams) ProtoMessage() {} func (x *ImageParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[650] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[685] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91601,7 +95100,7 @@ func (x *ImageParams) ProtoReflect() protoreflect.Message { // Deprecated: Use ImageParams.ProtoReflect.Descriptor instead. func (*ImageParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{650} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{685} } func (x *ImageParams) GetResourceManagerTags() map[string]string { @@ -91629,7 +95128,7 @@ type InitialStateConfig struct { func (x *InitialStateConfig) Reset() { *x = InitialStateConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[651] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[686] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -91641,7 +95140,7 @@ func (x *InitialStateConfig) String() string { func (*InitialStateConfig) ProtoMessage() {} func (x *InitialStateConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[651] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[686] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91654,7 +95153,7 @@ func (x *InitialStateConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use InitialStateConfig.ProtoReflect.Descriptor instead. func (*InitialStateConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{651} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{686} } func (x *InitialStateConfig) GetDbs() []*FileContentBuffer { @@ -91714,7 +95213,7 @@ type InsertAddressRequest struct { func (x *InsertAddressRequest) Reset() { *x = InsertAddressRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[652] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[687] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -91726,7 +95225,7 @@ func (x *InsertAddressRequest) String() string { func (*InsertAddressRequest) ProtoMessage() {} func (x *InsertAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[652] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[687] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91739,7 +95238,7 @@ func (x *InsertAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertAddressRequest.ProtoReflect.Descriptor instead. func (*InsertAddressRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{652} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{687} } func (x *InsertAddressRequest) GetAddressResource() *Address { @@ -91799,7 +95298,7 @@ type InsertAutoscalerRequest struct { func (x *InsertAutoscalerRequest) Reset() { *x = InsertAutoscalerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[653] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[688] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -91811,7 +95310,7 @@ func (x *InsertAutoscalerRequest) String() string { func (*InsertAutoscalerRequest) ProtoMessage() {} func (x *InsertAutoscalerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[653] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[688] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91824,7 +95323,7 @@ func (x *InsertAutoscalerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertAutoscalerRequest.ProtoReflect.Descriptor instead. func (*InsertAutoscalerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{653} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{688} } func (x *InsertAutoscalerRequest) GetAutoscalerResource() *Autoscaler { @@ -91882,7 +95381,7 @@ type InsertBackendBucketRequest struct { func (x *InsertBackendBucketRequest) Reset() { *x = InsertBackendBucketRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[654] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[689] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -91894,7 +95393,7 @@ func (x *InsertBackendBucketRequest) String() string { func (*InsertBackendBucketRequest) ProtoMessage() {} func (x *InsertBackendBucketRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[654] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[689] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91907,7 +95406,7 @@ func (x *InsertBackendBucketRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertBackendBucketRequest.ProtoReflect.Descriptor instead. func (*InsertBackendBucketRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{654} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{689} } func (x *InsertBackendBucketRequest) GetBackendBucketResource() *BackendBucket { @@ -91958,7 +95457,7 @@ type InsertBackendServiceRequest struct { func (x *InsertBackendServiceRequest) Reset() { *x = InsertBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[655] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[690] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -91970,7 +95469,7 @@ func (x *InsertBackendServiceRequest) String() string { func (*InsertBackendServiceRequest) ProtoMessage() {} func (x *InsertBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[655] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[690] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91983,7 +95482,7 @@ func (x *InsertBackendServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertBackendServiceRequest.ProtoReflect.Descriptor instead. func (*InsertBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{655} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{690} } func (x *InsertBackendServiceRequest) GetBackendServiceResource() *BackendService { @@ -92037,7 +95536,7 @@ type InsertCrossSiteNetworkRequest struct { func (x *InsertCrossSiteNetworkRequest) Reset() { *x = InsertCrossSiteNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[656] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[691] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92049,7 +95548,7 @@ func (x *InsertCrossSiteNetworkRequest) String() string { func (*InsertCrossSiteNetworkRequest) ProtoMessage() {} func (x *InsertCrossSiteNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[656] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[691] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92062,7 +95561,7 @@ func (x *InsertCrossSiteNetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertCrossSiteNetworkRequest.ProtoReflect.Descriptor instead. func (*InsertCrossSiteNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{656} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{691} } func (x *InsertCrossSiteNetworkRequest) GetCrossSiteNetworkResource() *CrossSiteNetwork { @@ -92124,7 +95623,7 @@ type InsertDiskRequest struct { func (x *InsertDiskRequest) Reset() { *x = InsertDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[657] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[692] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92136,7 +95635,7 @@ func (x *InsertDiskRequest) String() string { func (*InsertDiskRequest) ProtoMessage() {} func (x *InsertDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[657] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[692] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92149,7 +95648,7 @@ func (x *InsertDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertDiskRequest.ProtoReflect.Descriptor instead. func (*InsertDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{657} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{692} } func (x *InsertDiskRequest) GetDiskResource() *Disk { @@ -92214,7 +95713,7 @@ type InsertExternalVpnGatewayRequest struct { func (x *InsertExternalVpnGatewayRequest) Reset() { *x = InsertExternalVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[658] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[693] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92226,7 +95725,7 @@ func (x *InsertExternalVpnGatewayRequest) String() string { func (*InsertExternalVpnGatewayRequest) ProtoMessage() {} func (x *InsertExternalVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[658] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[693] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92239,7 +95738,7 @@ func (x *InsertExternalVpnGatewayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertExternalVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*InsertExternalVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{658} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{693} } func (x *InsertExternalVpnGatewayRequest) GetExternalVpnGatewayResource() *ExternalVpnGateway { @@ -92292,7 +95791,7 @@ type InsertFirewallPolicyRequest struct { func (x *InsertFirewallPolicyRequest) Reset() { *x = InsertFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[659] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[694] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92304,7 +95803,7 @@ func (x *InsertFirewallPolicyRequest) String() string { func (*InsertFirewallPolicyRequest) ProtoMessage() {} func (x *InsertFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[659] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[694] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92317,7 +95816,7 @@ func (x *InsertFirewallPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*InsertFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{659} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{694} } func (x *InsertFirewallPolicyRequest) GetFirewallPolicyResource() *FirewallPolicy { @@ -92368,7 +95867,7 @@ type InsertFirewallRequest struct { func (x *InsertFirewallRequest) Reset() { *x = InsertFirewallRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[660] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[695] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92380,7 +95879,7 @@ func (x *InsertFirewallRequest) String() string { func (*InsertFirewallRequest) ProtoMessage() {} func (x *InsertFirewallRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[660] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[695] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92393,7 +95892,7 @@ func (x *InsertFirewallRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertFirewallRequest.ProtoReflect.Descriptor instead. func (*InsertFirewallRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{660} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{695} } func (x *InsertFirewallRequest) GetFirewallResource() *Firewall { @@ -92446,7 +95945,7 @@ type InsertForwardingRuleRequest struct { func (x *InsertForwardingRuleRequest) Reset() { *x = InsertForwardingRuleRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[661] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[696] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92458,7 +95957,7 @@ func (x *InsertForwardingRuleRequest) String() string { func (*InsertForwardingRuleRequest) ProtoMessage() {} func (x *InsertForwardingRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[661] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[696] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92471,7 +95970,7 @@ func (x *InsertForwardingRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertForwardingRuleRequest.ProtoReflect.Descriptor instead. func (*InsertForwardingRuleRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{661} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{696} } func (x *InsertForwardingRuleRequest) GetForwardingRuleResource() *ForwardingRule { @@ -92531,7 +96030,7 @@ type InsertFutureReservationRequest struct { func (x *InsertFutureReservationRequest) Reset() { *x = InsertFutureReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[662] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[697] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92543,7 +96042,7 @@ func (x *InsertFutureReservationRequest) String() string { func (*InsertFutureReservationRequest) ProtoMessage() {} func (x *InsertFutureReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[662] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[697] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92556,7 +96055,7 @@ func (x *InsertFutureReservationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertFutureReservationRequest.ProtoReflect.Descriptor instead. func (*InsertFutureReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{662} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{697} } func (x *InsertFutureReservationRequest) GetFutureReservationResource() *FutureReservation { @@ -92614,7 +96113,7 @@ type InsertGlobalAddressRequest struct { func (x *InsertGlobalAddressRequest) Reset() { *x = InsertGlobalAddressRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[663] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[698] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92626,7 +96125,7 @@ func (x *InsertGlobalAddressRequest) String() string { func (*InsertGlobalAddressRequest) ProtoMessage() {} func (x *InsertGlobalAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[663] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[698] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92639,7 +96138,7 @@ func (x *InsertGlobalAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertGlobalAddressRequest.ProtoReflect.Descriptor instead. func (*InsertGlobalAddressRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{663} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{698} } func (x *InsertGlobalAddressRequest) GetAddressResource() *Address { @@ -92690,7 +96189,7 @@ type InsertGlobalForwardingRuleRequest struct { func (x *InsertGlobalForwardingRuleRequest) Reset() { *x = InsertGlobalForwardingRuleRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[664] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[699] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92702,7 +96201,7 @@ func (x *InsertGlobalForwardingRuleRequest) String() string { func (*InsertGlobalForwardingRuleRequest) ProtoMessage() {} func (x *InsertGlobalForwardingRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[664] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[699] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92715,7 +96214,7 @@ func (x *InsertGlobalForwardingRuleRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InsertGlobalForwardingRuleRequest.ProtoReflect.Descriptor instead. func (*InsertGlobalForwardingRuleRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{664} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{699} } func (x *InsertGlobalForwardingRuleRequest) GetForwardingRuleResource() *ForwardingRule { @@ -92766,7 +96265,7 @@ type InsertGlobalNetworkEndpointGroupRequest struct { func (x *InsertGlobalNetworkEndpointGroupRequest) Reset() { *x = InsertGlobalNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[665] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[700] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92778,7 +96277,7 @@ func (x *InsertGlobalNetworkEndpointGroupRequest) String() string { func (*InsertGlobalNetworkEndpointGroupRequest) ProtoMessage() {} func (x *InsertGlobalNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[665] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[700] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92791,7 +96290,7 @@ func (x *InsertGlobalNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Me // Deprecated: Use InsertGlobalNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*InsertGlobalNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{665} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{700} } func (x *InsertGlobalNetworkEndpointGroupRequest) GetNetworkEndpointGroupResource() *NetworkEndpointGroup { @@ -92842,7 +96341,7 @@ type InsertGlobalPublicDelegatedPrefixeRequest struct { func (x *InsertGlobalPublicDelegatedPrefixeRequest) Reset() { *x = InsertGlobalPublicDelegatedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[666] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[701] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92854,7 +96353,7 @@ func (x *InsertGlobalPublicDelegatedPrefixeRequest) String() string { func (*InsertGlobalPublicDelegatedPrefixeRequest) ProtoMessage() {} func (x *InsertGlobalPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[666] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[701] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92867,7 +96366,7 @@ func (x *InsertGlobalPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect. // Deprecated: Use InsertGlobalPublicDelegatedPrefixeRequest.ProtoReflect.Descriptor instead. func (*InsertGlobalPublicDelegatedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{666} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{701} } func (x *InsertGlobalPublicDelegatedPrefixeRequest) GetProject() string { @@ -92918,7 +96417,7 @@ type InsertHealthCheckRequest struct { func (x *InsertHealthCheckRequest) Reset() { *x = InsertHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[667] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[702] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92930,7 +96429,7 @@ func (x *InsertHealthCheckRequest) String() string { func (*InsertHealthCheckRequest) ProtoMessage() {} func (x *InsertHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[667] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[702] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92943,7 +96442,7 @@ func (x *InsertHealthCheckRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertHealthCheckRequest.ProtoReflect.Descriptor instead. func (*InsertHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{667} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{702} } func (x *InsertHealthCheckRequest) GetHealthCheckResource() *HealthCheck { @@ -92996,7 +96495,7 @@ type InsertImageRequest struct { func (x *InsertImageRequest) Reset() { *x = InsertImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[668] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[703] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93008,7 +96507,7 @@ func (x *InsertImageRequest) String() string { func (*InsertImageRequest) ProtoMessage() {} func (x *InsertImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[668] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[703] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93021,7 +96520,7 @@ func (x *InsertImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertImageRequest.ProtoReflect.Descriptor instead. func (*InsertImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{668} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{703} } func (x *InsertImageRequest) GetForceCreate() bool { @@ -93082,7 +96581,7 @@ type InsertInstanceGroupManagerRequest struct { func (x *InsertInstanceGroupManagerRequest) Reset() { *x = InsertInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[669] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[704] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93094,7 +96593,7 @@ func (x *InsertInstanceGroupManagerRequest) String() string { func (*InsertInstanceGroupManagerRequest) ProtoMessage() {} func (x *InsertInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[669] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[704] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93107,7 +96606,7 @@ func (x *InsertInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InsertInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*InsertInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{669} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{704} } func (x *InsertInstanceGroupManagerRequest) GetInstanceGroupManagerResource() *InstanceGroupManager { @@ -93173,7 +96672,7 @@ type InsertInstanceGroupManagerResizeRequestRequest struct { func (x *InsertInstanceGroupManagerResizeRequestRequest) Reset() { *x = InsertInstanceGroupManagerResizeRequestRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[670] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[705] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93185,7 +96684,7 @@ func (x *InsertInstanceGroupManagerResizeRequestRequest) String() string { func (*InsertInstanceGroupManagerResizeRequestRequest) ProtoMessage() {} func (x *InsertInstanceGroupManagerResizeRequestRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[670] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[705] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93198,7 +96697,7 @@ func (x *InsertInstanceGroupManagerResizeRequestRequest) ProtoReflect() protoref // Deprecated: Use InsertInstanceGroupManagerResizeRequestRequest.ProtoReflect.Descriptor instead. func (*InsertInstanceGroupManagerResizeRequestRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{670} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{705} } func (x *InsertInstanceGroupManagerResizeRequestRequest) GetInstanceGroupManager() string { @@ -93266,7 +96765,7 @@ type InsertInstanceGroupRequest struct { func (x *InsertInstanceGroupRequest) Reset() { *x = InsertInstanceGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[671] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[706] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93278,7 +96777,7 @@ func (x *InsertInstanceGroupRequest) String() string { func (*InsertInstanceGroupRequest) ProtoMessage() {} func (x *InsertInstanceGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[671] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[706] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93291,7 +96790,7 @@ func (x *InsertInstanceGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertInstanceGroupRequest.ProtoReflect.Descriptor instead. func (*InsertInstanceGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{671} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{706} } func (x *InsertInstanceGroupRequest) GetInstanceGroupResource() *InstanceGroup { @@ -93369,7 +96868,7 @@ type InsertInstanceRequest struct { func (x *InsertInstanceRequest) Reset() { *x = InsertInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[672] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[707] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93381,7 +96880,7 @@ func (x *InsertInstanceRequest) String() string { func (*InsertInstanceRequest) ProtoMessage() {} func (x *InsertInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[672] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[707] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93394,7 +96893,7 @@ func (x *InsertInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertInstanceRequest.ProtoReflect.Descriptor instead. func (*InsertInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{672} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{707} } func (x *InsertInstanceRequest) GetInstanceResource() *Instance { @@ -93466,7 +96965,7 @@ type InsertInstanceTemplateRequest struct { func (x *InsertInstanceTemplateRequest) Reset() { *x = InsertInstanceTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[673] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[708] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93478,7 +96977,7 @@ func (x *InsertInstanceTemplateRequest) String() string { func (*InsertInstanceTemplateRequest) ProtoMessage() {} func (x *InsertInstanceTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[673] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[708] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93491,7 +96990,7 @@ func (x *InsertInstanceTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertInstanceTemplateRequest.ProtoReflect.Descriptor instead. func (*InsertInstanceTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{673} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{708} } func (x *InsertInstanceTemplateRequest) GetInstanceTemplateResource() *InstanceTemplate { @@ -93515,6 +97014,100 @@ func (x *InsertInstanceTemplateRequest) GetRequestId() string { return "" } +// A request message for InstantSnapshotGroups.Insert. See the method description for details. +type InsertInstantSnapshotGroupRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // The body resource for this request + InstantSnapshotGroupResource *InstantSnapshotGroup `protobuf:"bytes,145067339,opt,name=instant_snapshot_group_resource,json=instantSnapshotGroupResource,proto3" json:"instant_snapshot_group_resource,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // begin_interface: MixerMutationRequestBuilder + SourceConsistencyGroup *string `protobuf:"bytes,531359348,opt,name=source_consistency_group,json=sourceConsistencyGroup,proto3,oneof" json:"source_consistency_group,omitempty"` + // Name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *InsertInstantSnapshotGroupRequest) Reset() { + *x = InsertInstantSnapshotGroupRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[709] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *InsertInstantSnapshotGroupRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InsertInstantSnapshotGroupRequest) ProtoMessage() {} + +func (x *InsertInstantSnapshotGroupRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[709] + 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 InsertInstantSnapshotGroupRequest.ProtoReflect.Descriptor instead. +func (*InsertInstantSnapshotGroupRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{709} +} + +func (x *InsertInstantSnapshotGroupRequest) GetInstantSnapshotGroupResource() *InstantSnapshotGroup { + if x != nil { + return x.InstantSnapshotGroupResource + } + return nil +} + +func (x *InsertInstantSnapshotGroupRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *InsertInstantSnapshotGroupRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *InsertInstantSnapshotGroupRequest) GetSourceConsistencyGroup() string { + if x != nil && x.SourceConsistencyGroup != nil { + return *x.SourceConsistencyGroup + } + return "" +} + +func (x *InsertInstantSnapshotGroupRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + // A request message for InstantSnapshots.Insert. See the method description for details. type InsertInstantSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -93544,7 +97137,7 @@ type InsertInstantSnapshotRequest struct { func (x *InsertInstantSnapshotRequest) Reset() { *x = InsertInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[674] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[710] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93556,7 +97149,7 @@ func (x *InsertInstantSnapshotRequest) String() string { func (*InsertInstantSnapshotRequest) ProtoMessage() {} func (x *InsertInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[674] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[710] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93569,7 +97162,7 @@ func (x *InsertInstantSnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*InsertInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{674} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{710} } func (x *InsertInstantSnapshotRequest) GetInstantSnapshotResource() *InstantSnapshot { @@ -93628,7 +97221,7 @@ type InsertInterconnectAttachmentGroupRequest struct { func (x *InsertInterconnectAttachmentGroupRequest) Reset() { *x = InsertInterconnectAttachmentGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[675] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[711] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93640,7 +97233,7 @@ func (x *InsertInterconnectAttachmentGroupRequest) String() string { func (*InsertInterconnectAttachmentGroupRequest) ProtoMessage() {} func (x *InsertInterconnectAttachmentGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[675] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[711] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93653,7 +97246,7 @@ func (x *InsertInterconnectAttachmentGroupRequest) ProtoReflect() protoreflect.M // Deprecated: Use InsertInterconnectAttachmentGroupRequest.ProtoReflect.Descriptor instead. func (*InsertInterconnectAttachmentGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{675} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{711} } func (x *InsertInterconnectAttachmentGroupRequest) GetInterconnectAttachmentGroupResource() *InterconnectAttachmentGroup { @@ -93708,7 +97301,7 @@ type InsertInterconnectAttachmentRequest struct { func (x *InsertInterconnectAttachmentRequest) Reset() { *x = InsertInterconnectAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[676] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[712] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93720,7 +97313,7 @@ func (x *InsertInterconnectAttachmentRequest) String() string { func (*InsertInterconnectAttachmentRequest) ProtoMessage() {} func (x *InsertInterconnectAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[676] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[712] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93733,7 +97326,7 @@ func (x *InsertInterconnectAttachmentRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use InsertInterconnectAttachmentRequest.ProtoReflect.Descriptor instead. func (*InsertInterconnectAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{676} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{712} } func (x *InsertInterconnectAttachmentRequest) GetInterconnectAttachmentResource() *InterconnectAttachment { @@ -93799,7 +97392,7 @@ type InsertInterconnectGroupRequest struct { func (x *InsertInterconnectGroupRequest) Reset() { *x = InsertInterconnectGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[677] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[713] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93811,7 +97404,7 @@ func (x *InsertInterconnectGroupRequest) String() string { func (*InsertInterconnectGroupRequest) ProtoMessage() {} func (x *InsertInterconnectGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[677] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[713] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93824,7 +97417,7 @@ func (x *InsertInterconnectGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertInterconnectGroupRequest.ProtoReflect.Descriptor instead. func (*InsertInterconnectGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{677} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{713} } func (x *InsertInterconnectGroupRequest) GetInterconnectGroupResource() *InterconnectGroup { @@ -93875,7 +97468,7 @@ type InsertInterconnectRequest struct { func (x *InsertInterconnectRequest) Reset() { *x = InsertInterconnectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[678] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[714] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93887,7 +97480,7 @@ func (x *InsertInterconnectRequest) String() string { func (*InsertInterconnectRequest) ProtoMessage() {} func (x *InsertInterconnectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[678] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[714] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93900,7 +97493,7 @@ func (x *InsertInterconnectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertInterconnectRequest.ProtoReflect.Descriptor instead. func (*InsertInterconnectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{678} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{714} } func (x *InsertInterconnectRequest) GetInterconnectResource() *Interconnect { @@ -93951,7 +97544,7 @@ type InsertLicenseRequest struct { func (x *InsertLicenseRequest) Reset() { *x = InsertLicenseRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[679] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[715] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93963,7 +97556,7 @@ func (x *InsertLicenseRequest) String() string { func (*InsertLicenseRequest) ProtoMessage() {} func (x *InsertLicenseRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[679] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[715] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93976,7 +97569,7 @@ func (x *InsertLicenseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertLicenseRequest.ProtoReflect.Descriptor instead. func (*InsertLicenseRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{679} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{715} } func (x *InsertLicenseRequest) GetLicenseResource() *License { @@ -94029,7 +97622,7 @@ type InsertMachineImageRequest struct { func (x *InsertMachineImageRequest) Reset() { *x = InsertMachineImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[680] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[716] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94041,7 +97634,7 @@ func (x *InsertMachineImageRequest) String() string { func (*InsertMachineImageRequest) ProtoMessage() {} func (x *InsertMachineImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[680] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[716] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94054,7 +97647,7 @@ func (x *InsertMachineImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertMachineImageRequest.ProtoReflect.Descriptor instead. func (*InsertMachineImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{680} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{716} } func (x *InsertMachineImageRequest) GetMachineImageResource() *MachineImage { @@ -94115,7 +97708,7 @@ type InsertNetworkAttachmentRequest struct { func (x *InsertNetworkAttachmentRequest) Reset() { *x = InsertNetworkAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[681] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[717] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94127,7 +97720,7 @@ func (x *InsertNetworkAttachmentRequest) String() string { func (*InsertNetworkAttachmentRequest) ProtoMessage() {} func (x *InsertNetworkAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[681] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[717] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94140,7 +97733,7 @@ func (x *InsertNetworkAttachmentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertNetworkAttachmentRequest.ProtoReflect.Descriptor instead. func (*InsertNetworkAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{681} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{717} } func (x *InsertNetworkAttachmentRequest) GetNetworkAttachmentResource() *NetworkAttachment { @@ -94202,7 +97795,7 @@ type InsertNetworkEdgeSecurityServiceRequest struct { func (x *InsertNetworkEdgeSecurityServiceRequest) Reset() { *x = InsertNetworkEdgeSecurityServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[682] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[718] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94214,7 +97807,7 @@ func (x *InsertNetworkEdgeSecurityServiceRequest) String() string { func (*InsertNetworkEdgeSecurityServiceRequest) ProtoMessage() {} func (x *InsertNetworkEdgeSecurityServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[682] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[718] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94227,7 +97820,7 @@ func (x *InsertNetworkEdgeSecurityServiceRequest) ProtoReflect() protoreflect.Me // Deprecated: Use InsertNetworkEdgeSecurityServiceRequest.ProtoReflect.Descriptor instead. func (*InsertNetworkEdgeSecurityServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{682} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{718} } func (x *InsertNetworkEdgeSecurityServiceRequest) GetNetworkEdgeSecurityServiceResource() *NetworkEdgeSecurityService { @@ -94296,7 +97889,7 @@ type InsertNetworkEndpointGroupRequest struct { func (x *InsertNetworkEndpointGroupRequest) Reset() { *x = InsertNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[683] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[719] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94308,7 +97901,7 @@ func (x *InsertNetworkEndpointGroupRequest) String() string { func (*InsertNetworkEndpointGroupRequest) ProtoMessage() {} func (x *InsertNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[683] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[719] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94321,7 +97914,7 @@ func (x *InsertNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InsertNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*InsertNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{683} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{719} } func (x *InsertNetworkEndpointGroupRequest) GetNetworkEndpointGroupResource() *NetworkEndpointGroup { @@ -94379,7 +97972,7 @@ type InsertNetworkFirewallPolicyRequest struct { func (x *InsertNetworkFirewallPolicyRequest) Reset() { *x = InsertNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[684] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[720] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94391,7 +97984,7 @@ func (x *InsertNetworkFirewallPolicyRequest) String() string { func (*InsertNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *InsertNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[684] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[720] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94404,7 +97997,7 @@ func (x *InsertNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InsertNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*InsertNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{684} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{720} } func (x *InsertNetworkFirewallPolicyRequest) GetFirewallPolicyResource() *FirewallPolicy { @@ -94455,7 +98048,7 @@ type InsertNetworkRequest struct { func (x *InsertNetworkRequest) Reset() { *x = InsertNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[685] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[721] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94467,7 +98060,7 @@ func (x *InsertNetworkRequest) String() string { func (*InsertNetworkRequest) ProtoMessage() {} func (x *InsertNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[685] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[721] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94480,7 +98073,7 @@ func (x *InsertNetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertNetworkRequest.ProtoReflect.Descriptor instead. func (*InsertNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{685} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{721} } func (x *InsertNetworkRequest) GetNetworkResource() *Network { @@ -94535,7 +98128,7 @@ type InsertNodeGroupRequest struct { func (x *InsertNodeGroupRequest) Reset() { *x = InsertNodeGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[686] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[722] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94547,7 +98140,7 @@ func (x *InsertNodeGroupRequest) String() string { func (*InsertNodeGroupRequest) ProtoMessage() {} func (x *InsertNodeGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[686] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[722] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94560,7 +98153,7 @@ func (x *InsertNodeGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertNodeGroupRequest.ProtoReflect.Descriptor instead. func (*InsertNodeGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{686} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{722} } func (x *InsertNodeGroupRequest) GetInitialNodeCount() int32 { @@ -94627,7 +98220,7 @@ type InsertNodeTemplateRequest struct { func (x *InsertNodeTemplateRequest) Reset() { *x = InsertNodeTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[687] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[723] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94639,7 +98232,7 @@ func (x *InsertNodeTemplateRequest) String() string { func (*InsertNodeTemplateRequest) ProtoMessage() {} func (x *InsertNodeTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[687] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[723] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94652,7 +98245,7 @@ func (x *InsertNodeTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertNodeTemplateRequest.ProtoReflect.Descriptor instead. func (*InsertNodeTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{687} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{723} } func (x *InsertNodeTemplateRequest) GetNodeTemplateResource() *NodeTemplate { @@ -94712,7 +98305,7 @@ type InsertOrganizationSecurityPolicyRequest struct { func (x *InsertOrganizationSecurityPolicyRequest) Reset() { *x = InsertOrganizationSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[688] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[724] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94724,7 +98317,7 @@ func (x *InsertOrganizationSecurityPolicyRequest) String() string { func (*InsertOrganizationSecurityPolicyRequest) ProtoMessage() {} func (x *InsertOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[688] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[724] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94737,7 +98330,7 @@ func (x *InsertOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Me // Deprecated: Use InsertOrganizationSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*InsertOrganizationSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{688} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{724} } func (x *InsertOrganizationSecurityPolicyRequest) GetParentId() string { @@ -94790,7 +98383,7 @@ type InsertPacketMirroringRequest struct { func (x *InsertPacketMirroringRequest) Reset() { *x = InsertPacketMirroringRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[689] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[725] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94802,7 +98395,7 @@ func (x *InsertPacketMirroringRequest) String() string { func (*InsertPacketMirroringRequest) ProtoMessage() {} func (x *InsertPacketMirroringRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[689] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[725] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94815,7 +98408,7 @@ func (x *InsertPacketMirroringRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertPacketMirroringRequest.ProtoReflect.Descriptor instead. func (*InsertPacketMirroringRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{689} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{725} } func (x *InsertPacketMirroringRequest) GetPacketMirroringResource() *PacketMirroring { @@ -94873,7 +98466,7 @@ type InsertPublicAdvertisedPrefixeRequest struct { func (x *InsertPublicAdvertisedPrefixeRequest) Reset() { *x = InsertPublicAdvertisedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[690] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[726] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94885,7 +98478,7 @@ func (x *InsertPublicAdvertisedPrefixeRequest) String() string { func (*InsertPublicAdvertisedPrefixeRequest) ProtoMessage() {} func (x *InsertPublicAdvertisedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[690] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[726] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94898,7 +98491,7 @@ func (x *InsertPublicAdvertisedPrefixeRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use InsertPublicAdvertisedPrefixeRequest.ProtoReflect.Descriptor instead. func (*InsertPublicAdvertisedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{690} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{726} } func (x *InsertPublicAdvertisedPrefixeRequest) GetProject() string { @@ -94951,7 +98544,7 @@ type InsertPublicDelegatedPrefixeRequest struct { func (x *InsertPublicDelegatedPrefixeRequest) Reset() { *x = InsertPublicDelegatedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[691] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[727] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94963,7 +98556,7 @@ func (x *InsertPublicDelegatedPrefixeRequest) String() string { func (*InsertPublicDelegatedPrefixeRequest) ProtoMessage() {} func (x *InsertPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[691] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[727] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94976,7 +98569,7 @@ func (x *InsertPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use InsertPublicDelegatedPrefixeRequest.ProtoReflect.Descriptor instead. func (*InsertPublicDelegatedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{691} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{727} } func (x *InsertPublicDelegatedPrefixeRequest) GetProject() string { @@ -95036,7 +98629,7 @@ type InsertRegionAutoscalerRequest struct { func (x *InsertRegionAutoscalerRequest) Reset() { *x = InsertRegionAutoscalerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[692] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[728] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95048,7 +98641,7 @@ func (x *InsertRegionAutoscalerRequest) String() string { func (*InsertRegionAutoscalerRequest) ProtoMessage() {} func (x *InsertRegionAutoscalerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[692] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[728] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95061,7 +98654,7 @@ func (x *InsertRegionAutoscalerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertRegionAutoscalerRequest.ProtoReflect.Descriptor instead. func (*InsertRegionAutoscalerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{692} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{728} } func (x *InsertRegionAutoscalerRequest) GetAutoscalerResource() *Autoscaler { @@ -95092,99 +98685,14 @@ func (x *InsertRegionAutoscalerRequest) GetRequestId() string { return "" } -// A request message for RegionBackendServices.Insert. See the method description for details. -type InsertRegionBackendServiceRequest struct { +// A request message for RegionBackendBuckets.Insert. See the method description for details. +type InsertRegionBackendBucketRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The body resource for this request - BackendServiceResource *BackendService `protobuf:"bytes,347586723,opt,name=backend_service_resource,json=backendServiceResource,proto3" json:"backend_service_resource,omitempty"` - // Project ID for this request. - Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. - Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` - // An optional request ID to identify requests. Specify a unique request ID so - // that if you must retry your request, the server will know to ignore the - // request if it has already been completed. - // - // For example, consider a situation where you make an initial request and - // the request times out. If you make the request again with the same - // request ID, the server can check if original operation with the same - // request ID was received, and if so, will ignore the second request. This - // prevents clients from accidentally creating duplicate commitments. - // - // The request ID must be - // a valid UUID with the exception that zero UUID is not supported - // (00000000-0000-0000-0000-000000000000). - RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache -} - -func (x *InsertRegionBackendServiceRequest) Reset() { - *x = InsertRegionBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[693] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) -} - -func (x *InsertRegionBackendServiceRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*InsertRegionBackendServiceRequest) ProtoMessage() {} - -func (x *InsertRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[693] - 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 InsertRegionBackendServiceRequest.ProtoReflect.Descriptor instead. -func (*InsertRegionBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{693} -} - -func (x *InsertRegionBackendServiceRequest) GetBackendServiceResource() *BackendService { - if x != nil { - return x.BackendServiceResource - } - return nil -} - -func (x *InsertRegionBackendServiceRequest) GetProject() string { - if x != nil { - return x.Project - } - return "" -} - -func (x *InsertRegionBackendServiceRequest) GetRegion() string { - if x != nil { - return x.Region - } - return "" -} - -func (x *InsertRegionBackendServiceRequest) GetRequestId() string { - if x != nil && x.RequestId != nil { - return *x.RequestId - } - return "" -} - -// A request message for RegionCommitments.Insert. See the method description for details. -type InsertRegionCommitmentRequest struct { - state protoimpl.MessageState `protogen:"open.v1"` - // The body resource for this request - CommitmentResource *Commitment `protobuf:"bytes,244240888,opt,name=commitment_resource,json=commitmentResource,proto3" json:"commitment_resource,omitempty"` + BackendBucketResource *BackendBucket `protobuf:"bytes,380757784,opt,name=backend_bucket_resource,json=backendBucketResource,proto3" json:"backend_bucket_resource,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region for this request. + // Name of the region of this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // An optional request ID to identify requests. Specify a unique request ID so // that if you must retry your request, the server will know to ignore the @@ -95204,21 +98712,21 @@ type InsertRegionCommitmentRequest struct { sizeCache protoimpl.SizeCache } -func (x *InsertRegionCommitmentRequest) Reset() { - *x = InsertRegionCommitmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[694] +func (x *InsertRegionBackendBucketRequest) Reset() { + *x = InsertRegionBackendBucketRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[729] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *InsertRegionCommitmentRequest) String() string { +func (x *InsertRegionBackendBucketRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*InsertRegionCommitmentRequest) ProtoMessage() {} +func (*InsertRegionBackendBucketRequest) ProtoMessage() {} -func (x *InsertRegionCommitmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[694] +func (x *InsertRegionBackendBucketRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[729] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95229,44 +98737,44 @@ func (x *InsertRegionCommitmentRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use InsertRegionCommitmentRequest.ProtoReflect.Descriptor instead. -func (*InsertRegionCommitmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{694} +// Deprecated: Use InsertRegionBackendBucketRequest.ProtoReflect.Descriptor instead. +func (*InsertRegionBackendBucketRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{729} } -func (x *InsertRegionCommitmentRequest) GetCommitmentResource() *Commitment { +func (x *InsertRegionBackendBucketRequest) GetBackendBucketResource() *BackendBucket { if x != nil { - return x.CommitmentResource + return x.BackendBucketResource } return nil } -func (x *InsertRegionCommitmentRequest) GetProject() string { +func (x *InsertRegionBackendBucketRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *InsertRegionCommitmentRequest) GetRegion() string { +func (x *InsertRegionBackendBucketRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *InsertRegionCommitmentRequest) GetRequestId() string { +func (x *InsertRegionBackendBucketRequest) GetRequestId() string { if x != nil && x.RequestId != nil { return *x.RequestId } return "" } -// A request message for RegionCompositeHealthChecks.Insert. See the method description for details. -type InsertRegionCompositeHealthCheckRequest struct { +// A request message for RegionBackendServices.Insert. See the method description for details. +type InsertRegionBackendServiceRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The body resource for this request - CompositeHealthCheckResource *CompositeHealthCheck `protobuf:"bytes,132195824,opt,name=composite_health_check_resource,json=compositeHealthCheckResource,proto3" json:"composite_health_check_resource,omitempty"` + BackendServiceResource *BackendService `protobuf:"bytes,347586723,opt,name=backend_service_resource,json=backendServiceResource,proto3" json:"backend_service_resource,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` // Name of the region scoping this request. @@ -95289,21 +98797,21 @@ type InsertRegionCompositeHealthCheckRequest struct { sizeCache protoimpl.SizeCache } -func (x *InsertRegionCompositeHealthCheckRequest) Reset() { - *x = InsertRegionCompositeHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[695] +func (x *InsertRegionBackendServiceRequest) Reset() { + *x = InsertRegionBackendServiceRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[730] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *InsertRegionCompositeHealthCheckRequest) String() string { +func (x *InsertRegionBackendServiceRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*InsertRegionCompositeHealthCheckRequest) ProtoMessage() {} +func (*InsertRegionBackendServiceRequest) ProtoMessage() {} -func (x *InsertRegionCompositeHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[695] +func (x *InsertRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[730] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95314,44 +98822,44 @@ func (x *InsertRegionCompositeHealthCheckRequest) ProtoReflect() protoreflect.Me return mi.MessageOf(x) } -// Deprecated: Use InsertRegionCompositeHealthCheckRequest.ProtoReflect.Descriptor instead. -func (*InsertRegionCompositeHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{695} +// Deprecated: Use InsertRegionBackendServiceRequest.ProtoReflect.Descriptor instead. +func (*InsertRegionBackendServiceRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{730} } -func (x *InsertRegionCompositeHealthCheckRequest) GetCompositeHealthCheckResource() *CompositeHealthCheck { +func (x *InsertRegionBackendServiceRequest) GetBackendServiceResource() *BackendService { if x != nil { - return x.CompositeHealthCheckResource + return x.BackendServiceResource } return nil } -func (x *InsertRegionCompositeHealthCheckRequest) GetProject() string { +func (x *InsertRegionBackendServiceRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *InsertRegionCompositeHealthCheckRequest) GetRegion() string { +func (x *InsertRegionBackendServiceRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *InsertRegionCompositeHealthCheckRequest) GetRequestId() string { +func (x *InsertRegionBackendServiceRequest) GetRequestId() string { if x != nil && x.RequestId != nil { return *x.RequestId } return "" } -// A request message for RegionDisks.Insert. See the method description for details. -type InsertRegionDiskRequest struct { +// A request message for RegionCommitments.Insert. See the method description for details. +type InsertRegionCommitmentRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The body resource for this request - DiskResource *Disk `protobuf:"bytes,25880688,opt,name=disk_resource,json=diskResource,proto3" json:"disk_resource,omitempty"` + CommitmentResource *Commitment `protobuf:"bytes,244240888,opt,name=commitment_resource,json=commitmentResource,proto3" json:"commitment_resource,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` // Name of the region for this request. @@ -95369,28 +98877,26 @@ type InsertRegionDiskRequest struct { // The request ID must be // a valid UUID with the exception that zero UUID is not supported // (00000000-0000-0000-0000-000000000000). - RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` - // Source image to restore onto a disk. This field is optional. - SourceImage *string `protobuf:"bytes,50443319,opt,name=source_image,json=sourceImage,proto3,oneof" json:"source_image,omitempty"` + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } -func (x *InsertRegionDiskRequest) Reset() { - *x = InsertRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[696] +func (x *InsertRegionCommitmentRequest) Reset() { + *x = InsertRegionCommitmentRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[731] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *InsertRegionDiskRequest) String() string { +func (x *InsertRegionCommitmentRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*InsertRegionDiskRequest) ProtoMessage() {} +func (*InsertRegionCommitmentRequest) ProtoMessage() {} -func (x *InsertRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[696] +func (x *InsertRegionCommitmentRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[731] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95401,51 +98907,223 @@ func (x *InsertRegionDiskRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use InsertRegionDiskRequest.ProtoReflect.Descriptor instead. -func (*InsertRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{696} +// Deprecated: Use InsertRegionCommitmentRequest.ProtoReflect.Descriptor instead. +func (*InsertRegionCommitmentRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{731} } -func (x *InsertRegionDiskRequest) GetDiskResource() *Disk { +func (x *InsertRegionCommitmentRequest) GetCommitmentResource() *Commitment { if x != nil { - return x.DiskResource + return x.CommitmentResource } return nil } -func (x *InsertRegionDiskRequest) GetProject() string { +func (x *InsertRegionCommitmentRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *InsertRegionDiskRequest) GetRegion() string { +func (x *InsertRegionCommitmentRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *InsertRegionDiskRequest) GetRequestId() string { +func (x *InsertRegionCommitmentRequest) GetRequestId() string { if x != nil && x.RequestId != nil { return *x.RequestId } return "" } -func (x *InsertRegionDiskRequest) GetSourceImage() string { - if x != nil && x.SourceImage != nil { - return *x.SourceImage - } - return "" -} - -// A request message for RegionHealthAggregationPolicies.Insert. See the method description for details. -type InsertRegionHealthAggregationPolicyRequest struct { +// A request message for RegionCompositeHealthChecks.Insert. See the method description for details. +type InsertRegionCompositeHealthCheckRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The body resource for this request - HealthAggregationPolicyResource *HealthAggregationPolicy `protobuf:"bytes,293526971,opt,name=health_aggregation_policy_resource,json=healthAggregationPolicyResource,proto3" json:"health_aggregation_policy_resource,omitempty"` + CompositeHealthCheckResource *CompositeHealthCheck `protobuf:"bytes,132195824,opt,name=composite_health_check_resource,json=compositeHealthCheckResource,proto3" json:"composite_health_check_resource,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region scoping this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *InsertRegionCompositeHealthCheckRequest) Reset() { + *x = InsertRegionCompositeHealthCheckRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[732] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *InsertRegionCompositeHealthCheckRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InsertRegionCompositeHealthCheckRequest) ProtoMessage() {} + +func (x *InsertRegionCompositeHealthCheckRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[732] + 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 InsertRegionCompositeHealthCheckRequest.ProtoReflect.Descriptor instead. +func (*InsertRegionCompositeHealthCheckRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{732} +} + +func (x *InsertRegionCompositeHealthCheckRequest) GetCompositeHealthCheckResource() *CompositeHealthCheck { + if x != nil { + return x.CompositeHealthCheckResource + } + return nil +} + +func (x *InsertRegionCompositeHealthCheckRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *InsertRegionCompositeHealthCheckRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *InsertRegionCompositeHealthCheckRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +// A request message for RegionDisks.Insert. See the method description for details. +type InsertRegionDiskRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // The body resource for this request + DiskResource *Disk `protobuf:"bytes,25880688,opt,name=disk_resource,json=diskResource,proto3" json:"disk_resource,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // Source image to restore onto a disk. This field is optional. + SourceImage *string `protobuf:"bytes,50443319,opt,name=source_image,json=sourceImage,proto3,oneof" json:"source_image,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *InsertRegionDiskRequest) Reset() { + *x = InsertRegionDiskRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[733] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *InsertRegionDiskRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InsertRegionDiskRequest) ProtoMessage() {} + +func (x *InsertRegionDiskRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[733] + 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 InsertRegionDiskRequest.ProtoReflect.Descriptor instead. +func (*InsertRegionDiskRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{733} +} + +func (x *InsertRegionDiskRequest) GetDiskResource() *Disk { + if x != nil { + return x.DiskResource + } + return nil +} + +func (x *InsertRegionDiskRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *InsertRegionDiskRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *InsertRegionDiskRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *InsertRegionDiskRequest) GetSourceImage() string { + if x != nil && x.SourceImage != nil { + return *x.SourceImage + } + return "" +} + +// A request message for RegionHealthAggregationPolicies.Insert. See the method description for details. +type InsertRegionHealthAggregationPolicyRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // The body resource for this request + HealthAggregationPolicyResource *HealthAggregationPolicy `protobuf:"bytes,293526971,opt,name=health_aggregation_policy_resource,json=healthAggregationPolicyResource,proto3" json:"health_aggregation_policy_resource,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` // Name of the region scoping this request. @@ -95470,7 +99148,7 @@ type InsertRegionHealthAggregationPolicyRequest struct { func (x *InsertRegionHealthAggregationPolicyRequest) Reset() { *x = InsertRegionHealthAggregationPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[697] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[734] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95482,7 +99160,7 @@ func (x *InsertRegionHealthAggregationPolicyRequest) String() string { func (*InsertRegionHealthAggregationPolicyRequest) ProtoMessage() {} func (x *InsertRegionHealthAggregationPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[697] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[734] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95495,7 +99173,7 @@ func (x *InsertRegionHealthAggregationPolicyRequest) ProtoReflect() protoreflect // Deprecated: Use InsertRegionHealthAggregationPolicyRequest.ProtoReflect.Descriptor instead. func (*InsertRegionHealthAggregationPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{697} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{734} } func (x *InsertRegionHealthAggregationPolicyRequest) GetHealthAggregationPolicyResource() *HealthAggregationPolicy { @@ -95555,7 +99233,7 @@ type InsertRegionHealthCheckRequest struct { func (x *InsertRegionHealthCheckRequest) Reset() { *x = InsertRegionHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[698] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[735] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95567,7 +99245,7 @@ func (x *InsertRegionHealthCheckRequest) String() string { func (*InsertRegionHealthCheckRequest) ProtoMessage() {} func (x *InsertRegionHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[698] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[735] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95580,7 +99258,7 @@ func (x *InsertRegionHealthCheckRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertRegionHealthCheckRequest.ProtoReflect.Descriptor instead. func (*InsertRegionHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{698} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{735} } func (x *InsertRegionHealthCheckRequest) GetHealthCheckResource() *HealthCheck { @@ -95640,7 +99318,7 @@ type InsertRegionHealthCheckServiceRequest struct { func (x *InsertRegionHealthCheckServiceRequest) Reset() { *x = InsertRegionHealthCheckServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[699] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[736] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95652,7 +99330,7 @@ func (x *InsertRegionHealthCheckServiceRequest) String() string { func (*InsertRegionHealthCheckServiceRequest) ProtoMessage() {} func (x *InsertRegionHealthCheckServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[699] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[736] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95665,7 +99343,7 @@ func (x *InsertRegionHealthCheckServiceRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use InsertRegionHealthCheckServiceRequest.ProtoReflect.Descriptor instead. func (*InsertRegionHealthCheckServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{699} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{736} } func (x *InsertRegionHealthCheckServiceRequest) GetHealthCheckServiceResource() *HealthCheckService { @@ -95725,7 +99403,7 @@ type InsertRegionHealthSourceRequest struct { func (x *InsertRegionHealthSourceRequest) Reset() { *x = InsertRegionHealthSourceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[700] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[737] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95737,7 +99415,7 @@ func (x *InsertRegionHealthSourceRequest) String() string { func (*InsertRegionHealthSourceRequest) ProtoMessage() {} func (x *InsertRegionHealthSourceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[700] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[737] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95750,7 +99428,7 @@ func (x *InsertRegionHealthSourceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertRegionHealthSourceRequest.ProtoReflect.Descriptor instead. func (*InsertRegionHealthSourceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{700} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{737} } func (x *InsertRegionHealthSourceRequest) GetHealthSourceResource() *HealthSource { @@ -95810,7 +99488,7 @@ type InsertRegionInstanceGroupManagerRequest struct { func (x *InsertRegionInstanceGroupManagerRequest) Reset() { *x = InsertRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[701] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[738] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95822,7 +99500,7 @@ func (x *InsertRegionInstanceGroupManagerRequest) String() string { func (*InsertRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *InsertRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[701] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[738] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95835,7 +99513,7 @@ func (x *InsertRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Me // Deprecated: Use InsertRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*InsertRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{701} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{738} } func (x *InsertRegionInstanceGroupManagerRequest) GetInstanceGroupManagerResource() *InstanceGroupManager { @@ -95866,6 +99544,102 @@ func (x *InsertRegionInstanceGroupManagerRequest) GetRequestId() string { return "" } +// A request message for RegionInstanceGroupManagerResizeRequests.Insert. See the method description for details. +type InsertRegionInstanceGroupManagerResizeRequestRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the managed instance group to which the resize request is scoped. + // Name should conform to RFC1035 or be a resource ID. + InstanceGroupManager string `protobuf:"bytes,249363395,opt,name=instance_group_manager,json=instanceGroupManager,proto3" json:"instance_group_manager,omitempty"` + // The body resource for this request + InstanceGroupManagerResizeRequestResource *InstanceGroupManagerResizeRequest `protobuf:"bytes,468541293,opt,name=instance_group_manager_resize_request_resource,json=instanceGroupManagerResizeRequestResource,proto3" json:"instance_group_manager_resize_request_resource,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region + // scoping this request. Name should conform to RFC1035. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *InsertRegionInstanceGroupManagerResizeRequestRequest) Reset() { + *x = InsertRegionInstanceGroupManagerResizeRequestRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[739] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *InsertRegionInstanceGroupManagerResizeRequestRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InsertRegionInstanceGroupManagerResizeRequestRequest) ProtoMessage() {} + +func (x *InsertRegionInstanceGroupManagerResizeRequestRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[739] + 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 InsertRegionInstanceGroupManagerResizeRequestRequest.ProtoReflect.Descriptor instead. +func (*InsertRegionInstanceGroupManagerResizeRequestRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{739} +} + +func (x *InsertRegionInstanceGroupManagerResizeRequestRequest) GetInstanceGroupManager() string { + if x != nil { + return x.InstanceGroupManager + } + return "" +} + +func (x *InsertRegionInstanceGroupManagerResizeRequestRequest) GetInstanceGroupManagerResizeRequestResource() *InstanceGroupManagerResizeRequest { + if x != nil { + return x.InstanceGroupManagerResizeRequestResource + } + return nil +} + +func (x *InsertRegionInstanceGroupManagerResizeRequestRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *InsertRegionInstanceGroupManagerResizeRequestRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *InsertRegionInstanceGroupManagerResizeRequestRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + // A request message for RegionInstanceTemplates.Insert. See the method description for details. type InsertRegionInstanceTemplateRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -95895,7 +99669,7 @@ type InsertRegionInstanceTemplateRequest struct { func (x *InsertRegionInstanceTemplateRequest) Reset() { *x = InsertRegionInstanceTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[702] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[740] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95907,7 +99681,7 @@ func (x *InsertRegionInstanceTemplateRequest) String() string { func (*InsertRegionInstanceTemplateRequest) ProtoMessage() {} func (x *InsertRegionInstanceTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[702] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[740] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95920,7 +99694,7 @@ func (x *InsertRegionInstanceTemplateRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use InsertRegionInstanceTemplateRequest.ProtoReflect.Descriptor instead. func (*InsertRegionInstanceTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{702} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{740} } func (x *InsertRegionInstanceTemplateRequest) GetInstanceTemplateResource() *InstanceTemplate { @@ -95951,6 +99725,100 @@ func (x *InsertRegionInstanceTemplateRequest) GetRequestId() string { return "" } +// A request message for RegionInstantSnapshotGroups.Insert. See the method description for details. +type InsertRegionInstantSnapshotGroupRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // The body resource for this request + InstantSnapshotGroupResource *InstantSnapshotGroup `protobuf:"bytes,145067339,opt,name=instant_snapshot_group_resource,json=instantSnapshotGroupResource,proto3" json:"instant_snapshot_group_resource,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // begin_interface: MixerMutationRequestBuilder + SourceConsistencyGroup *string `protobuf:"bytes,531359348,opt,name=source_consistency_group,json=sourceConsistencyGroup,proto3,oneof" json:"source_consistency_group,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *InsertRegionInstantSnapshotGroupRequest) Reset() { + *x = InsertRegionInstantSnapshotGroupRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[741] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *InsertRegionInstantSnapshotGroupRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InsertRegionInstantSnapshotGroupRequest) ProtoMessage() {} + +func (x *InsertRegionInstantSnapshotGroupRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[741] + 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 InsertRegionInstantSnapshotGroupRequest.ProtoReflect.Descriptor instead. +func (*InsertRegionInstantSnapshotGroupRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{741} +} + +func (x *InsertRegionInstantSnapshotGroupRequest) GetInstantSnapshotGroupResource() *InstantSnapshotGroup { + if x != nil { + return x.InstantSnapshotGroupResource + } + return nil +} + +func (x *InsertRegionInstantSnapshotGroupRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *InsertRegionInstantSnapshotGroupRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *InsertRegionInstantSnapshotGroupRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *InsertRegionInstantSnapshotGroupRequest) GetSourceConsistencyGroup() string { + if x != nil && x.SourceConsistencyGroup != nil { + return *x.SourceConsistencyGroup + } + return "" +} + // A request message for RegionInstantSnapshots.Insert. See the method description for details. type InsertRegionInstantSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -95980,7 +99848,7 @@ type InsertRegionInstantSnapshotRequest struct { func (x *InsertRegionInstantSnapshotRequest) Reset() { *x = InsertRegionInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[703] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[742] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95992,7 +99860,7 @@ func (x *InsertRegionInstantSnapshotRequest) String() string { func (*InsertRegionInstantSnapshotRequest) ProtoMessage() {} func (x *InsertRegionInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[703] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[742] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96005,7 +99873,7 @@ func (x *InsertRegionInstantSnapshotRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InsertRegionInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*InsertRegionInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{703} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{742} } func (x *InsertRegionInstantSnapshotRequest) GetInstantSnapshotResource() *InstantSnapshot { @@ -96067,7 +99935,7 @@ type InsertRegionNetworkEndpointGroupRequest struct { func (x *InsertRegionNetworkEndpointGroupRequest) Reset() { *x = InsertRegionNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[704] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[743] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96079,7 +99947,7 @@ func (x *InsertRegionNetworkEndpointGroupRequest) String() string { func (*InsertRegionNetworkEndpointGroupRequest) ProtoMessage() {} func (x *InsertRegionNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[704] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[743] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96092,7 +99960,7 @@ func (x *InsertRegionNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Me // Deprecated: Use InsertRegionNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*InsertRegionNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{704} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{743} } func (x *InsertRegionNetworkEndpointGroupRequest) GetNetworkEndpointGroupResource() *NetworkEndpointGroup { @@ -96152,7 +100020,7 @@ type InsertRegionNetworkFirewallPolicyRequest struct { func (x *InsertRegionNetworkFirewallPolicyRequest) Reset() { *x = InsertRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[705] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[744] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96164,7 +100032,7 @@ func (x *InsertRegionNetworkFirewallPolicyRequest) String() string { func (*InsertRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *InsertRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[705] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[744] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96177,7 +100045,7 @@ func (x *InsertRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.M // Deprecated: Use InsertRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*InsertRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{705} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{744} } func (x *InsertRegionNetworkFirewallPolicyRequest) GetFirewallPolicyResource() *FirewallPolicy { @@ -96237,7 +100105,7 @@ type InsertRegionNotificationEndpointRequest struct { func (x *InsertRegionNotificationEndpointRequest) Reset() { *x = InsertRegionNotificationEndpointRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[706] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[745] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96249,7 +100117,7 @@ func (x *InsertRegionNotificationEndpointRequest) String() string { func (*InsertRegionNotificationEndpointRequest) ProtoMessage() {} func (x *InsertRegionNotificationEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[706] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[745] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96262,7 +100130,7 @@ func (x *InsertRegionNotificationEndpointRequest) ProtoReflect() protoreflect.Me // Deprecated: Use InsertRegionNotificationEndpointRequest.ProtoReflect.Descriptor instead. func (*InsertRegionNotificationEndpointRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{706} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{745} } func (x *InsertRegionNotificationEndpointRequest) GetNotificationEndpointResource() *NotificationEndpoint { @@ -96324,7 +100192,7 @@ type InsertRegionSecurityPolicyRequest struct { func (x *InsertRegionSecurityPolicyRequest) Reset() { *x = InsertRegionSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[707] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[746] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96336,7 +100204,7 @@ func (x *InsertRegionSecurityPolicyRequest) String() string { func (*InsertRegionSecurityPolicyRequest) ProtoMessage() {} func (x *InsertRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[707] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[746] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96349,7 +100217,7 @@ func (x *InsertRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InsertRegionSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*InsertRegionSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{707} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{746} } func (x *InsertRegionSecurityPolicyRequest) GetProject() string { @@ -96387,6 +100255,91 @@ func (x *InsertRegionSecurityPolicyRequest) GetValidateOnly() bool { return false } +// A request message for RegionSnapshots.Insert. See the method description for details. +type InsertRegionSnapshotRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // The body resource for this request + SnapshotResource *Snapshot `protobuf:"bytes,481319977,opt,name=snapshot_resource,json=snapshotResource,proto3" json:"snapshot_resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *InsertRegionSnapshotRequest) Reset() { + *x = InsertRegionSnapshotRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[747] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *InsertRegionSnapshotRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InsertRegionSnapshotRequest) ProtoMessage() {} + +func (x *InsertRegionSnapshotRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[747] + 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 InsertRegionSnapshotRequest.ProtoReflect.Descriptor instead. +func (*InsertRegionSnapshotRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{747} +} + +func (x *InsertRegionSnapshotRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *InsertRegionSnapshotRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *InsertRegionSnapshotRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *InsertRegionSnapshotRequest) GetSnapshotResource() *Snapshot { + if x != nil { + return x.SnapshotResource + } + return nil +} + // A request message for RegionSslCertificates.Insert. See the method description for details. type InsertRegionSslCertificateRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -96416,7 +100369,7 @@ type InsertRegionSslCertificateRequest struct { func (x *InsertRegionSslCertificateRequest) Reset() { *x = InsertRegionSslCertificateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[708] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[748] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96428,7 +100381,7 @@ func (x *InsertRegionSslCertificateRequest) String() string { func (*InsertRegionSslCertificateRequest) ProtoMessage() {} func (x *InsertRegionSslCertificateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[708] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[748] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96441,7 +100394,7 @@ func (x *InsertRegionSslCertificateRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InsertRegionSslCertificateRequest.ProtoReflect.Descriptor instead. func (*InsertRegionSslCertificateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{708} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{748} } func (x *InsertRegionSslCertificateRequest) GetProject() string { @@ -96501,7 +100454,7 @@ type InsertRegionSslPolicyRequest struct { func (x *InsertRegionSslPolicyRequest) Reset() { *x = InsertRegionSslPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[709] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[749] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96513,7 +100466,7 @@ func (x *InsertRegionSslPolicyRequest) String() string { func (*InsertRegionSslPolicyRequest) ProtoMessage() {} func (x *InsertRegionSslPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[709] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[749] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96526,7 +100479,7 @@ func (x *InsertRegionSslPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertRegionSslPolicyRequest.ProtoReflect.Descriptor instead. func (*InsertRegionSslPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{709} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{749} } func (x *InsertRegionSslPolicyRequest) GetProject() string { @@ -96586,7 +100539,7 @@ type InsertRegionTargetHttpProxyRequest struct { func (x *InsertRegionTargetHttpProxyRequest) Reset() { *x = InsertRegionTargetHttpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[710] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[750] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96598,7 +100551,7 @@ func (x *InsertRegionTargetHttpProxyRequest) String() string { func (*InsertRegionTargetHttpProxyRequest) ProtoMessage() {} func (x *InsertRegionTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[710] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[750] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96611,7 +100564,7 @@ func (x *InsertRegionTargetHttpProxyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InsertRegionTargetHttpProxyRequest.ProtoReflect.Descriptor instead. func (*InsertRegionTargetHttpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{710} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{750} } func (x *InsertRegionTargetHttpProxyRequest) GetProject() string { @@ -96671,7 +100624,7 @@ type InsertRegionTargetHttpsProxyRequest struct { func (x *InsertRegionTargetHttpsProxyRequest) Reset() { *x = InsertRegionTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[711] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[751] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96683,7 +100636,7 @@ func (x *InsertRegionTargetHttpsProxyRequest) String() string { func (*InsertRegionTargetHttpsProxyRequest) ProtoMessage() {} func (x *InsertRegionTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[711] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[751] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96696,7 +100649,7 @@ func (x *InsertRegionTargetHttpsProxyRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use InsertRegionTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*InsertRegionTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{711} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{751} } func (x *InsertRegionTargetHttpsProxyRequest) GetProject() string { @@ -96756,7 +100709,7 @@ type InsertRegionTargetTcpProxyRequest struct { func (x *InsertRegionTargetTcpProxyRequest) Reset() { *x = InsertRegionTargetTcpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[712] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[752] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96768,7 +100721,7 @@ func (x *InsertRegionTargetTcpProxyRequest) String() string { func (*InsertRegionTargetTcpProxyRequest) ProtoMessage() {} func (x *InsertRegionTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[712] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[752] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96781,7 +100734,7 @@ func (x *InsertRegionTargetTcpProxyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InsertRegionTargetTcpProxyRequest.ProtoReflect.Descriptor instead. func (*InsertRegionTargetTcpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{712} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{752} } func (x *InsertRegionTargetTcpProxyRequest) GetProject() string { @@ -96830,7 +100783,7 @@ type InsertRegionUrlMapRequest struct { func (x *InsertRegionUrlMapRequest) Reset() { *x = InsertRegionUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[713] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[753] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96842,7 +100795,7 @@ func (x *InsertRegionUrlMapRequest) String() string { func (*InsertRegionUrlMapRequest) ProtoMessage() {} func (x *InsertRegionUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[713] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[753] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96855,7 +100808,7 @@ func (x *InsertRegionUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertRegionUrlMapRequest.ProtoReflect.Descriptor instead. func (*InsertRegionUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{713} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{753} } func (x *InsertRegionUrlMapRequest) GetProject() string { @@ -96915,7 +100868,7 @@ type InsertReservationRequest struct { func (x *InsertReservationRequest) Reset() { *x = InsertReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[714] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[754] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96927,7 +100880,7 @@ func (x *InsertReservationRequest) String() string { func (*InsertReservationRequest) ProtoMessage() {} func (x *InsertReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[714] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[754] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96940,7 +100893,7 @@ func (x *InsertReservationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertReservationRequest.ProtoReflect.Descriptor instead. func (*InsertReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{714} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{754} } func (x *InsertReservationRequest) GetProject() string { @@ -97000,7 +100953,7 @@ type InsertResourcePolicyRequest struct { func (x *InsertResourcePolicyRequest) Reset() { *x = InsertResourcePolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[715] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[755] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97012,7 +100965,7 @@ func (x *InsertResourcePolicyRequest) String() string { func (*InsertResourcePolicyRequest) ProtoMessage() {} func (x *InsertResourcePolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[715] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[755] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97025,7 +100978,7 @@ func (x *InsertResourcePolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertResourcePolicyRequest.ProtoReflect.Descriptor instead. func (*InsertResourcePolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{715} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{755} } func (x *InsertResourcePolicyRequest) GetProject() string { @@ -97083,7 +101036,7 @@ type InsertRouteRequest struct { func (x *InsertRouteRequest) Reset() { *x = InsertRouteRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[716] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[756] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97095,7 +101048,7 @@ func (x *InsertRouteRequest) String() string { func (*InsertRouteRequest) ProtoMessage() {} func (x *InsertRouteRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[716] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[756] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97108,7 +101061,7 @@ func (x *InsertRouteRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertRouteRequest.ProtoReflect.Descriptor instead. func (*InsertRouteRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{716} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{756} } func (x *InsertRouteRequest) GetProject() string { @@ -97161,7 +101114,7 @@ type InsertRouterRequest struct { func (x *InsertRouterRequest) Reset() { *x = InsertRouterRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[717] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[757] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97173,7 +101126,7 @@ func (x *InsertRouterRequest) String() string { func (*InsertRouterRequest) ProtoMessage() {} func (x *InsertRouterRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[717] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[757] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97186,7 +101139,7 @@ func (x *InsertRouterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertRouterRequest.ProtoReflect.Descriptor instead. func (*InsertRouterRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{717} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{757} } func (x *InsertRouterRequest) GetProject() string { @@ -97246,7 +101199,7 @@ type InsertSecurityPolicyRequest struct { func (x *InsertSecurityPolicyRequest) Reset() { *x = InsertSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[718] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[758] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97258,7 +101211,7 @@ func (x *InsertSecurityPolicyRequest) String() string { func (*InsertSecurityPolicyRequest) ProtoMessage() {} func (x *InsertSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[718] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[758] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97271,7 +101224,7 @@ func (x *InsertSecurityPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*InsertSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{718} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{758} } func (x *InsertSecurityPolicyRequest) GetProject() string { @@ -97331,7 +101284,7 @@ type InsertServiceAttachmentRequest struct { func (x *InsertServiceAttachmentRequest) Reset() { *x = InsertServiceAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[719] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[759] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97343,7 +101296,7 @@ func (x *InsertServiceAttachmentRequest) String() string { func (*InsertServiceAttachmentRequest) ProtoMessage() {} func (x *InsertServiceAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[719] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[759] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97356,7 +101309,7 @@ func (x *InsertServiceAttachmentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertServiceAttachmentRequest.ProtoReflect.Descriptor instead. func (*InsertServiceAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{719} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{759} } func (x *InsertServiceAttachmentRequest) GetProject() string { @@ -97414,7 +101367,7 @@ type InsertSnapshotRequest struct { func (x *InsertSnapshotRequest) Reset() { *x = InsertSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[720] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[760] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97426,7 +101379,7 @@ func (x *InsertSnapshotRequest) String() string { func (*InsertSnapshotRequest) ProtoMessage() {} func (x *InsertSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[720] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[760] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97439,7 +101392,7 @@ func (x *InsertSnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertSnapshotRequest.ProtoReflect.Descriptor instead. func (*InsertSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{720} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{760} } func (x *InsertSnapshotRequest) GetProject() string { @@ -97490,7 +101443,7 @@ type InsertSslCertificateRequest struct { func (x *InsertSslCertificateRequest) Reset() { *x = InsertSslCertificateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[721] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[761] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97502,7 +101455,7 @@ func (x *InsertSslCertificateRequest) String() string { func (*InsertSslCertificateRequest) ProtoMessage() {} func (x *InsertSslCertificateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[721] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[761] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97515,7 +101468,7 @@ func (x *InsertSslCertificateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertSslCertificateRequest.ProtoReflect.Descriptor instead. func (*InsertSslCertificateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{721} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{761} } func (x *InsertSslCertificateRequest) GetProject() string { @@ -97566,7 +101519,7 @@ type InsertSslPolicyRequest struct { func (x *InsertSslPolicyRequest) Reset() { *x = InsertSslPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[722] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[762] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97578,7 +101531,7 @@ func (x *InsertSslPolicyRequest) String() string { func (*InsertSslPolicyRequest) ProtoMessage() {} func (x *InsertSslPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[722] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[762] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97591,7 +101544,7 @@ func (x *InsertSslPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertSslPolicyRequest.ProtoReflect.Descriptor instead. func (*InsertSslPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{722} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{762} } func (x *InsertSslPolicyRequest) GetProject() string { @@ -97644,7 +101597,7 @@ type InsertStoragePoolRequest struct { func (x *InsertStoragePoolRequest) Reset() { *x = InsertStoragePoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[723] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[763] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97656,7 +101609,7 @@ func (x *InsertStoragePoolRequest) String() string { func (*InsertStoragePoolRequest) ProtoMessage() {} func (x *InsertStoragePoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[723] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[763] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97669,7 +101622,7 @@ func (x *InsertStoragePoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertStoragePoolRequest.ProtoReflect.Descriptor instead. func (*InsertStoragePoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{723} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{763} } func (x *InsertStoragePoolRequest) GetProject() string { @@ -97729,7 +101682,7 @@ type InsertSubnetworkRequest struct { func (x *InsertSubnetworkRequest) Reset() { *x = InsertSubnetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[724] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[764] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97741,7 +101694,7 @@ func (x *InsertSubnetworkRequest) String() string { func (*InsertSubnetworkRequest) ProtoMessage() {} func (x *InsertSubnetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[724] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[764] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97754,7 +101707,7 @@ func (x *InsertSubnetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertSubnetworkRequest.ProtoReflect.Descriptor instead. func (*InsertSubnetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{724} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{764} } func (x *InsertSubnetworkRequest) GetProject() string { @@ -97812,7 +101765,7 @@ type InsertTargetGrpcProxyRequest struct { func (x *InsertTargetGrpcProxyRequest) Reset() { *x = InsertTargetGrpcProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[725] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[765] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97824,7 +101777,7 @@ func (x *InsertTargetGrpcProxyRequest) String() string { func (*InsertTargetGrpcProxyRequest) ProtoMessage() {} func (x *InsertTargetGrpcProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[725] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[765] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97837,7 +101790,7 @@ func (x *InsertTargetGrpcProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertTargetGrpcProxyRequest.ProtoReflect.Descriptor instead. func (*InsertTargetGrpcProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{725} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{765} } func (x *InsertTargetGrpcProxyRequest) GetProject() string { @@ -97888,7 +101841,7 @@ type InsertTargetHttpProxyRequest struct { func (x *InsertTargetHttpProxyRequest) Reset() { *x = InsertTargetHttpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[726] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[766] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97900,7 +101853,7 @@ func (x *InsertTargetHttpProxyRequest) String() string { func (*InsertTargetHttpProxyRequest) ProtoMessage() {} func (x *InsertTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[726] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[766] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97913,7 +101866,7 @@ func (x *InsertTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertTargetHttpProxyRequest.ProtoReflect.Descriptor instead. func (*InsertTargetHttpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{726} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{766} } func (x *InsertTargetHttpProxyRequest) GetProject() string { @@ -97964,7 +101917,7 @@ type InsertTargetHttpsProxyRequest struct { func (x *InsertTargetHttpsProxyRequest) Reset() { *x = InsertTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[727] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[767] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -97976,7 +101929,7 @@ func (x *InsertTargetHttpsProxyRequest) String() string { func (*InsertTargetHttpsProxyRequest) ProtoMessage() {} func (x *InsertTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[727] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[767] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97989,7 +101942,7 @@ func (x *InsertTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*InsertTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{727} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{767} } func (x *InsertTargetHttpsProxyRequest) GetProject() string { @@ -98042,7 +101995,7 @@ type InsertTargetInstanceRequest struct { func (x *InsertTargetInstanceRequest) Reset() { *x = InsertTargetInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[728] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[768] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -98054,7 +102007,7 @@ func (x *InsertTargetInstanceRequest) String() string { func (*InsertTargetInstanceRequest) ProtoMessage() {} func (x *InsertTargetInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[728] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[768] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98067,7 +102020,7 @@ func (x *InsertTargetInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertTargetInstanceRequest.ProtoReflect.Descriptor instead. func (*InsertTargetInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{728} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{768} } func (x *InsertTargetInstanceRequest) GetProject() string { @@ -98127,7 +102080,7 @@ type InsertTargetPoolRequest struct { func (x *InsertTargetPoolRequest) Reset() { *x = InsertTargetPoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[729] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[769] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -98139,7 +102092,7 @@ func (x *InsertTargetPoolRequest) String() string { func (*InsertTargetPoolRequest) ProtoMessage() {} func (x *InsertTargetPoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[729] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[769] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98152,7 +102105,7 @@ func (x *InsertTargetPoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertTargetPoolRequest.ProtoReflect.Descriptor instead. func (*InsertTargetPoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{729} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{769} } func (x *InsertTargetPoolRequest) GetProject() string { @@ -98210,7 +102163,7 @@ type InsertTargetSslProxyRequest struct { func (x *InsertTargetSslProxyRequest) Reset() { *x = InsertTargetSslProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[730] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[770] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -98222,7 +102175,7 @@ func (x *InsertTargetSslProxyRequest) String() string { func (*InsertTargetSslProxyRequest) ProtoMessage() {} func (x *InsertTargetSslProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[730] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[770] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98235,7 +102188,7 @@ func (x *InsertTargetSslProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertTargetSslProxyRequest.ProtoReflect.Descriptor instead. func (*InsertTargetSslProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{730} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{770} } func (x *InsertTargetSslProxyRequest) GetProject() string { @@ -98286,7 +102239,7 @@ type InsertTargetTcpProxyRequest struct { func (x *InsertTargetTcpProxyRequest) Reset() { *x = InsertTargetTcpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[731] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[771] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -98298,7 +102251,7 @@ func (x *InsertTargetTcpProxyRequest) String() string { func (*InsertTargetTcpProxyRequest) ProtoMessage() {} func (x *InsertTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[731] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[771] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98311,7 +102264,7 @@ func (x *InsertTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertTargetTcpProxyRequest.ProtoReflect.Descriptor instead. func (*InsertTargetTcpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{731} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{771} } func (x *InsertTargetTcpProxyRequest) GetProject() string { @@ -98364,7 +102317,7 @@ type InsertTargetVpnGatewayRequest struct { func (x *InsertTargetVpnGatewayRequest) Reset() { *x = InsertTargetVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[732] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[772] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -98376,7 +102329,7 @@ func (x *InsertTargetVpnGatewayRequest) String() string { func (*InsertTargetVpnGatewayRequest) ProtoMessage() {} func (x *InsertTargetVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[732] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[772] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98389,7 +102342,7 @@ func (x *InsertTargetVpnGatewayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertTargetVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*InsertTargetVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{732} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{772} } func (x *InsertTargetVpnGatewayRequest) GetProject() string { @@ -98447,7 +102400,7 @@ type InsertUrlMapRequest struct { func (x *InsertUrlMapRequest) Reset() { *x = InsertUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[733] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[773] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -98459,7 +102412,7 @@ func (x *InsertUrlMapRequest) String() string { func (*InsertUrlMapRequest) ProtoMessage() {} func (x *InsertUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[733] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[773] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98472,7 +102425,7 @@ func (x *InsertUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertUrlMapRequest.ProtoReflect.Descriptor instead. func (*InsertUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{733} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{773} } func (x *InsertUrlMapRequest) GetProject() string { @@ -98525,7 +102478,7 @@ type InsertVpnGatewayRequest struct { func (x *InsertVpnGatewayRequest) Reset() { *x = InsertVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[734] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[774] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -98537,7 +102490,7 @@ func (x *InsertVpnGatewayRequest) String() string { func (*InsertVpnGatewayRequest) ProtoMessage() {} func (x *InsertVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[734] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[774] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98550,7 +102503,7 @@ func (x *InsertVpnGatewayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*InsertVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{734} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{774} } func (x *InsertVpnGatewayRequest) GetProject() string { @@ -98610,7 +102563,7 @@ type InsertVpnTunnelRequest struct { func (x *InsertVpnTunnelRequest) Reset() { *x = InsertVpnTunnelRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[735] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[775] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -98622,7 +102575,7 @@ func (x *InsertVpnTunnelRequest) String() string { func (*InsertVpnTunnelRequest) ProtoMessage() {} func (x *InsertVpnTunnelRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[735] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[775] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98635,7 +102588,7 @@ func (x *InsertVpnTunnelRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertVpnTunnelRequest.ProtoReflect.Descriptor instead. func (*InsertVpnTunnelRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{735} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{775} } func (x *InsertVpnTunnelRequest) GetProject() string { @@ -98697,7 +102650,7 @@ type InsertWireGroupRequest struct { func (x *InsertWireGroupRequest) Reset() { *x = InsertWireGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[736] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[776] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -98709,7 +102662,7 @@ func (x *InsertWireGroupRequest) String() string { func (*InsertWireGroupRequest) ProtoMessage() {} func (x *InsertWireGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[736] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[776] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98722,7 +102675,7 @@ func (x *InsertWireGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InsertWireGroupRequest.ProtoReflect.Descriptor instead. func (*InsertWireGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{736} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{776} } func (x *InsertWireGroupRequest) GetCrossSiteNetwork() string { @@ -98760,6 +102713,91 @@ func (x *InsertWireGroupRequest) GetWireGroupResource() *WireGroup { return nil } +// A request message for ZoneVmExtensionPolicies.Insert. See the method description for details. +type InsertZoneVmExtensionPolicyRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // The body resource for this request + VmExtensionPolicyResource *VmExtensionPolicy `protobuf:"bytes,515669235,opt,name=vm_extension_policy_resource,json=vmExtensionPolicyResource,proto3" json:"vm_extension_policy_resource,omitempty"` + // Name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *InsertZoneVmExtensionPolicyRequest) Reset() { + *x = InsertZoneVmExtensionPolicyRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[777] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *InsertZoneVmExtensionPolicyRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InsertZoneVmExtensionPolicyRequest) ProtoMessage() {} + +func (x *InsertZoneVmExtensionPolicyRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[777] + 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 InsertZoneVmExtensionPolicyRequest.ProtoReflect.Descriptor instead. +func (*InsertZoneVmExtensionPolicyRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{777} +} + +func (x *InsertZoneVmExtensionPolicyRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *InsertZoneVmExtensionPolicyRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *InsertZoneVmExtensionPolicyRequest) GetVmExtensionPolicyResource() *VmExtensionPolicy { + if x != nil { + return x.VmExtensionPolicyResource + } + return nil +} + +func (x *InsertZoneVmExtensionPolicyRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + // Represents an Instance resource. // // An instance is a virtual machine that is hosted on Google Cloud Platform. @@ -98953,7 +102991,7 @@ type Instance struct { func (x *Instance) Reset() { *x = Instance{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[737] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[778] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -98965,7 +103003,7 @@ func (x *Instance) String() string { func (*Instance) ProtoMessage() {} func (x *Instance) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[737] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[778] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98978,7 +103016,7 @@ func (x *Instance) ProtoReflect() protoreflect.Message { // Deprecated: Use Instance.ProtoReflect.Descriptor instead. func (*Instance) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{737} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{778} } func (x *Instance) GetAdvancedMachineFeatures() *AdvancedMachineFeatures { @@ -99337,7 +103375,7 @@ type InstanceAggregatedList struct { func (x *InstanceAggregatedList) Reset() { *x = InstanceAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[738] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[779] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -99349,7 +103387,7 @@ func (x *InstanceAggregatedList) String() string { func (*InstanceAggregatedList) ProtoMessage() {} func (x *InstanceAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[738] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[779] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -99362,7 +103400,7 @@ func (x *InstanceAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceAggregatedList.ProtoReflect.Descriptor instead. func (*InstanceAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{738} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{779} } func (x *InstanceAggregatedList) GetId() string { @@ -99426,7 +103464,7 @@ type InstanceConsumptionData struct { func (x *InstanceConsumptionData) Reset() { *x = InstanceConsumptionData{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[739] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[780] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -99438,7 +103476,7 @@ func (x *InstanceConsumptionData) String() string { func (*InstanceConsumptionData) ProtoMessage() {} func (x *InstanceConsumptionData) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[739] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[780] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -99451,7 +103489,7 @@ func (x *InstanceConsumptionData) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceConsumptionData.ProtoReflect.Descriptor instead. func (*InstanceConsumptionData) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{739} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{780} } func (x *InstanceConsumptionData) GetConsumptionInfo() *InstanceConsumptionInfo { @@ -99486,7 +103524,7 @@ type InstanceConsumptionInfo struct { func (x *InstanceConsumptionInfo) Reset() { *x = InstanceConsumptionInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[740] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[781] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -99498,7 +103536,7 @@ func (x *InstanceConsumptionInfo) String() string { func (*InstanceConsumptionInfo) ProtoMessage() {} func (x *InstanceConsumptionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[740] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[781] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -99511,7 +103549,7 @@ func (x *InstanceConsumptionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceConsumptionInfo.ProtoReflect.Descriptor instead. func (*InstanceConsumptionInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{740} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{781} } func (x *InstanceConsumptionInfo) GetGuestCpus() int32 { @@ -99563,7 +103601,7 @@ type InstanceFlexibilityPolicy struct { func (x *InstanceFlexibilityPolicy) Reset() { *x = InstanceFlexibilityPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[741] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[782] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -99575,7 +103613,7 @@ func (x *InstanceFlexibilityPolicy) String() string { func (*InstanceFlexibilityPolicy) ProtoMessage() {} func (x *InstanceFlexibilityPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[741] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[782] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -99588,7 +103626,7 @@ func (x *InstanceFlexibilityPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceFlexibilityPolicy.ProtoReflect.Descriptor instead. func (*InstanceFlexibilityPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{741} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{782} } func (x *InstanceFlexibilityPolicy) GetInstanceSelections() map[string]*InstanceFlexibilityPolicyInstanceSelection { @@ -99623,7 +103661,7 @@ type InstanceFlexibilityPolicyInstanceSelection struct { func (x *InstanceFlexibilityPolicyInstanceSelection) Reset() { *x = InstanceFlexibilityPolicyInstanceSelection{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[742] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[783] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -99635,7 +103673,7 @@ func (x *InstanceFlexibilityPolicyInstanceSelection) String() string { func (*InstanceFlexibilityPolicyInstanceSelection) ProtoMessage() {} func (x *InstanceFlexibilityPolicyInstanceSelection) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[742] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[783] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -99648,7 +103686,7 @@ func (x *InstanceFlexibilityPolicyInstanceSelection) ProtoReflect() protoreflect // Deprecated: Use InstanceFlexibilityPolicyInstanceSelection.ProtoReflect.Descriptor instead. func (*InstanceFlexibilityPolicyInstanceSelection) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{742} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{783} } func (x *InstanceFlexibilityPolicyInstanceSelection) GetDisks() []*AttachedDisk { @@ -99745,7 +103783,7 @@ type InstanceGroup struct { func (x *InstanceGroup) Reset() { *x = InstanceGroup{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[743] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[784] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -99757,7 +103795,7 @@ func (x *InstanceGroup) String() string { func (*InstanceGroup) ProtoMessage() {} func (x *InstanceGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[743] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[784] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -99770,7 +103808,7 @@ func (x *InstanceGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceGroup.ProtoReflect.Descriptor instead. func (*InstanceGroup) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{743} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{784} } func (x *InstanceGroup) GetCreationTimestamp() string { @@ -99891,7 +103929,7 @@ type InstanceGroupAggregatedList struct { func (x *InstanceGroupAggregatedList) Reset() { *x = InstanceGroupAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[744] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[785] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -99903,7 +103941,7 @@ func (x *InstanceGroupAggregatedList) String() string { func (*InstanceGroupAggregatedList) ProtoMessage() {} func (x *InstanceGroupAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[744] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[785] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -99916,7 +103954,7 @@ func (x *InstanceGroupAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceGroupAggregatedList.ProtoReflect.Descriptor instead. func (*InstanceGroupAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{744} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{785} } func (x *InstanceGroupAggregatedList) GetId() string { @@ -99993,7 +104031,7 @@ type InstanceGroupList struct { func (x *InstanceGroupList) Reset() { *x = InstanceGroupList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[745] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[786] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -100005,7 +104043,7 @@ func (x *InstanceGroupList) String() string { func (*InstanceGroupList) ProtoMessage() {} func (x *InstanceGroupList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[745] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[786] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -100018,7 +104056,7 @@ func (x *InstanceGroupList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceGroupList.ProtoReflect.Descriptor instead. func (*InstanceGroupList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{745} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{786} } func (x *InstanceGroupList) GetId() string { @@ -100093,10 +104131,10 @@ type InstanceGroupManager struct { // @pattern // [a-z](([-a-z0-9]{0,57})|([-a-z0-9]{0,51}-#{1,10}(\\[[0-9]{1,10}\\])?)) BaseInstanceName *string `protobuf:"bytes,389106439,opt,name=base_instance_name,json=baseInstanceName,proto3,oneof" json:"base_instance_name,omitempty"` - // Output only. [Output Only] The creation timestamp for this managed instance group inRFC3339 + // Output only. The creation timestamp for this managed instance group inRFC3339 // text format. CreationTimestamp *string `protobuf:"bytes,30525366,opt,name=creation_timestamp,json=creationTimestamp,proto3,oneof" json:"creation_timestamp,omitempty"` - // Output only. [Output Only] The list of instance actions and the number of instances + // Output only. The list of instance actions and the number of instances // in this managed instance group that are scheduled for each of those // actions. CurrentActions *InstanceGroupManagerActionsSummary `protobuf:"bytes,164045879,opt,name=current_actions,json=currentActions,proto3,oneof" json:"current_actions,omitempty"` @@ -100113,7 +104151,7 @@ type InstanceGroupManager struct { // To see the latest fingerprint, make a get() request to // retrieve an InstanceGroupManager. Fingerprint *string `protobuf:"bytes,234678500,opt,name=fingerprint,proto3,oneof" json:"fingerprint,omitempty"` - // Output only. [Output Only] A unique identifier for this resource type. The server + // Output only. A unique identifier for this resource type. The server // generates this identifier. Id *uint64 `protobuf:"varint,3355,opt,name=id,proto3,oneof" json:"id,omitempty"` // Instance flexibility allowing MIG to create VMs from multiple @@ -100121,7 +104159,7 @@ type InstanceGroupManager struct { // Instance flexibility configuration on MIG overrides instance // template configuration. InstanceFlexibilityPolicy *InstanceGroupManagerInstanceFlexibilityPolicy `protobuf:"bytes,26937090,opt,name=instance_flexibility_policy,json=instanceFlexibilityPolicy,proto3,oneof" json:"instance_flexibility_policy,omitempty"` - // Output only. [Output Only] The URL of the Instance Group resource. + // Output only. The URL of the Instance Group resource. InstanceGroup *string `protobuf:"bytes,81095253,opt,name=instance_group,json=instanceGroup,proto3,oneof" json:"instance_group,omitempty"` // The repair policy for this managed instance group. InstanceLifecyclePolicy *InstanceGroupManagerInstanceLifecyclePolicy `protobuf:"bytes,447961617,opt,name=instance_lifecycle_policy,json=instanceLifecyclePolicy,proto3,oneof" json:"instance_lifecycle_policy,omitempty"` @@ -100130,7 +104168,7 @@ type InstanceGroupManager struct { // in the managed instance group. The templates for existing instances in the // group do not change unless you run recreateInstances, runapplyUpdatesToInstances, or set the group'supdatePolicy.type to PROACTIVE. InstanceTemplate *string `protobuf:"bytes,309248228,opt,name=instance_template,json=instanceTemplate,proto3,oneof" json:"instance_template,omitempty"` - // Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManager for managed instance groups. + // Output only. The resource type, which is alwayscompute#instanceGroupManager for managed instance groups. Kind *string `protobuf:"bytes,3292052,opt,name=kind,proto3,oneof" json:"kind,omitempty"` // Pagination behavior of the listManagedInstances API method for // this managed instance group. @@ -100147,18 +104185,18 @@ type InstanceGroupManager struct { Region *string `protobuf:"bytes,138946292,opt,name=region,proto3,oneof" json:"region,omitempty"` // Resource policies for this managed instance group. ResourcePolicies *InstanceGroupManagerResourcePolicies `protobuf:"bytes,22220385,opt,name=resource_policies,json=resourcePolicies,proto3,oneof" json:"resource_policies,omitempty"` - // Output only. [Output Only] Reserved for future use. + // Output only. Reserved for future use. SatisfiesPzi *bool `protobuf:"varint,480964257,opt,name=satisfies_pzi,json=satisfiesPzi,proto3,oneof" json:"satisfies_pzi,omitempty"` - // Output only. [Output Only] Reserved for future use. + // Output only. Reserved for future use. SatisfiesPzs *bool `protobuf:"varint,480964267,opt,name=satisfies_pzs,json=satisfiesPzs,proto3,oneof" json:"satisfies_pzs,omitempty"` - // Output only. [Output Only] The URL for this managed instance group. The server defines + // Output only. The URL for this managed instance group. The server defines // this URL. SelfLink *string `protobuf:"bytes,456214797,opt,name=self_link,json=selfLink,proto3,oneof" json:"self_link,omitempty"` // Standby policy for stopped and suspended instances. StandbyPolicy *InstanceGroupManagerStandbyPolicy `protobuf:"bytes,499352324,opt,name=standby_policy,json=standbyPolicy,proto3,oneof" json:"standby_policy,omitempty"` // Stateful configuration for this Instanced Group Manager StatefulPolicy *StatefulPolicy `protobuf:"bytes,47538565,opt,name=stateful_policy,json=statefulPolicy,proto3,oneof" json:"stateful_policy,omitempty"` - // Output only. [Output Only] The status of this managed instance group. + // Output only. The status of this managed instance group. Status *InstanceGroupManagerStatus `protobuf:"bytes,181260274,opt,name=status,proto3,oneof" json:"status,omitempty"` // The URLs for all TargetPool resources to which instances in theinstanceGroup field are added. The target pools automatically // apply to all of the instances in the managed instance group. @@ -100201,7 +104239,7 @@ type InstanceGroupManager struct { // remaining instances. For more information, read aboutcanary // updates. Versions []*InstanceGroupManagerVersion `protobuf:"bytes,162430619,rep,name=versions,proto3" json:"versions,omitempty"` - // Output only. [Output Only] The URL of azone + // Output only. The URL of azone // where the managed instance group is located (for zonal resources). Zone *string `protobuf:"bytes,3744684,opt,name=zone,proto3,oneof" json:"zone,omitempty"` unknownFields protoimpl.UnknownFields @@ -100210,7 +104248,7 @@ type InstanceGroupManager struct { func (x *InstanceGroupManager) Reset() { *x = InstanceGroupManager{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[746] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[787] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -100222,7 +104260,7 @@ func (x *InstanceGroupManager) String() string { func (*InstanceGroupManager) ProtoMessage() {} func (x *InstanceGroupManager) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[746] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[787] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -100235,7 +104273,7 @@ func (x *InstanceGroupManager) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceGroupManager.ProtoReflect.Descriptor instead. func (*InstanceGroupManager) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{746} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{787} } func (x *InstanceGroupManager) GetAllInstancesConfig() *InstanceGroupManagerAllInstancesConfig { @@ -100471,11 +104509,11 @@ func (x *InstanceGroupManager) GetZone() string { type InstanceGroupManagerActionsSummary struct { state protoimpl.MessageState `protogen:"open.v1"` - // Output only. [Output Only] The total number of instances in the managed instance group + // Output only. The total number of instances in the managed instance group // that are scheduled to be abandoned. Abandoning an instance removes it // from the managed instance group without deleting it. Abandoning *int32 `protobuf:"varint,440023373,opt,name=abandoning,proto3,oneof" json:"abandoning,omitempty"` - // Output only. [Output Only] The number of instances in the managed instance group that + // Output only. The number of instances in the managed instance group that // are scheduled to be created or are currently being created. If the group // fails to create any of these instances, it tries again until it creates // the instance successfully. @@ -100483,44 +104521,44 @@ type InstanceGroupManagerActionsSummary struct { // If you have disabled creation retries, this field will not be populated; // instead, the creatingWithoutRetries field will be populated. Creating *int32 `protobuf:"varint,209809081,opt,name=creating,proto3,oneof" json:"creating,omitempty"` - // Output only. [Output Only] The number of instances that the managed instance group + // Output only. The number of instances that the managed instance group // will attempt to create. The group attempts to create each instance // only once. If the group fails to create any of these instances, it // decreases the group's targetSize value accordingly. CreatingWithoutRetries *int32 `protobuf:"varint,369916745,opt,name=creating_without_retries,json=creatingWithoutRetries,proto3,oneof" json:"creating_without_retries,omitempty"` - // Output only. [Output Only] The number of instances in the managed instance group that + // Output only. The number of instances in the managed instance group that // are scheduled to be deleted or are currently being deleted. Deleting *int32 `protobuf:"varint,282846120,opt,name=deleting,proto3,oneof" json:"deleting,omitempty"` - // Output only. [Output Only] The number of instances in the managed instance group that + // Output only. The number of instances in the managed instance group that // are running and have no scheduled actions. None *int32 `protobuf:"varint,3387192,opt,name=none,proto3,oneof" json:"none,omitempty"` - // Output only. [Output Only] The number of instances in the managed instance group that + // Output only. The number of instances in the managed instance group that // are scheduled to be recreated or are currently being being recreated. // Recreating an instance deletes the existing root persistent disk // and creates a new disk from the image that is defined in the // instance template. Recreating *int32 `protobuf:"varint,339057132,opt,name=recreating,proto3,oneof" json:"recreating,omitempty"` - // Output only. [Output Only] The number of instances in the managed instance group that + // Output only. The number of instances in the managed instance group that // are being reconfigured with properties that do not require a restart // or a recreate action. For example, setting or removing target // pools for the instance. Refreshing *int32 `protobuf:"varint,215044903,opt,name=refreshing,proto3,oneof" json:"refreshing,omitempty"` - // Output only. [Output Only] The number of instances in the managed instance group that + // Output only. The number of instances in the managed instance group that // are scheduled to be restarted or are currently being restarted. Restarting *int32 `protobuf:"varint,372312947,opt,name=restarting,proto3,oneof" json:"restarting,omitempty"` - // Output only. [Output Only] The number of instances in the managed instance group that + // Output only. The number of instances in the managed instance group that // are scheduled to be resumed or are currently being resumed. Resuming *int32 `protobuf:"varint,201100714,opt,name=resuming,proto3,oneof" json:"resuming,omitempty"` - // Output only. [Output Only] The number of instances in the managed instance group that + // Output only. The number of instances in the managed instance group that // are scheduled to be started or are currently being started. Starting *int32 `protobuf:"varint,243064896,opt,name=starting,proto3,oneof" json:"starting,omitempty"` - // Output only. [Output Only] The number of instances in the managed instance group that + // Output only. The number of instances in the managed instance group that // are scheduled to be stopped or are currently being stopped. Stopping *int32 `protobuf:"varint,105035892,opt,name=stopping,proto3,oneof" json:"stopping,omitempty"` - // Output only. [Output Only] The number of instances in the managed instance group that + // Output only. The number of instances in the managed instance group that // are scheduled to be suspended or are currently being suspended. Suspending *int32 `protobuf:"varint,29113894,opt,name=suspending,proto3,oneof" json:"suspending,omitempty"` - // Output only. [Output Only] The number of instances in the managed instance group that + // Output only. The number of instances in the managed instance group that // are being verified. See the managedInstances[].currentAction // property in the listManagedInstances method documentation. Verifying *int32 `protobuf:"varint,451612873,opt,name=verifying,proto3,oneof" json:"verifying,omitempty"` @@ -100530,7 +104568,7 @@ type InstanceGroupManagerActionsSummary struct { func (x *InstanceGroupManagerActionsSummary) Reset() { *x = InstanceGroupManagerActionsSummary{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[747] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[788] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -100542,7 +104580,7 @@ func (x *InstanceGroupManagerActionsSummary) String() string { func (*InstanceGroupManagerActionsSummary) ProtoMessage() {} func (x *InstanceGroupManagerActionsSummary) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[747] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[788] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -100555,7 +104593,7 @@ func (x *InstanceGroupManagerActionsSummary) ProtoReflect() protoreflect.Message // Deprecated: Use InstanceGroupManagerActionsSummary.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerActionsSummary) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{747} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{788} } func (x *InstanceGroupManagerActionsSummary) GetAbandoning() int32 { @@ -100676,7 +104714,7 @@ type InstanceGroupManagerAggregatedList struct { func (x *InstanceGroupManagerAggregatedList) Reset() { *x = InstanceGroupManagerAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[748] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[789] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -100688,7 +104726,7 @@ func (x *InstanceGroupManagerAggregatedList) String() string { func (*InstanceGroupManagerAggregatedList) ProtoMessage() {} func (x *InstanceGroupManagerAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[748] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[789] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -100701,7 +104739,7 @@ func (x *InstanceGroupManagerAggregatedList) ProtoReflect() protoreflect.Message // Deprecated: Use InstanceGroupManagerAggregatedList.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{748} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{789} } func (x *InstanceGroupManagerAggregatedList) GetId() string { @@ -100768,7 +104806,7 @@ type InstanceGroupManagerAllInstancesConfig struct { func (x *InstanceGroupManagerAllInstancesConfig) Reset() { *x = InstanceGroupManagerAllInstancesConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[749] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[790] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -100780,7 +104818,7 @@ func (x *InstanceGroupManagerAllInstancesConfig) String() string { func (*InstanceGroupManagerAllInstancesConfig) ProtoMessage() {} func (x *InstanceGroupManagerAllInstancesConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[749] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[790] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -100793,7 +104831,7 @@ func (x *InstanceGroupManagerAllInstancesConfig) ProtoReflect() protoreflect.Mes // Deprecated: Use InstanceGroupManagerAllInstancesConfig.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerAllInstancesConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{749} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{790} } func (x *InstanceGroupManagerAllInstancesConfig) GetProperties() *InstancePropertiesPatch { @@ -100822,7 +104860,7 @@ type InstanceGroupManagerAutoHealingPolicy struct { func (x *InstanceGroupManagerAutoHealingPolicy) Reset() { *x = InstanceGroupManagerAutoHealingPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[750] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[791] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -100834,7 +104872,7 @@ func (x *InstanceGroupManagerAutoHealingPolicy) String() string { func (*InstanceGroupManagerAutoHealingPolicy) ProtoMessage() {} func (x *InstanceGroupManagerAutoHealingPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[750] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[791] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -100847,7 +104885,7 @@ func (x *InstanceGroupManagerAutoHealingPolicy) ProtoReflect() protoreflect.Mess // Deprecated: Use InstanceGroupManagerAutoHealingPolicy.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerAutoHealingPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{750} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{791} } func (x *InstanceGroupManagerAutoHealingPolicy) GetHealthCheck() string { @@ -100875,7 +104913,7 @@ type InstanceGroupManagerInstanceFlexibilityPolicy struct { func (x *InstanceGroupManagerInstanceFlexibilityPolicy) Reset() { *x = InstanceGroupManagerInstanceFlexibilityPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[751] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[792] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -100887,7 +104925,7 @@ func (x *InstanceGroupManagerInstanceFlexibilityPolicy) String() string { func (*InstanceGroupManagerInstanceFlexibilityPolicy) ProtoMessage() {} func (x *InstanceGroupManagerInstanceFlexibilityPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[751] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[792] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -100900,7 +104938,7 @@ func (x *InstanceGroupManagerInstanceFlexibilityPolicy) ProtoReflect() protorefl // Deprecated: Use InstanceGroupManagerInstanceFlexibilityPolicy.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerInstanceFlexibilityPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{751} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{792} } func (x *InstanceGroupManagerInstanceFlexibilityPolicy) GetInstanceSelections() map[string]*InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection { @@ -100926,7 +104964,7 @@ type InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection struct { func (x *InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection) Reset() { *x = InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[752] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[793] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -100938,7 +104976,7 @@ func (x *InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection) String( func (*InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection) ProtoMessage() {} func (x *InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[752] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[793] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -100951,7 +104989,7 @@ func (x *InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection) ProtoRe // Deprecated: Use InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{752} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{793} } func (x *InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection) GetMachineTypes() []string { @@ -101015,7 +105053,7 @@ type InstanceGroupManagerInstanceLifecyclePolicy struct { func (x *InstanceGroupManagerInstanceLifecyclePolicy) Reset() { *x = InstanceGroupManagerInstanceLifecyclePolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[753] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[794] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101027,7 +105065,7 @@ func (x *InstanceGroupManagerInstanceLifecyclePolicy) String() string { func (*InstanceGroupManagerInstanceLifecyclePolicy) ProtoMessage() {} func (x *InstanceGroupManagerInstanceLifecyclePolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[753] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[794] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101040,7 +105078,7 @@ func (x *InstanceGroupManagerInstanceLifecyclePolicy) ProtoReflect() protoreflec // Deprecated: Use InstanceGroupManagerInstanceLifecyclePolicy.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerInstanceLifecyclePolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{753} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{794} } func (x *InstanceGroupManagerInstanceLifecyclePolicy) GetDefaultActionOnFailure() string { @@ -101090,7 +105128,7 @@ type InstanceGroupManagerList struct { func (x *InstanceGroupManagerList) Reset() { *x = InstanceGroupManagerList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[754] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[795] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101102,7 +105140,7 @@ func (x *InstanceGroupManagerList) String() string { func (*InstanceGroupManagerList) ProtoMessage() {} func (x *InstanceGroupManagerList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[754] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[795] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101115,7 +105153,7 @@ func (x *InstanceGroupManagerList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceGroupManagerList.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{754} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{795} } func (x *InstanceGroupManagerList) GetId() string { @@ -101167,20 +105205,23 @@ func (x *InstanceGroupManagerList) GetWarning() *Warning { // InstanceGroupManager. type InstanceGroupManagerResizeRequest struct { state protoimpl.MessageState `protogen:"open.v1"` - // Output only. [Output Only] The creation timestamp for this resize request inRFC3339 + // Output only. The creation timestamp for this resize request inRFC3339 // text format. CreationTimestamp *string `protobuf:"bytes,30525366,opt,name=creation_timestamp,json=creationTimestamp,proto3,oneof" json:"creation_timestamp,omitempty"` // An optional description of this resource. Description *string `protobuf:"bytes,422937596,opt,name=description,proto3,oneof" json:"description,omitempty"` - // Output only. [Output Only] A unique identifier for this resource type. The server - // generates this identifier. + // Output only. A unique identifier for this resource type. The server generates this + // identifier. Id *uint64 `protobuf:"varint,3355,opt,name=id,proto3,oneof" json:"id,omitempty"` - // Output only. [Output Only] The resource type, which is alwayscompute#instanceGroupManagerResizeRequest for - // resize requests. + // Output only. The resource type, which is alwayscompute#instanceGroupManagerResizeRequest for resize requests. Kind *string `protobuf:"bytes,3292052,opt,name=kind,proto3,oneof" json:"kind,omitempty"` // The name of this resize request. The name must be 1-63 characters // long, and comply withRFC1035. Name *string `protobuf:"bytes,3373707,opt,name=name,proto3,oneof" json:"name,omitempty"` + // Output only. The URL of a region + // where the resize request is located. Populated only for regional resize + // requests. + Region *string `protobuf:"bytes,138946292,opt,name=region,proto3,oneof" json:"region,omitempty"` // Requested run duration for instances that will be created by this request. // At the end of the run duration instance will be deleted. RequestedRunDuration *Duration `protobuf:"bytes,232146425,opt,name=requested_run_duration,json=requestedRunDuration,proto3,oneof" json:"requested_run_duration,omitempty"` @@ -101188,17 +105229,16 @@ type InstanceGroupManagerResizeRequest struct { // target size will be increased by this number. This field cannot be used // together with 'instances'. ResizeBy *int32 `protobuf:"varint,533735362,opt,name=resize_by,json=resizeBy,proto3,oneof" json:"resize_by,omitempty"` - // Output only. [Output Only] The URL for this resize request. The server defines - // this URL. + // Output only. The URL for this resize request. The server defines this URL. SelfLink *string `protobuf:"bytes,456214797,opt,name=self_link,json=selfLink,proto3,oneof" json:"self_link,omitempty"` - // Output only. [Output Only] Server-defined URL for this resource with the resource id. + // Output only. Server-defined URL for this resource with the resource id. SelfLinkWithId *string `protobuf:"bytes,44520962,opt,name=self_link_with_id,json=selfLinkWithId,proto3,oneof" json:"self_link_with_id,omitempty"` - // Output only. [Output only] Current state of the request. + // Output only. Current state of the request. // Check the State enum for the list of possible values. State *string `protobuf:"bytes,109757585,opt,name=state,proto3,oneof" json:"state,omitempty"` - // Output only. [Output only] Status of the request. + // Output only. Status of the request. Status *InstanceGroupManagerResizeRequestStatus `protobuf:"bytes,181260274,opt,name=status,proto3,oneof" json:"status,omitempty"` - // Output only. [Output Only] The URL of azone + // Output only. The URL of a zone // where the resize request is located. Populated only for zonal resize // requests. Zone *string `protobuf:"bytes,3744684,opt,name=zone,proto3,oneof" json:"zone,omitempty"` @@ -101208,7 +105248,7 @@ type InstanceGroupManagerResizeRequest struct { func (x *InstanceGroupManagerResizeRequest) Reset() { *x = InstanceGroupManagerResizeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[755] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[796] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101220,7 +105260,7 @@ func (x *InstanceGroupManagerResizeRequest) String() string { func (*InstanceGroupManagerResizeRequest) ProtoMessage() {} func (x *InstanceGroupManagerResizeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[755] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[796] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101233,7 +105273,7 @@ func (x *InstanceGroupManagerResizeRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InstanceGroupManagerResizeRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerResizeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{755} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{796} } func (x *InstanceGroupManagerResizeRequest) GetCreationTimestamp() string { @@ -101271,6 +105311,13 @@ func (x *InstanceGroupManagerResizeRequest) GetName() string { return "" } +func (x *InstanceGroupManagerResizeRequest) GetRegion() string { + if x != nil && x.Region != nil { + return *x.Region + } + return "" +} + func (x *InstanceGroupManagerResizeRequest) GetRequestedRunDuration() *Duration { if x != nil { return x.RequestedRunDuration @@ -101322,20 +105369,19 @@ func (x *InstanceGroupManagerResizeRequest) GetZone() string { type InstanceGroupManagerResizeRequestStatus struct { state protoimpl.MessageState `protogen:"open.v1"` - // Output only. [Output only] Fatal errors encountered during the queueing or - // provisioning phases of the ResizeRequest that caused the transition to - // the FAILED state. Contrary to the last_attempt errors, this field is - // final and errors are never removed from here, as the ResizeRequest is not - // going to retry. + // Output only. Fatal errors encountered during the queueing or provisioning phases of + // the ResizeRequest that caused the transition to the FAILED state. + // Contrary to the last_attempt errors, this field is final and errors are + // never removed from here, as the ResizeRequest is not going to retry. Error *Error `protobuf:"bytes,96784904,opt,name=error,proto3,oneof" json:"error,omitempty"` - // Output only. [Output only] Information about the last attempt to fulfill the request. - // The value is temporary since the ResizeRequest can retry, as long as it's - // still active and the last attempt value can either be cleared or replaced - // with a different error. Since ResizeRequest retries infrequently, the - // value may be stale and no longer show an active problem. The value is - // cleared when ResizeRequest transitions to the final state (becomes - // inactive). If the final state is FAILED the error describing it will be - // storred in the "error" field only. + // Output only. Information about the last attempt to fulfill the request. The value is + // temporary since the ResizeRequest can retry, as long as it's still active + // and the last attempt value can either be cleared or replaced with a + // different error. Since ResizeRequest retries infrequently, the value may + // be stale and no longer show an active problem. The value is cleared when + // ResizeRequest transitions to the final state (becomes inactive). If the + // final state is FAILED the error describing it will be stored in the + // "error" field only. LastAttempt *InstanceGroupManagerResizeRequestStatusLastAttempt `protobuf:"bytes,434771492,opt,name=last_attempt,json=lastAttempt,proto3,oneof" json:"last_attempt,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache @@ -101343,7 +105389,7 @@ type InstanceGroupManagerResizeRequestStatus struct { func (x *InstanceGroupManagerResizeRequestStatus) Reset() { *x = InstanceGroupManagerResizeRequestStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[756] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[797] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101355,7 +105401,7 @@ func (x *InstanceGroupManagerResizeRequestStatus) String() string { func (*InstanceGroupManagerResizeRequestStatus) ProtoMessage() {} func (x *InstanceGroupManagerResizeRequestStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[756] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[797] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101368,7 +105414,7 @@ func (x *InstanceGroupManagerResizeRequestStatus) ProtoReflect() protoreflect.Me // Deprecated: Use InstanceGroupManagerResizeRequestStatus.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerResizeRequestStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{756} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{797} } func (x *InstanceGroupManagerResizeRequestStatus) GetError() *Error { @@ -101395,7 +105441,7 @@ type InstanceGroupManagerResizeRequestStatusLastAttempt struct { func (x *InstanceGroupManagerResizeRequestStatusLastAttempt) Reset() { *x = InstanceGroupManagerResizeRequestStatusLastAttempt{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[757] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[798] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101407,7 +105453,7 @@ func (x *InstanceGroupManagerResizeRequestStatusLastAttempt) String() string { func (*InstanceGroupManagerResizeRequestStatusLastAttempt) ProtoMessage() {} func (x *InstanceGroupManagerResizeRequestStatusLastAttempt) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[757] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[798] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101420,7 +105466,7 @@ func (x *InstanceGroupManagerResizeRequestStatusLastAttempt) ProtoReflect() prot // Deprecated: Use InstanceGroupManagerResizeRequestStatusLastAttempt.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerResizeRequestStatusLastAttempt) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{757} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{798} } func (x *InstanceGroupManagerResizeRequestStatusLastAttempt) GetError() *Error { @@ -101456,7 +105502,7 @@ type InstanceGroupManagerResizeRequestsListResponse struct { func (x *InstanceGroupManagerResizeRequestsListResponse) Reset() { *x = InstanceGroupManagerResizeRequestsListResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[758] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[799] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101468,7 +105514,7 @@ func (x *InstanceGroupManagerResizeRequestsListResponse) String() string { func (*InstanceGroupManagerResizeRequestsListResponse) ProtoMessage() {} func (x *InstanceGroupManagerResizeRequestsListResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[758] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[799] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101481,7 +105527,7 @@ func (x *InstanceGroupManagerResizeRequestsListResponse) ProtoReflect() protoref // Deprecated: Use InstanceGroupManagerResizeRequestsListResponse.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerResizeRequestsListResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{758} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{799} } func (x *InstanceGroupManagerResizeRequestsListResponse) GetId() string { @@ -101543,7 +105589,7 @@ type InstanceGroupManagerResourcePolicies struct { func (x *InstanceGroupManagerResourcePolicies) Reset() { *x = InstanceGroupManagerResourcePolicies{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[759] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[800] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101555,7 +105601,7 @@ func (x *InstanceGroupManagerResourcePolicies) String() string { func (*InstanceGroupManagerResourcePolicies) ProtoMessage() {} func (x *InstanceGroupManagerResourcePolicies) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[759] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[800] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101568,7 +105614,7 @@ func (x *InstanceGroupManagerResourcePolicies) ProtoReflect() protoreflect.Messa // Deprecated: Use InstanceGroupManagerResourcePolicies.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerResourcePolicies) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{759} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{800} } func (x *InstanceGroupManagerResourcePolicies) GetWorkloadPolicy() string { @@ -101596,7 +105642,7 @@ type InstanceGroupManagerStandbyPolicy struct { func (x *InstanceGroupManagerStandbyPolicy) Reset() { *x = InstanceGroupManagerStandbyPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[760] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[801] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101608,7 +105654,7 @@ func (x *InstanceGroupManagerStandbyPolicy) String() string { func (*InstanceGroupManagerStandbyPolicy) ProtoMessage() {} func (x *InstanceGroupManagerStandbyPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[760] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[801] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101621,7 +105667,7 @@ func (x *InstanceGroupManagerStandbyPolicy) ProtoReflect() protoreflect.Message // Deprecated: Use InstanceGroupManagerStandbyPolicy.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerStandbyPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{760} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{801} } func (x *InstanceGroupManagerStandbyPolicy) GetInitialDelaySec() int32 { @@ -101640,26 +105686,30 @@ func (x *InstanceGroupManagerStandbyPolicy) GetMode() string { type InstanceGroupManagerStatus struct { state protoimpl.MessageState `protogen:"open.v1"` - // Output only. [Output only] Status of all-instances configuration on the group. + // Output only. Status of all-instances configuration on the group. AllInstancesConfig *InstanceGroupManagerStatusAllInstancesConfig `protobuf:"bytes,112596737,opt,name=all_instances_config,json=allInstancesConfig,proto3,oneof" json:"all_instances_config,omitempty"` - // Output only. [Output Only] The accelerator topology applied to this MIG. + // Output only. The accelerator topology applied to this MIG. // Currently only one accelerator topology is supported. AppliedAcceleratorTopologies []*InstanceGroupManagerStatusAcceleratorTopology `protobuf:"bytes,481392547,rep,name=applied_accelerator_topologies,json=appliedAcceleratorTopologies,proto3" json:"applied_accelerator_topologies,omitempty"` - // Output only. [Output Only] The URL of theAutoscaler + // Output only. The URL of theAutoscaler // that targets this instance group manager. Autoscaler *string `protobuf:"bytes,517258967,opt,name=autoscaler,proto3,oneof" json:"autoscaler,omitempty"` - // Output only. [Output Only] The status of bulk instance operation. + // Output only. The status of bulk instance operation. BulkInstanceOperation *InstanceGroupManagerStatusBulkInstanceOperation `protobuf:"bytes,501667466,opt,name=bulk_instance_operation,json=bulkInstanceOperation,proto3,oneof" json:"bulk_instance_operation,omitempty"` - // Output only. [Output Only] A bit indicating whether the managed instance group is in a + // Output only. The list of instance statuses and the number of instances + // in this managed instance group that have the status. Currently only shown + // for TPU MIGs + CurrentInstanceStatuses *InstanceGroupManagerStatusInstanceStatusSummary `protobuf:"bytes,269432644,opt,name=current_instance_statuses,json=currentInstanceStatuses,proto3,oneof" json:"current_instance_statuses,omitempty"` + // Output only. A bit indicating whether the managed instance group is in a // stable state. A stable state means that: none of the instances in the // managed instance group is currently undergoing any type of change (for // example, creation, restart, or deletion); no future changes are scheduled // for instances in the managed instance group; and the managed instance // group itself is not being modified. IsStable *bool `protobuf:"varint,108410864,opt,name=is_stable,json=isStable,proto3,oneof" json:"is_stable,omitempty"` - // Output only. [Output Only] Stateful status of the given Instance Group Manager. + // Output only. Stateful status of the given Instance Group Manager. Stateful *InstanceGroupManagerStatusStateful `protobuf:"bytes,244462412,opt,name=stateful,proto3,oneof" json:"stateful,omitempty"` - // Output only. [Output Only] A status of consistency of Instances' versions with their + // Output only. A status of consistency of Instances' versions with their // target version specified by version field on Instance Group // Manager. VersionTarget *InstanceGroupManagerStatusVersionTarget `protobuf:"bytes,289386200,opt,name=version_target,json=versionTarget,proto3,oneof" json:"version_target,omitempty"` @@ -101669,7 +105719,7 @@ type InstanceGroupManagerStatus struct { func (x *InstanceGroupManagerStatus) Reset() { *x = InstanceGroupManagerStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[761] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[802] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101681,7 +105731,7 @@ func (x *InstanceGroupManagerStatus) String() string { func (*InstanceGroupManagerStatus) ProtoMessage() {} func (x *InstanceGroupManagerStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[761] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[802] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101694,7 +105744,7 @@ func (x *InstanceGroupManagerStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceGroupManagerStatus.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{761} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{802} } func (x *InstanceGroupManagerStatus) GetAllInstancesConfig() *InstanceGroupManagerStatusAllInstancesConfig { @@ -101725,6 +105775,13 @@ func (x *InstanceGroupManagerStatus) GetBulkInstanceOperation() *InstanceGroupMa return nil } +func (x *InstanceGroupManagerStatus) GetCurrentInstanceStatuses() *InstanceGroupManagerStatusInstanceStatusSummary { + if x != nil { + return x.CurrentInstanceStatuses + } + return nil +} + func (x *InstanceGroupManagerStatus) GetIsStable() bool { if x != nil && x.IsStable != nil { return *x.IsStable @@ -101748,13 +105805,13 @@ func (x *InstanceGroupManagerStatus) GetVersionTarget() *InstanceGroupManagerSta type InstanceGroupManagerStatusAcceleratorTopology struct { state protoimpl.MessageState `protogen:"open.v1"` - // Output only. [Output Only] Topology in the format of: "16x16", "4x4x4", etc. + // Output only. Topology in the format of: "16x16", "4x4x4", etc. // The value is the same as configured in the WorkloadPolicy. AcceleratorTopology *string `protobuf:"bytes,389323203,opt,name=accelerator_topology,json=acceleratorTopology,proto3,oneof" json:"accelerator_topology,omitempty"` - // Output only. [Output Only] The state of the accelerator topology. + // Output only. The state of the accelerator topology. // Check the State enum for the list of possible values. State *string `protobuf:"bytes,109757585,opt,name=state,proto3,oneof" json:"state,omitempty"` - // Output only. [Output Only] The result of the latest accelerator topology state + // Output only. The result of the latest accelerator topology state // check. StateDetails *InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails `protobuf:"bytes,95566996,opt,name=state_details,json=stateDetails,proto3,oneof" json:"state_details,omitempty"` unknownFields protoimpl.UnknownFields @@ -101763,7 +105820,7 @@ type InstanceGroupManagerStatusAcceleratorTopology struct { func (x *InstanceGroupManagerStatusAcceleratorTopology) Reset() { *x = InstanceGroupManagerStatusAcceleratorTopology{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[762] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[803] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101775,7 +105832,7 @@ func (x *InstanceGroupManagerStatusAcceleratorTopology) String() string { func (*InstanceGroupManagerStatusAcceleratorTopology) ProtoMessage() {} func (x *InstanceGroupManagerStatusAcceleratorTopology) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[762] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[803] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101788,7 +105845,7 @@ func (x *InstanceGroupManagerStatusAcceleratorTopology) ProtoReflect() protorefl // Deprecated: Use InstanceGroupManagerStatusAcceleratorTopology.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerStatusAcceleratorTopology) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{762} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{803} } func (x *InstanceGroupManagerStatusAcceleratorTopology) GetAcceleratorTopology() string { @@ -101814,9 +105871,9 @@ func (x *InstanceGroupManagerStatusAcceleratorTopology) GetStateDetails() *Insta type InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails struct { state protoimpl.MessageState `protogen:"open.v1"` - // Output only. [Output Only] Encountered errors. + // Output only. Encountered errors. Error *Error `protobuf:"bytes,96784904,opt,name=error,proto3,oneof" json:"error,omitempty"` - // Output only. [Output Only] Timestamp is shown only if there is an error. The field + // Output only. Timestamp is shown only if there is an error. The field // has // RFC3339 // // text format. Timestamp *string `protobuf:"bytes,55126294,opt,name=timestamp,proto3,oneof" json:"timestamp,omitempty"` @@ -101826,7 +105883,7 @@ type InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetail func (x *InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails) Reset() { *x = InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[763] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[804] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101838,7 +105895,7 @@ func (x *InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDe func (*InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails) ProtoMessage() {} func (x *InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[763] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[804] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101851,7 +105908,7 @@ func (x *InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDe // Deprecated: Use InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{763} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{804} } func (x *InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails) GetError() *Error { @@ -101870,10 +105927,10 @@ func (x *InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDe type InstanceGroupManagerStatusAllInstancesConfig struct { state protoimpl.MessageState `protogen:"open.v1"` - // Output only. [Output Only] Current all-instances configuration revision. + // Output only. Current all-instances configuration revision. // This value is in RFC3339 text format. CurrentRevision *string `protobuf:"bytes,38355937,opt,name=current_revision,json=currentRevision,proto3,oneof" json:"current_revision,omitempty"` - // Output only. [Output Only] A bit indicating whether this configuration has + // Output only. A bit indicating whether this configuration has // been applied to all managed instances in the group. Effective *bool `protobuf:"varint,141961639,opt,name=effective,proto3,oneof" json:"effective,omitempty"` unknownFields protoimpl.UnknownFields @@ -101882,7 +105939,7 @@ type InstanceGroupManagerStatusAllInstancesConfig struct { func (x *InstanceGroupManagerStatusAllInstancesConfig) Reset() { *x = InstanceGroupManagerStatusAllInstancesConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[764] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[805] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101894,7 +105951,7 @@ func (x *InstanceGroupManagerStatusAllInstancesConfig) String() string { func (*InstanceGroupManagerStatusAllInstancesConfig) ProtoMessage() {} func (x *InstanceGroupManagerStatusAllInstancesConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[764] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[805] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101907,7 +105964,7 @@ func (x *InstanceGroupManagerStatusAllInstancesConfig) ProtoReflect() protorefle // Deprecated: Use InstanceGroupManagerStatusAllInstancesConfig.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerStatusAllInstancesConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{764} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{805} } func (x *InstanceGroupManagerStatusAllInstancesConfig) GetCurrentRevision() string { @@ -101928,9 +105985,9 @@ func (x *InstanceGroupManagerStatusAllInstancesConfig) GetEffective() bool { // targetSizePolicy.mode is set to BULK. type InstanceGroupManagerStatusBulkInstanceOperation struct { state protoimpl.MessageState `protogen:"open.v1"` - // Output only. [Output Only] Informs whether bulk instance operation is in progress. + // Output only. Informs whether bulk instance operation is in progress. InProgress *bool `protobuf:"varint,320200711,opt,name=in_progress,json=inProgress,proto3,oneof" json:"in_progress,omitempty"` - // Output only. [Output Only] Information from the last progress check of bulk instance + // Output only. Information from the last progress check of bulk instance // operation. LastProgressCheck *InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck `protobuf:"bytes,208638271,opt,name=last_progress_check,json=lastProgressCheck,proto3,oneof" json:"last_progress_check,omitempty"` unknownFields protoimpl.UnknownFields @@ -101939,7 +105996,7 @@ type InstanceGroupManagerStatusBulkInstanceOperation struct { func (x *InstanceGroupManagerStatusBulkInstanceOperation) Reset() { *x = InstanceGroupManagerStatusBulkInstanceOperation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[765] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[806] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -101951,7 +106008,7 @@ func (x *InstanceGroupManagerStatusBulkInstanceOperation) String() string { func (*InstanceGroupManagerStatusBulkInstanceOperation) ProtoMessage() {} func (x *InstanceGroupManagerStatusBulkInstanceOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[765] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[806] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101964,7 +106021,7 @@ func (x *InstanceGroupManagerStatusBulkInstanceOperation) ProtoReflect() protore // Deprecated: Use InstanceGroupManagerStatusBulkInstanceOperation.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerStatusBulkInstanceOperation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{765} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{806} } func (x *InstanceGroupManagerStatusBulkInstanceOperation) GetInProgress() bool { @@ -101983,9 +106040,9 @@ func (x *InstanceGroupManagerStatusBulkInstanceOperation) GetLastProgressCheck() type InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck struct { state protoimpl.MessageState `protogen:"open.v1"` - // Output only. [Output Only] Errors encountered during bulk instance operation. + // Output only. Errors encountered during bulk instance operation. Error *Error `protobuf:"bytes,96784904,opt,name=error,proto3,oneof" json:"error,omitempty"` - // Output only. [Output Only] Timestamp of the last progress check of bulk instance + // Output only. Timestamp of the last progress check of bulk instance // operation. Timestamp is in RFC3339 text format. Timestamp *string `protobuf:"bytes,55126294,opt,name=timestamp,proto3,oneof" json:"timestamp,omitempty"` unknownFields protoimpl.UnknownFields @@ -101994,7 +106051,7 @@ type InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck struct { func (x *InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck) Reset() { *x = InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[766] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[807] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102006,7 +106063,7 @@ func (x *InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck) Strin func (*InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck) ProtoMessage() {} func (x *InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[766] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[807] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102019,7 +106076,7 @@ func (x *InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck) Proto // Deprecated: Use InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{766} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{807} } func (x *InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck) GetError() *Error { @@ -102036,16 +106093,192 @@ func (x *InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck) GetTi return "" } +// The list of instance statuses and the number of instances in this managed +// instance group that have the status. For more information about how to +// interpret each status check the instance lifecycle documentation. +// Currently only shown for TPU MIGs. +type InstanceGroupManagerStatusInstanceStatusSummary struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Output only. The number of instances in the managed instance group + // that have DEPROVISIONING status. + Deprovisioning *int32 `protobuf:"varint,462169582,opt,name=deprovisioning,proto3,oneof" json:"deprovisioning,omitempty"` + // Output only. The number of instances that have not been created yet or + // have been deleted. Includes only instances that would be shown in the + // listManagedInstances method and not all instances that have been + // deleted in the lifetime of the MIG. + // Does not include FlexStart instances that are waiting for the resources + // availability, they are considered as 'pending'. + NonExistent *int32 `protobuf:"varint,468485062,opt,name=non_existent,json=nonExistent,proto3,oneof" json:"non_existent,omitempty"` + // Output only. The number of instances in the managed instance group + // that have PENDING status, that is FlexStart instances that are waiting + // for resources. Instances that do not exist because of the other reasons + // are counted as 'non_existent'. + Pending *int32 `protobuf:"varint,391154071,opt,name=pending,proto3,oneof" json:"pending,omitempty"` + // Output only. The number of instances in the managed instance group + // that have PENDING_STOP status. + PendingStop *int32 `protobuf:"varint,163159466,opt,name=pending_stop,json=pendingStop,proto3,oneof" json:"pending_stop,omitempty"` + // Output only. The number of instances in the managed instance group + // that have PROVISIONING status. + Provisioning *int32 `protobuf:"varint,121098989,opt,name=provisioning,proto3,oneof" json:"provisioning,omitempty"` + // Output only. The number of instances in the managed instance group + // that have REPAIRING status. + Repairing *int32 `protobuf:"varint,311243061,opt,name=repairing,proto3,oneof" json:"repairing,omitempty"` + // Output only. The number of instances in the managed instance group + // that have RUNNING status. + Running *int32 `protobuf:"varint,477042111,opt,name=running,proto3,oneof" json:"running,omitempty"` + // Output only. The number of instances in the managed instance group + // that have STAGING status. + Staging *int32 `protobuf:"varint,249960507,opt,name=staging,proto3,oneof" json:"staging,omitempty"` + // Output only. The number of instances in the managed instance group + // that have STOPPED status. + Stopped *int32 `protobuf:"varint,263164365,opt,name=stopped,proto3,oneof" json:"stopped,omitempty"` + // Output only. The number of instances in the managed instance group + // that have STOPPING status. + Stopping *int32 `protobuf:"varint,105035892,opt,name=stopping,proto3,oneof" json:"stopping,omitempty"` + // Output only. The number of instances in the managed instance group + // that have SUSPENDED status. + Suspended *int32 `protobuf:"varint,485854683,opt,name=suspended,proto3,oneof" json:"suspended,omitempty"` + // Output only. The number of instances in the managed instance group + // that have SUSPENDING status. + Suspending *int32 `protobuf:"varint,29113894,opt,name=suspending,proto3,oneof" json:"suspending,omitempty"` + // Output only. The number of instances in the managed instance group + // that have TERMINATED status. + Terminated *int32 `protobuf:"varint,301796899,opt,name=terminated,proto3,oneof" json:"terminated,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) Reset() { + *x = InstanceGroupManagerStatusInstanceStatusSummary{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[808] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InstanceGroupManagerStatusInstanceStatusSummary) ProtoMessage() {} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[808] + 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 InstanceGroupManagerStatusInstanceStatusSummary.ProtoReflect.Descriptor instead. +func (*InstanceGroupManagerStatusInstanceStatusSummary) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{808} +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetDeprovisioning() int32 { + if x != nil && x.Deprovisioning != nil { + return *x.Deprovisioning + } + return 0 +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetNonExistent() int32 { + if x != nil && x.NonExistent != nil { + return *x.NonExistent + } + return 0 +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetPending() int32 { + if x != nil && x.Pending != nil { + return *x.Pending + } + return 0 +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetPendingStop() int32 { + if x != nil && x.PendingStop != nil { + return *x.PendingStop + } + return 0 +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetProvisioning() int32 { + if x != nil && x.Provisioning != nil { + return *x.Provisioning + } + return 0 +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetRepairing() int32 { + if x != nil && x.Repairing != nil { + return *x.Repairing + } + return 0 +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetRunning() int32 { + if x != nil && x.Running != nil { + return *x.Running + } + return 0 +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetStaging() int32 { + if x != nil && x.Staging != nil { + return *x.Staging + } + return 0 +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetStopped() int32 { + if x != nil && x.Stopped != nil { + return *x.Stopped + } + return 0 +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetStopping() int32 { + if x != nil && x.Stopping != nil { + return *x.Stopping + } + return 0 +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetSuspended() int32 { + if x != nil && x.Suspended != nil { + return *x.Suspended + } + return 0 +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetSuspending() int32 { + if x != nil && x.Suspending != nil { + return *x.Suspending + } + return 0 +} + +func (x *InstanceGroupManagerStatusInstanceStatusSummary) GetTerminated() int32 { + if x != nil && x.Terminated != nil { + return *x.Terminated + } + return 0 +} + type InstanceGroupManagerStatusStateful struct { state protoimpl.MessageState `protogen:"open.v1"` - // Output only. [Output Only] A bit indicating whether the managed instance group + // Output only. A bit indicating whether the managed instance group // has stateful configuration, that is, if you have configured any items // in a stateful policy or in per-instance configs. // The group might report that it has no stateful configuration even when // there is still some preserved state on a managed instance, for example, // if you have deleted all PICs but not yet applied those deletions. HasStatefulConfig *bool `protobuf:"varint,110474224,opt,name=has_stateful_config,json=hasStatefulConfig,proto3,oneof" json:"has_stateful_config,omitempty"` - // Output only. [Output Only] Status of per-instance configurations on the instances. + // Output only. Status of per-instance configurations on the instances. PerInstanceConfigs *InstanceGroupManagerStatusStatefulPerInstanceConfigs `protobuf:"bytes,526265001,opt,name=per_instance_configs,json=perInstanceConfigs,proto3,oneof" json:"per_instance_configs,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache @@ -102053,7 +106286,7 @@ type InstanceGroupManagerStatusStateful struct { func (x *InstanceGroupManagerStatusStateful) Reset() { *x = InstanceGroupManagerStatusStateful{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[767] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[809] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102065,7 +106298,7 @@ func (x *InstanceGroupManagerStatusStateful) String() string { func (*InstanceGroupManagerStatusStateful) ProtoMessage() {} func (x *InstanceGroupManagerStatusStateful) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[767] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[809] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102078,7 +106311,7 @@ func (x *InstanceGroupManagerStatusStateful) ProtoReflect() protoreflect.Message // Deprecated: Use InstanceGroupManagerStatusStateful.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerStatusStateful) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{767} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{809} } func (x *InstanceGroupManagerStatusStateful) GetHasStatefulConfig() bool { @@ -102107,7 +106340,7 @@ type InstanceGroupManagerStatusStatefulPerInstanceConfigs struct { func (x *InstanceGroupManagerStatusStatefulPerInstanceConfigs) Reset() { *x = InstanceGroupManagerStatusStatefulPerInstanceConfigs{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[768] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[810] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102119,7 +106352,7 @@ func (x *InstanceGroupManagerStatusStatefulPerInstanceConfigs) String() string { func (*InstanceGroupManagerStatusStatefulPerInstanceConfigs) ProtoMessage() {} func (x *InstanceGroupManagerStatusStatefulPerInstanceConfigs) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[768] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[810] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102132,7 +106365,7 @@ func (x *InstanceGroupManagerStatusStatefulPerInstanceConfigs) ProtoReflect() pr // Deprecated: Use InstanceGroupManagerStatusStatefulPerInstanceConfigs.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerStatusStatefulPerInstanceConfigs) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{768} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{810} } func (x *InstanceGroupManagerStatusStatefulPerInstanceConfigs) GetAllEffective() bool { @@ -102144,7 +106377,7 @@ func (x *InstanceGroupManagerStatusStatefulPerInstanceConfigs) GetAllEffective() type InstanceGroupManagerStatusVersionTarget struct { state protoimpl.MessageState `protogen:"open.v1"` - // Output only. [Output Only] A bit indicating whether version target has been reached + // Output only. A bit indicating whether version target has been reached // in this managed instance group, i.e. all instances are in their target // version. Instances' target version are specified byversion field on Instance Group Manager. IsReached *bool `protobuf:"varint,433209149,opt,name=is_reached,json=isReached,proto3,oneof" json:"is_reached,omitempty"` @@ -102154,7 +106387,7 @@ type InstanceGroupManagerStatusVersionTarget struct { func (x *InstanceGroupManagerStatusVersionTarget) Reset() { *x = InstanceGroupManagerStatusVersionTarget{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[769] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[811] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102166,7 +106399,7 @@ func (x *InstanceGroupManagerStatusVersionTarget) String() string { func (*InstanceGroupManagerStatusVersionTarget) ProtoMessage() {} func (x *InstanceGroupManagerStatusVersionTarget) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[769] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[811] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102179,7 +106412,7 @@ func (x *InstanceGroupManagerStatusVersionTarget) ProtoReflect() protoreflect.Me // Deprecated: Use InstanceGroupManagerStatusVersionTarget.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerStatusVersionTarget) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{769} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{811} } func (x *InstanceGroupManagerStatusVersionTarget) GetIsReached() bool { @@ -102201,7 +106434,7 @@ type InstanceGroupManagerTargetSizePolicy struct { func (x *InstanceGroupManagerTargetSizePolicy) Reset() { *x = InstanceGroupManagerTargetSizePolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[770] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[812] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102213,7 +106446,7 @@ func (x *InstanceGroupManagerTargetSizePolicy) String() string { func (*InstanceGroupManagerTargetSizePolicy) ProtoMessage() {} func (x *InstanceGroupManagerTargetSizePolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[770] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[812] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102226,7 +106459,7 @@ func (x *InstanceGroupManagerTargetSizePolicy) ProtoReflect() protoreflect.Messa // Deprecated: Use InstanceGroupManagerTargetSizePolicy.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerTargetSizePolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{770} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{812} } func (x *InstanceGroupManagerTargetSizePolicy) GetMode() string { @@ -102317,7 +106550,7 @@ type InstanceGroupManagerUpdatePolicy struct { func (x *InstanceGroupManagerUpdatePolicy) Reset() { *x = InstanceGroupManagerUpdatePolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[771] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[813] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102329,7 +106562,7 @@ func (x *InstanceGroupManagerUpdatePolicy) String() string { func (*InstanceGroupManagerUpdatePolicy) ProtoMessage() {} func (x *InstanceGroupManagerUpdatePolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[771] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[813] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102342,7 +106575,7 @@ func (x *InstanceGroupManagerUpdatePolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceGroupManagerUpdatePolicy.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerUpdatePolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{771} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{813} } func (x *InstanceGroupManagerUpdatePolicy) GetInstanceRedistributionType() string { @@ -102430,7 +106663,7 @@ type InstanceGroupManagerVersion struct { func (x *InstanceGroupManagerVersion) Reset() { *x = InstanceGroupManagerVersion{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[772] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[814] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102442,7 +106675,7 @@ func (x *InstanceGroupManagerVersion) String() string { func (*InstanceGroupManagerVersion) ProtoMessage() {} func (x *InstanceGroupManagerVersion) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[772] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[814] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102455,7 +106688,7 @@ func (x *InstanceGroupManagerVersion) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceGroupManagerVersion.ProtoReflect.Descriptor instead. func (*InstanceGroupManagerVersion) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{772} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{814} } func (x *InstanceGroupManagerVersion) GetInstanceTemplate() string { @@ -102490,7 +106723,7 @@ type InstanceGroupManagersAbandonInstancesRequest struct { func (x *InstanceGroupManagersAbandonInstancesRequest) Reset() { *x = InstanceGroupManagersAbandonInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[773] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[815] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102502,7 +106735,7 @@ func (x *InstanceGroupManagersAbandonInstancesRequest) String() string { func (*InstanceGroupManagersAbandonInstancesRequest) ProtoMessage() {} func (x *InstanceGroupManagersAbandonInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[773] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[815] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102515,7 +106748,7 @@ func (x *InstanceGroupManagersAbandonInstancesRequest) ProtoReflect() protorefle // Deprecated: Use InstanceGroupManagersAbandonInstancesRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersAbandonInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{773} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{815} } func (x *InstanceGroupManagersAbandonInstancesRequest) GetInstances() []string { @@ -102573,7 +106806,7 @@ type InstanceGroupManagersApplyUpdatesRequest struct { func (x *InstanceGroupManagersApplyUpdatesRequest) Reset() { *x = InstanceGroupManagersApplyUpdatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[774] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[816] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102585,7 +106818,7 @@ func (x *InstanceGroupManagersApplyUpdatesRequest) String() string { func (*InstanceGroupManagersApplyUpdatesRequest) ProtoMessage() {} func (x *InstanceGroupManagersApplyUpdatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[774] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[816] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102598,7 +106831,7 @@ func (x *InstanceGroupManagersApplyUpdatesRequest) ProtoReflect() protoreflect.M // Deprecated: Use InstanceGroupManagersApplyUpdatesRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersApplyUpdatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{774} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{816} } func (x *InstanceGroupManagersApplyUpdatesRequest) GetAllInstances() bool { @@ -102640,7 +106873,7 @@ type InstanceGroupManagersCreateInstancesRequest struct { func (x *InstanceGroupManagersCreateInstancesRequest) Reset() { *x = InstanceGroupManagersCreateInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[775] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[817] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102652,7 +106885,7 @@ func (x *InstanceGroupManagersCreateInstancesRequest) String() string { func (*InstanceGroupManagersCreateInstancesRequest) ProtoMessage() {} func (x *InstanceGroupManagersCreateInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[775] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[817] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102665,7 +106898,7 @@ func (x *InstanceGroupManagersCreateInstancesRequest) ProtoReflect() protoreflec // Deprecated: Use InstanceGroupManagersCreateInstancesRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersCreateInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{775} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{817} } func (x *InstanceGroupManagersCreateInstancesRequest) GetInstances() []*PerInstanceConfig { @@ -102696,7 +106929,7 @@ type InstanceGroupManagersDeleteInstancesRequest struct { func (x *InstanceGroupManagersDeleteInstancesRequest) Reset() { *x = InstanceGroupManagersDeleteInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[776] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[818] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102708,7 +106941,7 @@ func (x *InstanceGroupManagersDeleteInstancesRequest) String() string { func (*InstanceGroupManagersDeleteInstancesRequest) ProtoMessage() {} func (x *InstanceGroupManagersDeleteInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[776] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[818] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102721,7 +106954,7 @@ func (x *InstanceGroupManagersDeleteInstancesRequest) ProtoReflect() protoreflec // Deprecated: Use InstanceGroupManagersDeleteInstancesRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersDeleteInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{776} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{818} } func (x *InstanceGroupManagersDeleteInstancesRequest) GetInstances() []string { @@ -102750,7 +106983,7 @@ type InstanceGroupManagersDeletePerInstanceConfigsReq struct { func (x *InstanceGroupManagersDeletePerInstanceConfigsReq) Reset() { *x = InstanceGroupManagersDeletePerInstanceConfigsReq{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[777] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[819] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102762,7 +106995,7 @@ func (x *InstanceGroupManagersDeletePerInstanceConfigsReq) String() string { func (*InstanceGroupManagersDeletePerInstanceConfigsReq) ProtoMessage() {} func (x *InstanceGroupManagersDeletePerInstanceConfigsReq) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[777] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[819] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102775,7 +107008,7 @@ func (x *InstanceGroupManagersDeletePerInstanceConfigsReq) ProtoReflect() protor // Deprecated: Use InstanceGroupManagersDeletePerInstanceConfigsReq.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersDeletePerInstanceConfigsReq) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{777} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{819} } func (x *InstanceGroupManagersDeletePerInstanceConfigsReq) GetNames() []string { @@ -102801,7 +107034,7 @@ type InstanceGroupManagersListErrorsResponse struct { func (x *InstanceGroupManagersListErrorsResponse) Reset() { *x = InstanceGroupManagersListErrorsResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[778] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[820] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102813,7 +107046,7 @@ func (x *InstanceGroupManagersListErrorsResponse) String() string { func (*InstanceGroupManagersListErrorsResponse) ProtoMessage() {} func (x *InstanceGroupManagersListErrorsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[778] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[820] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102826,7 +107059,7 @@ func (x *InstanceGroupManagersListErrorsResponse) ProtoReflect() protoreflect.Me // Deprecated: Use InstanceGroupManagersListErrorsResponse.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersListErrorsResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{778} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{820} } func (x *InstanceGroupManagersListErrorsResponse) GetItems() []*InstanceManagedByIgmError { @@ -102859,7 +107092,7 @@ type InstanceGroupManagersListManagedInstancesResponse struct { func (x *InstanceGroupManagersListManagedInstancesResponse) Reset() { *x = InstanceGroupManagersListManagedInstancesResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[779] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[821] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102871,7 +107104,7 @@ func (x *InstanceGroupManagersListManagedInstancesResponse) String() string { func (*InstanceGroupManagersListManagedInstancesResponse) ProtoMessage() {} func (x *InstanceGroupManagersListManagedInstancesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[779] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[821] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102884,7 +107117,7 @@ func (x *InstanceGroupManagersListManagedInstancesResponse) ProtoReflect() proto // Deprecated: Use InstanceGroupManagersListManagedInstancesResponse.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersListManagedInstancesResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{779} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{821} } func (x *InstanceGroupManagersListManagedInstancesResponse) GetManagedInstances() []*ManagedInstance { @@ -102919,7 +107152,7 @@ type InstanceGroupManagersListPerInstanceConfigsResp struct { func (x *InstanceGroupManagersListPerInstanceConfigsResp) Reset() { *x = InstanceGroupManagersListPerInstanceConfigsResp{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[780] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[822] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102931,7 +107164,7 @@ func (x *InstanceGroupManagersListPerInstanceConfigsResp) String() string { func (*InstanceGroupManagersListPerInstanceConfigsResp) ProtoMessage() {} func (x *InstanceGroupManagersListPerInstanceConfigsResp) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[780] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[822] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102944,7 +107177,7 @@ func (x *InstanceGroupManagersListPerInstanceConfigsResp) ProtoReflect() protore // Deprecated: Use InstanceGroupManagersListPerInstanceConfigsResp.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersListPerInstanceConfigsResp) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{780} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{822} } func (x *InstanceGroupManagersListPerInstanceConfigsResp) GetItems() []*PerInstanceConfig { @@ -102980,7 +107213,7 @@ type InstanceGroupManagersPatchPerInstanceConfigsReq struct { func (x *InstanceGroupManagersPatchPerInstanceConfigsReq) Reset() { *x = InstanceGroupManagersPatchPerInstanceConfigsReq{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[781] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[823] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -102992,7 +107225,7 @@ func (x *InstanceGroupManagersPatchPerInstanceConfigsReq) String() string { func (*InstanceGroupManagersPatchPerInstanceConfigsReq) ProtoMessage() {} func (x *InstanceGroupManagersPatchPerInstanceConfigsReq) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[781] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[823] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103005,7 +107238,7 @@ func (x *InstanceGroupManagersPatchPerInstanceConfigsReq) ProtoReflect() protore // Deprecated: Use InstanceGroupManagersPatchPerInstanceConfigsReq.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersPatchPerInstanceConfigsReq) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{781} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{823} } func (x *InstanceGroupManagersPatchPerInstanceConfigsReq) GetPerInstanceConfigs() []*PerInstanceConfig { @@ -103026,7 +107259,7 @@ type InstanceGroupManagersRecreateInstancesRequest struct { func (x *InstanceGroupManagersRecreateInstancesRequest) Reset() { *x = InstanceGroupManagersRecreateInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[782] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[824] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103038,7 +107271,7 @@ func (x *InstanceGroupManagersRecreateInstancesRequest) String() string { func (*InstanceGroupManagersRecreateInstancesRequest) ProtoMessage() {} func (x *InstanceGroupManagersRecreateInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[782] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[824] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103051,7 +107284,7 @@ func (x *InstanceGroupManagersRecreateInstancesRequest) ProtoReflect() protorefl // Deprecated: Use InstanceGroupManagersRecreateInstancesRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersRecreateInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{782} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{824} } func (x *InstanceGroupManagersRecreateInstancesRequest) GetInstances() []string { @@ -103072,7 +107305,7 @@ type InstanceGroupManagersResumeInstancesRequest struct { func (x *InstanceGroupManagersResumeInstancesRequest) Reset() { *x = InstanceGroupManagersResumeInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[783] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[825] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103084,7 +107317,7 @@ func (x *InstanceGroupManagersResumeInstancesRequest) String() string { func (*InstanceGroupManagersResumeInstancesRequest) ProtoMessage() {} func (x *InstanceGroupManagersResumeInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[783] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[825] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103097,7 +107330,7 @@ func (x *InstanceGroupManagersResumeInstancesRequest) ProtoReflect() protoreflec // Deprecated: Use InstanceGroupManagersResumeInstancesRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersResumeInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{783} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{825} } func (x *InstanceGroupManagersResumeInstancesRequest) GetInstances() []string { @@ -103121,7 +107354,7 @@ type InstanceGroupManagersScopedList struct { func (x *InstanceGroupManagersScopedList) Reset() { *x = InstanceGroupManagersScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[784] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[826] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103133,7 +107366,7 @@ func (x *InstanceGroupManagersScopedList) String() string { func (*InstanceGroupManagersScopedList) ProtoMessage() {} func (x *InstanceGroupManagersScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[784] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[826] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103146,7 +107379,7 @@ func (x *InstanceGroupManagersScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceGroupManagersScopedList.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{784} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{826} } func (x *InstanceGroupManagersScopedList) GetInstanceGroupManagers() []*InstanceGroupManager { @@ -103176,7 +107409,7 @@ type InstanceGroupManagersSetInstanceTemplateRequest struct { func (x *InstanceGroupManagersSetInstanceTemplateRequest) Reset() { *x = InstanceGroupManagersSetInstanceTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[785] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[827] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103188,7 +107421,7 @@ func (x *InstanceGroupManagersSetInstanceTemplateRequest) String() string { func (*InstanceGroupManagersSetInstanceTemplateRequest) ProtoMessage() {} func (x *InstanceGroupManagersSetInstanceTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[785] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[827] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103201,7 +107434,7 @@ func (x *InstanceGroupManagersSetInstanceTemplateRequest) ProtoReflect() protore // Deprecated: Use InstanceGroupManagersSetInstanceTemplateRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersSetInstanceTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{785} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{827} } func (x *InstanceGroupManagersSetInstanceTemplateRequest) GetInstanceTemplate() string { @@ -103231,7 +107464,7 @@ type InstanceGroupManagersSetTargetPoolsRequest struct { func (x *InstanceGroupManagersSetTargetPoolsRequest) Reset() { *x = InstanceGroupManagersSetTargetPoolsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[786] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[828] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103243,7 +107476,7 @@ func (x *InstanceGroupManagersSetTargetPoolsRequest) String() string { func (*InstanceGroupManagersSetTargetPoolsRequest) ProtoMessage() {} func (x *InstanceGroupManagersSetTargetPoolsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[786] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[828] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103256,7 +107489,7 @@ func (x *InstanceGroupManagersSetTargetPoolsRequest) ProtoReflect() protoreflect // Deprecated: Use InstanceGroupManagersSetTargetPoolsRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersSetTargetPoolsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{786} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{828} } func (x *InstanceGroupManagersSetTargetPoolsRequest) GetFingerprint() string { @@ -103284,7 +107517,7 @@ type InstanceGroupManagersStartInstancesRequest struct { func (x *InstanceGroupManagersStartInstancesRequest) Reset() { *x = InstanceGroupManagersStartInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[787] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[829] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103296,7 +107529,7 @@ func (x *InstanceGroupManagersStartInstancesRequest) String() string { func (*InstanceGroupManagersStartInstancesRequest) ProtoMessage() {} func (x *InstanceGroupManagersStartInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[787] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[829] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103309,7 +107542,7 @@ func (x *InstanceGroupManagersStartInstancesRequest) ProtoReflect() protoreflect // Deprecated: Use InstanceGroupManagersStartInstancesRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersStartInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{787} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{829} } func (x *InstanceGroupManagersStartInstancesRequest) GetInstances() []string { @@ -103333,7 +107566,7 @@ type InstanceGroupManagersStopInstancesRequest struct { func (x *InstanceGroupManagersStopInstancesRequest) Reset() { *x = InstanceGroupManagersStopInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[788] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[830] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103345,7 +107578,7 @@ func (x *InstanceGroupManagersStopInstancesRequest) String() string { func (*InstanceGroupManagersStopInstancesRequest) ProtoMessage() {} func (x *InstanceGroupManagersStopInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[788] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[830] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103358,7 +107591,7 @@ func (x *InstanceGroupManagersStopInstancesRequest) ProtoReflect() protoreflect. // Deprecated: Use InstanceGroupManagersStopInstancesRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersStopInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{788} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{830} } func (x *InstanceGroupManagersStopInstancesRequest) GetForceStop() bool { @@ -103389,7 +107622,7 @@ type InstanceGroupManagersSuspendInstancesRequest struct { func (x *InstanceGroupManagersSuspendInstancesRequest) Reset() { *x = InstanceGroupManagersSuspendInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[789] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[831] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103401,7 +107634,7 @@ func (x *InstanceGroupManagersSuspendInstancesRequest) String() string { func (*InstanceGroupManagersSuspendInstancesRequest) ProtoMessage() {} func (x *InstanceGroupManagersSuspendInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[789] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[831] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103414,7 +107647,7 @@ func (x *InstanceGroupManagersSuspendInstancesRequest) ProtoReflect() protorefle // Deprecated: Use InstanceGroupManagersSuspendInstancesRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersSuspendInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{789} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{831} } func (x *InstanceGroupManagersSuspendInstancesRequest) GetForceSuspend() bool { @@ -103443,7 +107676,7 @@ type InstanceGroupManagersUpdatePerInstanceConfigsReq struct { func (x *InstanceGroupManagersUpdatePerInstanceConfigsReq) Reset() { *x = InstanceGroupManagersUpdatePerInstanceConfigsReq{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[790] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[832] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103455,7 +107688,7 @@ func (x *InstanceGroupManagersUpdatePerInstanceConfigsReq) String() string { func (*InstanceGroupManagersUpdatePerInstanceConfigsReq) ProtoMessage() {} func (x *InstanceGroupManagersUpdatePerInstanceConfigsReq) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[790] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[832] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103468,7 +107701,7 @@ func (x *InstanceGroupManagersUpdatePerInstanceConfigsReq) ProtoReflect() protor // Deprecated: Use InstanceGroupManagersUpdatePerInstanceConfigsReq.ProtoReflect.Descriptor instead. func (*InstanceGroupManagersUpdatePerInstanceConfigsReq) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{790} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{832} } func (x *InstanceGroupManagersUpdatePerInstanceConfigsReq) GetPerInstanceConfigs() []*PerInstanceConfig { @@ -103488,7 +107721,7 @@ type InstanceGroupsAddInstancesRequest struct { func (x *InstanceGroupsAddInstancesRequest) Reset() { *x = InstanceGroupsAddInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[791] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[833] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103500,7 +107733,7 @@ func (x *InstanceGroupsAddInstancesRequest) String() string { func (*InstanceGroupsAddInstancesRequest) ProtoMessage() {} func (x *InstanceGroupsAddInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[791] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[833] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103513,7 +107746,7 @@ func (x *InstanceGroupsAddInstancesRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InstanceGroupsAddInstancesRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupsAddInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{791} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{833} } func (x *InstanceGroupsAddInstancesRequest) GetInstances() []*InstanceReference { @@ -103548,7 +107781,7 @@ type InstanceGroupsListInstances struct { func (x *InstanceGroupsListInstances) Reset() { *x = InstanceGroupsListInstances{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[792] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[834] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103560,7 +107793,7 @@ func (x *InstanceGroupsListInstances) String() string { func (*InstanceGroupsListInstances) ProtoMessage() {} func (x *InstanceGroupsListInstances) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[792] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[834] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103573,7 +107806,7 @@ func (x *InstanceGroupsListInstances) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceGroupsListInstances.ProtoReflect.Descriptor instead. func (*InstanceGroupsListInstances) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{792} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{834} } func (x *InstanceGroupsListInstances) GetId() string { @@ -103631,7 +107864,7 @@ type InstanceGroupsListInstancesRequest struct { func (x *InstanceGroupsListInstancesRequest) Reset() { *x = InstanceGroupsListInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[793] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[835] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103643,7 +107876,7 @@ func (x *InstanceGroupsListInstancesRequest) String() string { func (*InstanceGroupsListInstancesRequest) ProtoMessage() {} func (x *InstanceGroupsListInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[793] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[835] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103656,7 +107889,7 @@ func (x *InstanceGroupsListInstancesRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InstanceGroupsListInstancesRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupsListInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{793} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{835} } func (x *InstanceGroupsListInstancesRequest) GetInstanceState() string { @@ -103676,7 +107909,7 @@ type InstanceGroupsRemoveInstancesRequest struct { func (x *InstanceGroupsRemoveInstancesRequest) Reset() { *x = InstanceGroupsRemoveInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[794] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[836] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103688,7 +107921,7 @@ func (x *InstanceGroupsRemoveInstancesRequest) String() string { func (*InstanceGroupsRemoveInstancesRequest) ProtoMessage() {} func (x *InstanceGroupsRemoveInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[794] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[836] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103701,7 +107934,7 @@ func (x *InstanceGroupsRemoveInstancesRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use InstanceGroupsRemoveInstancesRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupsRemoveInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{794} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{836} } func (x *InstanceGroupsRemoveInstancesRequest) GetInstances() []*InstanceReference { @@ -103725,7 +107958,7 @@ type InstanceGroupsScopedList struct { func (x *InstanceGroupsScopedList) Reset() { *x = InstanceGroupsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[795] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[837] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103737,7 +107970,7 @@ func (x *InstanceGroupsScopedList) String() string { func (*InstanceGroupsScopedList) ProtoMessage() {} func (x *InstanceGroupsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[795] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[837] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103750,7 +107983,7 @@ func (x *InstanceGroupsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceGroupsScopedList.ProtoReflect.Descriptor instead. func (*InstanceGroupsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{795} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{837} } func (x *InstanceGroupsScopedList) GetInstanceGroups() []*InstanceGroup { @@ -103784,7 +108017,7 @@ type InstanceGroupsSetNamedPortsRequest struct { func (x *InstanceGroupsSetNamedPortsRequest) Reset() { *x = InstanceGroupsSetNamedPortsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[796] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[838] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103796,7 +108029,7 @@ func (x *InstanceGroupsSetNamedPortsRequest) String() string { func (*InstanceGroupsSetNamedPortsRequest) ProtoMessage() {} func (x *InstanceGroupsSetNamedPortsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[796] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[838] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103809,7 +108042,7 @@ func (x *InstanceGroupsSetNamedPortsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InstanceGroupsSetNamedPortsRequest.ProtoReflect.Descriptor instead. func (*InstanceGroupsSetNamedPortsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{796} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{838} } func (x *InstanceGroupsSetNamedPortsRequest) GetFingerprint() string { @@ -103852,7 +108085,7 @@ type InstanceList struct { func (x *InstanceList) Reset() { *x = InstanceList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[797] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[839] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103864,7 +108097,7 @@ func (x *InstanceList) String() string { func (*InstanceList) ProtoMessage() {} func (x *InstanceList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[797] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[839] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103877,7 +108110,7 @@ func (x *InstanceList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceList.ProtoReflect.Descriptor instead. func (*InstanceList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{797} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{839} } func (x *InstanceList) GetId() string { @@ -103947,7 +108180,7 @@ type InstanceListReferrers struct { func (x *InstanceListReferrers) Reset() { *x = InstanceListReferrers{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[798] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[840] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103959,7 +108192,7 @@ func (x *InstanceListReferrers) String() string { func (*InstanceListReferrers) ProtoMessage() {} func (x *InstanceListReferrers) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[798] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[840] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103972,7 +108205,7 @@ func (x *InstanceListReferrers) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceListReferrers.ProtoReflect.Descriptor instead. func (*InstanceListReferrers) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{798} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{840} } func (x *InstanceListReferrers) GetId() string { @@ -104034,7 +108267,7 @@ type InstanceManagedByIgmError struct { func (x *InstanceManagedByIgmError) Reset() { *x = InstanceManagedByIgmError{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[799] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[841] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104046,7 +108279,7 @@ func (x *InstanceManagedByIgmError) String() string { func (*InstanceManagedByIgmError) ProtoMessage() {} func (x *InstanceManagedByIgmError) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[799] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[841] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104059,7 +108292,7 @@ func (x *InstanceManagedByIgmError) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceManagedByIgmError.ProtoReflect.Descriptor instead. func (*InstanceManagedByIgmError) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{799} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{841} } func (x *InstanceManagedByIgmError) GetError() *InstanceManagedByIgmErrorManagedInstanceError { @@ -104103,7 +108336,7 @@ type InstanceManagedByIgmErrorInstanceActionDetails struct { func (x *InstanceManagedByIgmErrorInstanceActionDetails) Reset() { *x = InstanceManagedByIgmErrorInstanceActionDetails{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[800] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[842] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104115,7 +108348,7 @@ func (x *InstanceManagedByIgmErrorInstanceActionDetails) String() string { func (*InstanceManagedByIgmErrorInstanceActionDetails) ProtoMessage() {} func (x *InstanceManagedByIgmErrorInstanceActionDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[800] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[842] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104128,7 +108361,7 @@ func (x *InstanceManagedByIgmErrorInstanceActionDetails) ProtoReflect() protoref // Deprecated: Use InstanceManagedByIgmErrorInstanceActionDetails.ProtoReflect.Descriptor instead. func (*InstanceManagedByIgmErrorInstanceActionDetails) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{800} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{842} } func (x *InstanceManagedByIgmErrorInstanceActionDetails) GetAction() string { @@ -104164,7 +108397,7 @@ type InstanceManagedByIgmErrorManagedInstanceError struct { func (x *InstanceManagedByIgmErrorManagedInstanceError) Reset() { *x = InstanceManagedByIgmErrorManagedInstanceError{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[801] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[843] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104176,7 +108409,7 @@ func (x *InstanceManagedByIgmErrorManagedInstanceError) String() string { func (*InstanceManagedByIgmErrorManagedInstanceError) ProtoMessage() {} func (x *InstanceManagedByIgmErrorManagedInstanceError) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[801] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[843] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104189,7 +108422,7 @@ func (x *InstanceManagedByIgmErrorManagedInstanceError) ProtoReflect() protorefl // Deprecated: Use InstanceManagedByIgmErrorManagedInstanceError.ProtoReflect.Descriptor instead. func (*InstanceManagedByIgmErrorManagedInstanceError) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{801} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{843} } func (x *InstanceManagedByIgmErrorManagedInstanceError) GetCode() string { @@ -104228,7 +108461,7 @@ type InstanceMoveRequest struct { func (x *InstanceMoveRequest) Reset() { *x = InstanceMoveRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[802] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[844] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104240,7 +108473,7 @@ func (x *InstanceMoveRequest) String() string { func (*InstanceMoveRequest) ProtoMessage() {} func (x *InstanceMoveRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[802] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[844] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104253,7 +108486,7 @@ func (x *InstanceMoveRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceMoveRequest.ProtoReflect.Descriptor instead. func (*InstanceMoveRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{802} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{844} } func (x *InstanceMoveRequest) GetDestinationZone() string { @@ -104290,7 +108523,7 @@ type InstanceParams struct { func (x *InstanceParams) Reset() { *x = InstanceParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[803] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[845] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104302,7 +108535,7 @@ func (x *InstanceParams) String() string { func (*InstanceParams) ProtoMessage() {} func (x *InstanceParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[803] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[845] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104315,7 +108548,7 @@ func (x *InstanceParams) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceParams.ProtoReflect.Descriptor instead. func (*InstanceParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{803} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{845} } func (x *InstanceParams) GetRequestValidForDuration() *Duration { @@ -104424,7 +108657,7 @@ type InstanceProperties struct { func (x *InstanceProperties) Reset() { *x = InstanceProperties{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[804] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[846] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104436,7 +108669,7 @@ func (x *InstanceProperties) String() string { func (*InstanceProperties) ProtoMessage() {} func (x *InstanceProperties) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[804] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[846] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104449,7 +108682,7 @@ func (x *InstanceProperties) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceProperties.ProtoReflect.Descriptor instead. func (*InstanceProperties) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{804} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{846} } func (x *InstanceProperties) GetAdvancedMachineFeatures() *AdvancedMachineFeatures { @@ -104621,7 +108854,7 @@ type InstancePropertiesPatch struct { func (x *InstancePropertiesPatch) Reset() { *x = InstancePropertiesPatch{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[805] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[847] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104633,7 +108866,7 @@ func (x *InstancePropertiesPatch) String() string { func (*InstancePropertiesPatch) ProtoMessage() {} func (x *InstancePropertiesPatch) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[805] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[847] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104646,7 +108879,7 @@ func (x *InstancePropertiesPatch) ProtoReflect() protoreflect.Message { // Deprecated: Use InstancePropertiesPatch.ProtoReflect.Descriptor instead. func (*InstancePropertiesPatch) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{805} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{847} } func (x *InstancePropertiesPatch) GetLabels() map[string]string { @@ -104674,7 +108907,7 @@ type InstanceReference struct { func (x *InstanceReference) Reset() { *x = InstanceReference{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[806] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[848] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104686,7 +108919,7 @@ func (x *InstanceReference) String() string { func (*InstanceReference) ProtoMessage() {} func (x *InstanceReference) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[806] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[848] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104699,7 +108932,7 @@ func (x *InstanceReference) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceReference.ProtoReflect.Descriptor instead. func (*InstanceReference) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{806} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{848} } func (x *InstanceReference) GetInstance() string { @@ -104740,7 +108973,7 @@ type InstanceSettings struct { func (x *InstanceSettings) Reset() { *x = InstanceSettings{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[807] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[849] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104752,7 +108985,7 @@ func (x *InstanceSettings) String() string { func (*InstanceSettings) ProtoMessage() {} func (x *InstanceSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[807] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[849] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104765,7 +108998,7 @@ func (x *InstanceSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceSettings.ProtoReflect.Descriptor instead. func (*InstanceSettings) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{807} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{849} } func (x *InstanceSettings) GetFingerprint() string { @@ -104810,7 +109043,7 @@ type InstanceSettingsMetadata struct { func (x *InstanceSettingsMetadata) Reset() { *x = InstanceSettingsMetadata{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[808] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[850] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104822,7 +109055,7 @@ func (x *InstanceSettingsMetadata) String() string { func (*InstanceSettingsMetadata) ProtoMessage() {} func (x *InstanceSettingsMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[808] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[850] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104835,7 +109068,7 @@ func (x *InstanceSettingsMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceSettingsMetadata.ProtoReflect.Descriptor instead. func (*InstanceSettingsMetadata) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{808} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{850} } func (x *InstanceSettingsMetadata) GetItems() map[string]string { @@ -104912,7 +109145,7 @@ type InstanceTemplate struct { func (x *InstanceTemplate) Reset() { *x = InstanceTemplate{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[809] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[851] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104924,7 +109157,7 @@ func (x *InstanceTemplate) String() string { func (*InstanceTemplate) ProtoMessage() {} func (x *InstanceTemplate) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[809] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[851] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -104937,7 +109170,7 @@ func (x *InstanceTemplate) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceTemplate.ProtoReflect.Descriptor instead. func (*InstanceTemplate) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{809} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{851} } func (x *InstanceTemplate) GetCreationTimestamp() string { @@ -105035,7 +109268,7 @@ type InstanceTemplateAggregatedList struct { func (x *InstanceTemplateAggregatedList) Reset() { *x = InstanceTemplateAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[810] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[852] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105047,7 +109280,7 @@ func (x *InstanceTemplateAggregatedList) String() string { func (*InstanceTemplateAggregatedList) ProtoMessage() {} func (x *InstanceTemplateAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[810] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[852] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105060,7 +109293,7 @@ func (x *InstanceTemplateAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceTemplateAggregatedList.ProtoReflect.Descriptor instead. func (*InstanceTemplateAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{810} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{852} } func (x *InstanceTemplateAggregatedList) GetId() string { @@ -105131,7 +109364,7 @@ type InstanceTemplateList struct { func (x *InstanceTemplateList) Reset() { *x = InstanceTemplateList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[811] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[853] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105143,7 +109376,7 @@ func (x *InstanceTemplateList) String() string { func (*InstanceTemplateList) ProtoMessage() {} func (x *InstanceTemplateList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[811] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[853] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105156,7 +109389,7 @@ func (x *InstanceTemplateList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceTemplateList.ProtoReflect.Descriptor instead. func (*InstanceTemplateList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{811} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{853} } func (x *InstanceTemplateList) GetId() string { @@ -105215,7 +109448,7 @@ type InstanceTemplatesScopedList struct { func (x *InstanceTemplatesScopedList) Reset() { *x = InstanceTemplatesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[812] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[854] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105227,7 +109460,7 @@ func (x *InstanceTemplatesScopedList) String() string { func (*InstanceTemplatesScopedList) ProtoMessage() {} func (x *InstanceTemplatesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[812] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[854] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105240,7 +109473,7 @@ func (x *InstanceTemplatesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceTemplatesScopedList.ProtoReflect.Descriptor instead. func (*InstanceTemplatesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{812} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{854} } func (x *InstanceTemplatesScopedList) GetInstanceTemplates() []*InstanceTemplate { @@ -105272,7 +109505,7 @@ type InstanceWithNamedPorts struct { func (x *InstanceWithNamedPorts) Reset() { *x = InstanceWithNamedPorts{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[813] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[855] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105284,7 +109517,7 @@ func (x *InstanceWithNamedPorts) String() string { func (*InstanceWithNamedPorts) ProtoMessage() {} func (x *InstanceWithNamedPorts) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[813] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[855] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105297,7 +109530,7 @@ func (x *InstanceWithNamedPorts) ProtoReflect() protoreflect.Message { // Deprecated: Use InstanceWithNamedPorts.ProtoReflect.Descriptor instead. func (*InstanceWithNamedPorts) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{813} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{855} } func (x *InstanceWithNamedPorts) GetInstance() string { @@ -105331,7 +109564,7 @@ type InstancesAddResourcePoliciesRequest struct { func (x *InstancesAddResourcePoliciesRequest) Reset() { *x = InstancesAddResourcePoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[814] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[856] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105343,7 +109576,7 @@ func (x *InstancesAddResourcePoliciesRequest) String() string { func (*InstancesAddResourcePoliciesRequest) ProtoMessage() {} func (x *InstancesAddResourcePoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[814] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[856] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105356,7 +109589,7 @@ func (x *InstancesAddResourcePoliciesRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use InstancesAddResourcePoliciesRequest.ProtoReflect.Descriptor instead. func (*InstancesAddResourcePoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{814} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{856} } func (x *InstancesAddResourcePoliciesRequest) GetResourcePolicies() []string { @@ -105377,7 +109610,7 @@ type InstancesBulkInsertOperationMetadata struct { func (x *InstancesBulkInsertOperationMetadata) Reset() { *x = InstancesBulkInsertOperationMetadata{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[815] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[857] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105389,7 +109622,7 @@ func (x *InstancesBulkInsertOperationMetadata) String() string { func (*InstancesBulkInsertOperationMetadata) ProtoMessage() {} func (x *InstancesBulkInsertOperationMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[815] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[857] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105402,7 +109635,7 @@ func (x *InstancesBulkInsertOperationMetadata) ProtoReflect() protoreflect.Messa // Deprecated: Use InstancesBulkInsertOperationMetadata.ProtoReflect.Descriptor instead. func (*InstancesBulkInsertOperationMetadata) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{815} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{857} } func (x *InstancesBulkInsertOperationMetadata) GetPerLocationStatus() map[string]*BulkInsertOperationStatus { @@ -105424,7 +109657,7 @@ type InstancesGetEffectiveFirewallsResponse struct { func (x *InstancesGetEffectiveFirewallsResponse) Reset() { *x = InstancesGetEffectiveFirewallsResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[816] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[858] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105436,7 +109669,7 @@ func (x *InstancesGetEffectiveFirewallsResponse) String() string { func (*InstancesGetEffectiveFirewallsResponse) ProtoMessage() {} func (x *InstancesGetEffectiveFirewallsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[816] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[858] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105449,7 +109682,7 @@ func (x *InstancesGetEffectiveFirewallsResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use InstancesGetEffectiveFirewallsResponse.ProtoReflect.Descriptor instead. func (*InstancesGetEffectiveFirewallsResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{816} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{858} } func (x *InstancesGetEffectiveFirewallsResponse) GetFirewallPolicys() []*InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy { @@ -105494,7 +109727,7 @@ type InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy struct { func (x *InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy) Reset() { *x = InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[817] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[859] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105506,7 +109739,7 @@ func (x *InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy) String() func (*InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy) ProtoMessage() {} func (x *InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[817] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[859] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105519,7 +109752,7 @@ func (x *InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy) ProtoRef // Deprecated: Use InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.ProtoReflect.Descriptor instead. func (*InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{817} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{859} } func (x *InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy) GetDisplayName() string { @@ -105581,7 +109814,7 @@ type InstancesRemoveResourcePoliciesRequest struct { func (x *InstancesRemoveResourcePoliciesRequest) Reset() { *x = InstancesRemoveResourcePoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[818] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[860] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105593,7 +109826,7 @@ func (x *InstancesRemoveResourcePoliciesRequest) String() string { func (*InstancesRemoveResourcePoliciesRequest) ProtoMessage() {} func (x *InstancesRemoveResourcePoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[818] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[860] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105606,7 +109839,7 @@ func (x *InstancesRemoveResourcePoliciesRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use InstancesRemoveResourcePoliciesRequest.ProtoReflect.Descriptor instead. func (*InstancesRemoveResourcePoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{818} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{860} } func (x *InstancesRemoveResourcePoliciesRequest) GetResourcePolicies() []string { @@ -105628,7 +109861,7 @@ type InstancesReportHostAsFaultyRequest struct { func (x *InstancesReportHostAsFaultyRequest) Reset() { *x = InstancesReportHostAsFaultyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[819] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[861] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105640,7 +109873,7 @@ func (x *InstancesReportHostAsFaultyRequest) String() string { func (*InstancesReportHostAsFaultyRequest) ProtoMessage() {} func (x *InstancesReportHostAsFaultyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[819] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[861] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105653,7 +109886,7 @@ func (x *InstancesReportHostAsFaultyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InstancesReportHostAsFaultyRequest.ProtoReflect.Descriptor instead. func (*InstancesReportHostAsFaultyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{819} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{861} } func (x *InstancesReportHostAsFaultyRequest) GetDisruptionSchedule() string { @@ -105681,7 +109914,7 @@ type InstancesReportHostAsFaultyRequestFaultReason struct { func (x *InstancesReportHostAsFaultyRequestFaultReason) Reset() { *x = InstancesReportHostAsFaultyRequestFaultReason{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[820] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[862] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105693,7 +109926,7 @@ func (x *InstancesReportHostAsFaultyRequestFaultReason) String() string { func (*InstancesReportHostAsFaultyRequestFaultReason) ProtoMessage() {} func (x *InstancesReportHostAsFaultyRequestFaultReason) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[820] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[862] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105706,7 +109939,7 @@ func (x *InstancesReportHostAsFaultyRequestFaultReason) ProtoReflect() protorefl // Deprecated: Use InstancesReportHostAsFaultyRequestFaultReason.ProtoReflect.Descriptor instead. func (*InstancesReportHostAsFaultyRequestFaultReason) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{820} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{862} } func (x *InstancesReportHostAsFaultyRequestFaultReason) GetBehavior() string { @@ -105736,7 +109969,7 @@ type InstancesScopedList struct { func (x *InstancesScopedList) Reset() { *x = InstancesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[821] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[863] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105748,7 +109981,7 @@ func (x *InstancesScopedList) String() string { func (*InstancesScopedList) ProtoMessage() {} func (x *InstancesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[821] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[863] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105761,7 +109994,7 @@ func (x *InstancesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstancesScopedList.ProtoReflect.Descriptor instead. func (*InstancesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{821} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{863} } func (x *InstancesScopedList) GetInstances() []*Instance { @@ -105791,7 +110024,7 @@ type InstancesSetLabelsRequest struct { func (x *InstancesSetLabelsRequest) Reset() { *x = InstancesSetLabelsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[822] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[864] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105803,7 +110036,7 @@ func (x *InstancesSetLabelsRequest) String() string { func (*InstancesSetLabelsRequest) ProtoMessage() {} func (x *InstancesSetLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[822] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[864] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105816,7 +110049,7 @@ func (x *InstancesSetLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InstancesSetLabelsRequest.ProtoReflect.Descriptor instead. func (*InstancesSetLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{822} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{864} } func (x *InstancesSetLabelsRequest) GetLabelFingerprint() string { @@ -105843,7 +110076,7 @@ type InstancesSetMachineResourcesRequest struct { func (x *InstancesSetMachineResourcesRequest) Reset() { *x = InstancesSetMachineResourcesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[823] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[865] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105855,7 +110088,7 @@ func (x *InstancesSetMachineResourcesRequest) String() string { func (*InstancesSetMachineResourcesRequest) ProtoMessage() {} func (x *InstancesSetMachineResourcesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[823] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[865] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105868,7 +110101,7 @@ func (x *InstancesSetMachineResourcesRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use InstancesSetMachineResourcesRequest.ProtoReflect.Descriptor instead. func (*InstancesSetMachineResourcesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{823} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{865} } func (x *InstancesSetMachineResourcesRequest) GetGuestAccelerators() []*AcceleratorConfig { @@ -105889,7 +110122,7 @@ type InstancesSetMachineTypeRequest struct { func (x *InstancesSetMachineTypeRequest) Reset() { *x = InstancesSetMachineTypeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[824] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[866] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105901,7 +110134,7 @@ func (x *InstancesSetMachineTypeRequest) String() string { func (*InstancesSetMachineTypeRequest) ProtoMessage() {} func (x *InstancesSetMachineTypeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[824] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[866] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105914,7 +110147,7 @@ func (x *InstancesSetMachineTypeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InstancesSetMachineTypeRequest.ProtoReflect.Descriptor instead. func (*InstancesSetMachineTypeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{824} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{866} } func (x *InstancesSetMachineTypeRequest) GetMachineType() string { @@ -105934,7 +110167,7 @@ type InstancesSetMinCpuPlatformRequest struct { func (x *InstancesSetMinCpuPlatformRequest) Reset() { *x = InstancesSetMinCpuPlatformRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[825] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[867] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105946,7 +110179,7 @@ func (x *InstancesSetMinCpuPlatformRequest) String() string { func (*InstancesSetMinCpuPlatformRequest) ProtoMessage() {} func (x *InstancesSetMinCpuPlatformRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[825] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[867] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105959,7 +110192,7 @@ func (x *InstancesSetMinCpuPlatformRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InstancesSetMinCpuPlatformRequest.ProtoReflect.Descriptor instead. func (*InstancesSetMinCpuPlatformRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{825} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{867} } func (x *InstancesSetMinCpuPlatformRequest) GetMinCpuPlatform() string { @@ -105982,7 +110215,7 @@ type InstancesSetNameRequest struct { func (x *InstancesSetNameRequest) Reset() { *x = InstancesSetNameRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[826] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[868] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105994,7 +110227,7 @@ func (x *InstancesSetNameRequest) String() string { func (*InstancesSetNameRequest) ProtoMessage() {} func (x *InstancesSetNameRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[826] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[868] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106007,7 +110240,7 @@ func (x *InstancesSetNameRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InstancesSetNameRequest.ProtoReflect.Descriptor instead. func (*InstancesSetNameRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{826} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{868} } func (x *InstancesSetNameRequest) GetCurrentName() string { @@ -106040,7 +110273,7 @@ type InstancesSetSecurityPolicyRequest struct { func (x *InstancesSetSecurityPolicyRequest) Reset() { *x = InstancesSetSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[827] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[869] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106052,7 +110285,7 @@ func (x *InstancesSetSecurityPolicyRequest) String() string { func (*InstancesSetSecurityPolicyRequest) ProtoMessage() {} func (x *InstancesSetSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[827] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[869] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106065,7 +110298,7 @@ func (x *InstancesSetSecurityPolicyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InstancesSetSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*InstancesSetSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{827} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{869} } func (x *InstancesSetSecurityPolicyRequest) GetNetworkInterfaces() []string { @@ -106094,7 +110327,7 @@ type InstancesSetServiceAccountRequest struct { func (x *InstancesSetServiceAccountRequest) Reset() { *x = InstancesSetServiceAccountRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[828] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[870] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106106,7 +110339,7 @@ func (x *InstancesSetServiceAccountRequest) String() string { func (*InstancesSetServiceAccountRequest) ProtoMessage() {} func (x *InstancesSetServiceAccountRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[828] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[870] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106119,7 +110352,7 @@ func (x *InstancesSetServiceAccountRequest) ProtoReflect() protoreflect.Message // Deprecated: Use InstancesSetServiceAccountRequest.ProtoReflect.Descriptor instead. func (*InstancesSetServiceAccountRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{828} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{870} } func (x *InstancesSetServiceAccountRequest) GetEmail() string { @@ -106153,7 +110386,7 @@ type InstancesStartWithEncryptionKeyRequest struct { func (x *InstancesStartWithEncryptionKeyRequest) Reset() { *x = InstancesStartWithEncryptionKeyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[829] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[871] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106165,7 +110398,7 @@ func (x *InstancesStartWithEncryptionKeyRequest) String() string { func (*InstancesStartWithEncryptionKeyRequest) ProtoMessage() {} func (x *InstancesStartWithEncryptionKeyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[829] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[871] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106178,7 +110411,7 @@ func (x *InstancesStartWithEncryptionKeyRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use InstancesStartWithEncryptionKeyRequest.ProtoReflect.Descriptor instead. func (*InstancesStartWithEncryptionKeyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{829} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{871} } func (x *InstancesStartWithEncryptionKeyRequest) GetDisks() []*CustomerEncryptionKeyProtectedDisk { @@ -106276,6 +110509,15 @@ type InstantSnapshot struct { // This value may be used to determine whether the InstantSnapshot // was taken from the current or a previous instance of a given disk name. SourceDiskId *string `protobuf:"bytes,454190809,opt,name=source_disk_id,json=sourceDiskId,proto3,oneof" json:"source_disk_id,omitempty"` + // Output only. [Output Only] URL of the source instant snapshot this instant snapshot is + // part of. Note that the source instant snapshot group must be in the same + // zone/region as the instant snapshot to be created. This can be a full or + // valid partial URL. + SourceInstantSnapshotGroup *string `protobuf:"bytes,525991686,opt,name=source_instant_snapshot_group,json=sourceInstantSnapshotGroup,proto3,oneof" json:"source_instant_snapshot_group,omitempty"` + // Output only. [Output Only] The ID value of the source instant snapshot group this + // InstantSnapshot is part of. This value may be used to determine whether the + // InstantSnapshot was created as part of an InstantSnapshotGroup creation. + SourceInstantSnapshotGroupId *string `protobuf:"bytes,167103732,opt,name=source_instant_snapshot_group_id,json=sourceInstantSnapshotGroupId,proto3,oneof" json:"source_instant_snapshot_group_id,omitempty"` // Output only. [Output Only] The status of the instantSnapshot. This can beCREATING, DELETING, FAILED, orREADY. // Check the Status enum for the list of possible values. Status *string `protobuf:"bytes,181260274,opt,name=status,proto3,oneof" json:"status,omitempty"` @@ -106289,7 +110531,7 @@ type InstantSnapshot struct { func (x *InstantSnapshot) Reset() { *x = InstantSnapshot{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[830] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[872] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106301,7 +110543,7 @@ func (x *InstantSnapshot) String() string { func (*InstantSnapshot) ProtoMessage() {} func (x *InstantSnapshot) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[830] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[872] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106314,7 +110556,7 @@ func (x *InstantSnapshot) ProtoReflect() protoreflect.Message { // Deprecated: Use InstantSnapshot.ProtoReflect.Descriptor instead. func (*InstantSnapshot) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{830} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{872} } func (x *InstantSnapshot) GetArchitecture() string { @@ -106443,6 +110685,20 @@ func (x *InstantSnapshot) GetSourceDiskId() string { return "" } +func (x *InstantSnapshot) GetSourceInstantSnapshotGroup() string { + if x != nil && x.SourceInstantSnapshotGroup != nil { + return *x.SourceInstantSnapshotGroup + } + return "" +} + +func (x *InstantSnapshot) GetSourceInstantSnapshotGroupId() string { + if x != nil && x.SourceInstantSnapshotGroupId != nil { + return *x.SourceInstantSnapshotGroupId + } + return "" +} + func (x *InstantSnapshot) GetStatus() string { if x != nil && x.Status != nil { return *x.Status @@ -106484,7 +110740,7 @@ type InstantSnapshotAggregatedList struct { func (x *InstantSnapshotAggregatedList) Reset() { *x = InstantSnapshotAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[831] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[873] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106496,7 +110752,7 @@ func (x *InstantSnapshotAggregatedList) String() string { func (*InstantSnapshotAggregatedList) ProtoMessage() {} func (x *InstantSnapshotAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[831] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[873] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106509,7 +110765,7 @@ func (x *InstantSnapshotAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstantSnapshotAggregatedList.ProtoReflect.Descriptor instead. func (*InstantSnapshotAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{831} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{873} } func (x *InstantSnapshotAggregatedList) GetId() string { @@ -106561,6 +110817,324 @@ func (x *InstantSnapshotAggregatedList) GetWarning() *Warning { return nil } +// Represents an InstantSnapshotGroup resource. +// +// An instant snapshot group is a set of instant snapshots that represents a +// point in time state of a consistency group. +type InstantSnapshotGroup struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Output only. [Output Only] Creation timestamp inRFC3339 + // text format. + CreationTimestamp *string `protobuf:"bytes,30525366,opt,name=creation_timestamp,json=creationTimestamp,proto3,oneof" json:"creation_timestamp,omitempty"` + // Optional. An optional description of this resource. Provide this property when you + // create the resource. + Description *string `protobuf:"bytes,422937596,opt,name=description,proto3,oneof" json:"description,omitempty"` + // Output only. [Output Only] The unique identifier for the resource. This identifier is + // defined by the server. + Id *uint64 `protobuf:"varint,3355,opt,name=id,proto3,oneof" json:"id,omitempty"` + // Output only. [Output Only] Type of the resource. Alwayscompute#instantSnapshotGroup for InstantSnapshotGroup + // resources. + Kind *string `protobuf:"bytes,3292052,opt,name=kind,proto3,oneof" json:"kind,omitempty"` + // Identifier. Name of the resource; provided by the client when the resource is created. + // The name must be 1-63 characters long, and comply withRFC1035. + // Specifically, the name must be 1-63 characters long and match the regular + // expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first + // character must be a lowercase letter, and all following characters must be + // a dash, lowercase letter, or digit, except the last character, which cannot + // be a dash. + Name *string `protobuf:"bytes,3373707,opt,name=name,proto3,oneof" json:"name,omitempty"` + // Output only. [Output Only] URL of the region where the instant snapshot group resides. + // You must specify this field as part of the HTTP request URL. It is + // not settable as a field in the request body. + Region *string `protobuf:"bytes,138946292,opt,name=region,proto3,oneof" json:"region,omitempty"` + ResourceStatus *InstantSnapshotGroupResourceStatus `protobuf:"bytes,249429315,opt,name=resource_status,json=resourceStatus,proto3,oneof" json:"resource_status,omitempty"` + // Output only. [Output Only] Server-defined URL for the resource. + SelfLink *string `protobuf:"bytes,456214797,opt,name=self_link,json=selfLink,proto3,oneof" json:"self_link,omitempty"` + // Output only. [Output Only] Server-defined URL for this resource's resource id. + SelfLinkWithId *string `protobuf:"bytes,44520962,opt,name=self_link_with_id,json=selfLinkWithId,proto3,oneof" json:"self_link_with_id,omitempty"` + SourceConsistencyGroup *string `protobuf:"bytes,531359348,opt,name=source_consistency_group,json=sourceConsistencyGroup,proto3,oneof" json:"source_consistency_group,omitempty"` + // Output only. [Output Only] + // Check the Status enum for the list of possible values. + Status *string `protobuf:"bytes,181260274,opt,name=status,proto3,oneof" json:"status,omitempty"` + // Output only. [Output Only] URL of the zone where the instant snapshot group resides. + // You must specify this field as part of the HTTP request URL. It is + // not settable as a field in the request body. + Zone *string `protobuf:"bytes,3744684,opt,name=zone,proto3,oneof" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *InstantSnapshotGroup) Reset() { + *x = InstantSnapshotGroup{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[874] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *InstantSnapshotGroup) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InstantSnapshotGroup) ProtoMessage() {} + +func (x *InstantSnapshotGroup) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[874] + 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 InstantSnapshotGroup.ProtoReflect.Descriptor instead. +func (*InstantSnapshotGroup) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{874} +} + +func (x *InstantSnapshotGroup) GetCreationTimestamp() string { + if x != nil && x.CreationTimestamp != nil { + return *x.CreationTimestamp + } + return "" +} + +func (x *InstantSnapshotGroup) GetDescription() string { + if x != nil && x.Description != nil { + return *x.Description + } + return "" +} + +func (x *InstantSnapshotGroup) GetId() uint64 { + if x != nil && x.Id != nil { + return *x.Id + } + return 0 +} + +func (x *InstantSnapshotGroup) GetKind() string { + if x != nil && x.Kind != nil { + return *x.Kind + } + return "" +} + +func (x *InstantSnapshotGroup) GetName() string { + if x != nil && x.Name != nil { + return *x.Name + } + return "" +} + +func (x *InstantSnapshotGroup) GetRegion() string { + if x != nil && x.Region != nil { + return *x.Region + } + return "" +} + +func (x *InstantSnapshotGroup) GetResourceStatus() *InstantSnapshotGroupResourceStatus { + if x != nil { + return x.ResourceStatus + } + return nil +} + +func (x *InstantSnapshotGroup) GetSelfLink() string { + if x != nil && x.SelfLink != nil { + return *x.SelfLink + } + return "" +} + +func (x *InstantSnapshotGroup) GetSelfLinkWithId() string { + if x != nil && x.SelfLinkWithId != nil { + return *x.SelfLinkWithId + } + return "" +} + +func (x *InstantSnapshotGroup) GetSourceConsistencyGroup() string { + if x != nil && x.SourceConsistencyGroup != nil { + return *x.SourceConsistencyGroup + } + return "" +} + +func (x *InstantSnapshotGroup) GetStatus() string { + if x != nil && x.Status != nil { + return *x.Status + } + return "" +} + +func (x *InstantSnapshotGroup) GetZone() string { + if x != nil && x.Zone != nil { + return *x.Zone + } + return "" +} + +type InstantSnapshotGroupParameters struct { + state protoimpl.MessageState `protogen:"open.v1"` + // The source instant snapshot group used to create disks. You can provide + // this as a partial or full URL to the resource. For example, the following + // are valid values: + // + // - https://www.googleapis.com/compute/v1/projects/project/zones/zone/instantSnapshotGroups/instantSnapshotGroup + // - projects/project/zones/zone/instantSnapshotGroups/instantSnapshotGroup + // - zones/zone/instantSnapshotGroups/instantSnapshotGroup + SourceInstantSnapshotGroup *string `protobuf:"bytes,525991686,opt,name=source_instant_snapshot_group,json=sourceInstantSnapshotGroup,proto3,oneof" json:"source_instant_snapshot_group,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *InstantSnapshotGroupParameters) Reset() { + *x = InstantSnapshotGroupParameters{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[875] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *InstantSnapshotGroupParameters) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InstantSnapshotGroupParameters) ProtoMessage() {} + +func (x *InstantSnapshotGroupParameters) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[875] + 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 InstantSnapshotGroupParameters.ProtoReflect.Descriptor instead. +func (*InstantSnapshotGroupParameters) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{875} +} + +func (x *InstantSnapshotGroupParameters) GetSourceInstantSnapshotGroup() string { + if x != nil && x.SourceInstantSnapshotGroup != nil { + return *x.SourceInstantSnapshotGroup + } + return "" +} + +type InstantSnapshotGroupResourceStatus struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Output only. [Output Only] + ConsistencyMembershipResolutionTime *string `protobuf:"bytes,346675870,opt,name=consistency_membership_resolution_time,json=consistencyMembershipResolutionTime,proto3,oneof" json:"consistency_membership_resolution_time,omitempty"` + // Output only. [Output Only] + SourceInfo *InstantSnapshotGroupSourceInfo `protobuf:"bytes,451907154,opt,name=source_info,json=sourceInfo,proto3,oneof" json:"source_info,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *InstantSnapshotGroupResourceStatus) Reset() { + *x = InstantSnapshotGroupResourceStatus{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[876] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *InstantSnapshotGroupResourceStatus) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InstantSnapshotGroupResourceStatus) ProtoMessage() {} + +func (x *InstantSnapshotGroupResourceStatus) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[876] + 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 InstantSnapshotGroupResourceStatus.ProtoReflect.Descriptor instead. +func (*InstantSnapshotGroupResourceStatus) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{876} +} + +func (x *InstantSnapshotGroupResourceStatus) GetConsistencyMembershipResolutionTime() string { + if x != nil && x.ConsistencyMembershipResolutionTime != nil { + return *x.ConsistencyMembershipResolutionTime + } + return "" +} + +func (x *InstantSnapshotGroupResourceStatus) GetSourceInfo() *InstantSnapshotGroupSourceInfo { + if x != nil { + return x.SourceInfo + } + return nil +} + +type InstantSnapshotGroupSourceInfo struct { + state protoimpl.MessageState `protogen:"open.v1"` + ConsistencyGroup *string `protobuf:"bytes,508183960,opt,name=consistency_group,json=consistencyGroup,proto3,oneof" json:"consistency_group,omitempty"` + ConsistencyGroupId *string `protobuf:"bytes,85599522,opt,name=consistency_group_id,json=consistencyGroupId,proto3,oneof" json:"consistency_group_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *InstantSnapshotGroupSourceInfo) Reset() { + *x = InstantSnapshotGroupSourceInfo{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[877] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *InstantSnapshotGroupSourceInfo) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InstantSnapshotGroupSourceInfo) ProtoMessage() {} + +func (x *InstantSnapshotGroupSourceInfo) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[877] + 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 InstantSnapshotGroupSourceInfo.ProtoReflect.Descriptor instead. +func (*InstantSnapshotGroupSourceInfo) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{877} +} + +func (x *InstantSnapshotGroupSourceInfo) GetConsistencyGroup() string { + if x != nil && x.ConsistencyGroup != nil { + return *x.ConsistencyGroup + } + return "" +} + +func (x *InstantSnapshotGroupSourceInfo) GetConsistencyGroupId() string { + if x != nil && x.ConsistencyGroupId != nil { + return *x.ConsistencyGroupId + } + return "" +} + // Contains a list of InstantSnapshot resources. type InstantSnapshotList struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -106586,7 +111160,7 @@ type InstantSnapshotList struct { func (x *InstantSnapshotList) Reset() { *x = InstantSnapshotList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[832] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[878] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106598,7 +111172,7 @@ func (x *InstantSnapshotList) String() string { func (*InstantSnapshotList) ProtoMessage() {} func (x *InstantSnapshotList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[832] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[878] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106611,7 +111185,7 @@ func (x *InstantSnapshotList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstantSnapshotList.ProtoReflect.Descriptor instead. func (*InstantSnapshotList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{832} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{878} } func (x *InstantSnapshotList) GetId() string { @@ -106673,7 +111247,7 @@ type InstantSnapshotParams struct { func (x *InstantSnapshotParams) Reset() { *x = InstantSnapshotParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[833] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[879] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106685,7 +111259,7 @@ func (x *InstantSnapshotParams) String() string { func (*InstantSnapshotParams) ProtoMessage() {} func (x *InstantSnapshotParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[833] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[879] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106698,7 +111272,7 @@ func (x *InstantSnapshotParams) ProtoReflect() protoreflect.Message { // Deprecated: Use InstantSnapshotParams.ProtoReflect.Descriptor instead. func (*InstantSnapshotParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{833} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{879} } func (x *InstantSnapshotParams) GetResourceManagerTags() map[string]string { @@ -106718,7 +111292,7 @@ type InstantSnapshotResourceStatus struct { func (x *InstantSnapshotResourceStatus) Reset() { *x = InstantSnapshotResourceStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[834] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[880] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106730,7 +111304,7 @@ func (x *InstantSnapshotResourceStatus) String() string { func (*InstantSnapshotResourceStatus) ProtoMessage() {} func (x *InstantSnapshotResourceStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[834] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[880] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106743,7 +111317,7 @@ func (x *InstantSnapshotResourceStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use InstantSnapshotResourceStatus.ProtoReflect.Descriptor instead. func (*InstantSnapshotResourceStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{834} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{880} } func (x *InstantSnapshotResourceStatus) GetStorageSizeBytes() int64 { @@ -106766,7 +111340,7 @@ type InstantSnapshotsScopedList struct { func (x *InstantSnapshotsScopedList) Reset() { *x = InstantSnapshotsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[835] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[881] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106778,7 +111352,7 @@ func (x *InstantSnapshotsScopedList) String() string { func (*InstantSnapshotsScopedList) ProtoMessage() {} func (x *InstantSnapshotsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[835] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[881] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106791,7 +111365,7 @@ func (x *InstantSnapshotsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use InstantSnapshotsScopedList.ProtoReflect.Descriptor instead. func (*InstantSnapshotsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{835} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{881} } func (x *InstantSnapshotsScopedList) GetInstantSnapshots() []*InstantSnapshot { @@ -106822,7 +111396,7 @@ type Int64RangeMatch struct { func (x *Int64RangeMatch) Reset() { *x = Int64RangeMatch{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[836] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[882] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -106834,7 +111408,7 @@ func (x *Int64RangeMatch) String() string { func (*Int64RangeMatch) ProtoMessage() {} func (x *Int64RangeMatch) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[836] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[882] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106847,7 +111421,7 @@ func (x *Int64RangeMatch) ProtoReflect() protoreflect.Message { // Deprecated: Use Int64RangeMatch.ProtoReflect.Descriptor instead. func (*Int64RangeMatch) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{836} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{882} } func (x *Int64RangeMatch) GetRangeEnd() int64 { @@ -107059,7 +111633,7 @@ type Interconnect struct { func (x *Interconnect) Reset() { *x = Interconnect{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[837] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[883] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -107071,7 +111645,7 @@ func (x *Interconnect) String() string { func (*Interconnect) ProtoMessage() {} func (x *Interconnect) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[837] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[883] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -107084,7 +111658,7 @@ func (x *Interconnect) ProtoReflect() protoreflect.Message { // Deprecated: Use Interconnect.ProtoReflect.Descriptor instead. func (*Interconnect) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{837} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{883} } func (x *Interconnect) GetAaiEnabled() bool { @@ -107358,7 +111932,7 @@ type InterconnectApplicationAwareInterconnect struct { func (x *InterconnectApplicationAwareInterconnect) Reset() { *x = InterconnectApplicationAwareInterconnect{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[838] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[884] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -107370,7 +111944,7 @@ func (x *InterconnectApplicationAwareInterconnect) String() string { func (*InterconnectApplicationAwareInterconnect) ProtoMessage() {} func (x *InterconnectApplicationAwareInterconnect) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[838] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[884] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -107383,7 +111957,7 @@ func (x *InterconnectApplicationAwareInterconnect) ProtoReflect() protoreflect.M // Deprecated: Use InterconnectApplicationAwareInterconnect.ProtoReflect.Descriptor instead. func (*InterconnectApplicationAwareInterconnect) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{838} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{884} } func (x *InterconnectApplicationAwareInterconnect) GetBandwidthPercentagePolicy() *InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy { @@ -107430,7 +112004,7 @@ type InterconnectApplicationAwareInterconnectBandwidthPercentage struct { func (x *InterconnectApplicationAwareInterconnectBandwidthPercentage) Reset() { *x = InterconnectApplicationAwareInterconnectBandwidthPercentage{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[839] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[885] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -107442,7 +112016,7 @@ func (x *InterconnectApplicationAwareInterconnectBandwidthPercentage) String() s func (*InterconnectApplicationAwareInterconnectBandwidthPercentage) ProtoMessage() {} func (x *InterconnectApplicationAwareInterconnectBandwidthPercentage) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[839] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[885] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -107455,7 +112029,7 @@ func (x *InterconnectApplicationAwareInterconnectBandwidthPercentage) ProtoRefle // Deprecated: Use InterconnectApplicationAwareInterconnectBandwidthPercentage.ProtoReflect.Descriptor instead. func (*InterconnectApplicationAwareInterconnectBandwidthPercentage) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{839} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{885} } func (x *InterconnectApplicationAwareInterconnectBandwidthPercentage) GetPercentage() uint32 { @@ -107483,7 +112057,7 @@ type InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy struct { func (x *InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy) Reset() { *x = InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[840] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[886] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -107495,7 +112069,7 @@ func (x *InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy) Stri func (*InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy) ProtoMessage() {} func (x *InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[840] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[886] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -107508,7 +112082,7 @@ func (x *InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy) Prot // Deprecated: Use InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy.ProtoReflect.Descriptor instead. func (*InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{840} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{886} } func (x *InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy) GetBandwidthPercentages() []*InterconnectApplicationAwareInterconnectBandwidthPercentage { @@ -107527,7 +112101,7 @@ type InterconnectApplicationAwareInterconnectStrictPriorityPolicy struct { func (x *InterconnectApplicationAwareInterconnectStrictPriorityPolicy) Reset() { *x = InterconnectApplicationAwareInterconnectStrictPriorityPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[841] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[887] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -107539,7 +112113,7 @@ func (x *InterconnectApplicationAwareInterconnectStrictPriorityPolicy) String() func (*InterconnectApplicationAwareInterconnectStrictPriorityPolicy) ProtoMessage() {} func (x *InterconnectApplicationAwareInterconnectStrictPriorityPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[841] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[887] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -107552,7 +112126,7 @@ func (x *InterconnectApplicationAwareInterconnectStrictPriorityPolicy) ProtoRefl // Deprecated: Use InterconnectApplicationAwareInterconnectStrictPriorityPolicy.ProtoReflect.Descriptor instead. func (*InterconnectApplicationAwareInterconnectStrictPriorityPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{841} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{887} } // Represents an Interconnect Attachment (VLAN) resource. @@ -107873,7 +112447,7 @@ type InterconnectAttachment struct { func (x *InterconnectAttachment) Reset() { *x = InterconnectAttachment{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[842] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[888] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -107885,7 +112459,7 @@ func (x *InterconnectAttachment) String() string { func (*InterconnectAttachment) ProtoMessage() {} func (x *InterconnectAttachment) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[842] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[888] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -107898,7 +112472,7 @@ func (x *InterconnectAttachment) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectAttachment.ProtoReflect.Descriptor instead. func (*InterconnectAttachment) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{842} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{888} } func (x *InterconnectAttachment) GetAdminEnabled() bool { @@ -108257,7 +112831,7 @@ type InterconnectAttachmentAggregatedList struct { func (x *InterconnectAttachmentAggregatedList) Reset() { *x = InterconnectAttachmentAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[843] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[889] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108269,7 +112843,7 @@ func (x *InterconnectAttachmentAggregatedList) String() string { func (*InterconnectAttachmentAggregatedList) ProtoMessage() {} func (x *InterconnectAttachmentAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[843] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[889] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108282,7 +112856,7 @@ func (x *InterconnectAttachmentAggregatedList) ProtoReflect() protoreflect.Messa // Deprecated: Use InterconnectAttachmentAggregatedList.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{843} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{889} } func (x *InterconnectAttachmentAggregatedList) GetId() string { @@ -108362,7 +112936,7 @@ type InterconnectAttachmentConfigurationConstraints struct { func (x *InterconnectAttachmentConfigurationConstraints) Reset() { *x = InterconnectAttachmentConfigurationConstraints{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[844] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[890] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108374,7 +112948,7 @@ func (x *InterconnectAttachmentConfigurationConstraints) String() string { func (*InterconnectAttachmentConfigurationConstraints) ProtoMessage() {} func (x *InterconnectAttachmentConfigurationConstraints) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[844] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[890] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108387,7 +112961,7 @@ func (x *InterconnectAttachmentConfigurationConstraints) ProtoReflect() protoref // Deprecated: Use InterconnectAttachmentConfigurationConstraints.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentConfigurationConstraints) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{844} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{890} } func (x *InterconnectAttachmentConfigurationConstraints) GetBgpMd5() string { @@ -108414,7 +112988,7 @@ type InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange struct { func (x *InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange) Reset() { *x = InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[845] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[891] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108426,7 +113000,7 @@ func (x *InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange) String() func (*InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange) ProtoMessage() {} func (x *InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[845] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[891] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108439,7 +113013,7 @@ func (x *InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange) ProtoRef // Deprecated: Use InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{845} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{891} } func (x *InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange) GetMax() uint32 { @@ -108507,7 +113081,7 @@ type InterconnectAttachmentGroup struct { func (x *InterconnectAttachmentGroup) Reset() { *x = InterconnectAttachmentGroup{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[846] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[892] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108519,7 +113093,7 @@ func (x *InterconnectAttachmentGroup) String() string { func (*InterconnectAttachmentGroup) ProtoMessage() {} func (x *InterconnectAttachmentGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[846] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[892] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108532,7 +113106,7 @@ func (x *InterconnectAttachmentGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectAttachmentGroup.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroup) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{846} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{892} } func (x *InterconnectAttachmentGroup) GetAttachments() map[string]*InterconnectAttachmentGroupAttachment { @@ -108629,7 +113203,7 @@ type InterconnectAttachmentGroupAttachment struct { func (x *InterconnectAttachmentGroupAttachment) Reset() { *x = InterconnectAttachmentGroupAttachment{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[847] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[893] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108641,7 +113215,7 @@ func (x *InterconnectAttachmentGroupAttachment) String() string { func (*InterconnectAttachmentGroupAttachment) ProtoMessage() {} func (x *InterconnectAttachmentGroupAttachment) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[847] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[893] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108654,7 +113228,7 @@ func (x *InterconnectAttachmentGroupAttachment) ProtoReflect() protoreflect.Mess // Deprecated: Use InterconnectAttachmentGroupAttachment.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupAttachment) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{847} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{893} } func (x *InterconnectAttachmentGroupAttachment) GetAttachment() string { @@ -108676,7 +113250,7 @@ type InterconnectAttachmentGroupConfigured struct { func (x *InterconnectAttachmentGroupConfigured) Reset() { *x = InterconnectAttachmentGroupConfigured{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[848] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[894] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108688,7 +113262,7 @@ func (x *InterconnectAttachmentGroupConfigured) String() string { func (*InterconnectAttachmentGroupConfigured) ProtoMessage() {} func (x *InterconnectAttachmentGroupConfigured) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[848] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[894] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108701,7 +113275,7 @@ func (x *InterconnectAttachmentGroupConfigured) ProtoReflect() protoreflect.Mess // Deprecated: Use InterconnectAttachmentGroupConfigured.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupConfigured) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{848} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{894} } func (x *InterconnectAttachmentGroupConfigured) GetAvailabilitySla() *InterconnectAttachmentGroupConfiguredAvailabilitySLA { @@ -108724,7 +113298,7 @@ type InterconnectAttachmentGroupConfiguredAvailabilitySLA struct { func (x *InterconnectAttachmentGroupConfiguredAvailabilitySLA) Reset() { *x = InterconnectAttachmentGroupConfiguredAvailabilitySLA{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[849] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[895] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108736,7 +113310,7 @@ func (x *InterconnectAttachmentGroupConfiguredAvailabilitySLA) String() string { func (*InterconnectAttachmentGroupConfiguredAvailabilitySLA) ProtoMessage() {} func (x *InterconnectAttachmentGroupConfiguredAvailabilitySLA) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[849] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[895] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108749,7 +113323,7 @@ func (x *InterconnectAttachmentGroupConfiguredAvailabilitySLA) ProtoReflect() pr // Deprecated: Use InterconnectAttachmentGroupConfiguredAvailabilitySLA.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupConfiguredAvailabilitySLA) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{849} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{895} } func (x *InterconnectAttachmentGroupConfiguredAvailabilitySLA) GetEffectiveSla() string { @@ -108802,7 +113376,7 @@ type InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers str func (x *InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers) Reset() { *x = InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[850] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[896] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108814,7 +113388,7 @@ func (x *InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers func (*InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers) ProtoMessage() {} func (x *InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[850] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[896] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108827,7 +113401,7 @@ func (x *InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers // Deprecated: Use InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{850} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{896} } func (x *InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers) GetAttachments() []string { @@ -108891,7 +113465,7 @@ type InterconnectAttachmentGroupIntent struct { func (x *InterconnectAttachmentGroupIntent) Reset() { *x = InterconnectAttachmentGroupIntent{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[851] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[897] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108903,7 +113477,7 @@ func (x *InterconnectAttachmentGroupIntent) String() string { func (*InterconnectAttachmentGroupIntent) ProtoMessage() {} func (x *InterconnectAttachmentGroupIntent) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[851] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[897] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108916,7 +113490,7 @@ func (x *InterconnectAttachmentGroupIntent) ProtoReflect() protoreflect.Message // Deprecated: Use InterconnectAttachmentGroupIntent.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupIntent) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{851} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{897} } func (x *InterconnectAttachmentGroupIntent) GetAvailabilitySla() string { @@ -108937,7 +113511,7 @@ type InterconnectAttachmentGroupLogicalStructure struct { func (x *InterconnectAttachmentGroupLogicalStructure) Reset() { *x = InterconnectAttachmentGroupLogicalStructure{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[852] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[898] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108949,7 +113523,7 @@ func (x *InterconnectAttachmentGroupLogicalStructure) String() string { func (*InterconnectAttachmentGroupLogicalStructure) ProtoMessage() {} func (x *InterconnectAttachmentGroupLogicalStructure) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[852] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[898] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108962,7 +113536,7 @@ func (x *InterconnectAttachmentGroupLogicalStructure) ProtoReflect() protoreflec // Deprecated: Use InterconnectAttachmentGroupLogicalStructure.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupLogicalStructure) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{852} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{898} } func (x *InterconnectAttachmentGroupLogicalStructure) GetRegions() []*InterconnectAttachmentGroupLogicalStructureRegion { @@ -108984,7 +113558,7 @@ type InterconnectAttachmentGroupLogicalStructureRegion struct { func (x *InterconnectAttachmentGroupLogicalStructureRegion) Reset() { *x = InterconnectAttachmentGroupLogicalStructureRegion{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[853] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[899] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108996,7 +113570,7 @@ func (x *InterconnectAttachmentGroupLogicalStructureRegion) String() string { func (*InterconnectAttachmentGroupLogicalStructureRegion) ProtoMessage() {} func (x *InterconnectAttachmentGroupLogicalStructureRegion) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[853] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[899] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109009,7 +113583,7 @@ func (x *InterconnectAttachmentGroupLogicalStructureRegion) ProtoReflect() proto // Deprecated: Use InterconnectAttachmentGroupLogicalStructureRegion.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupLogicalStructureRegion) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{853} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{899} } func (x *InterconnectAttachmentGroupLogicalStructureRegion) GetMetros() []*InterconnectAttachmentGroupLogicalStructureRegionMetro { @@ -109040,7 +113614,7 @@ type InterconnectAttachmentGroupLogicalStructureRegionMetro struct { func (x *InterconnectAttachmentGroupLogicalStructureRegionMetro) Reset() { *x = InterconnectAttachmentGroupLogicalStructureRegionMetro{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[854] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[900] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109052,7 +113626,7 @@ func (x *InterconnectAttachmentGroupLogicalStructureRegionMetro) String() string func (*InterconnectAttachmentGroupLogicalStructureRegionMetro) ProtoMessage() {} func (x *InterconnectAttachmentGroupLogicalStructureRegionMetro) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[854] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[900] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109065,7 +113639,7 @@ func (x *InterconnectAttachmentGroupLogicalStructureRegionMetro) ProtoReflect() // Deprecated: Use InterconnectAttachmentGroupLogicalStructureRegionMetro.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupLogicalStructureRegionMetro) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{854} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{900} } func (x *InterconnectAttachmentGroupLogicalStructureRegionMetro) GetFacilities() []*InterconnectAttachmentGroupLogicalStructureRegionMetroFacility { @@ -109095,7 +113669,7 @@ type InterconnectAttachmentGroupLogicalStructureRegionMetroFacility struct { func (x *InterconnectAttachmentGroupLogicalStructureRegionMetroFacility) Reset() { *x = InterconnectAttachmentGroupLogicalStructureRegionMetroFacility{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[855] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[901] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109107,7 +113681,7 @@ func (x *InterconnectAttachmentGroupLogicalStructureRegionMetroFacility) String( func (*InterconnectAttachmentGroupLogicalStructureRegionMetroFacility) ProtoMessage() {} func (x *InterconnectAttachmentGroupLogicalStructureRegionMetroFacility) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[855] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[901] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109120,7 +113694,7 @@ func (x *InterconnectAttachmentGroupLogicalStructureRegionMetroFacility) ProtoRe // Deprecated: Use InterconnectAttachmentGroupLogicalStructureRegionMetroFacility.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupLogicalStructureRegionMetroFacility) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{855} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{901} } func (x *InterconnectAttachmentGroupLogicalStructureRegionMetroFacility) GetFacility() string { @@ -109154,7 +113728,7 @@ type InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone struct { func (x *InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone) Reset() { *x = InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[856] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[902] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109166,7 +113740,7 @@ func (x *InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone) Str func (*InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone) ProtoMessage() {} func (x *InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[856] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[902] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109179,7 +113753,7 @@ func (x *InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone) Pro // Deprecated: Use InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{856} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{902} } func (x *InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone) GetAttachments() []string { @@ -109207,7 +113781,7 @@ type InterconnectAttachmentGroupsGetOperationalStatusResponse struct { func (x *InterconnectAttachmentGroupsGetOperationalStatusResponse) Reset() { *x = InterconnectAttachmentGroupsGetOperationalStatusResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[857] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[903] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109219,7 +113793,7 @@ func (x *InterconnectAttachmentGroupsGetOperationalStatusResponse) String() stri func (*InterconnectAttachmentGroupsGetOperationalStatusResponse) ProtoMessage() {} func (x *InterconnectAttachmentGroupsGetOperationalStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[857] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[903] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109232,7 +113806,7 @@ func (x *InterconnectAttachmentGroupsGetOperationalStatusResponse) ProtoReflect( // Deprecated: Use InterconnectAttachmentGroupsGetOperationalStatusResponse.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupsGetOperationalStatusResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{857} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{903} } func (x *InterconnectAttachmentGroupsGetOperationalStatusResponse) GetEtag() string { @@ -109277,7 +113851,7 @@ type InterconnectAttachmentGroupsListResponse struct { func (x *InterconnectAttachmentGroupsListResponse) Reset() { *x = InterconnectAttachmentGroupsListResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[858] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[904] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109289,7 +113863,7 @@ func (x *InterconnectAttachmentGroupsListResponse) String() string { func (*InterconnectAttachmentGroupsListResponse) ProtoMessage() {} func (x *InterconnectAttachmentGroupsListResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[858] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[904] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109302,7 +113876,7 @@ func (x *InterconnectAttachmentGroupsListResponse) ProtoReflect() protoreflect.M // Deprecated: Use InterconnectAttachmentGroupsListResponse.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupsListResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{858} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{904} } func (x *InterconnectAttachmentGroupsListResponse) GetEtag() string { @@ -109377,7 +113951,7 @@ type InterconnectAttachmentGroupsOperationalStatus struct { func (x *InterconnectAttachmentGroupsOperationalStatus) Reset() { *x = InterconnectAttachmentGroupsOperationalStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[859] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[905] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109389,7 +113963,7 @@ func (x *InterconnectAttachmentGroupsOperationalStatus) String() string { func (*InterconnectAttachmentGroupsOperationalStatus) ProtoMessage() {} func (x *InterconnectAttachmentGroupsOperationalStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[859] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[905] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109402,7 +113976,7 @@ func (x *InterconnectAttachmentGroupsOperationalStatus) ProtoReflect() protorefl // Deprecated: Use InterconnectAttachmentGroupsOperationalStatus.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupsOperationalStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{859} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{905} } func (x *InterconnectAttachmentGroupsOperationalStatus) GetAttachmentStatuses() []*InterconnectAttachmentGroupsOperationalStatusAttachmentStatus { @@ -109463,7 +114037,7 @@ type InterconnectAttachmentGroupsOperationalStatusAttachmentStatus struct { func (x *InterconnectAttachmentGroupsOperationalStatusAttachmentStatus) Reset() { *x = InterconnectAttachmentGroupsOperationalStatusAttachmentStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[860] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[906] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109475,7 +114049,7 @@ func (x *InterconnectAttachmentGroupsOperationalStatusAttachmentStatus) String() func (*InterconnectAttachmentGroupsOperationalStatusAttachmentStatus) ProtoMessage() {} func (x *InterconnectAttachmentGroupsOperationalStatusAttachmentStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[860] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[906] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109488,7 +114062,7 @@ func (x *InterconnectAttachmentGroupsOperationalStatusAttachmentStatus) ProtoRef // Deprecated: Use InterconnectAttachmentGroupsOperationalStatusAttachmentStatus.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentGroupsOperationalStatusAttachmentStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{860} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{906} } func (x *InterconnectAttachmentGroupsOperationalStatusAttachmentStatus) GetAdminEnabled() bool { @@ -109557,7 +114131,7 @@ type InterconnectAttachmentL2Forwarding struct { func (x *InterconnectAttachmentL2Forwarding) Reset() { *x = InterconnectAttachmentL2Forwarding{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[861] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[907] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109569,7 +114143,7 @@ func (x *InterconnectAttachmentL2Forwarding) String() string { func (*InterconnectAttachmentL2Forwarding) ProtoMessage() {} func (x *InterconnectAttachmentL2Forwarding) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[861] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[907] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109582,7 +114156,7 @@ func (x *InterconnectAttachmentL2Forwarding) ProtoReflect() protoreflect.Message // Deprecated: Use InterconnectAttachmentL2Forwarding.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentL2Forwarding) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{861} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{907} } func (x *InterconnectAttachmentL2Forwarding) GetApplianceMappings() map[string]*InterconnectAttachmentL2ForwardingApplianceMapping { @@ -109645,7 +114219,7 @@ type InterconnectAttachmentL2ForwardingApplianceMapping struct { func (x *InterconnectAttachmentL2ForwardingApplianceMapping) Reset() { *x = InterconnectAttachmentL2ForwardingApplianceMapping{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[862] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[908] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109657,7 +114231,7 @@ func (x *InterconnectAttachmentL2ForwardingApplianceMapping) String() string { func (*InterconnectAttachmentL2ForwardingApplianceMapping) ProtoMessage() {} func (x *InterconnectAttachmentL2ForwardingApplianceMapping) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[862] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[908] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109670,7 +114244,7 @@ func (x *InterconnectAttachmentL2ForwardingApplianceMapping) ProtoReflect() prot // Deprecated: Use InterconnectAttachmentL2ForwardingApplianceMapping.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentL2ForwardingApplianceMapping) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{862} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{908} } func (x *InterconnectAttachmentL2ForwardingApplianceMapping) GetApplianceIpAddress() string { @@ -109715,7 +114289,7 @@ type InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMappi func (x *InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMapping) Reset() { *x = InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMapping{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[863] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[909] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109728,7 +114302,7 @@ func (*InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMap } func (x *InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMapping) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[863] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[909] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109741,7 +114315,7 @@ func (x *InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceM // Deprecated: Use InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMapping.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMapping) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{863} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{909} } func (x *InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMapping) GetInnerApplianceIpAddress() string { @@ -109770,7 +114344,7 @@ type InterconnectAttachmentL2ForwardingGeneveHeader struct { func (x *InterconnectAttachmentL2ForwardingGeneveHeader) Reset() { *x = InterconnectAttachmentL2ForwardingGeneveHeader{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[864] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[910] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109782,7 +114356,7 @@ func (x *InterconnectAttachmentL2ForwardingGeneveHeader) String() string { func (*InterconnectAttachmentL2ForwardingGeneveHeader) ProtoMessage() {} func (x *InterconnectAttachmentL2ForwardingGeneveHeader) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[864] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[910] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109795,7 +114369,7 @@ func (x *InterconnectAttachmentL2ForwardingGeneveHeader) ProtoReflect() protoref // Deprecated: Use InterconnectAttachmentL2ForwardingGeneveHeader.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentL2ForwardingGeneveHeader) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{864} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{910} } func (x *InterconnectAttachmentL2ForwardingGeneveHeader) GetVni() uint32 { @@ -109832,7 +114406,7 @@ type InterconnectAttachmentList struct { func (x *InterconnectAttachmentList) Reset() { *x = InterconnectAttachmentList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[865] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[911] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109844,7 +114418,7 @@ func (x *InterconnectAttachmentList) String() string { func (*InterconnectAttachmentList) ProtoMessage() {} func (x *InterconnectAttachmentList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[865] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[911] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109857,7 +114431,7 @@ func (x *InterconnectAttachmentList) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectAttachmentList.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{865} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{911} } func (x *InterconnectAttachmentList) GetId() string { @@ -109926,7 +114500,7 @@ type InterconnectAttachmentParams struct { func (x *InterconnectAttachmentParams) Reset() { *x = InterconnectAttachmentParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[866] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[912] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109938,7 +114512,7 @@ func (x *InterconnectAttachmentParams) String() string { func (*InterconnectAttachmentParams) ProtoMessage() {} func (x *InterconnectAttachmentParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[866] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[912] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109951,7 +114525,7 @@ func (x *InterconnectAttachmentParams) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectAttachmentParams.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{866} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{912} } func (x *InterconnectAttachmentParams) GetResourceManagerTags() map[string]string { @@ -109983,7 +114557,7 @@ type InterconnectAttachmentPartnerMetadata struct { func (x *InterconnectAttachmentPartnerMetadata) Reset() { *x = InterconnectAttachmentPartnerMetadata{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[867] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[913] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109995,7 +114569,7 @@ func (x *InterconnectAttachmentPartnerMetadata) String() string { func (*InterconnectAttachmentPartnerMetadata) ProtoMessage() {} func (x *InterconnectAttachmentPartnerMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[867] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[913] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110008,7 +114582,7 @@ func (x *InterconnectAttachmentPartnerMetadata) ProtoReflect() protoreflect.Mess // Deprecated: Use InterconnectAttachmentPartnerMetadata.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentPartnerMetadata) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{867} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{913} } func (x *InterconnectAttachmentPartnerMetadata) GetInterconnectName() string { @@ -110045,7 +114619,7 @@ type InterconnectAttachmentPrivateInfo struct { func (x *InterconnectAttachmentPrivateInfo) Reset() { *x = InterconnectAttachmentPrivateInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[868] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[914] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110057,7 +114631,7 @@ func (x *InterconnectAttachmentPrivateInfo) String() string { func (*InterconnectAttachmentPrivateInfo) ProtoMessage() {} func (x *InterconnectAttachmentPrivateInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[868] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[914] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110070,7 +114644,7 @@ func (x *InterconnectAttachmentPrivateInfo) ProtoReflect() protoreflect.Message // Deprecated: Use InterconnectAttachmentPrivateInfo.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentPrivateInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{868} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{914} } func (x *InterconnectAttachmentPrivateInfo) GetTag8021Q() uint32 { @@ -110093,7 +114667,7 @@ type InterconnectAttachmentsScopedList struct { func (x *InterconnectAttachmentsScopedList) Reset() { *x = InterconnectAttachmentsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[869] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[915] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110105,7 +114679,7 @@ func (x *InterconnectAttachmentsScopedList) String() string { func (*InterconnectAttachmentsScopedList) ProtoMessage() {} func (x *InterconnectAttachmentsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[869] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[915] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110118,7 +114692,7 @@ func (x *InterconnectAttachmentsScopedList) ProtoReflect() protoreflect.Message // Deprecated: Use InterconnectAttachmentsScopedList.ProtoReflect.Descriptor instead. func (*InterconnectAttachmentsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{869} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{915} } func (x *InterconnectAttachmentsScopedList) GetInterconnectAttachments() []*InterconnectAttachment { @@ -110152,7 +114726,7 @@ type InterconnectCircuitInfo struct { func (x *InterconnectCircuitInfo) Reset() { *x = InterconnectCircuitInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[870] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[916] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110164,7 +114738,7 @@ func (x *InterconnectCircuitInfo) String() string { func (*InterconnectCircuitInfo) ProtoMessage() {} func (x *InterconnectCircuitInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[870] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[916] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110177,7 +114751,7 @@ func (x *InterconnectCircuitInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectCircuitInfo.ProtoReflect.Descriptor instead. func (*InterconnectCircuitInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{870} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{916} } func (x *InterconnectCircuitInfo) GetCustomerDemarcId() string { @@ -110228,7 +114802,7 @@ type InterconnectDiagnostics struct { func (x *InterconnectDiagnostics) Reset() { *x = InterconnectDiagnostics{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[871] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[917] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110240,7 +114814,7 @@ func (x *InterconnectDiagnostics) String() string { func (*InterconnectDiagnostics) ProtoMessage() {} func (x *InterconnectDiagnostics) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[871] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[917] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110253,7 +114827,7 @@ func (x *InterconnectDiagnostics) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectDiagnostics.ProtoReflect.Descriptor instead. func (*InterconnectDiagnostics) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{871} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{917} } func (x *InterconnectDiagnostics) GetArpCaches() []*InterconnectDiagnosticsARPEntry { @@ -110304,7 +114878,7 @@ type InterconnectDiagnosticsARPEntry struct { func (x *InterconnectDiagnosticsARPEntry) Reset() { *x = InterconnectDiagnosticsARPEntry{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[872] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[918] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110316,7 +114890,7 @@ func (x *InterconnectDiagnosticsARPEntry) String() string { func (*InterconnectDiagnosticsARPEntry) ProtoMessage() {} func (x *InterconnectDiagnosticsARPEntry) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[872] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[918] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110329,7 +114903,7 @@ func (x *InterconnectDiagnosticsARPEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectDiagnosticsARPEntry.ProtoReflect.Descriptor instead. func (*InterconnectDiagnosticsARPEntry) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{872} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{918} } func (x *InterconnectDiagnosticsARPEntry) GetIpAddress() string { @@ -110366,7 +114940,7 @@ type InterconnectDiagnosticsLinkLACPStatus struct { func (x *InterconnectDiagnosticsLinkLACPStatus) Reset() { *x = InterconnectDiagnosticsLinkLACPStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[873] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[919] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110378,7 +114952,7 @@ func (x *InterconnectDiagnosticsLinkLACPStatus) String() string { func (*InterconnectDiagnosticsLinkLACPStatus) ProtoMessage() {} func (x *InterconnectDiagnosticsLinkLACPStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[873] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[919] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110391,7 +114965,7 @@ func (x *InterconnectDiagnosticsLinkLACPStatus) ProtoReflect() protoreflect.Mess // Deprecated: Use InterconnectDiagnosticsLinkLACPStatus.ProtoReflect.Descriptor instead. func (*InterconnectDiagnosticsLinkLACPStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{873} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{919} } func (x *InterconnectDiagnosticsLinkLACPStatus) GetGoogleSystemId() string { @@ -110444,7 +115018,7 @@ type InterconnectDiagnosticsLinkOpticalPower struct { func (x *InterconnectDiagnosticsLinkOpticalPower) Reset() { *x = InterconnectDiagnosticsLinkOpticalPower{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[874] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[920] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110456,7 +115030,7 @@ func (x *InterconnectDiagnosticsLinkOpticalPower) String() string { func (*InterconnectDiagnosticsLinkOpticalPower) ProtoMessage() {} func (x *InterconnectDiagnosticsLinkOpticalPower) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[874] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[920] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110469,7 +115043,7 @@ func (x *InterconnectDiagnosticsLinkOpticalPower) ProtoReflect() protoreflect.Me // Deprecated: Use InterconnectDiagnosticsLinkOpticalPower.ProtoReflect.Descriptor instead. func (*InterconnectDiagnosticsLinkOpticalPower) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{874} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{920} } func (x *InterconnectDiagnosticsLinkOpticalPower) GetState() string { @@ -110514,7 +115088,7 @@ type InterconnectDiagnosticsLinkStatus struct { func (x *InterconnectDiagnosticsLinkStatus) Reset() { *x = InterconnectDiagnosticsLinkStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[875] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[921] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110526,7 +115100,7 @@ func (x *InterconnectDiagnosticsLinkStatus) String() string { func (*InterconnectDiagnosticsLinkStatus) ProtoMessage() {} func (x *InterconnectDiagnosticsLinkStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[875] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[921] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110539,7 +115113,7 @@ func (x *InterconnectDiagnosticsLinkStatus) ProtoReflect() protoreflect.Message // Deprecated: Use InterconnectDiagnosticsLinkStatus.ProtoReflect.Descriptor instead. func (*InterconnectDiagnosticsLinkStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{875} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{921} } func (x *InterconnectDiagnosticsLinkStatus) GetArpCaches() []*InterconnectDiagnosticsARPEntry { @@ -110612,7 +115186,7 @@ type InterconnectDiagnosticsMacsecStatus struct { func (x *InterconnectDiagnosticsMacsecStatus) Reset() { *x = InterconnectDiagnosticsMacsecStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[876] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[922] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110624,7 +115198,7 @@ func (x *InterconnectDiagnosticsMacsecStatus) String() string { func (*InterconnectDiagnosticsMacsecStatus) ProtoMessage() {} func (x *InterconnectDiagnosticsMacsecStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[876] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[922] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110637,7 +115211,7 @@ func (x *InterconnectDiagnosticsMacsecStatus) ProtoReflect() protoreflect.Messag // Deprecated: Use InterconnectDiagnosticsMacsecStatus.ProtoReflect.Descriptor instead. func (*InterconnectDiagnosticsMacsecStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{876} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{922} } func (x *InterconnectDiagnosticsMacsecStatus) GetCkn() string { @@ -110700,7 +115274,7 @@ type InterconnectGroup struct { func (x *InterconnectGroup) Reset() { *x = InterconnectGroup{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[877] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[923] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110712,7 +115286,7 @@ func (x *InterconnectGroup) String() string { func (*InterconnectGroup) ProtoMessage() {} func (x *InterconnectGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[877] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[923] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110725,7 +115299,7 @@ func (x *InterconnectGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectGroup.ProtoReflect.Descriptor instead. func (*InterconnectGroup) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{877} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{923} } func (x *InterconnectGroup) GetConfigured() *InterconnectGroupConfigured { @@ -110818,7 +115392,7 @@ type InterconnectGroupConfigured struct { func (x *InterconnectGroupConfigured) Reset() { *x = InterconnectGroupConfigured{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[878] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[924] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110830,7 +115404,7 @@ func (x *InterconnectGroupConfigured) String() string { func (*InterconnectGroupConfigured) ProtoMessage() {} func (x *InterconnectGroupConfigured) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[878] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[924] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110843,7 +115417,7 @@ func (x *InterconnectGroupConfigured) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectGroupConfigured.ProtoReflect.Descriptor instead. func (*InterconnectGroupConfigured) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{878} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{924} } func (x *InterconnectGroupConfigured) GetTopologyCapability() *InterconnectGroupConfiguredTopologyCapability { @@ -110867,7 +115441,7 @@ type InterconnectGroupConfiguredTopologyCapability struct { func (x *InterconnectGroupConfiguredTopologyCapability) Reset() { *x = InterconnectGroupConfiguredTopologyCapability{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[879] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[925] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110879,7 +115453,7 @@ func (x *InterconnectGroupConfiguredTopologyCapability) String() string { func (*InterconnectGroupConfiguredTopologyCapability) ProtoMessage() {} func (x *InterconnectGroupConfiguredTopologyCapability) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[879] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[925] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110892,7 +115466,7 @@ func (x *InterconnectGroupConfiguredTopologyCapability) ProtoReflect() protorefl // Deprecated: Use InterconnectGroupConfiguredTopologyCapability.ProtoReflect.Descriptor instead. func (*InterconnectGroupConfiguredTopologyCapability) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{879} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{925} } func (x *InterconnectGroupConfiguredTopologyCapability) GetIntendedCapabilityBlockers() []*InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers { @@ -110943,7 +115517,7 @@ type InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers str func (x *InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers) Reset() { *x = InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[880] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[926] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110955,7 +115529,7 @@ func (x *InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers func (*InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers) ProtoMessage() {} func (x *InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[880] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[926] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -110968,7 +115542,7 @@ func (x *InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers // Deprecated: Use InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers.ProtoReflect.Descriptor instead. func (*InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{880} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{926} } func (x *InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers) GetBlockerType() string { @@ -111032,7 +115606,7 @@ type InterconnectGroupIntent struct { func (x *InterconnectGroupIntent) Reset() { *x = InterconnectGroupIntent{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[881] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[927] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111044,7 +115618,7 @@ func (x *InterconnectGroupIntent) String() string { func (*InterconnectGroupIntent) ProtoMessage() {} func (x *InterconnectGroupIntent) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[881] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[927] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111057,7 +115631,7 @@ func (x *InterconnectGroupIntent) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectGroupIntent.ProtoReflect.Descriptor instead. func (*InterconnectGroupIntent) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{881} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{927} } func (x *InterconnectGroupIntent) GetTopologyCapability() string { @@ -111079,7 +115653,7 @@ type InterconnectGroupInterconnect struct { func (x *InterconnectGroupInterconnect) Reset() { *x = InterconnectGroupInterconnect{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[882] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[928] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111091,7 +115665,7 @@ func (x *InterconnectGroupInterconnect) String() string { func (*InterconnectGroupInterconnect) ProtoMessage() {} func (x *InterconnectGroupInterconnect) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[882] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[928] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111104,7 +115678,7 @@ func (x *InterconnectGroupInterconnect) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectGroupInterconnect.ProtoReflect.Descriptor instead. func (*InterconnectGroupInterconnect) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{882} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{928} } func (x *InterconnectGroupInterconnect) GetInterconnect() string { @@ -111125,7 +115699,7 @@ type InterconnectGroupPhysicalStructure struct { func (x *InterconnectGroupPhysicalStructure) Reset() { *x = InterconnectGroupPhysicalStructure{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[883] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[929] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111137,7 +115711,7 @@ func (x *InterconnectGroupPhysicalStructure) String() string { func (*InterconnectGroupPhysicalStructure) ProtoMessage() {} func (x *InterconnectGroupPhysicalStructure) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[883] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[929] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111150,7 +115724,7 @@ func (x *InterconnectGroupPhysicalStructure) ProtoReflect() protoreflect.Message // Deprecated: Use InterconnectGroupPhysicalStructure.ProtoReflect.Descriptor instead. func (*InterconnectGroupPhysicalStructure) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{883} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{929} } func (x *InterconnectGroupPhysicalStructure) GetMetros() []*InterconnectGroupPhysicalStructureMetros { @@ -111174,7 +115748,7 @@ type InterconnectGroupPhysicalStructureMetros struct { func (x *InterconnectGroupPhysicalStructureMetros) Reset() { *x = InterconnectGroupPhysicalStructureMetros{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[884] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[930] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111186,7 +115760,7 @@ func (x *InterconnectGroupPhysicalStructureMetros) String() string { func (*InterconnectGroupPhysicalStructureMetros) ProtoMessage() {} func (x *InterconnectGroupPhysicalStructureMetros) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[884] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[930] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111199,7 +115773,7 @@ func (x *InterconnectGroupPhysicalStructureMetros) ProtoReflect() protoreflect.M // Deprecated: Use InterconnectGroupPhysicalStructureMetros.ProtoReflect.Descriptor instead. func (*InterconnectGroupPhysicalStructureMetros) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{884} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{930} } func (x *InterconnectGroupPhysicalStructureMetros) GetFacilities() []*InterconnectGroupPhysicalStructureMetrosFacilities { @@ -111231,7 +115805,7 @@ type InterconnectGroupPhysicalStructureMetrosFacilities struct { func (x *InterconnectGroupPhysicalStructureMetrosFacilities) Reset() { *x = InterconnectGroupPhysicalStructureMetrosFacilities{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[885] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[931] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111243,7 +115817,7 @@ func (x *InterconnectGroupPhysicalStructureMetrosFacilities) String() string { func (*InterconnectGroupPhysicalStructureMetrosFacilities) ProtoMessage() {} func (x *InterconnectGroupPhysicalStructureMetrosFacilities) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[885] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[931] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111256,7 +115830,7 @@ func (x *InterconnectGroupPhysicalStructureMetrosFacilities) ProtoReflect() prot // Deprecated: Use InterconnectGroupPhysicalStructureMetrosFacilities.ProtoReflect.Descriptor instead. func (*InterconnectGroupPhysicalStructureMetrosFacilities) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{885} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{931} } func (x *InterconnectGroupPhysicalStructureMetrosFacilities) GetFacility() string { @@ -111290,7 +115864,7 @@ type InterconnectGroupPhysicalStructureMetrosFacilitiesZones struct { func (x *InterconnectGroupPhysicalStructureMetrosFacilitiesZones) Reset() { *x = InterconnectGroupPhysicalStructureMetrosFacilitiesZones{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[886] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[932] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111302,7 +115876,7 @@ func (x *InterconnectGroupPhysicalStructureMetrosFacilitiesZones) String() strin func (*InterconnectGroupPhysicalStructureMetrosFacilitiesZones) ProtoMessage() {} func (x *InterconnectGroupPhysicalStructureMetrosFacilitiesZones) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[886] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[932] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111315,7 +115889,7 @@ func (x *InterconnectGroupPhysicalStructureMetrosFacilitiesZones) ProtoReflect() // Deprecated: Use InterconnectGroupPhysicalStructureMetrosFacilitiesZones.ProtoReflect.Descriptor instead. func (*InterconnectGroupPhysicalStructureMetrosFacilitiesZones) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{886} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{932} } func (x *InterconnectGroupPhysicalStructureMetrosFacilitiesZones) GetInterconnects() []string { @@ -111347,7 +115921,7 @@ type InterconnectGroupsCreateMembers struct { func (x *InterconnectGroupsCreateMembers) Reset() { *x = InterconnectGroupsCreateMembers{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[887] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[933] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111359,7 +115933,7 @@ func (x *InterconnectGroupsCreateMembers) String() string { func (*InterconnectGroupsCreateMembers) ProtoMessage() {} func (x *InterconnectGroupsCreateMembers) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[887] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[933] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111372,7 +115946,7 @@ func (x *InterconnectGroupsCreateMembers) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectGroupsCreateMembers.ProtoReflect.Descriptor instead. func (*InterconnectGroupsCreateMembers) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{887} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{933} } func (x *InterconnectGroupsCreateMembers) GetIntentMismatchBehavior() string { @@ -111482,7 +116056,7 @@ type InterconnectGroupsCreateMembersInterconnectInput struct { func (x *InterconnectGroupsCreateMembersInterconnectInput) Reset() { *x = InterconnectGroupsCreateMembersInterconnectInput{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[888] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[934] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111494,7 +116068,7 @@ func (x *InterconnectGroupsCreateMembersInterconnectInput) String() string { func (*InterconnectGroupsCreateMembersInterconnectInput) ProtoMessage() {} func (x *InterconnectGroupsCreateMembersInterconnectInput) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[888] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[934] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111507,7 +116081,7 @@ func (x *InterconnectGroupsCreateMembersInterconnectInput) ProtoReflect() protor // Deprecated: Use InterconnectGroupsCreateMembersInterconnectInput.ProtoReflect.Descriptor instead. func (*InterconnectGroupsCreateMembersInterconnectInput) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{888} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{934} } func (x *InterconnectGroupsCreateMembersInterconnectInput) GetAdminEnabled() bool { @@ -111596,7 +116170,7 @@ type InterconnectGroupsCreateMembersRequest struct { func (x *InterconnectGroupsCreateMembersRequest) Reset() { *x = InterconnectGroupsCreateMembersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[889] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[935] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111608,7 +116182,7 @@ func (x *InterconnectGroupsCreateMembersRequest) String() string { func (*InterconnectGroupsCreateMembersRequest) ProtoMessage() {} func (x *InterconnectGroupsCreateMembersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[889] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[935] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111621,7 +116195,7 @@ func (x *InterconnectGroupsCreateMembersRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use InterconnectGroupsCreateMembersRequest.ProtoReflect.Descriptor instead. func (*InterconnectGroupsCreateMembersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{889} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{935} } func (x *InterconnectGroupsCreateMembersRequest) GetRequest() *InterconnectGroupsCreateMembers { @@ -111642,7 +116216,7 @@ type InterconnectGroupsGetOperationalStatusResponse struct { func (x *InterconnectGroupsGetOperationalStatusResponse) Reset() { *x = InterconnectGroupsGetOperationalStatusResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[890] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[936] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111654,7 +116228,7 @@ func (x *InterconnectGroupsGetOperationalStatusResponse) String() string { func (*InterconnectGroupsGetOperationalStatusResponse) ProtoMessage() {} func (x *InterconnectGroupsGetOperationalStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[890] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[936] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111667,7 +116241,7 @@ func (x *InterconnectGroupsGetOperationalStatusResponse) ProtoReflect() protoref // Deprecated: Use InterconnectGroupsGetOperationalStatusResponse.ProtoReflect.Descriptor instead. func (*InterconnectGroupsGetOperationalStatusResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{890} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{936} } func (x *InterconnectGroupsGetOperationalStatusResponse) GetEtag() string { @@ -111711,7 +116285,7 @@ type InterconnectGroupsListResponse struct { func (x *InterconnectGroupsListResponse) Reset() { *x = InterconnectGroupsListResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[891] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[937] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111723,7 +116297,7 @@ func (x *InterconnectGroupsListResponse) String() string { func (*InterconnectGroupsListResponse) ProtoMessage() {} func (x *InterconnectGroupsListResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[891] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[937] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111736,7 +116310,7 @@ func (x *InterconnectGroupsListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectGroupsListResponse.ProtoReflect.Descriptor instead. func (*InterconnectGroupsListResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{891} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{937} } func (x *InterconnectGroupsListResponse) GetEtag() string { @@ -111814,7 +116388,7 @@ type InterconnectGroupsOperationalStatus struct { func (x *InterconnectGroupsOperationalStatus) Reset() { *x = InterconnectGroupsOperationalStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[892] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[938] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111826,7 +116400,7 @@ func (x *InterconnectGroupsOperationalStatus) String() string { func (*InterconnectGroupsOperationalStatus) ProtoMessage() {} func (x *InterconnectGroupsOperationalStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[892] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[938] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111839,7 +116413,7 @@ func (x *InterconnectGroupsOperationalStatus) ProtoReflect() protoreflect.Messag // Deprecated: Use InterconnectGroupsOperationalStatus.ProtoReflect.Descriptor instead. func (*InterconnectGroupsOperationalStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{892} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{938} } func (x *InterconnectGroupsOperationalStatus) GetConfigured() *InterconnectGroupConfigured { @@ -111897,7 +116471,7 @@ type InterconnectGroupsOperationalStatusInterconnectStatus struct { func (x *InterconnectGroupsOperationalStatusInterconnectStatus) Reset() { *x = InterconnectGroupsOperationalStatusInterconnectStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[893] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[939] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111909,7 +116483,7 @@ func (x *InterconnectGroupsOperationalStatusInterconnectStatus) String() string func (*InterconnectGroupsOperationalStatusInterconnectStatus) ProtoMessage() {} func (x *InterconnectGroupsOperationalStatusInterconnectStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[893] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[939] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -111922,7 +116496,7 @@ func (x *InterconnectGroupsOperationalStatusInterconnectStatus) ProtoReflect() p // Deprecated: Use InterconnectGroupsOperationalStatusInterconnectStatus.ProtoReflect.Descriptor instead. func (*InterconnectGroupsOperationalStatusInterconnectStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{893} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{939} } func (x *InterconnectGroupsOperationalStatusInterconnectStatus) GetAdminEnabled() bool { @@ -111978,7 +116552,7 @@ type InterconnectList struct { func (x *InterconnectList) Reset() { *x = InterconnectList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[894] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[940] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111990,7 +116564,7 @@ func (x *InterconnectList) String() string { func (*InterconnectList) ProtoMessage() {} func (x *InterconnectList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[894] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[940] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112003,7 +116577,7 @@ func (x *InterconnectList) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectList.ProtoReflect.Descriptor instead. func (*InterconnectList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{894} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{940} } func (x *InterconnectList) GetId() string { @@ -112147,7 +116721,7 @@ type InterconnectLocation struct { func (x *InterconnectLocation) Reset() { *x = InterconnectLocation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[895] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[941] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -112159,7 +116733,7 @@ func (x *InterconnectLocation) String() string { func (*InterconnectLocation) ProtoMessage() {} func (x *InterconnectLocation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[895] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[941] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112172,7 +116746,7 @@ func (x *InterconnectLocation) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectLocation.ProtoReflect.Descriptor instead. func (*InterconnectLocation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{895} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{941} } func (x *InterconnectLocation) GetAddress() string { @@ -112329,7 +116903,7 @@ type InterconnectLocationCrossSiteInterconnectInfo struct { func (x *InterconnectLocationCrossSiteInterconnectInfo) Reset() { *x = InterconnectLocationCrossSiteInterconnectInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[896] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[942] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -112341,7 +116915,7 @@ func (x *InterconnectLocationCrossSiteInterconnectInfo) String() string { func (*InterconnectLocationCrossSiteInterconnectInfo) ProtoMessage() {} func (x *InterconnectLocationCrossSiteInterconnectInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[896] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[942] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112354,7 +116928,7 @@ func (x *InterconnectLocationCrossSiteInterconnectInfo) ProtoReflect() protorefl // Deprecated: Use InterconnectLocationCrossSiteInterconnectInfo.ProtoReflect.Descriptor instead. func (*InterconnectLocationCrossSiteInterconnectInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{896} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{942} } func (x *InterconnectLocationCrossSiteInterconnectInfo) GetCity() string { @@ -112390,7 +116964,7 @@ type InterconnectLocationList struct { func (x *InterconnectLocationList) Reset() { *x = InterconnectLocationList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[897] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[943] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -112402,7 +116976,7 @@ func (x *InterconnectLocationList) String() string { func (*InterconnectLocationList) ProtoMessage() {} func (x *InterconnectLocationList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[897] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[943] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112415,7 +116989,7 @@ func (x *InterconnectLocationList) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectLocationList.ProtoReflect.Descriptor instead. func (*InterconnectLocationList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{897} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{943} } func (x *InterconnectLocationList) GetId() string { @@ -112482,7 +117056,7 @@ type InterconnectLocationRegionInfo struct { func (x *InterconnectLocationRegionInfo) Reset() { *x = InterconnectLocationRegionInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[898] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[944] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -112494,7 +117068,7 @@ func (x *InterconnectLocationRegionInfo) String() string { func (*InterconnectLocationRegionInfo) ProtoMessage() {} func (x *InterconnectLocationRegionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[898] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[944] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112507,7 +117081,7 @@ func (x *InterconnectLocationRegionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectLocationRegionInfo.ProtoReflect.Descriptor instead. func (*InterconnectLocationRegionInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{898} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{944} } func (x *InterconnectLocationRegionInfo) GetExpectedRttMs() int64 { @@ -112560,7 +117134,7 @@ type InterconnectMacsec struct { func (x *InterconnectMacsec) Reset() { *x = InterconnectMacsec{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[899] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[945] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -112572,7 +117146,7 @@ func (x *InterconnectMacsec) String() string { func (*InterconnectMacsec) ProtoMessage() {} func (x *InterconnectMacsec) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[899] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[945] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112585,7 +117159,7 @@ func (x *InterconnectMacsec) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectMacsec.ProtoReflect.Descriptor instead. func (*InterconnectMacsec) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{899} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{945} } func (x *InterconnectMacsec) GetFailOpen() bool { @@ -112618,7 +117192,7 @@ type InterconnectMacsecConfig struct { func (x *InterconnectMacsecConfig) Reset() { *x = InterconnectMacsecConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[900] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[946] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -112630,7 +117204,7 @@ func (x *InterconnectMacsecConfig) String() string { func (*InterconnectMacsecConfig) ProtoMessage() {} func (x *InterconnectMacsecConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[900] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[946] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112643,7 +117217,7 @@ func (x *InterconnectMacsecConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectMacsecConfig.ProtoReflect.Descriptor instead. func (*InterconnectMacsecConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{900} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{946} } func (x *InterconnectMacsecConfig) GetPreSharedKeys() []*InterconnectMacsecConfigPreSharedKey { @@ -112671,7 +117245,7 @@ type InterconnectMacsecConfigPreSharedKey struct { func (x *InterconnectMacsecConfigPreSharedKey) Reset() { *x = InterconnectMacsecConfigPreSharedKey{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[901] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[947] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -112683,7 +117257,7 @@ func (x *InterconnectMacsecConfigPreSharedKey) String() string { func (*InterconnectMacsecConfigPreSharedKey) ProtoMessage() {} func (x *InterconnectMacsecConfigPreSharedKey) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[901] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[947] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112696,7 +117270,7 @@ func (x *InterconnectMacsecConfigPreSharedKey) ProtoReflect() protoreflect.Messa // Deprecated: Use InterconnectMacsecConfigPreSharedKey.ProtoReflect.Descriptor instead. func (*InterconnectMacsecConfigPreSharedKey) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{901} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{947} } func (x *InterconnectMacsecConfigPreSharedKey) GetCak() string { @@ -112752,7 +117326,7 @@ type InterconnectMacsecPreSharedKey struct { func (x *InterconnectMacsecPreSharedKey) Reset() { *x = InterconnectMacsecPreSharedKey{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[902] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[948] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -112764,7 +117338,7 @@ func (x *InterconnectMacsecPreSharedKey) String() string { func (*InterconnectMacsecPreSharedKey) ProtoMessage() {} func (x *InterconnectMacsecPreSharedKey) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[902] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[948] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112777,7 +117351,7 @@ func (x *InterconnectMacsecPreSharedKey) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectMacsecPreSharedKey.ProtoReflect.Descriptor instead. func (*InterconnectMacsecPreSharedKey) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{902} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{948} } func (x *InterconnectMacsecPreSharedKey) GetName() string { @@ -112850,7 +117424,7 @@ type InterconnectOutageNotification struct { func (x *InterconnectOutageNotification) Reset() { *x = InterconnectOutageNotification{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[903] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[949] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -112862,7 +117436,7 @@ func (x *InterconnectOutageNotification) String() string { func (*InterconnectOutageNotification) ProtoMessage() {} func (x *InterconnectOutageNotification) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[903] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[949] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112875,7 +117449,7 @@ func (x *InterconnectOutageNotification) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectOutageNotification.ProtoReflect.Descriptor instead. func (*InterconnectOutageNotification) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{903} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{949} } func (x *InterconnectOutageNotification) GetAffectedCircuits() []string { @@ -112958,7 +117532,7 @@ type InterconnectParams struct { func (x *InterconnectParams) Reset() { *x = InterconnectParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[904] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[950] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -112970,7 +117544,7 @@ func (x *InterconnectParams) String() string { func (*InterconnectParams) ProtoMessage() {} func (x *InterconnectParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[904] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[950] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -112983,7 +117557,7 @@ func (x *InterconnectParams) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectParams.ProtoReflect.Descriptor instead. func (*InterconnectParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{904} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{950} } func (x *InterconnectParams) GetResourceManagerTags() map[string]string { @@ -113088,7 +117662,7 @@ type InterconnectRemoteLocation struct { func (x *InterconnectRemoteLocation) Reset() { *x = InterconnectRemoteLocation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[905] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[951] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113100,7 +117674,7 @@ func (x *InterconnectRemoteLocation) String() string { func (*InterconnectRemoteLocation) ProtoMessage() {} func (x *InterconnectRemoteLocation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[905] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[951] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -113113,7 +117687,7 @@ func (x *InterconnectRemoteLocation) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectRemoteLocation.ProtoReflect.Descriptor instead. func (*InterconnectRemoteLocation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{905} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{951} } func (x *InterconnectRemoteLocation) GetAddress() string { @@ -113305,7 +117879,7 @@ type InterconnectRemoteLocationConstraints struct { func (x *InterconnectRemoteLocationConstraints) Reset() { *x = InterconnectRemoteLocationConstraints{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[906] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[952] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113317,7 +117891,7 @@ func (x *InterconnectRemoteLocationConstraints) String() string { func (*InterconnectRemoteLocationConstraints) ProtoMessage() {} func (x *InterconnectRemoteLocationConstraints) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[906] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[952] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -113330,7 +117904,7 @@ func (x *InterconnectRemoteLocationConstraints) ProtoReflect() protoreflect.Mess // Deprecated: Use InterconnectRemoteLocationConstraints.ProtoReflect.Descriptor instead. func (*InterconnectRemoteLocationConstraints) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{906} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{952} } func (x *InterconnectRemoteLocationConstraints) GetPortPairRemoteLocation() string { @@ -113364,7 +117938,7 @@ type InterconnectRemoteLocationConstraintsSubnetLengthRange struct { func (x *InterconnectRemoteLocationConstraintsSubnetLengthRange) Reset() { *x = InterconnectRemoteLocationConstraintsSubnetLengthRange{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[907] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[953] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113376,7 +117950,7 @@ func (x *InterconnectRemoteLocationConstraintsSubnetLengthRange) String() string func (*InterconnectRemoteLocationConstraintsSubnetLengthRange) ProtoMessage() {} func (x *InterconnectRemoteLocationConstraintsSubnetLengthRange) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[907] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[953] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -113389,7 +117963,7 @@ func (x *InterconnectRemoteLocationConstraintsSubnetLengthRange) ProtoReflect() // Deprecated: Use InterconnectRemoteLocationConstraintsSubnetLengthRange.ProtoReflect.Descriptor instead. func (*InterconnectRemoteLocationConstraintsSubnetLengthRange) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{907} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{953} } func (x *InterconnectRemoteLocationConstraintsSubnetLengthRange) GetMax() int32 { @@ -113433,7 +118007,7 @@ type InterconnectRemoteLocationList struct { func (x *InterconnectRemoteLocationList) Reset() { *x = InterconnectRemoteLocationList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[908] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[954] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113445,7 +118019,7 @@ func (x *InterconnectRemoteLocationList) String() string { func (*InterconnectRemoteLocationList) ProtoMessage() {} func (x *InterconnectRemoteLocationList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[908] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[954] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -113458,7 +118032,7 @@ func (x *InterconnectRemoteLocationList) ProtoReflect() protoreflect.Message { // Deprecated: Use InterconnectRemoteLocationList.ProtoReflect.Descriptor instead. func (*InterconnectRemoteLocationList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{908} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{954} } func (x *InterconnectRemoteLocationList) GetId() string { @@ -113514,7 +118088,7 @@ type InterconnectRemoteLocationPermittedConnections struct { func (x *InterconnectRemoteLocationPermittedConnections) Reset() { *x = InterconnectRemoteLocationPermittedConnections{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[909] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[955] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113526,7 +118100,7 @@ func (x *InterconnectRemoteLocationPermittedConnections) String() string { func (*InterconnectRemoteLocationPermittedConnections) ProtoMessage() {} func (x *InterconnectRemoteLocationPermittedConnections) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[909] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[955] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -113539,7 +118113,7 @@ func (x *InterconnectRemoteLocationPermittedConnections) ProtoReflect() protoref // Deprecated: Use InterconnectRemoteLocationPermittedConnections.ProtoReflect.Descriptor instead. func (*InterconnectRemoteLocationPermittedConnections) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{909} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{955} } func (x *InterconnectRemoteLocationPermittedConnections) GetInterconnectLocation() string { @@ -113559,7 +118133,7 @@ type InterconnectsGetDiagnosticsResponse struct { func (x *InterconnectsGetDiagnosticsResponse) Reset() { *x = InterconnectsGetDiagnosticsResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[910] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[956] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113571,7 +118145,7 @@ func (x *InterconnectsGetDiagnosticsResponse) String() string { func (*InterconnectsGetDiagnosticsResponse) ProtoMessage() {} func (x *InterconnectsGetDiagnosticsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[910] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[956] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -113584,7 +118158,7 @@ func (x *InterconnectsGetDiagnosticsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use InterconnectsGetDiagnosticsResponse.ProtoReflect.Descriptor instead. func (*InterconnectsGetDiagnosticsResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{910} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{956} } func (x *InterconnectsGetDiagnosticsResponse) GetResult() *InterconnectDiagnostics { @@ -113606,7 +118180,7 @@ type InterconnectsGetMacsecConfigResponse struct { func (x *InterconnectsGetMacsecConfigResponse) Reset() { *x = InterconnectsGetMacsecConfigResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[911] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[957] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113618,7 +118192,7 @@ func (x *InterconnectsGetMacsecConfigResponse) String() string { func (*InterconnectsGetMacsecConfigResponse) ProtoMessage() {} func (x *InterconnectsGetMacsecConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[911] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[957] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -113631,7 +118205,7 @@ func (x *InterconnectsGetMacsecConfigResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use InterconnectsGetMacsecConfigResponse.ProtoReflect.Descriptor instead. func (*InterconnectsGetMacsecConfigResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{911} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{957} } func (x *InterconnectsGetMacsecConfigResponse) GetEtag() string { @@ -113677,7 +118251,7 @@ type InvalidateCacheUrlMapRequest struct { func (x *InvalidateCacheUrlMapRequest) Reset() { *x = InvalidateCacheUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[912] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[958] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113689,7 +118263,7 @@ func (x *InvalidateCacheUrlMapRequest) String() string { func (*InvalidateCacheUrlMapRequest) ProtoMessage() {} func (x *InvalidateCacheUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[912] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[958] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -113702,7 +118276,7 @@ func (x *InvalidateCacheUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InvalidateCacheUrlMapRequest.ProtoReflect.Descriptor instead. func (*InvalidateCacheUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{912} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{958} } func (x *InvalidateCacheUrlMapRequest) GetCacheInvalidationRuleResource() *CacheInvalidationRule { @@ -113753,7 +118327,7 @@ type Items struct { func (x *Items) Reset() { *x = Items{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[913] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[959] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113765,7 +118339,7 @@ func (x *Items) String() string { func (*Items) ProtoMessage() {} func (x *Items) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[913] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[959] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -113778,7 +118352,7 @@ func (x *Items) ProtoReflect() protoreflect.Message { // Deprecated: Use Items.ProtoReflect.Descriptor instead. func (*Items) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{913} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{959} } func (x *Items) GetKey() string { @@ -113874,7 +118448,7 @@ type License struct { func (x *License) Reset() { *x = License{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[914] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[960] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113886,7 +118460,7 @@ func (x *License) String() string { func (*License) ProtoMessage() {} func (x *License) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[914] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[960] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -113899,7 +118473,7 @@ func (x *License) ProtoReflect() protoreflect.Message { // Deprecated: Use License.ProtoReflect.Descriptor instead. func (*License) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{914} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{960} } func (x *License) GetAllowedReplacementLicenses() []string { @@ -114098,7 +118672,7 @@ type LicenseCode struct { func (x *LicenseCode) Reset() { *x = LicenseCode{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[915] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[961] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114110,7 +118684,7 @@ func (x *LicenseCode) String() string { func (*LicenseCode) ProtoMessage() {} func (x *LicenseCode) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[915] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[961] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -114123,7 +118697,7 @@ func (x *LicenseCode) ProtoReflect() protoreflect.Message { // Deprecated: Use LicenseCode.ProtoReflect.Descriptor instead. func (*LicenseCode) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{915} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{961} } func (x *LicenseCode) GetCreationTimestamp() string { @@ -114201,7 +118775,7 @@ type LicenseCodeLicenseAlias struct { func (x *LicenseCodeLicenseAlias) Reset() { *x = LicenseCodeLicenseAlias{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[916] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[962] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114213,7 +118787,7 @@ func (x *LicenseCodeLicenseAlias) String() string { func (*LicenseCodeLicenseAlias) ProtoMessage() {} func (x *LicenseCodeLicenseAlias) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[916] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[962] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -114226,7 +118800,7 @@ func (x *LicenseCodeLicenseAlias) ProtoReflect() protoreflect.Message { // Deprecated: Use LicenseCodeLicenseAlias.ProtoReflect.Descriptor instead. func (*LicenseCodeLicenseAlias) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{916} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{962} } func (x *LicenseCodeLicenseAlias) GetDescription() string { @@ -114260,7 +118834,7 @@ type LicenseParams struct { func (x *LicenseParams) Reset() { *x = LicenseParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[917] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[963] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114272,7 +118846,7 @@ func (x *LicenseParams) String() string { func (*LicenseParams) ProtoMessage() {} func (x *LicenseParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[917] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[963] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -114285,7 +118859,7 @@ func (x *LicenseParams) ProtoReflect() protoreflect.Message { // Deprecated: Use LicenseParams.ProtoReflect.Descriptor instead. func (*LicenseParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{917} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{963} } func (x *LicenseParams) GetResourceManagerTags() map[string]string { @@ -114310,7 +118884,7 @@ type LicenseResourceCommitment struct { func (x *LicenseResourceCommitment) Reset() { *x = LicenseResourceCommitment{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[918] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[964] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114322,7 +118896,7 @@ func (x *LicenseResourceCommitment) String() string { func (*LicenseResourceCommitment) ProtoMessage() {} func (x *LicenseResourceCommitment) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[918] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[964] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -114335,7 +118909,7 @@ func (x *LicenseResourceCommitment) ProtoReflect() protoreflect.Message { // Deprecated: Use LicenseResourceCommitment.ProtoReflect.Descriptor instead. func (*LicenseResourceCommitment) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{918} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{964} } func (x *LicenseResourceCommitment) GetAmount() int64 { @@ -114373,7 +118947,7 @@ type LicenseResourceRequirements struct { func (x *LicenseResourceRequirements) Reset() { *x = LicenseResourceRequirements{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[919] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[965] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114385,7 +118959,7 @@ func (x *LicenseResourceRequirements) String() string { func (*LicenseResourceRequirements) ProtoMessage() {} func (x *LicenseResourceRequirements) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[919] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[965] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -114398,7 +118972,7 @@ func (x *LicenseResourceRequirements) ProtoReflect() protoreflect.Message { // Deprecated: Use LicenseResourceRequirements.ProtoReflect.Descriptor instead. func (*LicenseResourceRequirements) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{919} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{965} } func (x *LicenseResourceRequirements) GetMinGuestCpuCount() int32 { @@ -114437,7 +119011,7 @@ type LicensesListResponse struct { func (x *LicensesListResponse) Reset() { *x = LicensesListResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[920] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[966] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114449,7 +119023,7 @@ func (x *LicensesListResponse) String() string { func (*LicensesListResponse) ProtoMessage() {} func (x *LicensesListResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[920] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[966] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -114462,7 +119036,7 @@ func (x *LicensesListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use LicensesListResponse.ProtoReflect.Descriptor instead. func (*LicensesListResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{920} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{966} } func (x *LicensesListResponse) GetId() string { @@ -114601,7 +119175,7 @@ type ListAcceleratorTypesRequest struct { func (x *ListAcceleratorTypesRequest) Reset() { *x = ListAcceleratorTypesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[921] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[967] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114613,7 +119187,7 @@ func (x *ListAcceleratorTypesRequest) String() string { func (*ListAcceleratorTypesRequest) ProtoMessage() {} func (x *ListAcceleratorTypesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[921] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[967] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -114626,7 +119200,7 @@ func (x *ListAcceleratorTypesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListAcceleratorTypesRequest.ProtoReflect.Descriptor instead. func (*ListAcceleratorTypesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{921} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{967} } func (x *ListAcceleratorTypesRequest) GetFilter() string { @@ -114779,7 +119353,7 @@ type ListAddressesRequest struct { func (x *ListAddressesRequest) Reset() { *x = ListAddressesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[922] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[968] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114791,7 +119365,7 @@ func (x *ListAddressesRequest) String() string { func (*ListAddressesRequest) ProtoMessage() {} func (x *ListAddressesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[922] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[968] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -114804,7 +119378,7 @@ func (x *ListAddressesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListAddressesRequest.ProtoReflect.Descriptor instead. func (*ListAddressesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{922} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{968} } func (x *ListAddressesRequest) GetFilter() string { @@ -114872,7 +119446,7 @@ type ListAssociationsFirewallPolicyRequest struct { func (x *ListAssociationsFirewallPolicyRequest) Reset() { *x = ListAssociationsFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[923] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[969] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114884,7 +119458,7 @@ func (x *ListAssociationsFirewallPolicyRequest) String() string { func (*ListAssociationsFirewallPolicyRequest) ProtoMessage() {} func (x *ListAssociationsFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[923] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[969] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -114897,7 +119471,7 @@ func (x *ListAssociationsFirewallPolicyRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use ListAssociationsFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*ListAssociationsFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{923} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{969} } func (x *ListAssociationsFirewallPolicyRequest) GetIncludeInheritedPolicies() bool { @@ -114926,7 +119500,7 @@ type ListAssociationsOrganizationSecurityPolicyRequest struct { func (x *ListAssociationsOrganizationSecurityPolicyRequest) Reset() { *x = ListAssociationsOrganizationSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[924] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[970] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114938,7 +119512,7 @@ func (x *ListAssociationsOrganizationSecurityPolicyRequest) String() string { func (*ListAssociationsOrganizationSecurityPolicyRequest) ProtoMessage() {} func (x *ListAssociationsOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[924] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[970] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -114951,7 +119525,7 @@ func (x *ListAssociationsOrganizationSecurityPolicyRequest) ProtoReflect() proto // Deprecated: Use ListAssociationsOrganizationSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*ListAssociationsOrganizationSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{924} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{970} } func (x *ListAssociationsOrganizationSecurityPolicyRequest) GetTargetResource() string { @@ -115062,7 +119636,7 @@ type ListAutoscalersRequest struct { func (x *ListAutoscalersRequest) Reset() { *x = ListAutoscalersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[925] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[971] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115074,7 +119648,7 @@ func (x *ListAutoscalersRequest) String() string { func (*ListAutoscalersRequest) ProtoMessage() {} func (x *ListAutoscalersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[925] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[971] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -115087,7 +119661,7 @@ func (x *ListAutoscalersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListAutoscalersRequest.ProtoReflect.Descriptor instead. func (*ListAutoscalersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{925} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{971} } func (x *ListAutoscalersRequest) GetFilter() string { @@ -115240,7 +119814,7 @@ type ListAvailableFeaturesRegionSslPoliciesRequest struct { func (x *ListAvailableFeaturesRegionSslPoliciesRequest) Reset() { *x = ListAvailableFeaturesRegionSslPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[926] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[972] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115252,7 +119826,7 @@ func (x *ListAvailableFeaturesRegionSslPoliciesRequest) String() string { func (*ListAvailableFeaturesRegionSslPoliciesRequest) ProtoMessage() {} func (x *ListAvailableFeaturesRegionSslPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[926] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[972] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -115265,7 +119839,7 @@ func (x *ListAvailableFeaturesRegionSslPoliciesRequest) ProtoReflect() protorefl // Deprecated: Use ListAvailableFeaturesRegionSslPoliciesRequest.ProtoReflect.Descriptor instead. func (*ListAvailableFeaturesRegionSslPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{926} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{972} } func (x *ListAvailableFeaturesRegionSslPoliciesRequest) GetFilter() string { @@ -115416,7 +119990,7 @@ type ListAvailableFeaturesSslPoliciesRequest struct { func (x *ListAvailableFeaturesSslPoliciesRequest) Reset() { *x = ListAvailableFeaturesSslPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[927] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[973] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115428,7 +120002,7 @@ func (x *ListAvailableFeaturesSslPoliciesRequest) String() string { func (*ListAvailableFeaturesSslPoliciesRequest) ProtoMessage() {} func (x *ListAvailableFeaturesSslPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[927] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[973] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -115441,7 +120015,7 @@ func (x *ListAvailableFeaturesSslPoliciesRequest) ProtoReflect() protoreflect.Me // Deprecated: Use ListAvailableFeaturesSslPoliciesRequest.ProtoReflect.Descriptor instead. func (*ListAvailableFeaturesSslPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{927} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{973} } func (x *ListAvailableFeaturesSslPoliciesRequest) GetFilter() string { @@ -115585,7 +120159,7 @@ type ListBackendBucketsRequest struct { func (x *ListBackendBucketsRequest) Reset() { *x = ListBackendBucketsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[928] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[974] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115597,7 +120171,7 @@ func (x *ListBackendBucketsRequest) String() string { func (*ListBackendBucketsRequest) ProtoMessage() {} func (x *ListBackendBucketsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[928] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[974] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -115610,7 +120184,7 @@ func (x *ListBackendBucketsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListBackendBucketsRequest.ProtoReflect.Descriptor instead. func (*ListBackendBucketsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{928} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{974} } func (x *ListBackendBucketsRequest) GetFilter() string { @@ -115754,7 +120328,7 @@ type ListBackendServicesRequest struct { func (x *ListBackendServicesRequest) Reset() { *x = ListBackendServicesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[929] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[975] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115766,7 +120340,7 @@ func (x *ListBackendServicesRequest) String() string { func (*ListBackendServicesRequest) ProtoMessage() {} func (x *ListBackendServicesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[929] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[975] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -115779,7 +120353,7 @@ func (x *ListBackendServicesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListBackendServicesRequest.ProtoReflect.Descriptor instead. func (*ListBackendServicesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{929} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{975} } func (x *ListBackendServicesRequest) GetFilter() string { @@ -115943,7 +120517,7 @@ type ListBgpRoutesRoutersRequest struct { func (x *ListBgpRoutesRoutersRequest) Reset() { *x = ListBgpRoutesRoutersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[930] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[976] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115955,7 +120529,7 @@ func (x *ListBgpRoutesRoutersRequest) String() string { func (*ListBgpRoutesRoutersRequest) ProtoMessage() {} func (x *ListBgpRoutesRoutersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[930] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[976] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -115968,7 +120542,7 @@ func (x *ListBgpRoutesRoutersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListBgpRoutesRoutersRequest.ProtoReflect.Descriptor instead. func (*ListBgpRoutesRoutersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{930} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{976} } func (x *ListBgpRoutesRoutersRequest) GetAddressFamily() string { @@ -116161,7 +120735,7 @@ type ListCrossSiteNetworksRequest struct { func (x *ListCrossSiteNetworksRequest) Reset() { *x = ListCrossSiteNetworksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[931] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[977] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116173,7 +120747,7 @@ func (x *ListCrossSiteNetworksRequest) String() string { func (*ListCrossSiteNetworksRequest) ProtoMessage() {} func (x *ListCrossSiteNetworksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[931] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[977] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -116186,7 +120760,7 @@ func (x *ListCrossSiteNetworksRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListCrossSiteNetworksRequest.ProtoReflect.Descriptor instead. func (*ListCrossSiteNetworksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{931} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{977} } func (x *ListCrossSiteNetworksRequest) GetFilter() string { @@ -116332,7 +120906,7 @@ type ListDiskTypesRequest struct { func (x *ListDiskTypesRequest) Reset() { *x = ListDiskTypesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[932] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[978] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116344,7 +120918,7 @@ func (x *ListDiskTypesRequest) String() string { func (*ListDiskTypesRequest) ProtoMessage() {} func (x *ListDiskTypesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[932] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[978] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -116357,7 +120931,7 @@ func (x *ListDiskTypesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListDiskTypesRequest.ProtoReflect.Descriptor instead. func (*ListDiskTypesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{932} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{978} } func (x *ListDiskTypesRequest) GetFilter() string { @@ -116510,7 +121084,7 @@ type ListDisksRequest struct { func (x *ListDisksRequest) Reset() { *x = ListDisksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[933] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[979] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116522,7 +121096,7 @@ func (x *ListDisksRequest) String() string { func (*ListDisksRequest) ProtoMessage() {} func (x *ListDisksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[933] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[979] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -116535,7 +121109,7 @@ func (x *ListDisksRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListDisksRequest.ProtoReflect.Descriptor instead. func (*ListDisksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{933} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{979} } func (x *ListDisksRequest) GetFilter() string { @@ -116690,7 +121264,7 @@ type ListDisksStoragePoolsRequest struct { func (x *ListDisksStoragePoolsRequest) Reset() { *x = ListDisksStoragePoolsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[934] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[980] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116702,7 +121276,7 @@ func (x *ListDisksStoragePoolsRequest) String() string { func (*ListDisksStoragePoolsRequest) ProtoMessage() {} func (x *ListDisksStoragePoolsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[934] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[980] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -116715,7 +121289,7 @@ func (x *ListDisksStoragePoolsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListDisksStoragePoolsRequest.ProtoReflect.Descriptor instead. func (*ListDisksStoragePoolsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{934} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{980} } func (x *ListDisksStoragePoolsRequest) GetFilter() string { @@ -116882,7 +121456,7 @@ type ListErrorsInstanceGroupManagersRequest struct { func (x *ListErrorsInstanceGroupManagersRequest) Reset() { *x = ListErrorsInstanceGroupManagersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[935] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[981] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116894,7 +121468,7 @@ func (x *ListErrorsInstanceGroupManagersRequest) String() string { func (*ListErrorsInstanceGroupManagersRequest) ProtoMessage() {} func (x *ListErrorsInstanceGroupManagersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[935] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[981] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -116907,7 +121481,7 @@ func (x *ListErrorsInstanceGroupManagersRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use ListErrorsInstanceGroupManagersRequest.ProtoReflect.Descriptor instead. func (*ListErrorsInstanceGroupManagersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{935} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{981} } func (x *ListErrorsInstanceGroupManagersRequest) GetFilter() string { @@ -117073,7 +121647,7 @@ type ListErrorsRegionInstanceGroupManagersRequest struct { func (x *ListErrorsRegionInstanceGroupManagersRequest) Reset() { *x = ListErrorsRegionInstanceGroupManagersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[936] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[982] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117085,7 +121659,7 @@ func (x *ListErrorsRegionInstanceGroupManagersRequest) String() string { func (*ListErrorsRegionInstanceGroupManagersRequest) ProtoMessage() {} func (x *ListErrorsRegionInstanceGroupManagersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[936] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[982] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -117098,7 +121672,7 @@ func (x *ListErrorsRegionInstanceGroupManagersRequest) ProtoReflect() protorefle // Deprecated: Use ListErrorsRegionInstanceGroupManagersRequest.ProtoReflect.Descriptor instead. func (*ListErrorsRegionInstanceGroupManagersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{936} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{982} } func (x *ListErrorsRegionInstanceGroupManagersRequest) GetFilter() string { @@ -117256,7 +121830,7 @@ type ListExternalVpnGatewaysRequest struct { func (x *ListExternalVpnGatewaysRequest) Reset() { *x = ListExternalVpnGatewaysRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[937] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[983] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117268,7 +121842,7 @@ func (x *ListExternalVpnGatewaysRequest) String() string { func (*ListExternalVpnGatewaysRequest) ProtoMessage() {} func (x *ListExternalVpnGatewaysRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[937] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[983] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -117281,7 +121855,7 @@ func (x *ListExternalVpnGatewaysRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListExternalVpnGatewaysRequest.ProtoReflect.Descriptor instead. func (*ListExternalVpnGatewaysRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{937} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{983} } func (x *ListExternalVpnGatewaysRequest) GetFilter() string { @@ -117427,7 +122001,7 @@ type ListFirewallPoliciesRequest struct { func (x *ListFirewallPoliciesRequest) Reset() { *x = ListFirewallPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[938] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[984] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117439,7 +122013,7 @@ func (x *ListFirewallPoliciesRequest) String() string { func (*ListFirewallPoliciesRequest) ProtoMessage() {} func (x *ListFirewallPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[938] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[984] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -117452,7 +122026,7 @@ func (x *ListFirewallPoliciesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListFirewallPoliciesRequest.ProtoReflect.Descriptor instead. func (*ListFirewallPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{938} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{984} } func (x *ListFirewallPoliciesRequest) GetFilter() string { @@ -117596,7 +122170,7 @@ type ListFirewallsRequest struct { func (x *ListFirewallsRequest) Reset() { *x = ListFirewallsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[939] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[985] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117608,7 +122182,7 @@ func (x *ListFirewallsRequest) String() string { func (*ListFirewallsRequest) ProtoMessage() {} func (x *ListFirewallsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[939] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[985] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -117621,7 +122195,7 @@ func (x *ListFirewallsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListFirewallsRequest.ProtoReflect.Descriptor instead. func (*ListFirewallsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{939} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{985} } func (x *ListFirewallsRequest) GetFilter() string { @@ -117767,7 +122341,7 @@ type ListForwardingRulesRequest struct { func (x *ListForwardingRulesRequest) Reset() { *x = ListForwardingRulesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[940] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[986] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117779,7 +122353,7 @@ func (x *ListForwardingRulesRequest) String() string { func (*ListForwardingRulesRequest) ProtoMessage() {} func (x *ListForwardingRulesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[940] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[986] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -117792,7 +122366,7 @@ func (x *ListForwardingRulesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListForwardingRulesRequest.ProtoReflect.Descriptor instead. func (*ListForwardingRulesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{940} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{986} } func (x *ListForwardingRulesRequest) GetFilter() string { @@ -117945,7 +122519,7 @@ type ListFutureReservationsRequest struct { func (x *ListFutureReservationsRequest) Reset() { *x = ListFutureReservationsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[941] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[987] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117957,7 +122531,7 @@ func (x *ListFutureReservationsRequest) String() string { func (*ListFutureReservationsRequest) ProtoMessage() {} func (x *ListFutureReservationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[941] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[987] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -117970,7 +122544,7 @@ func (x *ListFutureReservationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListFutureReservationsRequest.ProtoReflect.Descriptor instead. func (*ListFutureReservationsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{941} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{987} } func (x *ListFutureReservationsRequest) GetFilter() string { @@ -118121,7 +122695,7 @@ type ListGlobalAddressesRequest struct { func (x *ListGlobalAddressesRequest) Reset() { *x = ListGlobalAddressesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[942] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[988] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118133,7 +122707,7 @@ func (x *ListGlobalAddressesRequest) String() string { func (*ListGlobalAddressesRequest) ProtoMessage() {} func (x *ListGlobalAddressesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[942] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[988] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118146,7 +122720,7 @@ func (x *ListGlobalAddressesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListGlobalAddressesRequest.ProtoReflect.Descriptor instead. func (*ListGlobalAddressesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{942} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{988} } func (x *ListGlobalAddressesRequest) GetFilter() string { @@ -118290,7 +122864,7 @@ type ListGlobalForwardingRulesRequest struct { func (x *ListGlobalForwardingRulesRequest) Reset() { *x = ListGlobalForwardingRulesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[943] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[989] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118302,7 +122876,7 @@ func (x *ListGlobalForwardingRulesRequest) String() string { func (*ListGlobalForwardingRulesRequest) ProtoMessage() {} func (x *ListGlobalForwardingRulesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[943] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[989] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118315,7 +122889,7 @@ func (x *ListGlobalForwardingRulesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListGlobalForwardingRulesRequest.ProtoReflect.Descriptor instead. func (*ListGlobalForwardingRulesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{943} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{989} } func (x *ListGlobalForwardingRulesRequest) GetFilter() string { @@ -118459,7 +123033,7 @@ type ListGlobalNetworkEndpointGroupsRequest struct { func (x *ListGlobalNetworkEndpointGroupsRequest) Reset() { *x = ListGlobalNetworkEndpointGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[944] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[990] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118471,7 +123045,7 @@ func (x *ListGlobalNetworkEndpointGroupsRequest) String() string { func (*ListGlobalNetworkEndpointGroupsRequest) ProtoMessage() {} func (x *ListGlobalNetworkEndpointGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[944] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[990] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118484,7 +123058,7 @@ func (x *ListGlobalNetworkEndpointGroupsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use ListGlobalNetworkEndpointGroupsRequest.ProtoReflect.Descriptor instead. func (*ListGlobalNetworkEndpointGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{944} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{990} } func (x *ListGlobalNetworkEndpointGroupsRequest) GetFilter() string { @@ -118628,7 +123202,7 @@ type ListGlobalOperationsRequest struct { func (x *ListGlobalOperationsRequest) Reset() { *x = ListGlobalOperationsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[945] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[991] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118640,7 +123214,7 @@ func (x *ListGlobalOperationsRequest) String() string { func (*ListGlobalOperationsRequest) ProtoMessage() {} func (x *ListGlobalOperationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[945] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[991] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118653,7 +123227,7 @@ func (x *ListGlobalOperationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListGlobalOperationsRequest.ProtoReflect.Descriptor instead. func (*ListGlobalOperationsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{945} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{991} } func (x *ListGlobalOperationsRequest) GetFilter() string { @@ -118797,7 +123371,7 @@ type ListGlobalOrganizationOperationsRequest struct { func (x *ListGlobalOrganizationOperationsRequest) Reset() { *x = ListGlobalOrganizationOperationsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[946] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[992] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118809,7 +123383,7 @@ func (x *ListGlobalOrganizationOperationsRequest) String() string { func (*ListGlobalOrganizationOperationsRequest) ProtoMessage() {} func (x *ListGlobalOrganizationOperationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[946] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[992] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118822,7 +123396,7 @@ func (x *ListGlobalOrganizationOperationsRequest) ProtoReflect() protoreflect.Me // Deprecated: Use ListGlobalOrganizationOperationsRequest.ProtoReflect.Descriptor instead. func (*ListGlobalOrganizationOperationsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{946} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{992} } func (x *ListGlobalOrganizationOperationsRequest) GetFilter() string { @@ -118966,7 +123540,7 @@ type ListGlobalPublicDelegatedPrefixesRequest struct { func (x *ListGlobalPublicDelegatedPrefixesRequest) Reset() { *x = ListGlobalPublicDelegatedPrefixesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[947] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[993] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118978,7 +123552,7 @@ func (x *ListGlobalPublicDelegatedPrefixesRequest) String() string { func (*ListGlobalPublicDelegatedPrefixesRequest) ProtoMessage() {} func (x *ListGlobalPublicDelegatedPrefixesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[947] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[993] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118991,7 +123565,7 @@ func (x *ListGlobalPublicDelegatedPrefixesRequest) ProtoReflect() protoreflect.M // Deprecated: Use ListGlobalPublicDelegatedPrefixesRequest.ProtoReflect.Descriptor instead. func (*ListGlobalPublicDelegatedPrefixesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{947} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{993} } func (x *ListGlobalPublicDelegatedPrefixesRequest) GetFilter() string { @@ -119135,7 +123709,7 @@ type ListHealthChecksRequest struct { func (x *ListHealthChecksRequest) Reset() { *x = ListHealthChecksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[948] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[994] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119147,7 +123721,7 @@ func (x *ListHealthChecksRequest) String() string { func (*ListHealthChecksRequest) ProtoMessage() {} func (x *ListHealthChecksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[948] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[994] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -119160,7 +123734,7 @@ func (x *ListHealthChecksRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListHealthChecksRequest.ProtoReflect.Descriptor instead. func (*ListHealthChecksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{948} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{994} } func (x *ListHealthChecksRequest) GetFilter() string { @@ -119304,7 +123878,7 @@ type ListImagesRequest struct { func (x *ListImagesRequest) Reset() { *x = ListImagesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[949] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[995] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119316,7 +123890,7 @@ func (x *ListImagesRequest) String() string { func (*ListImagesRequest) ProtoMessage() {} func (x *ListImagesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[949] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[995] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -119329,7 +123903,7 @@ func (x *ListImagesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListImagesRequest.ProtoReflect.Descriptor instead. func (*ListImagesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{949} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{995} } func (x *ListImagesRequest) GetFilter() string { @@ -119478,7 +124052,7 @@ type ListInstanceGroupManagerResizeRequestsRequest struct { func (x *ListInstanceGroupManagerResizeRequestsRequest) Reset() { *x = ListInstanceGroupManagerResizeRequestsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[950] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[996] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119490,7 +124064,7 @@ func (x *ListInstanceGroupManagerResizeRequestsRequest) String() string { func (*ListInstanceGroupManagerResizeRequestsRequest) ProtoMessage() {} func (x *ListInstanceGroupManagerResizeRequestsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[950] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[996] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -119503,7 +124077,7 @@ func (x *ListInstanceGroupManagerResizeRequestsRequest) ProtoReflect() protorefl // Deprecated: Use ListInstanceGroupManagerResizeRequestsRequest.ProtoReflect.Descriptor instead. func (*ListInstanceGroupManagerResizeRequestsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{950} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{996} } func (x *ListInstanceGroupManagerResizeRequestsRequest) GetFilter() string { @@ -119664,7 +124238,7 @@ type ListInstanceGroupManagersRequest struct { func (x *ListInstanceGroupManagersRequest) Reset() { *x = ListInstanceGroupManagersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[951] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[997] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119676,7 +124250,7 @@ func (x *ListInstanceGroupManagersRequest) String() string { func (*ListInstanceGroupManagersRequest) ProtoMessage() {} func (x *ListInstanceGroupManagersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[951] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[997] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -119689,7 +124263,7 @@ func (x *ListInstanceGroupManagersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInstanceGroupManagersRequest.ProtoReflect.Descriptor instead. func (*ListInstanceGroupManagersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{951} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{997} } func (x *ListInstanceGroupManagersRequest) GetFilter() string { @@ -119843,7 +124417,7 @@ type ListInstanceGroupsRequest struct { func (x *ListInstanceGroupsRequest) Reset() { *x = ListInstanceGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[952] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[998] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119855,7 +124429,7 @@ func (x *ListInstanceGroupsRequest) String() string { func (*ListInstanceGroupsRequest) ProtoMessage() {} func (x *ListInstanceGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[952] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[998] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -119868,7 +124442,7 @@ func (x *ListInstanceGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInstanceGroupsRequest.ProtoReflect.Descriptor instead. func (*ListInstanceGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{952} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{998} } func (x *ListInstanceGroupsRequest) GetFilter() string { @@ -120019,7 +124593,7 @@ type ListInstanceTemplatesRequest struct { func (x *ListInstanceTemplatesRequest) Reset() { *x = ListInstanceTemplatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[953] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[999] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120031,7 +124605,7 @@ func (x *ListInstanceTemplatesRequest) String() string { func (*ListInstanceTemplatesRequest) ProtoMessage() {} func (x *ListInstanceTemplatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[953] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[999] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -120044,7 +124618,7 @@ func (x *ListInstanceTemplatesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInstanceTemplatesRequest.ProtoReflect.Descriptor instead. func (*ListInstanceTemplatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{953} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{999} } func (x *ListInstanceTemplatesRequest) GetFilter() string { @@ -120196,7 +124770,7 @@ type ListInstancesInstanceGroupsRequest struct { func (x *ListInstancesInstanceGroupsRequest) Reset() { *x = ListInstancesInstanceGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[954] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1000] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120208,7 +124782,7 @@ func (x *ListInstancesInstanceGroupsRequest) String() string { func (*ListInstancesInstanceGroupsRequest) ProtoMessage() {} func (x *ListInstancesInstanceGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[954] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1000] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -120221,7 +124795,7 @@ func (x *ListInstancesInstanceGroupsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ListInstancesInstanceGroupsRequest.ProtoReflect.Descriptor instead. func (*ListInstancesInstanceGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{954} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1000} } func (x *ListInstancesInstanceGroupsRequest) GetFilter() string { @@ -120393,7 +124967,7 @@ type ListInstancesRegionInstanceGroupsRequest struct { func (x *ListInstancesRegionInstanceGroupsRequest) Reset() { *x = ListInstancesRegionInstanceGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[955] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1001] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120405,7 +124979,7 @@ func (x *ListInstancesRegionInstanceGroupsRequest) String() string { func (*ListInstancesRegionInstanceGroupsRequest) ProtoMessage() {} func (x *ListInstancesRegionInstanceGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[955] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1001] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -120418,7 +124992,7 @@ func (x *ListInstancesRegionInstanceGroupsRequest) ProtoReflect() protoreflect.M // Deprecated: Use ListInstancesRegionInstanceGroupsRequest.ProtoReflect.Descriptor instead. func (*ListInstancesRegionInstanceGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{955} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1001} } func (x *ListInstancesRegionInstanceGroupsRequest) GetFilter() string { @@ -120585,7 +125159,7 @@ type ListInstancesRequest struct { func (x *ListInstancesRequest) Reset() { *x = ListInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[956] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1002] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120597,7 +125171,7 @@ func (x *ListInstancesRequest) String() string { func (*ListInstancesRequest) ProtoMessage() {} func (x *ListInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[956] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1002] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -120610,7 +125184,7 @@ func (x *ListInstancesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInstancesRequest.ProtoReflect.Descriptor instead. func (*ListInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{956} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1002} } func (x *ListInstancesRequest) GetFilter() string { @@ -120662,8 +125236,299 @@ func (x *ListInstancesRequest) GetZone() string { return "" } -// A request message for InstantSnapshots.List. See the method description for details. -type ListInstantSnapshotsRequest struct { +// Contains a list of InstantSnapshotGroup resources. +type ListInstantSnapshotGroups struct { + state protoimpl.MessageState `protogen:"open.v1"` + Etag *string `protobuf:"bytes,3123477,opt,name=etag,proto3,oneof" json:"etag,omitempty"` + // [Output Only] Unique identifier for the resource; defined by the server. + Id *string `protobuf:"bytes,3355,opt,name=id,proto3,oneof" json:"id,omitempty"` + // A list of InstantSnapshotGroup resources. + Items []*InstantSnapshotGroup `protobuf:"bytes,100526016,rep,name=items,proto3" json:"items,omitempty"` + // Output only. Type of resource. + Kind *string `protobuf:"bytes,3292052,opt,name=kind,proto3,oneof" json:"kind,omitempty"` + // [Output Only] This token allows you to get the next page of results for + // list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for + // the query parameter pageToken in the next list request. + // Subsequent list requests will have their own nextPageToken to + // continue paging through the results. + NextPageToken *string `protobuf:"bytes,79797525,opt,name=next_page_token,json=nextPageToken,proto3,oneof" json:"next_page_token,omitempty"` + // Output only. [Output Only] Server-defined URL for this resource. + SelfLink *string `protobuf:"bytes,456214797,opt,name=self_link,json=selfLink,proto3,oneof" json:"self_link,omitempty"` + // Output only. [Output Only] Unreachable resources. + // end_interface: MixerListResponseWithEtagBuilder + Unreachables []string `protobuf:"bytes,243372063,rep,name=unreachables,proto3" json:"unreachables,omitempty"` + // [Output Only] Informational warning message. + Warning *Warning `protobuf:"bytes,50704284,opt,name=warning,proto3,oneof" json:"warning,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListInstantSnapshotGroups) Reset() { + *x = ListInstantSnapshotGroups{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1003] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListInstantSnapshotGroups) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListInstantSnapshotGroups) ProtoMessage() {} + +func (x *ListInstantSnapshotGroups) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1003] + 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 ListInstantSnapshotGroups.ProtoReflect.Descriptor instead. +func (*ListInstantSnapshotGroups) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1003} +} + +func (x *ListInstantSnapshotGroups) GetEtag() string { + if x != nil && x.Etag != nil { + return *x.Etag + } + return "" +} + +func (x *ListInstantSnapshotGroups) GetId() string { + if x != nil && x.Id != nil { + return *x.Id + } + return "" +} + +func (x *ListInstantSnapshotGroups) GetItems() []*InstantSnapshotGroup { + if x != nil { + return x.Items + } + return nil +} + +func (x *ListInstantSnapshotGroups) GetKind() string { + if x != nil && x.Kind != nil { + return *x.Kind + } + return "" +} + +func (x *ListInstantSnapshotGroups) GetNextPageToken() string { + if x != nil && x.NextPageToken != nil { + return *x.NextPageToken + } + return "" +} + +func (x *ListInstantSnapshotGroups) GetSelfLink() string { + if x != nil && x.SelfLink != nil { + return *x.SelfLink + } + return "" +} + +func (x *ListInstantSnapshotGroups) GetUnreachables() []string { + if x != nil { + return x.Unreachables + } + return nil +} + +func (x *ListInstantSnapshotGroups) GetWarning() *Warning { + if x != nil { + return x.Warning + } + return nil +} + +// A request message for InstantSnapshotGroups.List. See the method description for details. +type ListInstantSnapshotGroupsRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // A filter expression that filters resources listed in the response. Most + // Compute resources support two types of filter expressions: + // expressions that support regular expressions and expressions that follow + // API improvement proposal AIP-160. + // These two types of filter expressions cannot be mixed in one request. + // + // If you want to use AIP-160, your expression must specify the field name, an + // operator, and the value that you want to use for filtering. The value + // must be a string, a number, or a boolean. The operator + // must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. + // + // For example, if you are filtering Compute Engine instances, you can + // exclude instances named `example-instance` by specifying + // `name != example-instance`. + // + // The `:*` comparison can be used to test whether a key has been defined. + // For example, to find all objects with `owner` label use: + // ``` + // labels.owner:* + // ``` + // + // You can also filter nested fields. For example, you could specify + // `scheduling.automaticRestart = false` to include instances only + // if they are not scheduled for automatic restarts. You can use filtering + // on nested fields to filter based onresource labels. + // + // To filter on multiple expressions, provide each separate expression within + // parentheses. For example: + // ``` + // (scheduling.automaticRestart = true) + // (cpuPlatform = "Intel Skylake") + // ``` + // By default, each expression is an `AND` expression. However, you + // can include `AND` and `OR` expressions explicitly. + // For example: + // ``` + // (cpuPlatform = "Intel Skylake") OR + // (cpuPlatform = "Intel Broadwell") AND + // (scheduling.automaticRestart = true) + // ``` + // + // If you want to use a regular expression, use the `eq` (equal) or `ne` + // (not equal) operator against a single un-parenthesized expression with or + // without quotes or against multiple parenthesized expressions. Examples: + // + // `fieldname eq unquoted literal` + // `fieldname eq 'single quoted literal'` + // `fieldname eq "double quoted literal"` + // `(fieldname1 eq literal) (fieldname2 ne "literal")` + // + // The literal value is interpreted as a regular expression using GoogleRE2 library syntax. + // The literal value must match the entire field. + // + // For example, to filter for instances that do not end with name "instance", + // you would use `name ne .*instance`. + // + // You cannot combine constraints on multiple fields using regular + // expressions. + Filter *string `protobuf:"bytes,336120696,opt,name=filter,proto3,oneof" json:"filter,omitempty"` + // The maximum number of results per page that should be returned. + // If the number of available results is larger than `maxResults`, + // Compute Engine returns a `nextPageToken` that can be used to get + // the next page of results in subsequent list requests. Acceptable values are + // `0` to `500`, inclusive. (Default: `500`) + MaxResults *uint32 `protobuf:"varint,54715419,opt,name=max_results,json=maxResults,proto3,oneof" json:"max_results,omitempty"` + // Sorts list results by a certain order. By default, results + // are returned in alphanumerical order based on the resource name. + // + // You can also sort results in descending order based on the creation + // timestamp using `orderBy="creationTimestamp desc"`. This sorts + // results based on the `creationTimestamp` field in + // reverse chronological order (newest result first). Use this to sort + // resources like operations so that the newest operation is returned first. + // + // Currently, only sorting by `name` or + // `creationTimestamp desc` is supported. + OrderBy *string `protobuf:"bytes,160562920,opt,name=order_by,json=orderBy,proto3,oneof" json:"order_by,omitempty"` + // Specifies a page token to use. Set `pageToken` to the + // `nextPageToken` returned by a previous list request to get + // the next page of results. + PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Opt-in for partial success behavior which provides partial results in case + // of failure. The default value is false. + // + // For example, when partial success behavior is enabled, aggregatedList for a + // single zone scope either returns all resources in the zone or no resources, + // with an error code. + ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` + // The name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListInstantSnapshotGroupsRequest) Reset() { + *x = ListInstantSnapshotGroupsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1004] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListInstantSnapshotGroupsRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListInstantSnapshotGroupsRequest) ProtoMessage() {} + +func (x *ListInstantSnapshotGroupsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1004] + 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 ListInstantSnapshotGroupsRequest.ProtoReflect.Descriptor instead. +func (*ListInstantSnapshotGroupsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1004} +} + +func (x *ListInstantSnapshotGroupsRequest) GetFilter() string { + if x != nil && x.Filter != nil { + return *x.Filter + } + return "" +} + +func (x *ListInstantSnapshotGroupsRequest) GetMaxResults() uint32 { + if x != nil && x.MaxResults != nil { + return *x.MaxResults + } + return 0 +} + +func (x *ListInstantSnapshotGroupsRequest) GetOrderBy() string { + if x != nil && x.OrderBy != nil { + return *x.OrderBy + } + return "" +} + +func (x *ListInstantSnapshotGroupsRequest) GetPageToken() string { + if x != nil && x.PageToken != nil { + return *x.PageToken + } + return "" +} + +func (x *ListInstantSnapshotGroupsRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *ListInstantSnapshotGroupsRequest) GetReturnPartialSuccess() bool { + if x != nil && x.ReturnPartialSuccess != nil { + return *x.ReturnPartialSuccess + } + return false +} + +func (x *ListInstantSnapshotGroupsRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + +// A request message for InstantSnapshots.List. See the method description for details. +type ListInstantSnapshotsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -120763,7 +125628,7 @@ type ListInstantSnapshotsRequest struct { func (x *ListInstantSnapshotsRequest) Reset() { *x = ListInstantSnapshotsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[957] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1005] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120775,7 +125640,7 @@ func (x *ListInstantSnapshotsRequest) String() string { func (*ListInstantSnapshotsRequest) ProtoMessage() {} func (x *ListInstantSnapshotsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[957] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1005] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -120788,7 +125653,7 @@ func (x *ListInstantSnapshotsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInstantSnapshotsRequest.ProtoReflect.Descriptor instead. func (*ListInstantSnapshotsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{957} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1005} } func (x *ListInstantSnapshotsRequest) GetFilter() string { @@ -120939,7 +125804,7 @@ type ListInterconnectAttachmentGroupsRequest struct { func (x *ListInterconnectAttachmentGroupsRequest) Reset() { *x = ListInterconnectAttachmentGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[958] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1006] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120951,7 +125816,7 @@ func (x *ListInterconnectAttachmentGroupsRequest) String() string { func (*ListInterconnectAttachmentGroupsRequest) ProtoMessage() {} func (x *ListInterconnectAttachmentGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[958] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1006] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -120964,7 +125829,7 @@ func (x *ListInterconnectAttachmentGroupsRequest) ProtoReflect() protoreflect.Me // Deprecated: Use ListInterconnectAttachmentGroupsRequest.ProtoReflect.Descriptor instead. func (*ListInterconnectAttachmentGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{958} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1006} } func (x *ListInterconnectAttachmentGroupsRequest) GetFilter() string { @@ -121110,7 +125975,7 @@ type ListInterconnectAttachmentsRequest struct { func (x *ListInterconnectAttachmentsRequest) Reset() { *x = ListInterconnectAttachmentsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[959] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1007] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121122,7 +125987,7 @@ func (x *ListInterconnectAttachmentsRequest) String() string { func (*ListInterconnectAttachmentsRequest) ProtoMessage() {} func (x *ListInterconnectAttachmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[959] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1007] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -121135,7 +126000,7 @@ func (x *ListInterconnectAttachmentsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ListInterconnectAttachmentsRequest.ProtoReflect.Descriptor instead. func (*ListInterconnectAttachmentsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{959} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1007} } func (x *ListInterconnectAttachmentsRequest) GetFilter() string { @@ -121286,7 +126151,7 @@ type ListInterconnectGroupsRequest struct { func (x *ListInterconnectGroupsRequest) Reset() { *x = ListInterconnectGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[960] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1008] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121298,7 +126163,7 @@ func (x *ListInterconnectGroupsRequest) String() string { func (*ListInterconnectGroupsRequest) ProtoMessage() {} func (x *ListInterconnectGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[960] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1008] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -121311,7 +126176,7 @@ func (x *ListInterconnectGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInterconnectGroupsRequest.ProtoReflect.Descriptor instead. func (*ListInterconnectGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{960} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1008} } func (x *ListInterconnectGroupsRequest) GetFilter() string { @@ -121455,7 +126320,7 @@ type ListInterconnectLocationsRequest struct { func (x *ListInterconnectLocationsRequest) Reset() { *x = ListInterconnectLocationsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[961] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1009] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121467,7 +126332,7 @@ func (x *ListInterconnectLocationsRequest) String() string { func (*ListInterconnectLocationsRequest) ProtoMessage() {} func (x *ListInterconnectLocationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[961] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1009] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -121480,7 +126345,7 @@ func (x *ListInterconnectLocationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInterconnectLocationsRequest.ProtoReflect.Descriptor instead. func (*ListInterconnectLocationsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{961} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1009} } func (x *ListInterconnectLocationsRequest) GetFilter() string { @@ -121624,7 +126489,7 @@ type ListInterconnectRemoteLocationsRequest struct { func (x *ListInterconnectRemoteLocationsRequest) Reset() { *x = ListInterconnectRemoteLocationsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[962] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1010] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121636,7 +126501,7 @@ func (x *ListInterconnectRemoteLocationsRequest) String() string { func (*ListInterconnectRemoteLocationsRequest) ProtoMessage() {} func (x *ListInterconnectRemoteLocationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[962] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1010] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -121649,7 +126514,7 @@ func (x *ListInterconnectRemoteLocationsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use ListInterconnectRemoteLocationsRequest.ProtoReflect.Descriptor instead. func (*ListInterconnectRemoteLocationsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{962} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1010} } func (x *ListInterconnectRemoteLocationsRequest) GetFilter() string { @@ -121793,7 +126658,7 @@ type ListInterconnectsRequest struct { func (x *ListInterconnectsRequest) Reset() { *x = ListInterconnectsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[963] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1011] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121805,7 +126670,7 @@ func (x *ListInterconnectsRequest) String() string { func (*ListInterconnectsRequest) ProtoMessage() {} func (x *ListInterconnectsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[963] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1011] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -121818,7 +126683,7 @@ func (x *ListInterconnectsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInterconnectsRequest.ProtoReflect.Descriptor instead. func (*ListInterconnectsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{963} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1011} } func (x *ListInterconnectsRequest) GetFilter() string { @@ -121962,7 +126827,7 @@ type ListLicensesRequest struct { func (x *ListLicensesRequest) Reset() { *x = ListLicensesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[964] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1012] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121974,7 +126839,7 @@ func (x *ListLicensesRequest) String() string { func (*ListLicensesRequest) ProtoMessage() {} func (x *ListLicensesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[964] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1012] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -121987,7 +126852,7 @@ func (x *ListLicensesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListLicensesRequest.ProtoReflect.Descriptor instead. func (*ListLicensesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{964} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1012} } func (x *ListLicensesRequest) GetFilter() string { @@ -122131,7 +126996,7 @@ type ListMachineImagesRequest struct { func (x *ListMachineImagesRequest) Reset() { *x = ListMachineImagesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[965] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1013] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122143,7 +127008,7 @@ func (x *ListMachineImagesRequest) String() string { func (*ListMachineImagesRequest) ProtoMessage() {} func (x *ListMachineImagesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[965] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1013] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122156,7 +127021,7 @@ func (x *ListMachineImagesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListMachineImagesRequest.ProtoReflect.Descriptor instead. func (*ListMachineImagesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{965} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1013} } func (x *ListMachineImagesRequest) GetFilter() string { @@ -122302,7 +127167,7 @@ type ListMachineTypesRequest struct { func (x *ListMachineTypesRequest) Reset() { *x = ListMachineTypesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[966] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1014] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122314,7 +127179,7 @@ func (x *ListMachineTypesRequest) String() string { func (*ListMachineTypesRequest) ProtoMessage() {} func (x *ListMachineTypesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[966] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1014] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122327,7 +127192,7 @@ func (x *ListMachineTypesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListMachineTypesRequest.ProtoReflect.Descriptor instead. func (*ListMachineTypesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{966} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1014} } func (x *ListMachineTypesRequest) GetFilter() string { @@ -122483,7 +127348,7 @@ type ListManagedInstancesInstanceGroupManagersRequest struct { func (x *ListManagedInstancesInstanceGroupManagersRequest) Reset() { *x = ListManagedInstancesInstanceGroupManagersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[967] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1015] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122495,7 +127360,7 @@ func (x *ListManagedInstancesInstanceGroupManagersRequest) String() string { func (*ListManagedInstancesInstanceGroupManagersRequest) ProtoMessage() {} func (x *ListManagedInstancesInstanceGroupManagersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[967] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1015] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122508,7 +127373,7 @@ func (x *ListManagedInstancesInstanceGroupManagersRequest) ProtoReflect() protor // Deprecated: Use ListManagedInstancesInstanceGroupManagersRequest.ProtoReflect.Descriptor instead. func (*ListManagedInstancesInstanceGroupManagersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{967} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1015} } func (x *ListManagedInstancesInstanceGroupManagersRequest) GetFilter() string { @@ -122670,7 +127535,7 @@ type ListManagedInstancesRegionInstanceGroupManagersRequest struct { func (x *ListManagedInstancesRegionInstanceGroupManagersRequest) Reset() { *x = ListManagedInstancesRegionInstanceGroupManagersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[968] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1016] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122682,7 +127547,7 @@ func (x *ListManagedInstancesRegionInstanceGroupManagersRequest) String() string func (*ListManagedInstancesRegionInstanceGroupManagersRequest) ProtoMessage() {} func (x *ListManagedInstancesRegionInstanceGroupManagersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[968] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1016] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122695,7 +127560,7 @@ func (x *ListManagedInstancesRegionInstanceGroupManagersRequest) ProtoReflect() // Deprecated: Use ListManagedInstancesRegionInstanceGroupManagersRequest.ProtoReflect.Descriptor instead. func (*ListManagedInstancesRegionInstanceGroupManagersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{968} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1016} } func (x *ListManagedInstancesRegionInstanceGroupManagersRequest) GetFilter() string { @@ -122855,7 +127720,7 @@ type ListNetworkAttachmentsRequest struct { func (x *ListNetworkAttachmentsRequest) Reset() { *x = ListNetworkAttachmentsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[969] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1017] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122867,7 +127732,7 @@ func (x *ListNetworkAttachmentsRequest) String() string { func (*ListNetworkAttachmentsRequest) ProtoMessage() {} func (x *ListNetworkAttachmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[969] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1017] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122880,7 +127745,7 @@ func (x *ListNetworkAttachmentsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNetworkAttachmentsRequest.ProtoReflect.Descriptor instead. func (*ListNetworkAttachmentsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{969} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1017} } func (x *ListNetworkAttachmentsRequest) GetFilter() string { @@ -123034,7 +127899,7 @@ type ListNetworkEndpointGroupsRequest struct { func (x *ListNetworkEndpointGroupsRequest) Reset() { *x = ListNetworkEndpointGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[970] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1018] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123046,7 +127911,7 @@ func (x *ListNetworkEndpointGroupsRequest) String() string { func (*ListNetworkEndpointGroupsRequest) ProtoMessage() {} func (x *ListNetworkEndpointGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[970] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1018] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123059,7 +127924,7 @@ func (x *ListNetworkEndpointGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNetworkEndpointGroupsRequest.ProtoReflect.Descriptor instead. func (*ListNetworkEndpointGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{970} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1018} } func (x *ListNetworkEndpointGroupsRequest) GetFilter() string { @@ -123213,7 +128078,7 @@ type ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest struct { func (x *ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest) Reset() { *x = ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[971] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1019] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123225,7 +128090,7 @@ func (x *ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest) String() string func (*ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest) ProtoMessage() {} func (x *ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[971] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1019] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123238,7 +128103,7 @@ func (x *ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest) ProtoReflect() // Deprecated: Use ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest.ProtoReflect.Descriptor instead. func (*ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{971} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1019} } func (x *ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest) GetFilter() string { @@ -123397,7 +128262,7 @@ type ListNetworkEndpointsNetworkEndpointGroupsRequest struct { func (x *ListNetworkEndpointsNetworkEndpointGroupsRequest) Reset() { *x = ListNetworkEndpointsNetworkEndpointGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[972] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1020] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123409,7 +128274,7 @@ func (x *ListNetworkEndpointsNetworkEndpointGroupsRequest) String() string { func (*ListNetworkEndpointsNetworkEndpointGroupsRequest) ProtoMessage() {} func (x *ListNetworkEndpointsNetworkEndpointGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[972] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1020] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123422,7 +128287,7 @@ func (x *ListNetworkEndpointsNetworkEndpointGroupsRequest) ProtoReflect() protor // Deprecated: Use ListNetworkEndpointsNetworkEndpointGroupsRequest.ProtoReflect.Descriptor instead. func (*ListNetworkEndpointsNetworkEndpointGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{972} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1020} } func (x *ListNetworkEndpointsNetworkEndpointGroupsRequest) GetFilter() string { @@ -123593,7 +128458,7 @@ type ListNetworkEndpointsRegionNetworkEndpointGroupsRequest struct { func (x *ListNetworkEndpointsRegionNetworkEndpointGroupsRequest) Reset() { *x = ListNetworkEndpointsRegionNetworkEndpointGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[973] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1021] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123605,7 +128470,7 @@ func (x *ListNetworkEndpointsRegionNetworkEndpointGroupsRequest) String() string func (*ListNetworkEndpointsRegionNetworkEndpointGroupsRequest) ProtoMessage() {} func (x *ListNetworkEndpointsRegionNetworkEndpointGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[973] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1021] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123618,7 +128483,7 @@ func (x *ListNetworkEndpointsRegionNetworkEndpointGroupsRequest) ProtoReflect() // Deprecated: Use ListNetworkEndpointsRegionNetworkEndpointGroupsRequest.ProtoReflect.Descriptor instead. func (*ListNetworkEndpointsRegionNetworkEndpointGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{973} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1021} } func (x *ListNetworkEndpointsRegionNetworkEndpointGroupsRequest) GetFilter() string { @@ -123776,7 +128641,7 @@ type ListNetworkFirewallPoliciesRequest struct { func (x *ListNetworkFirewallPoliciesRequest) Reset() { *x = ListNetworkFirewallPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[974] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1022] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123788,7 +128653,7 @@ func (x *ListNetworkFirewallPoliciesRequest) String() string { func (*ListNetworkFirewallPoliciesRequest) ProtoMessage() {} func (x *ListNetworkFirewallPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[974] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1022] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123801,7 +128666,7 @@ func (x *ListNetworkFirewallPoliciesRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ListNetworkFirewallPoliciesRequest.ProtoReflect.Descriptor instead. func (*ListNetworkFirewallPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{974} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1022} } func (x *ListNetworkFirewallPoliciesRequest) GetFilter() string { @@ -123945,7 +128810,7 @@ type ListNetworkProfilesRequest struct { func (x *ListNetworkProfilesRequest) Reset() { *x = ListNetworkProfilesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[975] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1023] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123957,7 +128822,7 @@ func (x *ListNetworkProfilesRequest) String() string { func (*ListNetworkProfilesRequest) ProtoMessage() {} func (x *ListNetworkProfilesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[975] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1023] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123970,7 +128835,7 @@ func (x *ListNetworkProfilesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNetworkProfilesRequest.ProtoReflect.Descriptor instead. func (*ListNetworkProfilesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{975} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1023} } func (x *ListNetworkProfilesRequest) GetFilter() string { @@ -124114,7 +128979,7 @@ type ListNetworksRequest struct { func (x *ListNetworksRequest) Reset() { *x = ListNetworksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[976] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1024] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -124126,7 +128991,7 @@ func (x *ListNetworksRequest) String() string { func (*ListNetworksRequest) ProtoMessage() {} func (x *ListNetworksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[976] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1024] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -124139,7 +129004,7 @@ func (x *ListNetworksRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNetworksRequest.ProtoReflect.Descriptor instead. func (*ListNetworksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{976} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1024} } func (x *ListNetworksRequest) GetFilter() string { @@ -124285,7 +129150,7 @@ type ListNodeGroupsRequest struct { func (x *ListNodeGroupsRequest) Reset() { *x = ListNodeGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[977] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1025] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -124297,7 +129162,7 @@ func (x *ListNodeGroupsRequest) String() string { func (*ListNodeGroupsRequest) ProtoMessage() {} func (x *ListNodeGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[977] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1025] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -124310,7 +129175,7 @@ func (x *ListNodeGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNodeGroupsRequest.ProtoReflect.Descriptor instead. func (*ListNodeGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{977} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1025} } func (x *ListNodeGroupsRequest) GetFilter() string { @@ -124463,7 +129328,7 @@ type ListNodeTemplatesRequest struct { func (x *ListNodeTemplatesRequest) Reset() { *x = ListNodeTemplatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[978] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1026] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -124475,7 +129340,7 @@ func (x *ListNodeTemplatesRequest) String() string { func (*ListNodeTemplatesRequest) ProtoMessage() {} func (x *ListNodeTemplatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[978] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1026] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -124488,7 +129353,7 @@ func (x *ListNodeTemplatesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNodeTemplatesRequest.ProtoReflect.Descriptor instead. func (*ListNodeTemplatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{978} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1026} } func (x *ListNodeTemplatesRequest) GetFilter() string { @@ -124641,7 +129506,7 @@ type ListNodeTypesRequest struct { func (x *ListNodeTypesRequest) Reset() { *x = ListNodeTypesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[979] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1027] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -124653,7 +129518,7 @@ func (x *ListNodeTypesRequest) String() string { func (*ListNodeTypesRequest) ProtoMessage() {} func (x *ListNodeTypesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[979] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1027] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -124666,7 +129531,7 @@ func (x *ListNodeTypesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNodeTypesRequest.ProtoReflect.Descriptor instead. func (*ListNodeTypesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{979} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1027} } func (x *ListNodeTypesRequest) GetFilter() string { @@ -124821,7 +129686,7 @@ type ListNodesNodeGroupsRequest struct { func (x *ListNodesNodeGroupsRequest) Reset() { *x = ListNodesNodeGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[980] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1028] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -124833,7 +129698,7 @@ func (x *ListNodesNodeGroupsRequest) String() string { func (*ListNodesNodeGroupsRequest) ProtoMessage() {} func (x *ListNodesNodeGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[980] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1028] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -124846,7 +129711,7 @@ func (x *ListNodesNodeGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListNodesNodeGroupsRequest.ProtoReflect.Descriptor instead. func (*ListNodesNodeGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{980} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1028} } func (x *ListNodesNodeGroupsRequest) GetFilter() string { @@ -125004,7 +129869,7 @@ type ListOrganizationSecurityPoliciesRequest struct { func (x *ListOrganizationSecurityPoliciesRequest) Reset() { *x = ListOrganizationSecurityPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[981] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1029] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125016,7 +129881,7 @@ func (x *ListOrganizationSecurityPoliciesRequest) String() string { func (*ListOrganizationSecurityPoliciesRequest) ProtoMessage() {} func (x *ListOrganizationSecurityPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[981] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1029] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -125029,7 +129894,7 @@ func (x *ListOrganizationSecurityPoliciesRequest) ProtoReflect() protoreflect.Me // Deprecated: Use ListOrganizationSecurityPoliciesRequest.ProtoReflect.Descriptor instead. func (*ListOrganizationSecurityPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{981} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1029} } func (x *ListOrganizationSecurityPoliciesRequest) GetFilter() string { @@ -125175,7 +130040,7 @@ type ListPacketMirroringsRequest struct { func (x *ListPacketMirroringsRequest) Reset() { *x = ListPacketMirroringsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[982] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1030] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125187,7 +130052,7 @@ func (x *ListPacketMirroringsRequest) String() string { func (*ListPacketMirroringsRequest) ProtoMessage() {} func (x *ListPacketMirroringsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[982] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1030] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -125200,7 +130065,7 @@ func (x *ListPacketMirroringsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPacketMirroringsRequest.ProtoReflect.Descriptor instead. func (*ListPacketMirroringsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{982} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1030} } func (x *ListPacketMirroringsRequest) GetFilter() string { @@ -125361,7 +130226,7 @@ type ListPeeringRoutesNetworksRequest struct { func (x *ListPeeringRoutesNetworksRequest) Reset() { *x = ListPeeringRoutesNetworksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[983] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1031] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125373,7 +130238,7 @@ func (x *ListPeeringRoutesNetworksRequest) String() string { func (*ListPeeringRoutesNetworksRequest) ProtoMessage() {} func (x *ListPeeringRoutesNetworksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[983] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1031] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -125386,7 +130251,7 @@ func (x *ListPeeringRoutesNetworksRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPeeringRoutesNetworksRequest.ProtoReflect.Descriptor instead. func (*ListPeeringRoutesNetworksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{983} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1031} } func (x *ListPeeringRoutesNetworksRequest) GetDirection() string { @@ -125564,7 +130429,7 @@ type ListPerInstanceConfigsInstanceGroupManagersRequest struct { func (x *ListPerInstanceConfigsInstanceGroupManagersRequest) Reset() { *x = ListPerInstanceConfigsInstanceGroupManagersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[984] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1032] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125576,7 +130441,7 @@ func (x *ListPerInstanceConfigsInstanceGroupManagersRequest) String() string { func (*ListPerInstanceConfigsInstanceGroupManagersRequest) ProtoMessage() {} func (x *ListPerInstanceConfigsInstanceGroupManagersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[984] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1032] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -125589,7 +130454,7 @@ func (x *ListPerInstanceConfigsInstanceGroupManagersRequest) ProtoReflect() prot // Deprecated: Use ListPerInstanceConfigsInstanceGroupManagersRequest.ProtoReflect.Descriptor instead. func (*ListPerInstanceConfigsInstanceGroupManagersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{984} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1032} } func (x *ListPerInstanceConfigsInstanceGroupManagersRequest) GetFilter() string { @@ -125751,7 +130616,7 @@ type ListPerInstanceConfigsRegionInstanceGroupManagersRequest struct { func (x *ListPerInstanceConfigsRegionInstanceGroupManagersRequest) Reset() { *x = ListPerInstanceConfigsRegionInstanceGroupManagersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[985] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1033] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125763,7 +130628,7 @@ func (x *ListPerInstanceConfigsRegionInstanceGroupManagersRequest) String() stri func (*ListPerInstanceConfigsRegionInstanceGroupManagersRequest) ProtoMessage() {} func (x *ListPerInstanceConfigsRegionInstanceGroupManagersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[985] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1033] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -125776,7 +130641,7 @@ func (x *ListPerInstanceConfigsRegionInstanceGroupManagersRequest) ProtoReflect( // Deprecated: Use ListPerInstanceConfigsRegionInstanceGroupManagersRequest.ProtoReflect.Descriptor instead. func (*ListPerInstanceConfigsRegionInstanceGroupManagersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{985} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1033} } func (x *ListPerInstanceConfigsRegionInstanceGroupManagersRequest) GetFilter() string { @@ -125934,7 +130799,7 @@ type ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest struct { func (x *ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest) Reset() { *x = ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[986] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1034] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125946,7 +130811,7 @@ func (x *ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest) Str func (*ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest) ProtoMessage() {} func (x *ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[986] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1034] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -125959,7 +130824,7 @@ func (x *ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest) Pro // Deprecated: Use ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest.ProtoReflect.Descriptor instead. func (*ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{986} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1034} } func (x *ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest) GetFilter() string { @@ -126103,7 +130968,7 @@ type ListPreconfiguredExpressionSetsSecurityPoliciesRequest struct { func (x *ListPreconfiguredExpressionSetsSecurityPoliciesRequest) Reset() { *x = ListPreconfiguredExpressionSetsSecurityPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[987] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1035] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126115,7 +130980,7 @@ func (x *ListPreconfiguredExpressionSetsSecurityPoliciesRequest) String() string func (*ListPreconfiguredExpressionSetsSecurityPoliciesRequest) ProtoMessage() {} func (x *ListPreconfiguredExpressionSetsSecurityPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[987] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1035] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126128,7 +130993,7 @@ func (x *ListPreconfiguredExpressionSetsSecurityPoliciesRequest) ProtoReflect() // Deprecated: Use ListPreconfiguredExpressionSetsSecurityPoliciesRequest.ProtoReflect.Descriptor instead. func (*ListPreconfiguredExpressionSetsSecurityPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{987} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1035} } func (x *ListPreconfiguredExpressionSetsSecurityPoliciesRequest) GetFilter() string { @@ -126272,7 +131137,7 @@ type ListPreviewFeaturesRequest struct { func (x *ListPreviewFeaturesRequest) Reset() { *x = ListPreviewFeaturesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[988] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1036] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126284,7 +131149,7 @@ func (x *ListPreviewFeaturesRequest) String() string { func (*ListPreviewFeaturesRequest) ProtoMessage() {} func (x *ListPreviewFeaturesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[988] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1036] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126297,7 +131162,7 @@ func (x *ListPreviewFeaturesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPreviewFeaturesRequest.ProtoReflect.Descriptor instead. func (*ListPreviewFeaturesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{988} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1036} } func (x *ListPreviewFeaturesRequest) GetFilter() string { @@ -126441,7 +131306,7 @@ type ListPublicAdvertisedPrefixesRequest struct { func (x *ListPublicAdvertisedPrefixesRequest) Reset() { *x = ListPublicAdvertisedPrefixesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[989] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1037] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126453,7 +131318,7 @@ func (x *ListPublicAdvertisedPrefixesRequest) String() string { func (*ListPublicAdvertisedPrefixesRequest) ProtoMessage() {} func (x *ListPublicAdvertisedPrefixesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[989] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1037] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126466,7 +131331,7 @@ func (x *ListPublicAdvertisedPrefixesRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use ListPublicAdvertisedPrefixesRequest.ProtoReflect.Descriptor instead. func (*ListPublicAdvertisedPrefixesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{989} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1037} } func (x *ListPublicAdvertisedPrefixesRequest) GetFilter() string { @@ -126612,7 +131477,7 @@ type ListPublicDelegatedPrefixesRequest struct { func (x *ListPublicDelegatedPrefixesRequest) Reset() { *x = ListPublicDelegatedPrefixesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[990] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1038] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126624,7 +131489,7 @@ func (x *ListPublicDelegatedPrefixesRequest) String() string { func (*ListPublicDelegatedPrefixesRequest) ProtoMessage() {} func (x *ListPublicDelegatedPrefixesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[990] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1038] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126637,7 +131502,7 @@ func (x *ListPublicDelegatedPrefixesRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ListPublicDelegatedPrefixesRequest.ProtoReflect.Descriptor instead. func (*ListPublicDelegatedPrefixesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{990} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1038} } func (x *ListPublicDelegatedPrefixesRequest) GetFilter() string { @@ -126793,7 +131658,7 @@ type ListReferrersInstancesRequest struct { func (x *ListReferrersInstancesRequest) Reset() { *x = ListReferrersInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[991] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1039] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126805,7 +131670,7 @@ func (x *ListReferrersInstancesRequest) String() string { func (*ListReferrersInstancesRequest) ProtoMessage() {} func (x *ListReferrersInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[991] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1039] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126818,7 +131683,7 @@ func (x *ListReferrersInstancesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListReferrersInstancesRequest.ProtoReflect.Descriptor instead. func (*ListReferrersInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{991} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1039} } func (x *ListReferrersInstancesRequest) GetFilter() string { @@ -126978,7 +131843,7 @@ type ListRegionAutoscalersRequest struct { func (x *ListRegionAutoscalersRequest) Reset() { *x = ListRegionAutoscalersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[992] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1040] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126990,7 +131855,7 @@ func (x *ListRegionAutoscalersRequest) String() string { func (*ListRegionAutoscalersRequest) ProtoMessage() {} func (x *ListRegionAutoscalersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[992] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1040] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127003,7 +131868,7 @@ func (x *ListRegionAutoscalersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListRegionAutoscalersRequest.ProtoReflect.Descriptor instead. func (*ListRegionAutoscalersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{992} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1040} } func (x *ListRegionAutoscalersRequest) GetFilter() string { @@ -127055,8 +131920,8 @@ func (x *ListRegionAutoscalersRequest) GetReturnPartialSuccess() bool { return false } -// A request message for RegionBackendServices.List. See the method description for details. -type ListRegionBackendServicesRequest struct { +// A request message for RegionBackendBuckets.List. See the method description for details. +type ListRegionBackendBucketsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -127141,7 +132006,7 @@ type ListRegionBackendServicesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. + // Name of the region of this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -127154,21 +132019,21 @@ type ListRegionBackendServicesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionBackendServicesRequest) Reset() { - *x = ListRegionBackendServicesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[993] +func (x *ListRegionBackendBucketsRequest) Reset() { + *x = ListRegionBackendBucketsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1041] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionBackendServicesRequest) String() string { +func (x *ListRegionBackendBucketsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionBackendServicesRequest) ProtoMessage() {} +func (*ListRegionBackendBucketsRequest) ProtoMessage() {} -func (x *ListRegionBackendServicesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[993] +func (x *ListRegionBackendBucketsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1041] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127179,62 +132044,62 @@ func (x *ListRegionBackendServicesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionBackendServicesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionBackendServicesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{993} +// Deprecated: Use ListRegionBackendBucketsRequest.ProtoReflect.Descriptor instead. +func (*ListRegionBackendBucketsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1041} } -func (x *ListRegionBackendServicesRequest) GetFilter() string { +func (x *ListRegionBackendBucketsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionBackendServicesRequest) GetMaxResults() uint32 { +func (x *ListRegionBackendBucketsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionBackendServicesRequest) GetOrderBy() string { +func (x *ListRegionBackendBucketsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionBackendServicesRequest) GetPageToken() string { +func (x *ListRegionBackendBucketsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionBackendServicesRequest) GetProject() string { +func (x *ListRegionBackendBucketsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionBackendServicesRequest) GetRegion() string { +func (x *ListRegionBackendBucketsRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionBackendServicesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionBackendBucketsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionCommitments.List. See the method description for details. -type ListRegionCommitmentsRequest struct { +// A request message for RegionBackendServices.List. See the method description for details. +type ListRegionBackendServicesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -127319,7 +132184,7 @@ type ListRegionCommitmentsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region for this request. + // Name of the region scoping this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -127332,21 +132197,21 @@ type ListRegionCommitmentsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionCommitmentsRequest) Reset() { - *x = ListRegionCommitmentsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[994] +func (x *ListRegionBackendServicesRequest) Reset() { + *x = ListRegionBackendServicesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1042] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionCommitmentsRequest) String() string { +func (x *ListRegionBackendServicesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionCommitmentsRequest) ProtoMessage() {} +func (*ListRegionBackendServicesRequest) ProtoMessage() {} -func (x *ListRegionCommitmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[994] +func (x *ListRegionBackendServicesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1042] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127357,62 +132222,62 @@ func (x *ListRegionCommitmentsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionCommitmentsRequest.ProtoReflect.Descriptor instead. -func (*ListRegionCommitmentsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{994} +// Deprecated: Use ListRegionBackendServicesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionBackendServicesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1042} } -func (x *ListRegionCommitmentsRequest) GetFilter() string { +func (x *ListRegionBackendServicesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionCommitmentsRequest) GetMaxResults() uint32 { +func (x *ListRegionBackendServicesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionCommitmentsRequest) GetOrderBy() string { +func (x *ListRegionBackendServicesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionCommitmentsRequest) GetPageToken() string { +func (x *ListRegionBackendServicesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionCommitmentsRequest) GetProject() string { +func (x *ListRegionBackendServicesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionCommitmentsRequest) GetRegion() string { +func (x *ListRegionBackendServicesRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionCommitmentsRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionBackendServicesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionCompositeHealthChecks.List. See the method description for details. -type ListRegionCompositeHealthChecksRequest struct { +// A request message for RegionCommitments.List. See the method description for details. +type ListRegionCommitmentsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -127497,7 +132362,7 @@ type ListRegionCompositeHealthChecksRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. + // Name of the region for this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -127510,21 +132375,21 @@ type ListRegionCompositeHealthChecksRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionCompositeHealthChecksRequest) Reset() { - *x = ListRegionCompositeHealthChecksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[995] +func (x *ListRegionCommitmentsRequest) Reset() { + *x = ListRegionCommitmentsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1043] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionCompositeHealthChecksRequest) String() string { +func (x *ListRegionCommitmentsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionCompositeHealthChecksRequest) ProtoMessage() {} +func (*ListRegionCommitmentsRequest) ProtoMessage() {} -func (x *ListRegionCompositeHealthChecksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[995] +func (x *ListRegionCommitmentsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1043] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127535,62 +132400,62 @@ func (x *ListRegionCompositeHealthChecksRequest) ProtoReflect() protoreflect.Mes return mi.MessageOf(x) } -// Deprecated: Use ListRegionCompositeHealthChecksRequest.ProtoReflect.Descriptor instead. -func (*ListRegionCompositeHealthChecksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{995} +// Deprecated: Use ListRegionCommitmentsRequest.ProtoReflect.Descriptor instead. +func (*ListRegionCommitmentsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1043} } -func (x *ListRegionCompositeHealthChecksRequest) GetFilter() string { +func (x *ListRegionCommitmentsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionCompositeHealthChecksRequest) GetMaxResults() uint32 { +func (x *ListRegionCommitmentsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionCompositeHealthChecksRequest) GetOrderBy() string { +func (x *ListRegionCommitmentsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionCompositeHealthChecksRequest) GetPageToken() string { +func (x *ListRegionCommitmentsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionCompositeHealthChecksRequest) GetProject() string { +func (x *ListRegionCommitmentsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionCompositeHealthChecksRequest) GetRegion() string { +func (x *ListRegionCommitmentsRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionCompositeHealthChecksRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionCommitmentsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionDiskTypes.List. See the method description for details. -type ListRegionDiskTypesRequest struct { +// A request message for RegionCompositeHealthChecks.List. See the method description for details. +type ListRegionCompositeHealthChecksRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -127675,7 +132540,7 @@ type ListRegionDiskTypesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // The name of the region for this request. + // Name of the region scoping this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -127688,21 +132553,21 @@ type ListRegionDiskTypesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionDiskTypesRequest) Reset() { - *x = ListRegionDiskTypesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[996] +func (x *ListRegionCompositeHealthChecksRequest) Reset() { + *x = ListRegionCompositeHealthChecksRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1044] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionDiskTypesRequest) String() string { +func (x *ListRegionCompositeHealthChecksRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionDiskTypesRequest) ProtoMessage() {} +func (*ListRegionCompositeHealthChecksRequest) ProtoMessage() {} -func (x *ListRegionDiskTypesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[996] +func (x *ListRegionCompositeHealthChecksRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1044] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127713,62 +132578,62 @@ func (x *ListRegionDiskTypesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionDiskTypesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionDiskTypesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{996} +// Deprecated: Use ListRegionCompositeHealthChecksRequest.ProtoReflect.Descriptor instead. +func (*ListRegionCompositeHealthChecksRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1044} } -func (x *ListRegionDiskTypesRequest) GetFilter() string { +func (x *ListRegionCompositeHealthChecksRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionDiskTypesRequest) GetMaxResults() uint32 { +func (x *ListRegionCompositeHealthChecksRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionDiskTypesRequest) GetOrderBy() string { +func (x *ListRegionCompositeHealthChecksRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionDiskTypesRequest) GetPageToken() string { +func (x *ListRegionCompositeHealthChecksRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionDiskTypesRequest) GetProject() string { +func (x *ListRegionCompositeHealthChecksRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionDiskTypesRequest) GetRegion() string { +func (x *ListRegionCompositeHealthChecksRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionDiskTypesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionCompositeHealthChecksRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionDisks.List. See the method description for details. -type ListRegionDisksRequest struct { +// A request message for RegionDiskTypes.List. See the method description for details. +type ListRegionDiskTypesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -127853,7 +132718,7 @@ type ListRegionDisksRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region for this request. + // The name of the region for this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -127866,21 +132731,21 @@ type ListRegionDisksRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionDisksRequest) Reset() { - *x = ListRegionDisksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[997] +func (x *ListRegionDiskTypesRequest) Reset() { + *x = ListRegionDiskTypesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1045] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionDisksRequest) String() string { +func (x *ListRegionDiskTypesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionDisksRequest) ProtoMessage() {} +func (*ListRegionDiskTypesRequest) ProtoMessage() {} -func (x *ListRegionDisksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[997] +func (x *ListRegionDiskTypesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1045] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127891,62 +132756,62 @@ func (x *ListRegionDisksRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionDisksRequest.ProtoReflect.Descriptor instead. -func (*ListRegionDisksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{997} +// Deprecated: Use ListRegionDiskTypesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionDiskTypesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1045} } -func (x *ListRegionDisksRequest) GetFilter() string { +func (x *ListRegionDiskTypesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionDisksRequest) GetMaxResults() uint32 { +func (x *ListRegionDiskTypesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionDisksRequest) GetOrderBy() string { +func (x *ListRegionDiskTypesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionDisksRequest) GetPageToken() string { +func (x *ListRegionDiskTypesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionDisksRequest) GetProject() string { +func (x *ListRegionDiskTypesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionDisksRequest) GetRegion() string { +func (x *ListRegionDiskTypesRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionDisksRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionDiskTypesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionHealthAggregationPolicies.List. See the method description for details. -type ListRegionHealthAggregationPoliciesRequest struct { +// A request message for RegionDisks.List. See the method description for details. +type ListRegionDisksRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -128031,7 +132896,7 @@ type ListRegionHealthAggregationPoliciesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. + // Name of the region for this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -128044,21 +132909,21 @@ type ListRegionHealthAggregationPoliciesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionHealthAggregationPoliciesRequest) Reset() { - *x = ListRegionHealthAggregationPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[998] +func (x *ListRegionDisksRequest) Reset() { + *x = ListRegionDisksRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1046] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionHealthAggregationPoliciesRequest) String() string { +func (x *ListRegionDisksRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionHealthAggregationPoliciesRequest) ProtoMessage() {} +func (*ListRegionDisksRequest) ProtoMessage() {} -func (x *ListRegionHealthAggregationPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[998] +func (x *ListRegionDisksRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1046] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128069,62 +132934,62 @@ func (x *ListRegionHealthAggregationPoliciesRequest) ProtoReflect() protoreflect return mi.MessageOf(x) } -// Deprecated: Use ListRegionHealthAggregationPoliciesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionHealthAggregationPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{998} +// Deprecated: Use ListRegionDisksRequest.ProtoReflect.Descriptor instead. +func (*ListRegionDisksRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1046} } -func (x *ListRegionHealthAggregationPoliciesRequest) GetFilter() string { +func (x *ListRegionDisksRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionHealthAggregationPoliciesRequest) GetMaxResults() uint32 { +func (x *ListRegionDisksRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionHealthAggregationPoliciesRequest) GetOrderBy() string { +func (x *ListRegionDisksRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionHealthAggregationPoliciesRequest) GetPageToken() string { +func (x *ListRegionDisksRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionHealthAggregationPoliciesRequest) GetProject() string { +func (x *ListRegionDisksRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionHealthAggregationPoliciesRequest) GetRegion() string { +func (x *ListRegionDisksRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionHealthAggregationPoliciesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionDisksRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionHealthCheckServices.List. See the method description for details. -type ListRegionHealthCheckServicesRequest struct { +// A request message for RegionHealthAggregationPolicies.List. See the method description for details. +type ListRegionHealthAggregationPoliciesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -128222,21 +133087,21 @@ type ListRegionHealthCheckServicesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionHealthCheckServicesRequest) Reset() { - *x = ListRegionHealthCheckServicesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[999] +func (x *ListRegionHealthAggregationPoliciesRequest) Reset() { + *x = ListRegionHealthAggregationPoliciesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1047] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionHealthCheckServicesRequest) String() string { +func (x *ListRegionHealthAggregationPoliciesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionHealthCheckServicesRequest) ProtoMessage() {} +func (*ListRegionHealthAggregationPoliciesRequest) ProtoMessage() {} -func (x *ListRegionHealthCheckServicesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[999] +func (x *ListRegionHealthAggregationPoliciesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1047] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128247,62 +133112,62 @@ func (x *ListRegionHealthCheckServicesRequest) ProtoReflect() protoreflect.Messa return mi.MessageOf(x) } -// Deprecated: Use ListRegionHealthCheckServicesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionHealthCheckServicesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{999} +// Deprecated: Use ListRegionHealthAggregationPoliciesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionHealthAggregationPoliciesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1047} } -func (x *ListRegionHealthCheckServicesRequest) GetFilter() string { +func (x *ListRegionHealthAggregationPoliciesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionHealthCheckServicesRequest) GetMaxResults() uint32 { +func (x *ListRegionHealthAggregationPoliciesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionHealthCheckServicesRequest) GetOrderBy() string { +func (x *ListRegionHealthAggregationPoliciesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionHealthCheckServicesRequest) GetPageToken() string { +func (x *ListRegionHealthAggregationPoliciesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionHealthCheckServicesRequest) GetProject() string { +func (x *ListRegionHealthAggregationPoliciesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionHealthCheckServicesRequest) GetRegion() string { +func (x *ListRegionHealthAggregationPoliciesRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionHealthCheckServicesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionHealthAggregationPoliciesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionHealthChecks.List. See the method description for details. -type ListRegionHealthChecksRequest struct { +// A request message for RegionHealthCheckServices.List. See the method description for details. +type ListRegionHealthCheckServicesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -128400,21 +133265,21 @@ type ListRegionHealthChecksRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionHealthChecksRequest) Reset() { - *x = ListRegionHealthChecksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1000] +func (x *ListRegionHealthCheckServicesRequest) Reset() { + *x = ListRegionHealthCheckServicesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1048] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionHealthChecksRequest) String() string { +func (x *ListRegionHealthCheckServicesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionHealthChecksRequest) ProtoMessage() {} +func (*ListRegionHealthCheckServicesRequest) ProtoMessage() {} -func (x *ListRegionHealthChecksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1000] +func (x *ListRegionHealthCheckServicesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1048] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128425,62 +133290,62 @@ func (x *ListRegionHealthChecksRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionHealthChecksRequest.ProtoReflect.Descriptor instead. -func (*ListRegionHealthChecksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1000} +// Deprecated: Use ListRegionHealthCheckServicesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionHealthCheckServicesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1048} } -func (x *ListRegionHealthChecksRequest) GetFilter() string { +func (x *ListRegionHealthCheckServicesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionHealthChecksRequest) GetMaxResults() uint32 { +func (x *ListRegionHealthCheckServicesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionHealthChecksRequest) GetOrderBy() string { +func (x *ListRegionHealthCheckServicesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionHealthChecksRequest) GetPageToken() string { +func (x *ListRegionHealthCheckServicesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionHealthChecksRequest) GetProject() string { +func (x *ListRegionHealthCheckServicesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionHealthChecksRequest) GetRegion() string { +func (x *ListRegionHealthCheckServicesRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionHealthChecksRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionHealthCheckServicesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionHealthSources.List. See the method description for details. -type ListRegionHealthSourcesRequest struct { +// A request message for RegionHealthChecks.List. See the method description for details. +type ListRegionHealthChecksRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -128578,21 +133443,21 @@ type ListRegionHealthSourcesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionHealthSourcesRequest) Reset() { - *x = ListRegionHealthSourcesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1001] +func (x *ListRegionHealthChecksRequest) Reset() { + *x = ListRegionHealthChecksRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1049] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionHealthSourcesRequest) String() string { +func (x *ListRegionHealthChecksRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionHealthSourcesRequest) ProtoMessage() {} +func (*ListRegionHealthChecksRequest) ProtoMessage() {} -func (x *ListRegionHealthSourcesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1001] +func (x *ListRegionHealthChecksRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1049] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128603,62 +133468,62 @@ func (x *ListRegionHealthSourcesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionHealthSourcesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionHealthSourcesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1001} +// Deprecated: Use ListRegionHealthChecksRequest.ProtoReflect.Descriptor instead. +func (*ListRegionHealthChecksRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1049} } -func (x *ListRegionHealthSourcesRequest) GetFilter() string { +func (x *ListRegionHealthChecksRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionHealthSourcesRequest) GetMaxResults() uint32 { +func (x *ListRegionHealthChecksRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionHealthSourcesRequest) GetOrderBy() string { +func (x *ListRegionHealthChecksRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionHealthSourcesRequest) GetPageToken() string { +func (x *ListRegionHealthChecksRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionHealthSourcesRequest) GetProject() string { +func (x *ListRegionHealthChecksRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionHealthSourcesRequest) GetRegion() string { +func (x *ListRegionHealthChecksRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionHealthSourcesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionHealthChecksRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionInstanceGroupManagers.List. See the method description for details. -type ListRegionInstanceGroupManagersRequest struct { +// A request message for RegionHealthSources.List. See the method description for details. +type ListRegionHealthSourcesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -128756,21 +133621,21 @@ type ListRegionInstanceGroupManagersRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionInstanceGroupManagersRequest) Reset() { - *x = ListRegionInstanceGroupManagersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1002] +func (x *ListRegionHealthSourcesRequest) Reset() { + *x = ListRegionHealthSourcesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1050] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionInstanceGroupManagersRequest) String() string { +func (x *ListRegionHealthSourcesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionInstanceGroupManagersRequest) ProtoMessage() {} +func (*ListRegionHealthSourcesRequest) ProtoMessage() {} -func (x *ListRegionInstanceGroupManagersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1002] +func (x *ListRegionHealthSourcesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1050] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128781,62 +133646,62 @@ func (x *ListRegionInstanceGroupManagersRequest) ProtoReflect() protoreflect.Mes return mi.MessageOf(x) } -// Deprecated: Use ListRegionInstanceGroupManagersRequest.ProtoReflect.Descriptor instead. -func (*ListRegionInstanceGroupManagersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1002} +// Deprecated: Use ListRegionHealthSourcesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionHealthSourcesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1050} } -func (x *ListRegionInstanceGroupManagersRequest) GetFilter() string { +func (x *ListRegionHealthSourcesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionInstanceGroupManagersRequest) GetMaxResults() uint32 { +func (x *ListRegionHealthSourcesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionInstanceGroupManagersRequest) GetOrderBy() string { +func (x *ListRegionHealthSourcesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionInstanceGroupManagersRequest) GetPageToken() string { +func (x *ListRegionHealthSourcesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionInstanceGroupManagersRequest) GetProject() string { +func (x *ListRegionHealthSourcesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionInstanceGroupManagersRequest) GetRegion() string { +func (x *ListRegionHealthSourcesRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionInstanceGroupManagersRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionHealthSourcesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionInstanceGroups.List. See the method description for details. -type ListRegionInstanceGroupsRequest struct { +// A request message for RegionInstanceGroupManagerResizeRequests.List. See the method description for details. +type ListRegionInstanceGroupManagerResizeRequestsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -128897,6 +133762,8 @@ type ListRegionInstanceGroupsRequest struct { // You cannot combine constraints on multiple fields using regular // expressions. Filter *string `protobuf:"bytes,336120696,opt,name=filter,proto3,oneof" json:"filter,omitempty"` + // The name of the managed instance group. The name should conform to RFC1035. + InstanceGroupManager string `protobuf:"bytes,249363395,opt,name=instance_group_manager,json=instanceGroupManager,proto3" json:"instance_group_manager,omitempty"` // The maximum number of results per page that should be returned. // If the number of available results is larger than `maxResults`, // Compute Engine returns a `nextPageToken` that can be used to get @@ -128921,7 +133788,8 @@ type ListRegionInstanceGroupsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. + // Name of the region + // scoping this request. Name should conform to RFC1035. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -128934,21 +133802,21 @@ type ListRegionInstanceGroupsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionInstanceGroupsRequest) Reset() { - *x = ListRegionInstanceGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1003] +func (x *ListRegionInstanceGroupManagerResizeRequestsRequest) Reset() { + *x = ListRegionInstanceGroupManagerResizeRequestsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1051] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionInstanceGroupsRequest) String() string { +func (x *ListRegionInstanceGroupManagerResizeRequestsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionInstanceGroupsRequest) ProtoMessage() {} +func (*ListRegionInstanceGroupManagerResizeRequestsRequest) ProtoMessage() {} -func (x *ListRegionInstanceGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1003] +func (x *ListRegionInstanceGroupManagerResizeRequestsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1051] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128959,62 +133827,69 @@ func (x *ListRegionInstanceGroupsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionInstanceGroupsRequest.ProtoReflect.Descriptor instead. -func (*ListRegionInstanceGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1003} +// Deprecated: Use ListRegionInstanceGroupManagerResizeRequestsRequest.ProtoReflect.Descriptor instead. +func (*ListRegionInstanceGroupManagerResizeRequestsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1051} } -func (x *ListRegionInstanceGroupsRequest) GetFilter() string { +func (x *ListRegionInstanceGroupManagerResizeRequestsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionInstanceGroupsRequest) GetMaxResults() uint32 { +func (x *ListRegionInstanceGroupManagerResizeRequestsRequest) GetInstanceGroupManager() string { + if x != nil { + return x.InstanceGroupManager + } + return "" +} + +func (x *ListRegionInstanceGroupManagerResizeRequestsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionInstanceGroupsRequest) GetOrderBy() string { +func (x *ListRegionInstanceGroupManagerResizeRequestsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionInstanceGroupsRequest) GetPageToken() string { +func (x *ListRegionInstanceGroupManagerResizeRequestsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionInstanceGroupsRequest) GetProject() string { +func (x *ListRegionInstanceGroupManagerResizeRequestsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionInstanceGroupsRequest) GetRegion() string { +func (x *ListRegionInstanceGroupManagerResizeRequestsRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionInstanceGroupsRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionInstanceGroupManagerResizeRequestsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionInstanceTemplates.List. See the method description for details. -type ListRegionInstanceTemplatesRequest struct { +// A request message for RegionInstanceGroupManagers.List. See the method description for details. +type ListRegionInstanceGroupManagersRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -129099,7 +133974,7 @@ type ListRegionInstanceTemplatesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // The name of the regions for this request. + // Name of the region scoping this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -129112,21 +133987,21 @@ type ListRegionInstanceTemplatesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionInstanceTemplatesRequest) Reset() { - *x = ListRegionInstanceTemplatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1004] +func (x *ListRegionInstanceGroupManagersRequest) Reset() { + *x = ListRegionInstanceGroupManagersRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1052] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionInstanceTemplatesRequest) String() string { +func (x *ListRegionInstanceGroupManagersRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionInstanceTemplatesRequest) ProtoMessage() {} +func (*ListRegionInstanceGroupManagersRequest) ProtoMessage() {} -func (x *ListRegionInstanceTemplatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1004] +func (x *ListRegionInstanceGroupManagersRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1052] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129137,62 +134012,62 @@ func (x *ListRegionInstanceTemplatesRequest) ProtoReflect() protoreflect.Message return mi.MessageOf(x) } -// Deprecated: Use ListRegionInstanceTemplatesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionInstanceTemplatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1004} +// Deprecated: Use ListRegionInstanceGroupManagersRequest.ProtoReflect.Descriptor instead. +func (*ListRegionInstanceGroupManagersRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1052} } -func (x *ListRegionInstanceTemplatesRequest) GetFilter() string { +func (x *ListRegionInstanceGroupManagersRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionInstanceTemplatesRequest) GetMaxResults() uint32 { +func (x *ListRegionInstanceGroupManagersRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionInstanceTemplatesRequest) GetOrderBy() string { +func (x *ListRegionInstanceGroupManagersRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionInstanceTemplatesRequest) GetPageToken() string { +func (x *ListRegionInstanceGroupManagersRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionInstanceTemplatesRequest) GetProject() string { +func (x *ListRegionInstanceGroupManagersRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionInstanceTemplatesRequest) GetRegion() string { +func (x *ListRegionInstanceGroupManagersRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionInstanceTemplatesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionInstanceGroupManagersRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionInstantSnapshots.List. See the method description for details. -type ListRegionInstantSnapshotsRequest struct { +// A request message for RegionInstanceGroups.List. See the method description for details. +type ListRegionInstanceGroupsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -129277,7 +134152,7 @@ type ListRegionInstantSnapshotsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // The name of the region for this request. + // Name of the region scoping this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -129290,21 +134165,21 @@ type ListRegionInstantSnapshotsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionInstantSnapshotsRequest) Reset() { - *x = ListRegionInstantSnapshotsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1005] +func (x *ListRegionInstanceGroupsRequest) Reset() { + *x = ListRegionInstanceGroupsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1053] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionInstantSnapshotsRequest) String() string { +func (x *ListRegionInstanceGroupsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionInstantSnapshotsRequest) ProtoMessage() {} +func (*ListRegionInstanceGroupsRequest) ProtoMessage() {} -func (x *ListRegionInstantSnapshotsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1005] +func (x *ListRegionInstanceGroupsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1053] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129315,62 +134190,62 @@ func (x *ListRegionInstantSnapshotsRequest) ProtoReflect() protoreflect.Message return mi.MessageOf(x) } -// Deprecated: Use ListRegionInstantSnapshotsRequest.ProtoReflect.Descriptor instead. -func (*ListRegionInstantSnapshotsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1005} +// Deprecated: Use ListRegionInstanceGroupsRequest.ProtoReflect.Descriptor instead. +func (*ListRegionInstanceGroupsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1053} } -func (x *ListRegionInstantSnapshotsRequest) GetFilter() string { +func (x *ListRegionInstanceGroupsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionInstantSnapshotsRequest) GetMaxResults() uint32 { +func (x *ListRegionInstanceGroupsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionInstantSnapshotsRequest) GetOrderBy() string { +func (x *ListRegionInstanceGroupsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionInstantSnapshotsRequest) GetPageToken() string { +func (x *ListRegionInstanceGroupsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionInstantSnapshotsRequest) GetProject() string { +func (x *ListRegionInstanceGroupsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionInstantSnapshotsRequest) GetRegion() string { +func (x *ListRegionInstanceGroupsRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionInstantSnapshotsRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionInstanceGroupsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionNetworkEndpointGroups.List. See the method description for details. -type ListRegionNetworkEndpointGroupsRequest struct { +// A request message for RegionInstanceTemplates.List. See the method description for details. +type ListRegionInstanceTemplatesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -129455,8 +134330,7 @@ type ListRegionNetworkEndpointGroupsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // The name of theregion - // where the network endpoint group is located. It should comply with RFC1035. + // The name of the regions for this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -129469,21 +134343,21 @@ type ListRegionNetworkEndpointGroupsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionNetworkEndpointGroupsRequest) Reset() { - *x = ListRegionNetworkEndpointGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1006] +func (x *ListRegionInstanceTemplatesRequest) Reset() { + *x = ListRegionInstanceTemplatesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1054] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionNetworkEndpointGroupsRequest) String() string { +func (x *ListRegionInstanceTemplatesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionNetworkEndpointGroupsRequest) ProtoMessage() {} +func (*ListRegionInstanceTemplatesRequest) ProtoMessage() {} -func (x *ListRegionNetworkEndpointGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1006] +func (x *ListRegionInstanceTemplatesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1054] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129494,62 +134368,62 @@ func (x *ListRegionNetworkEndpointGroupsRequest) ProtoReflect() protoreflect.Mes return mi.MessageOf(x) } -// Deprecated: Use ListRegionNetworkEndpointGroupsRequest.ProtoReflect.Descriptor instead. -func (*ListRegionNetworkEndpointGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1006} +// Deprecated: Use ListRegionInstanceTemplatesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionInstanceTemplatesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1054} } -func (x *ListRegionNetworkEndpointGroupsRequest) GetFilter() string { +func (x *ListRegionInstanceTemplatesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionNetworkEndpointGroupsRequest) GetMaxResults() uint32 { +func (x *ListRegionInstanceTemplatesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionNetworkEndpointGroupsRequest) GetOrderBy() string { +func (x *ListRegionInstanceTemplatesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionNetworkEndpointGroupsRequest) GetPageToken() string { +func (x *ListRegionInstanceTemplatesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionNetworkEndpointGroupsRequest) GetProject() string { +func (x *ListRegionInstanceTemplatesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionNetworkEndpointGroupsRequest) GetRegion() string { +func (x *ListRegionInstanceTemplatesRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionNetworkEndpointGroupsRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionInstanceTemplatesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionNetworkFirewallPolicies.List. See the method description for details. -type ListRegionNetworkFirewallPoliciesRequest struct { +// A request message for RegionInstantSnapshotGroups.List. See the method description for details. +type ListRegionInstantSnapshotGroupsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -129634,7 +134508,7 @@ type ListRegionNetworkFirewallPoliciesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. + // The name of the region for this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -129647,21 +134521,21 @@ type ListRegionNetworkFirewallPoliciesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionNetworkFirewallPoliciesRequest) Reset() { - *x = ListRegionNetworkFirewallPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1007] +func (x *ListRegionInstantSnapshotGroupsRequest) Reset() { + *x = ListRegionInstantSnapshotGroupsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1055] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionNetworkFirewallPoliciesRequest) String() string { +func (x *ListRegionInstantSnapshotGroupsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionNetworkFirewallPoliciesRequest) ProtoMessage() {} +func (*ListRegionInstantSnapshotGroupsRequest) ProtoMessage() {} -func (x *ListRegionNetworkFirewallPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1007] +func (x *ListRegionInstantSnapshotGroupsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1055] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129672,62 +134546,62 @@ func (x *ListRegionNetworkFirewallPoliciesRequest) ProtoReflect() protoreflect.M return mi.MessageOf(x) } -// Deprecated: Use ListRegionNetworkFirewallPoliciesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionNetworkFirewallPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1007} +// Deprecated: Use ListRegionInstantSnapshotGroupsRequest.ProtoReflect.Descriptor instead. +func (*ListRegionInstantSnapshotGroupsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1055} } -func (x *ListRegionNetworkFirewallPoliciesRequest) GetFilter() string { +func (x *ListRegionInstantSnapshotGroupsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionNetworkFirewallPoliciesRequest) GetMaxResults() uint32 { +func (x *ListRegionInstantSnapshotGroupsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionNetworkFirewallPoliciesRequest) GetOrderBy() string { +func (x *ListRegionInstantSnapshotGroupsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionNetworkFirewallPoliciesRequest) GetPageToken() string { +func (x *ListRegionInstantSnapshotGroupsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionNetworkFirewallPoliciesRequest) GetProject() string { +func (x *ListRegionInstantSnapshotGroupsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionNetworkFirewallPoliciesRequest) GetRegion() string { +func (x *ListRegionInstantSnapshotGroupsRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionNetworkFirewallPoliciesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionInstantSnapshotGroupsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionNotificationEndpoints.List. See the method description for details. -type ListRegionNotificationEndpointsRequest struct { +// A request message for RegionInstantSnapshots.List. See the method description for details. +type ListRegionInstantSnapshotsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -129812,7 +134686,7 @@ type ListRegionNotificationEndpointsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. + // The name of the region for this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -129825,21 +134699,21 @@ type ListRegionNotificationEndpointsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionNotificationEndpointsRequest) Reset() { - *x = ListRegionNotificationEndpointsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1008] +func (x *ListRegionInstantSnapshotsRequest) Reset() { + *x = ListRegionInstantSnapshotsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1056] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionNotificationEndpointsRequest) String() string { +func (x *ListRegionInstantSnapshotsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionNotificationEndpointsRequest) ProtoMessage() {} +func (*ListRegionInstantSnapshotsRequest) ProtoMessage() {} -func (x *ListRegionNotificationEndpointsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1008] +func (x *ListRegionInstantSnapshotsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1056] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129850,62 +134724,62 @@ func (x *ListRegionNotificationEndpointsRequest) ProtoReflect() protoreflect.Mes return mi.MessageOf(x) } -// Deprecated: Use ListRegionNotificationEndpointsRequest.ProtoReflect.Descriptor instead. -func (*ListRegionNotificationEndpointsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1008} +// Deprecated: Use ListRegionInstantSnapshotsRequest.ProtoReflect.Descriptor instead. +func (*ListRegionInstantSnapshotsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1056} } -func (x *ListRegionNotificationEndpointsRequest) GetFilter() string { +func (x *ListRegionInstantSnapshotsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionNotificationEndpointsRequest) GetMaxResults() uint32 { +func (x *ListRegionInstantSnapshotsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionNotificationEndpointsRequest) GetOrderBy() string { +func (x *ListRegionInstantSnapshotsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionNotificationEndpointsRequest) GetPageToken() string { +func (x *ListRegionInstantSnapshotsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionNotificationEndpointsRequest) GetProject() string { +func (x *ListRegionInstantSnapshotsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionNotificationEndpointsRequest) GetRegion() string { +func (x *ListRegionInstantSnapshotsRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionNotificationEndpointsRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionInstantSnapshotsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionOperations.List. See the method description for details. -type ListRegionOperationsRequest struct { +// A request message for RegionNetworkEndpointGroups.List. See the method description for details. +type ListRegionNetworkEndpointGroupsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -129990,7 +134864,8 @@ type ListRegionOperationsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region for this request. + // The name of theregion + // where the network endpoint group is located. It should comply with RFC1035. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -130003,21 +134878,21 @@ type ListRegionOperationsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionOperationsRequest) Reset() { - *x = ListRegionOperationsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1009] +func (x *ListRegionNetworkEndpointGroupsRequest) Reset() { + *x = ListRegionNetworkEndpointGroupsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1057] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionOperationsRequest) String() string { +func (x *ListRegionNetworkEndpointGroupsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionOperationsRequest) ProtoMessage() {} +func (*ListRegionNetworkEndpointGroupsRequest) ProtoMessage() {} -func (x *ListRegionOperationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1009] +func (x *ListRegionNetworkEndpointGroupsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1057] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130028,62 +134903,62 @@ func (x *ListRegionOperationsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionOperationsRequest.ProtoReflect.Descriptor instead. -func (*ListRegionOperationsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1009} +// Deprecated: Use ListRegionNetworkEndpointGroupsRequest.ProtoReflect.Descriptor instead. +func (*ListRegionNetworkEndpointGroupsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1057} } -func (x *ListRegionOperationsRequest) GetFilter() string { +func (x *ListRegionNetworkEndpointGroupsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionOperationsRequest) GetMaxResults() uint32 { +func (x *ListRegionNetworkEndpointGroupsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionOperationsRequest) GetOrderBy() string { +func (x *ListRegionNetworkEndpointGroupsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionOperationsRequest) GetPageToken() string { +func (x *ListRegionNetworkEndpointGroupsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionOperationsRequest) GetProject() string { +func (x *ListRegionNetworkEndpointGroupsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionOperationsRequest) GetRegion() string { +func (x *ListRegionNetworkEndpointGroupsRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionOperationsRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionNetworkEndpointGroupsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionSecurityPolicies.List. See the method description for details. -type ListRegionSecurityPoliciesRequest struct { +// A request message for RegionNetworkFirewallPolicies.List. See the method description for details. +type ListRegionNetworkFirewallPoliciesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -130181,21 +135056,21 @@ type ListRegionSecurityPoliciesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionSecurityPoliciesRequest) Reset() { - *x = ListRegionSecurityPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1010] +func (x *ListRegionNetworkFirewallPoliciesRequest) Reset() { + *x = ListRegionNetworkFirewallPoliciesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1058] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionSecurityPoliciesRequest) String() string { +func (x *ListRegionNetworkFirewallPoliciesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionSecurityPoliciesRequest) ProtoMessage() {} +func (*ListRegionNetworkFirewallPoliciesRequest) ProtoMessage() {} -func (x *ListRegionSecurityPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1010] +func (x *ListRegionNetworkFirewallPoliciesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1058] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130206,62 +135081,62 @@ func (x *ListRegionSecurityPoliciesRequest) ProtoReflect() protoreflect.Message return mi.MessageOf(x) } -// Deprecated: Use ListRegionSecurityPoliciesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionSecurityPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1010} +// Deprecated: Use ListRegionNetworkFirewallPoliciesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionNetworkFirewallPoliciesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1058} } -func (x *ListRegionSecurityPoliciesRequest) GetFilter() string { +func (x *ListRegionNetworkFirewallPoliciesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionSecurityPoliciesRequest) GetMaxResults() uint32 { +func (x *ListRegionNetworkFirewallPoliciesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionSecurityPoliciesRequest) GetOrderBy() string { +func (x *ListRegionNetworkFirewallPoliciesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionSecurityPoliciesRequest) GetPageToken() string { +func (x *ListRegionNetworkFirewallPoliciesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionSecurityPoliciesRequest) GetProject() string { +func (x *ListRegionNetworkFirewallPoliciesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionSecurityPoliciesRequest) GetRegion() string { +func (x *ListRegionNetworkFirewallPoliciesRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionSecurityPoliciesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionNetworkFirewallPoliciesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionSslCertificates.List. See the method description for details. -type ListRegionSslCertificatesRequest struct { +// A request message for RegionNotificationEndpoints.List. See the method description for details. +type ListRegionNotificationEndpointsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -130359,21 +135234,21 @@ type ListRegionSslCertificatesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionSslCertificatesRequest) Reset() { - *x = ListRegionSslCertificatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1011] +func (x *ListRegionNotificationEndpointsRequest) Reset() { + *x = ListRegionNotificationEndpointsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1059] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionSslCertificatesRequest) String() string { +func (x *ListRegionNotificationEndpointsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionSslCertificatesRequest) ProtoMessage() {} +func (*ListRegionNotificationEndpointsRequest) ProtoMessage() {} -func (x *ListRegionSslCertificatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1011] +func (x *ListRegionNotificationEndpointsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1059] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130384,62 +135259,62 @@ func (x *ListRegionSslCertificatesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionSslCertificatesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionSslCertificatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1011} +// Deprecated: Use ListRegionNotificationEndpointsRequest.ProtoReflect.Descriptor instead. +func (*ListRegionNotificationEndpointsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1059} } -func (x *ListRegionSslCertificatesRequest) GetFilter() string { +func (x *ListRegionNotificationEndpointsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionSslCertificatesRequest) GetMaxResults() uint32 { +func (x *ListRegionNotificationEndpointsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionSslCertificatesRequest) GetOrderBy() string { +func (x *ListRegionNotificationEndpointsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionSslCertificatesRequest) GetPageToken() string { +func (x *ListRegionNotificationEndpointsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionSslCertificatesRequest) GetProject() string { +func (x *ListRegionNotificationEndpointsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionSslCertificatesRequest) GetRegion() string { +func (x *ListRegionNotificationEndpointsRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionSslCertificatesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionNotificationEndpointsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionSslPolicies.List. See the method description for details. -type ListRegionSslPoliciesRequest struct { +// A request message for RegionOperations.List. See the method description for details. +type ListRegionOperationsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -130524,7 +135399,7 @@ type ListRegionSslPoliciesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. + // Name of the region for this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -130537,21 +135412,21 @@ type ListRegionSslPoliciesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionSslPoliciesRequest) Reset() { - *x = ListRegionSslPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1012] +func (x *ListRegionOperationsRequest) Reset() { + *x = ListRegionOperationsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1060] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionSslPoliciesRequest) String() string { +func (x *ListRegionOperationsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionSslPoliciesRequest) ProtoMessage() {} +func (*ListRegionOperationsRequest) ProtoMessage() {} -func (x *ListRegionSslPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1012] +func (x *ListRegionOperationsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1060] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130562,62 +135437,62 @@ func (x *ListRegionSslPoliciesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionSslPoliciesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionSslPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1012} +// Deprecated: Use ListRegionOperationsRequest.ProtoReflect.Descriptor instead. +func (*ListRegionOperationsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1060} } -func (x *ListRegionSslPoliciesRequest) GetFilter() string { +func (x *ListRegionOperationsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionSslPoliciesRequest) GetMaxResults() uint32 { +func (x *ListRegionOperationsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionSslPoliciesRequest) GetOrderBy() string { +func (x *ListRegionOperationsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionSslPoliciesRequest) GetPageToken() string { +func (x *ListRegionOperationsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionSslPoliciesRequest) GetProject() string { +func (x *ListRegionOperationsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionSslPoliciesRequest) GetRegion() string { +func (x *ListRegionOperationsRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionSslPoliciesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionOperationsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionTargetHttpProxies.List. See the method description for details. -type ListRegionTargetHttpProxiesRequest struct { +// A request message for RegionSecurityPolicies.List. See the method description for details. +type ListRegionSecurityPoliciesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -130715,21 +135590,21 @@ type ListRegionTargetHttpProxiesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionTargetHttpProxiesRequest) Reset() { - *x = ListRegionTargetHttpProxiesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1013] +func (x *ListRegionSecurityPoliciesRequest) Reset() { + *x = ListRegionSecurityPoliciesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1061] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionTargetHttpProxiesRequest) String() string { +func (x *ListRegionSecurityPoliciesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionTargetHttpProxiesRequest) ProtoMessage() {} +func (*ListRegionSecurityPoliciesRequest) ProtoMessage() {} -func (x *ListRegionTargetHttpProxiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1013] +func (x *ListRegionSecurityPoliciesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1061] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130740,62 +135615,62 @@ func (x *ListRegionTargetHttpProxiesRequest) ProtoReflect() protoreflect.Message return mi.MessageOf(x) } -// Deprecated: Use ListRegionTargetHttpProxiesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionTargetHttpProxiesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1013} +// Deprecated: Use ListRegionSecurityPoliciesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionSecurityPoliciesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1061} } -func (x *ListRegionTargetHttpProxiesRequest) GetFilter() string { +func (x *ListRegionSecurityPoliciesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionTargetHttpProxiesRequest) GetMaxResults() uint32 { +func (x *ListRegionSecurityPoliciesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionTargetHttpProxiesRequest) GetOrderBy() string { +func (x *ListRegionSecurityPoliciesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionTargetHttpProxiesRequest) GetPageToken() string { +func (x *ListRegionSecurityPoliciesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionTargetHttpProxiesRequest) GetProject() string { +func (x *ListRegionSecurityPoliciesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionTargetHttpProxiesRequest) GetRegion() string { +func (x *ListRegionSecurityPoliciesRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionTargetHttpProxiesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionSecurityPoliciesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionTargetHttpsProxies.List. See the method description for details. -type ListRegionTargetHttpsProxiesRequest struct { +// A request message for RegionSnapshots.List. See the method description for details. +type ListRegionSnapshotsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -130880,7 +135755,7 @@ type ListRegionTargetHttpsProxiesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. + // Name of the region for this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -130893,21 +135768,21 @@ type ListRegionTargetHttpsProxiesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionTargetHttpsProxiesRequest) Reset() { - *x = ListRegionTargetHttpsProxiesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1014] +func (x *ListRegionSnapshotsRequest) Reset() { + *x = ListRegionSnapshotsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1062] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionTargetHttpsProxiesRequest) String() string { +func (x *ListRegionSnapshotsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionTargetHttpsProxiesRequest) ProtoMessage() {} +func (*ListRegionSnapshotsRequest) ProtoMessage() {} -func (x *ListRegionTargetHttpsProxiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1014] +func (x *ListRegionSnapshotsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1062] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130918,62 +135793,62 @@ func (x *ListRegionTargetHttpsProxiesRequest) ProtoReflect() protoreflect.Messag return mi.MessageOf(x) } -// Deprecated: Use ListRegionTargetHttpsProxiesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionTargetHttpsProxiesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1014} +// Deprecated: Use ListRegionSnapshotsRequest.ProtoReflect.Descriptor instead. +func (*ListRegionSnapshotsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1062} } -func (x *ListRegionTargetHttpsProxiesRequest) GetFilter() string { +func (x *ListRegionSnapshotsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionTargetHttpsProxiesRequest) GetMaxResults() uint32 { +func (x *ListRegionSnapshotsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionTargetHttpsProxiesRequest) GetOrderBy() string { +func (x *ListRegionSnapshotsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionTargetHttpsProxiesRequest) GetPageToken() string { +func (x *ListRegionSnapshotsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionTargetHttpsProxiesRequest) GetProject() string { +func (x *ListRegionSnapshotsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionTargetHttpsProxiesRequest) GetRegion() string { +func (x *ListRegionSnapshotsRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionTargetHttpsProxiesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionSnapshotsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionTargetTcpProxies.List. See the method description for details. -type ListRegionTargetTcpProxiesRequest struct { +// A request message for RegionSslCertificates.List. See the method description for details. +type ListRegionSslCertificatesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -131071,21 +135946,21 @@ type ListRegionTargetTcpProxiesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionTargetTcpProxiesRequest) Reset() { - *x = ListRegionTargetTcpProxiesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1015] +func (x *ListRegionSslCertificatesRequest) Reset() { + *x = ListRegionSslCertificatesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1063] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionTargetTcpProxiesRequest) String() string { +func (x *ListRegionSslCertificatesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionTargetTcpProxiesRequest) ProtoMessage() {} +func (*ListRegionSslCertificatesRequest) ProtoMessage() {} -func (x *ListRegionTargetTcpProxiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1015] +func (x *ListRegionSslCertificatesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1063] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131096,62 +135971,62 @@ func (x *ListRegionTargetTcpProxiesRequest) ProtoReflect() protoreflect.Message return mi.MessageOf(x) } -// Deprecated: Use ListRegionTargetTcpProxiesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionTargetTcpProxiesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1015} +// Deprecated: Use ListRegionSslCertificatesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionSslCertificatesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1063} } -func (x *ListRegionTargetTcpProxiesRequest) GetFilter() string { +func (x *ListRegionSslCertificatesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionTargetTcpProxiesRequest) GetMaxResults() uint32 { +func (x *ListRegionSslCertificatesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionTargetTcpProxiesRequest) GetOrderBy() string { +func (x *ListRegionSslCertificatesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionTargetTcpProxiesRequest) GetPageToken() string { +func (x *ListRegionSslCertificatesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionTargetTcpProxiesRequest) GetProject() string { +func (x *ListRegionSslCertificatesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionTargetTcpProxiesRequest) GetRegion() string { +func (x *ListRegionSslCertificatesRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionTargetTcpProxiesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionSslCertificatesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionUrlMaps.List. See the method description for details. -type ListRegionUrlMapsRequest struct { +// A request message for RegionSslPolicies.List. See the method description for details. +type ListRegionSslPoliciesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -131249,21 +136124,21 @@ type ListRegionUrlMapsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionUrlMapsRequest) Reset() { - *x = ListRegionUrlMapsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1016] +func (x *ListRegionSslPoliciesRequest) Reset() { + *x = ListRegionSslPoliciesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1064] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionUrlMapsRequest) String() string { +func (x *ListRegionSslPoliciesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionUrlMapsRequest) ProtoMessage() {} +func (*ListRegionSslPoliciesRequest) ProtoMessage() {} -func (x *ListRegionUrlMapsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1016] +func (x *ListRegionSslPoliciesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1064] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131274,62 +136149,62 @@ func (x *ListRegionUrlMapsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionUrlMapsRequest.ProtoReflect.Descriptor instead. -func (*ListRegionUrlMapsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1016} +// Deprecated: Use ListRegionSslPoliciesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionSslPoliciesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1064} } -func (x *ListRegionUrlMapsRequest) GetFilter() string { +func (x *ListRegionSslPoliciesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionUrlMapsRequest) GetMaxResults() uint32 { +func (x *ListRegionSslPoliciesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionUrlMapsRequest) GetOrderBy() string { +func (x *ListRegionSslPoliciesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionUrlMapsRequest) GetPageToken() string { +func (x *ListRegionSslPoliciesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionUrlMapsRequest) GetProject() string { +func (x *ListRegionSslPoliciesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionUrlMapsRequest) GetRegion() string { +func (x *ListRegionSslPoliciesRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionUrlMapsRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionSslPoliciesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionZones.List. See the method description for details. -type ListRegionZonesRequest struct { +// A request message for RegionTargetHttpProxies.List. See the method description for details. +type ListRegionTargetHttpProxiesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -131414,7 +136289,7 @@ type ListRegionZonesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Region for this request. + // Name of the region scoping this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -131427,21 +136302,21 @@ type ListRegionZonesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionZonesRequest) Reset() { - *x = ListRegionZonesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1017] +func (x *ListRegionTargetHttpProxiesRequest) Reset() { + *x = ListRegionTargetHttpProxiesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1065] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionZonesRequest) String() string { +func (x *ListRegionTargetHttpProxiesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionZonesRequest) ProtoMessage() {} +func (*ListRegionTargetHttpProxiesRequest) ProtoMessage() {} -func (x *ListRegionZonesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1017] +func (x *ListRegionTargetHttpProxiesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1065] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131452,62 +136327,62 @@ func (x *ListRegionZonesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionZonesRequest.ProtoReflect.Descriptor instead. -func (*ListRegionZonesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1017} +// Deprecated: Use ListRegionTargetHttpProxiesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionTargetHttpProxiesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1065} } -func (x *ListRegionZonesRequest) GetFilter() string { +func (x *ListRegionTargetHttpProxiesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionZonesRequest) GetMaxResults() uint32 { +func (x *ListRegionTargetHttpProxiesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionZonesRequest) GetOrderBy() string { +func (x *ListRegionTargetHttpProxiesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionZonesRequest) GetPageToken() string { +func (x *ListRegionTargetHttpProxiesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionZonesRequest) GetProject() string { +func (x *ListRegionTargetHttpProxiesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionZonesRequest) GetRegion() string { +func (x *ListRegionTargetHttpProxiesRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListRegionZonesRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionTargetHttpProxiesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for Regions.List. See the method description for details. -type ListRegionsRequest struct { +// A request message for RegionTargetHttpsProxies.List. See the method description for details. +type ListRegionTargetHttpsProxiesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -131592,6 +136467,8 @@ type ListRegionsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region scoping this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -131603,21 +136480,21 @@ type ListRegionsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListRegionsRequest) Reset() { - *x = ListRegionsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1018] +func (x *ListRegionTargetHttpsProxiesRequest) Reset() { + *x = ListRegionTargetHttpsProxiesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1066] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRegionsRequest) String() string { +func (x *ListRegionTargetHttpsProxiesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRegionsRequest) ProtoMessage() {} +func (*ListRegionTargetHttpsProxiesRequest) ProtoMessage() {} -func (x *ListRegionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1018] +func (x *ListRegionTargetHttpsProxiesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1066] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131628,55 +136505,62 @@ func (x *ListRegionsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRegionsRequest.ProtoReflect.Descriptor instead. -func (*ListRegionsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1018} +// Deprecated: Use ListRegionTargetHttpsProxiesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionTargetHttpsProxiesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1066} } -func (x *ListRegionsRequest) GetFilter() string { +func (x *ListRegionTargetHttpsProxiesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRegionsRequest) GetMaxResults() uint32 { +func (x *ListRegionTargetHttpsProxiesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRegionsRequest) GetOrderBy() string { +func (x *ListRegionTargetHttpsProxiesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRegionsRequest) GetPageToken() string { +func (x *ListRegionTargetHttpsProxiesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRegionsRequest) GetProject() string { +func (x *ListRegionTargetHttpsProxiesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRegionsRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionTargetHttpsProxiesRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *ListRegionTargetHttpsProxiesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for ReservationBlocks.List. See the method description for details. -type ListReservationBlocksRequest struct { +// A request message for RegionTargetTcpProxies.List. See the method description for details. +type ListRegionTargetTcpProxiesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -131761,9 +136645,8 @@ type ListReservationBlocksRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // The name of the reservation. - // Name should conform to RFC1035 or be a resource ID. - Reservation string `protobuf:"bytes,47530956,opt,name=reservation,proto3" json:"reservation,omitempty"` + // Name of the region scoping this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -131771,27 +136654,25 @@ type ListReservationBlocksRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - // Name of the zone for this request. Zone name should conform to RFC1035. - Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListReservationBlocksRequest) Reset() { - *x = ListReservationBlocksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1019] +func (x *ListRegionTargetTcpProxiesRequest) Reset() { + *x = ListRegionTargetTcpProxiesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1067] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListReservationBlocksRequest) String() string { +func (x *ListRegionTargetTcpProxiesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListReservationBlocksRequest) ProtoMessage() {} +func (*ListRegionTargetTcpProxiesRequest) ProtoMessage() {} -func (x *ListReservationBlocksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1019] +func (x *ListRegionTargetTcpProxiesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1067] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131802,69 +136683,62 @@ func (x *ListReservationBlocksRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListReservationBlocksRequest.ProtoReflect.Descriptor instead. -func (*ListReservationBlocksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1019} +// Deprecated: Use ListRegionTargetTcpProxiesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionTargetTcpProxiesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1067} } -func (x *ListReservationBlocksRequest) GetFilter() string { +func (x *ListRegionTargetTcpProxiesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListReservationBlocksRequest) GetMaxResults() uint32 { +func (x *ListRegionTargetTcpProxiesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListReservationBlocksRequest) GetOrderBy() string { +func (x *ListRegionTargetTcpProxiesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListReservationBlocksRequest) GetPageToken() string { +func (x *ListRegionTargetTcpProxiesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListReservationBlocksRequest) GetProject() string { +func (x *ListRegionTargetTcpProxiesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListReservationBlocksRequest) GetReservation() string { +func (x *ListRegionTargetTcpProxiesRequest) GetRegion() string { if x != nil { - return x.Reservation + return x.Region } return "" } -func (x *ListReservationBlocksRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionTargetTcpProxiesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *ListReservationBlocksRequest) GetZone() string { - if x != nil { - return x.Zone - } - return "" -} - -// A request message for ReservationSlots.List. See the method description for details. -type ListReservationSlotsRequest struct { +// A request message for RegionUrlMaps.List. See the method description for details. +type ListRegionUrlMapsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -131947,11 +136821,10 @@ type ListReservationSlotsRequest struct { // `nextPageToken` returned by a previous list request to get // the next page of results. PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` - // The name of the parent reservation and parent block, formatted as - // reservations/{reservation_name}/reservationBlocks/{reservation_block_name}/reservationSubBlocks/{reservation_sub_block_name} - ParentName string `protobuf:"bytes,478151936,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"` - // The project ID for this request. + // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region scoping this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -131959,27 +136832,25 @@ type ListReservationSlotsRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - // The name of the zone for this request, formatted as RFC1035. - Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListReservationSlotsRequest) Reset() { - *x = ListReservationSlotsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1020] +func (x *ListRegionUrlMapsRequest) Reset() { + *x = ListRegionUrlMapsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1068] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListReservationSlotsRequest) String() string { +func (x *ListRegionUrlMapsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListReservationSlotsRequest) ProtoMessage() {} +func (*ListRegionUrlMapsRequest) ProtoMessage() {} -func (x *ListReservationSlotsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1020] +func (x *ListRegionUrlMapsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1068] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131990,69 +136861,62 @@ func (x *ListReservationSlotsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListReservationSlotsRequest.ProtoReflect.Descriptor instead. -func (*ListReservationSlotsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1020} +// Deprecated: Use ListRegionUrlMapsRequest.ProtoReflect.Descriptor instead. +func (*ListRegionUrlMapsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1068} } -func (x *ListReservationSlotsRequest) GetFilter() string { +func (x *ListRegionUrlMapsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListReservationSlotsRequest) GetMaxResults() uint32 { +func (x *ListRegionUrlMapsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListReservationSlotsRequest) GetOrderBy() string { +func (x *ListRegionUrlMapsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListReservationSlotsRequest) GetPageToken() string { +func (x *ListRegionUrlMapsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListReservationSlotsRequest) GetParentName() string { +func (x *ListRegionUrlMapsRequest) GetProject() string { if x != nil { - return x.ParentName + return x.Project } return "" } -func (x *ListReservationSlotsRequest) GetProject() string { +func (x *ListRegionUrlMapsRequest) GetRegion() string { if x != nil { - return x.Project + return x.Region } return "" } -func (x *ListReservationSlotsRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionUrlMapsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *ListReservationSlotsRequest) GetZone() string { - if x != nil { - return x.Zone - } - return "" -} - -// A request message for ReservationSubBlocks.List. See the method description for details. -type ListReservationSubBlocksRequest struct { +// A request message for RegionZones.List. See the method description for details. +type ListRegionZonesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -132135,11 +136999,10 @@ type ListReservationSubBlocksRequest struct { // `nextPageToken` returned by a previous list request to get // the next page of results. PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` - // The name of the parent reservation and parent block. In the format of - // reservations/{reservation_name}/reservationBlocks/{reservation_block_name} - ParentName string `protobuf:"bytes,478151936,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -132147,27 +137010,25 @@ type ListReservationSubBlocksRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - // Name of the zone for this request. Zone name should conform to RFC1035. - Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListReservationSubBlocksRequest) Reset() { - *x = ListReservationSubBlocksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1021] +func (x *ListRegionZonesRequest) Reset() { + *x = ListRegionZonesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1069] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListReservationSubBlocksRequest) String() string { +func (x *ListRegionZonesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListReservationSubBlocksRequest) ProtoMessage() {} +func (*ListRegionZonesRequest) ProtoMessage() {} -func (x *ListReservationSubBlocksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1021] +func (x *ListRegionZonesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1069] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132178,69 +137039,62 @@ func (x *ListReservationSubBlocksRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListReservationSubBlocksRequest.ProtoReflect.Descriptor instead. -func (*ListReservationSubBlocksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1021} +// Deprecated: Use ListRegionZonesRequest.ProtoReflect.Descriptor instead. +func (*ListRegionZonesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1069} } -func (x *ListReservationSubBlocksRequest) GetFilter() string { +func (x *ListRegionZonesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListReservationSubBlocksRequest) GetMaxResults() uint32 { +func (x *ListRegionZonesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListReservationSubBlocksRequest) GetOrderBy() string { +func (x *ListRegionZonesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListReservationSubBlocksRequest) GetPageToken() string { +func (x *ListRegionZonesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListReservationSubBlocksRequest) GetParentName() string { +func (x *ListRegionZonesRequest) GetProject() string { if x != nil { - return x.ParentName + return x.Project } return "" } -func (x *ListReservationSubBlocksRequest) GetProject() string { +func (x *ListRegionZonesRequest) GetRegion() string { if x != nil { - return x.Project + return x.Region } return "" } -func (x *ListReservationSubBlocksRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionZonesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *ListReservationSubBlocksRequest) GetZone() string { - if x != nil { - return x.Zone - } - return "" -} - -// A request message for Reservations.List. See the method description for details. -type ListReservationsRequest struct { +// A request message for Regions.List. See the method description for details. +type ListRegionsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -132332,27 +137186,25 @@ type ListReservationsRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - // Name of the zone for this request. - Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListReservationsRequest) Reset() { - *x = ListReservationsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1022] +func (x *ListRegionsRequest) Reset() { + *x = ListRegionsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1070] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListReservationsRequest) String() string { +func (x *ListRegionsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListReservationsRequest) ProtoMessage() {} +func (*ListRegionsRequest) ProtoMessage() {} -func (x *ListReservationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1022] +func (x *ListRegionsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1070] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132363,62 +137215,55 @@ func (x *ListReservationsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListReservationsRequest.ProtoReflect.Descriptor instead. -func (*ListReservationsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1022} +// Deprecated: Use ListRegionsRequest.ProtoReflect.Descriptor instead. +func (*ListRegionsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1070} } -func (x *ListReservationsRequest) GetFilter() string { +func (x *ListRegionsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListReservationsRequest) GetMaxResults() uint32 { +func (x *ListRegionsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListReservationsRequest) GetOrderBy() string { +func (x *ListRegionsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListReservationsRequest) GetPageToken() string { +func (x *ListRegionsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListReservationsRequest) GetProject() string { +func (x *ListRegionsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListReservationsRequest) GetReturnPartialSuccess() bool { +func (x *ListRegionsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *ListReservationsRequest) GetZone() string { - if x != nil { - return x.Zone - } - return "" -} - -// A request message for ResourcePolicies.List. See the method description for details. -type ListResourcePoliciesRequest struct { +// A request message for ReservationBlocks.List. See the method description for details. +type ListReservationBlocksRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -132503,8 +137348,9 @@ type ListResourcePoliciesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region for this request. - Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // The name of the reservation. + // Name should conform to RFC1035 or be a resource ID. + Reservation string `protobuf:"bytes,47530956,opt,name=reservation,proto3" json:"reservation,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -132512,25 +137358,27 @@ type ListResourcePoliciesRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // Name of the zone for this request. Zone name should conform to RFC1035. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListResourcePoliciesRequest) Reset() { - *x = ListResourcePoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1023] +func (x *ListReservationBlocksRequest) Reset() { + *x = ListReservationBlocksRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1071] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListResourcePoliciesRequest) String() string { +func (x *ListReservationBlocksRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListResourcePoliciesRequest) ProtoMessage() {} +func (*ListReservationBlocksRequest) ProtoMessage() {} -func (x *ListResourcePoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1023] +func (x *ListReservationBlocksRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1071] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132541,62 +137389,69 @@ func (x *ListResourcePoliciesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListResourcePoliciesRequest.ProtoReflect.Descriptor instead. -func (*ListResourcePoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1023} +// Deprecated: Use ListReservationBlocksRequest.ProtoReflect.Descriptor instead. +func (*ListReservationBlocksRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1071} } -func (x *ListResourcePoliciesRequest) GetFilter() string { +func (x *ListReservationBlocksRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListResourcePoliciesRequest) GetMaxResults() uint32 { +func (x *ListReservationBlocksRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListResourcePoliciesRequest) GetOrderBy() string { +func (x *ListReservationBlocksRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListResourcePoliciesRequest) GetPageToken() string { +func (x *ListReservationBlocksRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListResourcePoliciesRequest) GetProject() string { +func (x *ListReservationBlocksRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListResourcePoliciesRequest) GetRegion() string { +func (x *ListReservationBlocksRequest) GetReservation() string { if x != nil { - return x.Region + return x.Reservation } return "" } -func (x *ListResourcePoliciesRequest) GetReturnPartialSuccess() bool { +func (x *ListReservationBlocksRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for Routers.ListRoutePolicies. See the method description for details. -type ListRoutePoliciesRoutersRequest struct { +func (x *ListReservationBlocksRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + +// A request message for ReservationSlots.List. See the method description for details. +type ListReservationSlotsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -132679,10 +137534,11 @@ type ListRoutePoliciesRoutersRequest struct { // `nextPageToken` returned by a previous list request to get // the next page of results. PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` - // Project ID for this request. + // The name of the parent reservation and parent block, formatted as + // reservations/{reservation_name}/reservationBlocks/{reservation_block_name}/reservationSubBlocks/{reservation_sub_block_name} + ParentName string `protobuf:"bytes,478151936,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"` + // The project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region for this request. - Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -132690,28 +137546,27 @@ type ListRoutePoliciesRoutersRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - // Name or id of the resource for this request. - // Name should conform to RFC1035. - Router string `protobuf:"bytes,148608841,opt,name=router,proto3" json:"router,omitempty"` + // The name of the zone for this request, formatted as RFC1035. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } -func (x *ListRoutePoliciesRoutersRequest) Reset() { - *x = ListRoutePoliciesRoutersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1024] +func (x *ListReservationSlotsRequest) Reset() { + *x = ListReservationSlotsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1072] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRoutePoliciesRoutersRequest) String() string { +func (x *ListReservationSlotsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRoutePoliciesRoutersRequest) ProtoMessage() {} +func (*ListReservationSlotsRequest) ProtoMessage() {} -func (x *ListRoutePoliciesRoutersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1024] +func (x *ListReservationSlotsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1072] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132722,69 +137577,69 @@ func (x *ListRoutePoliciesRoutersRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRoutePoliciesRoutersRequest.ProtoReflect.Descriptor instead. -func (*ListRoutePoliciesRoutersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1024} +// Deprecated: Use ListReservationSlotsRequest.ProtoReflect.Descriptor instead. +func (*ListReservationSlotsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1072} } -func (x *ListRoutePoliciesRoutersRequest) GetFilter() string { +func (x *ListReservationSlotsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRoutePoliciesRoutersRequest) GetMaxResults() uint32 { +func (x *ListReservationSlotsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRoutePoliciesRoutersRequest) GetOrderBy() string { +func (x *ListReservationSlotsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRoutePoliciesRoutersRequest) GetPageToken() string { +func (x *ListReservationSlotsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRoutePoliciesRoutersRequest) GetProject() string { +func (x *ListReservationSlotsRequest) GetParentName() string { if x != nil { - return x.Project + return x.ParentName } return "" } -func (x *ListRoutePoliciesRoutersRequest) GetRegion() string { +func (x *ListReservationSlotsRequest) GetProject() string { if x != nil { - return x.Region + return x.Project } return "" } -func (x *ListRoutePoliciesRoutersRequest) GetReturnPartialSuccess() bool { +func (x *ListReservationSlotsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *ListRoutePoliciesRoutersRequest) GetRouter() string { +func (x *ListReservationSlotsRequest) GetZone() string { if x != nil { - return x.Router + return x.Zone } return "" } -// A request message for Routers.List. See the method description for details. -type ListRoutersRequest struct { +// A request message for ReservationSubBlocks.List. See the method description for details. +type ListReservationSubBlocksRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -132867,10 +137722,11 @@ type ListRoutersRequest struct { // `nextPageToken` returned by a previous list request to get // the next page of results. PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` + // The name of the parent reservation and parent block. In the format of + // reservations/{reservation_name}/reservationBlocks/{reservation_block_name} + ParentName string `protobuf:"bytes,478151936,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region for this request. - Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -132878,25 +137734,27 @@ type ListRoutersRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // Name of the zone for this request. Zone name should conform to RFC1035. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListRoutersRequest) Reset() { - *x = ListRoutersRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1025] +func (x *ListReservationSubBlocksRequest) Reset() { + *x = ListReservationSubBlocksRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1073] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRoutersRequest) String() string { +func (x *ListReservationSubBlocksRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRoutersRequest) ProtoMessage() {} +func (*ListReservationSubBlocksRequest) ProtoMessage() {} -func (x *ListRoutersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1025] +func (x *ListReservationSubBlocksRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1073] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132907,62 +137765,69 @@ func (x *ListRoutersRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRoutersRequest.ProtoReflect.Descriptor instead. -func (*ListRoutersRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1025} +// Deprecated: Use ListReservationSubBlocksRequest.ProtoReflect.Descriptor instead. +func (*ListReservationSubBlocksRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1073} } -func (x *ListRoutersRequest) GetFilter() string { +func (x *ListReservationSubBlocksRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRoutersRequest) GetMaxResults() uint32 { +func (x *ListReservationSubBlocksRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRoutersRequest) GetOrderBy() string { +func (x *ListReservationSubBlocksRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRoutersRequest) GetPageToken() string { +func (x *ListReservationSubBlocksRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRoutersRequest) GetProject() string { +func (x *ListReservationSubBlocksRequest) GetParentName() string { if x != nil { - return x.Project + return x.ParentName } return "" } -func (x *ListRoutersRequest) GetRegion() string { +func (x *ListReservationSubBlocksRequest) GetProject() string { if x != nil { - return x.Region + return x.Project } return "" } -func (x *ListRoutersRequest) GetReturnPartialSuccess() bool { +func (x *ListReservationSubBlocksRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for Routes.List. See the method description for details. -type ListRoutesRequest struct { +func (x *ListReservationSubBlocksRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + +// A request message for Reservations.List. See the method description for details. +type ListReservationsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -133054,25 +137919,27 @@ type ListRoutesRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // Name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListRoutesRequest) Reset() { - *x = ListRoutesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1026] +func (x *ListReservationsRequest) Reset() { + *x = ListReservationsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1074] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListRoutesRequest) String() string { +func (x *ListReservationsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListRoutesRequest) ProtoMessage() {} +func (*ListReservationsRequest) ProtoMessage() {} -func (x *ListRoutesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1026] +func (x *ListReservationsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1074] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133083,55 +137950,62 @@ func (x *ListRoutesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListRoutesRequest.ProtoReflect.Descriptor instead. -func (*ListRoutesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1026} +// Deprecated: Use ListReservationsRequest.ProtoReflect.Descriptor instead. +func (*ListReservationsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1074} } -func (x *ListRoutesRequest) GetFilter() string { +func (x *ListReservationsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListRoutesRequest) GetMaxResults() uint32 { +func (x *ListReservationsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListRoutesRequest) GetOrderBy() string { +func (x *ListReservationsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListRoutesRequest) GetPageToken() string { +func (x *ListReservationsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListRoutesRequest) GetProject() string { +func (x *ListReservationsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListRoutesRequest) GetReturnPartialSuccess() bool { +func (x *ListReservationsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for SecurityPolicies.List. See the method description for details. -type ListSecurityPoliciesRequest struct { +func (x *ListReservationsRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + +// A request message for ResourcePolicies.List. See the method description for details. +type ListResourcePoliciesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -133216,6 +138090,8 @@ type ListSecurityPoliciesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -133227,21 +138103,21 @@ type ListSecurityPoliciesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListSecurityPoliciesRequest) Reset() { - *x = ListSecurityPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1027] +func (x *ListResourcePoliciesRequest) Reset() { + *x = ListResourcePoliciesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1075] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListSecurityPoliciesRequest) String() string { +func (x *ListResourcePoliciesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListSecurityPoliciesRequest) ProtoMessage() {} +func (*ListResourcePoliciesRequest) ProtoMessage() {} -func (x *ListSecurityPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1027] +func (x *ListResourcePoliciesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1075] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133252,55 +138128,62 @@ func (x *ListSecurityPoliciesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListSecurityPoliciesRequest.ProtoReflect.Descriptor instead. -func (*ListSecurityPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1027} +// Deprecated: Use ListResourcePoliciesRequest.ProtoReflect.Descriptor instead. +func (*ListResourcePoliciesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1075} } -func (x *ListSecurityPoliciesRequest) GetFilter() string { +func (x *ListResourcePoliciesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListSecurityPoliciesRequest) GetMaxResults() uint32 { +func (x *ListResourcePoliciesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListSecurityPoliciesRequest) GetOrderBy() string { +func (x *ListResourcePoliciesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListSecurityPoliciesRequest) GetPageToken() string { +func (x *ListResourcePoliciesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListSecurityPoliciesRequest) GetProject() string { +func (x *ListResourcePoliciesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListSecurityPoliciesRequest) GetReturnPartialSuccess() bool { +func (x *ListResourcePoliciesRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *ListResourcePoliciesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for ServiceAttachments.List. See the method description for details. -type ListServiceAttachmentsRequest struct { +// A request message for Routers.ListRoutePolicies. See the method description for details. +type ListRoutePoliciesRoutersRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -133385,7 +138268,7 @@ type ListServiceAttachmentsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region of this request. + // Name of the region for this request. Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. @@ -133394,25 +138277,28 @@ type ListServiceAttachmentsRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // Name or id of the resource for this request. + // Name should conform to RFC1035. + Router string `protobuf:"bytes,148608841,opt,name=router,proto3" json:"router,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListServiceAttachmentsRequest) Reset() { - *x = ListServiceAttachmentsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1028] +func (x *ListRoutePoliciesRoutersRequest) Reset() { + *x = ListRoutePoliciesRoutersRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1076] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListServiceAttachmentsRequest) String() string { +func (x *ListRoutePoliciesRoutersRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListServiceAttachmentsRequest) ProtoMessage() {} +func (*ListRoutePoliciesRoutersRequest) ProtoMessage() {} -func (x *ListServiceAttachmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1028] +func (x *ListRoutePoliciesRoutersRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1076] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133423,62 +138309,69 @@ func (x *ListServiceAttachmentsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListServiceAttachmentsRequest.ProtoReflect.Descriptor instead. -func (*ListServiceAttachmentsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1028} +// Deprecated: Use ListRoutePoliciesRoutersRequest.ProtoReflect.Descriptor instead. +func (*ListRoutePoliciesRoutersRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1076} } -func (x *ListServiceAttachmentsRequest) GetFilter() string { +func (x *ListRoutePoliciesRoutersRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListServiceAttachmentsRequest) GetMaxResults() uint32 { +func (x *ListRoutePoliciesRoutersRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListServiceAttachmentsRequest) GetOrderBy() string { +func (x *ListRoutePoliciesRoutersRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListServiceAttachmentsRequest) GetPageToken() string { +func (x *ListRoutePoliciesRoutersRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListServiceAttachmentsRequest) GetProject() string { +func (x *ListRoutePoliciesRoutersRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListServiceAttachmentsRequest) GetRegion() string { +func (x *ListRoutePoliciesRoutersRequest) GetRegion() string { if x != nil { return x.Region } return "" } -func (x *ListServiceAttachmentsRequest) GetReturnPartialSuccess() bool { +func (x *ListRoutePoliciesRoutersRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for Snapshots.List. See the method description for details. -type ListSnapshotsRequest struct { +func (x *ListRoutePoliciesRoutersRequest) GetRouter() string { + if x != nil { + return x.Router + } + return "" +} + +// A request message for Routers.List. See the method description for details. +type ListRoutersRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -133563,6 +138456,8 @@ type ListSnapshotsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -133574,21 +138469,21 @@ type ListSnapshotsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListSnapshotsRequest) Reset() { - *x = ListSnapshotsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1029] +func (x *ListRoutersRequest) Reset() { + *x = ListRoutersRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1077] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListSnapshotsRequest) String() string { +func (x *ListRoutersRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListSnapshotsRequest) ProtoMessage() {} +func (*ListRoutersRequest) ProtoMessage() {} -func (x *ListSnapshotsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1029] +func (x *ListRoutersRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1077] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133599,55 +138494,62 @@ func (x *ListSnapshotsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListSnapshotsRequest.ProtoReflect.Descriptor instead. -func (*ListSnapshotsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1029} +// Deprecated: Use ListRoutersRequest.ProtoReflect.Descriptor instead. +func (*ListRoutersRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1077} } -func (x *ListSnapshotsRequest) GetFilter() string { +func (x *ListRoutersRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListSnapshotsRequest) GetMaxResults() uint32 { +func (x *ListRoutersRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListSnapshotsRequest) GetOrderBy() string { +func (x *ListRoutersRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListSnapshotsRequest) GetPageToken() string { +func (x *ListRoutersRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListSnapshotsRequest) GetProject() string { +func (x *ListRoutersRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListSnapshotsRequest) GetReturnPartialSuccess() bool { +func (x *ListRoutersRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *ListRoutersRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for SslCertificates.List. See the method description for details. -type ListSslCertificatesRequest struct { +// A request message for Routes.List. See the method description for details. +type ListRoutesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -133743,21 +138645,21 @@ type ListSslCertificatesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListSslCertificatesRequest) Reset() { - *x = ListSslCertificatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1030] +func (x *ListRoutesRequest) Reset() { + *x = ListRoutesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1078] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListSslCertificatesRequest) String() string { +func (x *ListRoutesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListSslCertificatesRequest) ProtoMessage() {} +func (*ListRoutesRequest) ProtoMessage() {} -func (x *ListSslCertificatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1030] +func (x *ListRoutesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1078] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133768,55 +138670,55 @@ func (x *ListSslCertificatesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListSslCertificatesRequest.ProtoReflect.Descriptor instead. -func (*ListSslCertificatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1030} +// Deprecated: Use ListRoutesRequest.ProtoReflect.Descriptor instead. +func (*ListRoutesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1078} } -func (x *ListSslCertificatesRequest) GetFilter() string { +func (x *ListRoutesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListSslCertificatesRequest) GetMaxResults() uint32 { +func (x *ListRoutesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListSslCertificatesRequest) GetOrderBy() string { +func (x *ListRoutesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListSslCertificatesRequest) GetPageToken() string { +func (x *ListRoutesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListSslCertificatesRequest) GetProject() string { +func (x *ListRoutesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListSslCertificatesRequest) GetReturnPartialSuccess() bool { +func (x *ListRoutesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for SslPolicies.List. See the method description for details. -type ListSslPoliciesRequest struct { +// A request message for SecurityPolicies.List. See the method description for details. +type ListSecurityPoliciesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -133912,21 +138814,21 @@ type ListSslPoliciesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListSslPoliciesRequest) Reset() { - *x = ListSslPoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1031] +func (x *ListSecurityPoliciesRequest) Reset() { + *x = ListSecurityPoliciesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1079] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListSslPoliciesRequest) String() string { +func (x *ListSecurityPoliciesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListSslPoliciesRequest) ProtoMessage() {} +func (*ListSecurityPoliciesRequest) ProtoMessage() {} -func (x *ListSslPoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1031] +func (x *ListSecurityPoliciesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1079] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133937,55 +138839,55 @@ func (x *ListSslPoliciesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListSslPoliciesRequest.ProtoReflect.Descriptor instead. -func (*ListSslPoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1031} +// Deprecated: Use ListSecurityPoliciesRequest.ProtoReflect.Descriptor instead. +func (*ListSecurityPoliciesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1079} } -func (x *ListSslPoliciesRequest) GetFilter() string { +func (x *ListSecurityPoliciesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListSslPoliciesRequest) GetMaxResults() uint32 { +func (x *ListSecurityPoliciesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListSslPoliciesRequest) GetOrderBy() string { +func (x *ListSecurityPoliciesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListSslPoliciesRequest) GetPageToken() string { +func (x *ListSecurityPoliciesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListSslPoliciesRequest) GetProject() string { +func (x *ListSecurityPoliciesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListSslPoliciesRequest) GetReturnPartialSuccess() bool { +func (x *ListSecurityPoliciesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for StoragePoolTypes.List. See the method description for details. -type ListStoragePoolTypesRequest struct { +// A request message for ServiceAttachments.List. See the method description for details. +type ListServiceAttachmentsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -134070,6 +138972,8 @@ type ListStoragePoolTypesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region of this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -134077,27 +138981,25 @@ type ListStoragePoolTypesRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - // The name of the zone for this request. - Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListStoragePoolTypesRequest) Reset() { - *x = ListStoragePoolTypesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1032] +func (x *ListServiceAttachmentsRequest) Reset() { + *x = ListServiceAttachmentsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1080] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListStoragePoolTypesRequest) String() string { +func (x *ListServiceAttachmentsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListStoragePoolTypesRequest) ProtoMessage() {} +func (*ListServiceAttachmentsRequest) ProtoMessage() {} -func (x *ListStoragePoolTypesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1032] +func (x *ListServiceAttachmentsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1080] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134108,62 +139010,62 @@ func (x *ListStoragePoolTypesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListStoragePoolTypesRequest.ProtoReflect.Descriptor instead. -func (*ListStoragePoolTypesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1032} +// Deprecated: Use ListServiceAttachmentsRequest.ProtoReflect.Descriptor instead. +func (*ListServiceAttachmentsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1080} } -func (x *ListStoragePoolTypesRequest) GetFilter() string { +func (x *ListServiceAttachmentsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListStoragePoolTypesRequest) GetMaxResults() uint32 { +func (x *ListServiceAttachmentsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListStoragePoolTypesRequest) GetOrderBy() string { +func (x *ListServiceAttachmentsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListStoragePoolTypesRequest) GetPageToken() string { +func (x *ListServiceAttachmentsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListStoragePoolTypesRequest) GetProject() string { +func (x *ListServiceAttachmentsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListStoragePoolTypesRequest) GetReturnPartialSuccess() bool { - if x != nil && x.ReturnPartialSuccess != nil { - return *x.ReturnPartialSuccess +func (x *ListServiceAttachmentsRequest) GetRegion() string { + if x != nil { + return x.Region } - return false + return "" } -func (x *ListStoragePoolTypesRequest) GetZone() string { - if x != nil { - return x.Zone +func (x *ListServiceAttachmentsRequest) GetReturnPartialSuccess() bool { + if x != nil && x.ReturnPartialSuccess != nil { + return *x.ReturnPartialSuccess } - return "" + return false } -// A request message for StoragePools.List. See the method description for details. -type ListStoragePoolsRequest struct { +// A request message for Snapshots.List. See the method description for details. +type ListSnapshotsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -134255,27 +139157,25 @@ type ListStoragePoolsRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - // The name of the zone for this request. - Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListStoragePoolsRequest) Reset() { - *x = ListStoragePoolsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1033] +func (x *ListSnapshotsRequest) Reset() { + *x = ListSnapshotsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1081] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListStoragePoolsRequest) String() string { +func (x *ListSnapshotsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListStoragePoolsRequest) ProtoMessage() {} +func (*ListSnapshotsRequest) ProtoMessage() {} -func (x *ListStoragePoolsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1033] +func (x *ListSnapshotsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1081] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134286,62 +139186,55 @@ func (x *ListStoragePoolsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListStoragePoolsRequest.ProtoReflect.Descriptor instead. -func (*ListStoragePoolsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1033} +// Deprecated: Use ListSnapshotsRequest.ProtoReflect.Descriptor instead. +func (*ListSnapshotsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1081} } -func (x *ListStoragePoolsRequest) GetFilter() string { +func (x *ListSnapshotsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListStoragePoolsRequest) GetMaxResults() uint32 { +func (x *ListSnapshotsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListStoragePoolsRequest) GetOrderBy() string { +func (x *ListSnapshotsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListStoragePoolsRequest) GetPageToken() string { +func (x *ListSnapshotsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListStoragePoolsRequest) GetProject() string { +func (x *ListSnapshotsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListStoragePoolsRequest) GetReturnPartialSuccess() bool { +func (x *ListSnapshotsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *ListStoragePoolsRequest) GetZone() string { - if x != nil { - return x.Zone - } - return "" -} - -// A request message for Subnetworks.List. See the method description for details. -type ListSubnetworksRequest struct { +// A request message for SslCertificates.List. See the method description for details. +type ListSslCertificatesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -134426,8 +139319,6 @@ type ListSubnetworksRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. - Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -134435,33 +139326,25 @@ type ListSubnetworksRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - // Defines the extra views returned back in the subnetwork resource. - // Supported values: - // - // - WITH_UTILIZATION: Utilization data is included in the - // response. - // - // Check the Views enum for the list of possible values. - Views *string `protobuf:"bytes,112204398,opt,name=views,proto3,oneof" json:"views,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListSubnetworksRequest) Reset() { - *x = ListSubnetworksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1034] +func (x *ListSslCertificatesRequest) Reset() { + *x = ListSslCertificatesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1082] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListSubnetworksRequest) String() string { +func (x *ListSslCertificatesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListSubnetworksRequest) ProtoMessage() {} +func (*ListSslCertificatesRequest) ProtoMessage() {} -func (x *ListSubnetworksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1034] +func (x *ListSslCertificatesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1082] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134472,69 +139355,55 @@ func (x *ListSubnetworksRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListSubnetworksRequest.ProtoReflect.Descriptor instead. -func (*ListSubnetworksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1034} +// Deprecated: Use ListSslCertificatesRequest.ProtoReflect.Descriptor instead. +func (*ListSslCertificatesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1082} } -func (x *ListSubnetworksRequest) GetFilter() string { +func (x *ListSslCertificatesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListSubnetworksRequest) GetMaxResults() uint32 { +func (x *ListSslCertificatesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListSubnetworksRequest) GetOrderBy() string { +func (x *ListSslCertificatesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListSubnetworksRequest) GetPageToken() string { +func (x *ListSslCertificatesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListSubnetworksRequest) GetProject() string { +func (x *ListSslCertificatesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListSubnetworksRequest) GetRegion() string { - if x != nil { - return x.Region - } - return "" -} - -func (x *ListSubnetworksRequest) GetReturnPartialSuccess() bool { +func (x *ListSslCertificatesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *ListSubnetworksRequest) GetViews() string { - if x != nil && x.Views != nil { - return *x.Views - } - return "" -} - -// A request message for TargetGrpcProxies.List. See the method description for details. -type ListTargetGrpcProxiesRequest struct { +// A request message for SslPolicies.List. See the method description for details. +type ListSslPoliciesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -134630,21 +139499,21 @@ type ListTargetGrpcProxiesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListTargetGrpcProxiesRequest) Reset() { - *x = ListTargetGrpcProxiesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1035] +func (x *ListSslPoliciesRequest) Reset() { + *x = ListSslPoliciesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1083] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListTargetGrpcProxiesRequest) String() string { +func (x *ListSslPoliciesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListTargetGrpcProxiesRequest) ProtoMessage() {} +func (*ListSslPoliciesRequest) ProtoMessage() {} -func (x *ListTargetGrpcProxiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1035] +func (x *ListSslPoliciesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1083] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134655,55 +139524,55 @@ func (x *ListTargetGrpcProxiesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListTargetGrpcProxiesRequest.ProtoReflect.Descriptor instead. -func (*ListTargetGrpcProxiesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1035} +// Deprecated: Use ListSslPoliciesRequest.ProtoReflect.Descriptor instead. +func (*ListSslPoliciesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1083} } -func (x *ListTargetGrpcProxiesRequest) GetFilter() string { +func (x *ListSslPoliciesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListTargetGrpcProxiesRequest) GetMaxResults() uint32 { +func (x *ListSslPoliciesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListTargetGrpcProxiesRequest) GetOrderBy() string { +func (x *ListSslPoliciesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListTargetGrpcProxiesRequest) GetPageToken() string { +func (x *ListSslPoliciesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListTargetGrpcProxiesRequest) GetProject() string { +func (x *ListSslPoliciesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListTargetGrpcProxiesRequest) GetReturnPartialSuccess() bool { +func (x *ListSslPoliciesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for TargetHttpProxies.List. See the method description for details. -type ListTargetHttpProxiesRequest struct { +// A request message for StoragePoolTypes.List. See the method description for details. +type ListStoragePoolTypesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -134795,25 +139664,27 @@ type ListTargetHttpProxiesRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // The name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListTargetHttpProxiesRequest) Reset() { - *x = ListTargetHttpProxiesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1036] +func (x *ListStoragePoolTypesRequest) Reset() { + *x = ListStoragePoolTypesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1084] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListTargetHttpProxiesRequest) String() string { +func (x *ListStoragePoolTypesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListTargetHttpProxiesRequest) ProtoMessage() {} +func (*ListStoragePoolTypesRequest) ProtoMessage() {} -func (x *ListTargetHttpProxiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1036] +func (x *ListStoragePoolTypesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1084] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134824,55 +139695,62 @@ func (x *ListTargetHttpProxiesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListTargetHttpProxiesRequest.ProtoReflect.Descriptor instead. -func (*ListTargetHttpProxiesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1036} +// Deprecated: Use ListStoragePoolTypesRequest.ProtoReflect.Descriptor instead. +func (*ListStoragePoolTypesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1084} } -func (x *ListTargetHttpProxiesRequest) GetFilter() string { +func (x *ListStoragePoolTypesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListTargetHttpProxiesRequest) GetMaxResults() uint32 { +func (x *ListStoragePoolTypesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListTargetHttpProxiesRequest) GetOrderBy() string { +func (x *ListStoragePoolTypesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListTargetHttpProxiesRequest) GetPageToken() string { +func (x *ListStoragePoolTypesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListTargetHttpProxiesRequest) GetProject() string { +func (x *ListStoragePoolTypesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListTargetHttpProxiesRequest) GetReturnPartialSuccess() bool { +func (x *ListStoragePoolTypesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for TargetHttpsProxies.List. See the method description for details. -type ListTargetHttpsProxiesRequest struct { +func (x *ListStoragePoolTypesRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + +// A request message for StoragePools.List. See the method description for details. +type ListStoragePoolsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -134964,25 +139842,27 @@ type ListTargetHttpsProxiesRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // The name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListTargetHttpsProxiesRequest) Reset() { - *x = ListTargetHttpsProxiesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1037] +func (x *ListStoragePoolsRequest) Reset() { + *x = ListStoragePoolsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1085] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListTargetHttpsProxiesRequest) String() string { +func (x *ListStoragePoolsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListTargetHttpsProxiesRequest) ProtoMessage() {} +func (*ListStoragePoolsRequest) ProtoMessage() {} -func (x *ListTargetHttpsProxiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1037] +func (x *ListStoragePoolsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1085] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134993,55 +139873,62 @@ func (x *ListTargetHttpsProxiesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListTargetHttpsProxiesRequest.ProtoReflect.Descriptor instead. -func (*ListTargetHttpsProxiesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1037} +// Deprecated: Use ListStoragePoolsRequest.ProtoReflect.Descriptor instead. +func (*ListStoragePoolsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1085} } -func (x *ListTargetHttpsProxiesRequest) GetFilter() string { +func (x *ListStoragePoolsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListTargetHttpsProxiesRequest) GetMaxResults() uint32 { +func (x *ListStoragePoolsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListTargetHttpsProxiesRequest) GetOrderBy() string { +func (x *ListStoragePoolsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListTargetHttpsProxiesRequest) GetPageToken() string { +func (x *ListStoragePoolsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListTargetHttpsProxiesRequest) GetProject() string { +func (x *ListStoragePoolsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListTargetHttpsProxiesRequest) GetReturnPartialSuccess() bool { +func (x *ListStoragePoolsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for TargetInstances.List. See the method description for details. -type ListTargetInstancesRequest struct { +func (x *ListStoragePoolsRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + +// A request message for Subnetworks.List. See the method description for details. +type ListSubnetworksRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -135126,6 +140013,8 @@ type ListTargetInstancesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region scoping this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -135133,27 +140022,33 @@ type ListTargetInstancesRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - // Name of the zone scoping this request. - Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + // Defines the extra views returned back in the subnetwork resource. + // Supported values: + // + // - WITH_UTILIZATION: Utilization data is included in the + // response. + // + // Check the Views enum for the list of possible values. + Views *string `protobuf:"bytes,112204398,opt,name=views,proto3,oneof" json:"views,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } -func (x *ListTargetInstancesRequest) Reset() { - *x = ListTargetInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1038] +func (x *ListSubnetworksRequest) Reset() { + *x = ListSubnetworksRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1086] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListTargetInstancesRequest) String() string { +func (x *ListSubnetworksRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListTargetInstancesRequest) ProtoMessage() {} +func (*ListSubnetworksRequest) ProtoMessage() {} -func (x *ListTargetInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1038] +func (x *ListSubnetworksRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1086] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135164,62 +140059,69 @@ func (x *ListTargetInstancesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListTargetInstancesRequest.ProtoReflect.Descriptor instead. -func (*ListTargetInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1038} +// Deprecated: Use ListSubnetworksRequest.ProtoReflect.Descriptor instead. +func (*ListSubnetworksRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1086} } -func (x *ListTargetInstancesRequest) GetFilter() string { +func (x *ListSubnetworksRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListTargetInstancesRequest) GetMaxResults() uint32 { +func (x *ListSubnetworksRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListTargetInstancesRequest) GetOrderBy() string { +func (x *ListSubnetworksRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListTargetInstancesRequest) GetPageToken() string { +func (x *ListSubnetworksRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListTargetInstancesRequest) GetProject() string { +func (x *ListSubnetworksRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListTargetInstancesRequest) GetReturnPartialSuccess() bool { +func (x *ListSubnetworksRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *ListSubnetworksRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -func (x *ListTargetInstancesRequest) GetZone() string { - if x != nil { - return x.Zone +func (x *ListSubnetworksRequest) GetViews() string { + if x != nil && x.Views != nil { + return *x.Views } return "" } -// A request message for TargetPools.List. See the method description for details. -type ListTargetPoolsRequest struct { +// A request message for TargetGrpcProxies.List. See the method description for details. +type ListTargetGrpcProxiesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -135304,8 +140206,6 @@ type ListTargetPoolsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. - Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -135317,21 +140217,21 @@ type ListTargetPoolsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListTargetPoolsRequest) Reset() { - *x = ListTargetPoolsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1039] +func (x *ListTargetGrpcProxiesRequest) Reset() { + *x = ListTargetGrpcProxiesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1087] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListTargetPoolsRequest) String() string { +func (x *ListTargetGrpcProxiesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListTargetPoolsRequest) ProtoMessage() {} +func (*ListTargetGrpcProxiesRequest) ProtoMessage() {} -func (x *ListTargetPoolsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1039] +func (x *ListTargetGrpcProxiesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1087] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135342,62 +140242,55 @@ func (x *ListTargetPoolsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListTargetPoolsRequest.ProtoReflect.Descriptor instead. -func (*ListTargetPoolsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1039} +// Deprecated: Use ListTargetGrpcProxiesRequest.ProtoReflect.Descriptor instead. +func (*ListTargetGrpcProxiesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1087} } -func (x *ListTargetPoolsRequest) GetFilter() string { +func (x *ListTargetGrpcProxiesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListTargetPoolsRequest) GetMaxResults() uint32 { +func (x *ListTargetGrpcProxiesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListTargetPoolsRequest) GetOrderBy() string { +func (x *ListTargetGrpcProxiesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListTargetPoolsRequest) GetPageToken() string { +func (x *ListTargetGrpcProxiesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListTargetPoolsRequest) GetProject() string { +func (x *ListTargetGrpcProxiesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListTargetPoolsRequest) GetRegion() string { - if x != nil { - return x.Region - } - return "" -} - -func (x *ListTargetPoolsRequest) GetReturnPartialSuccess() bool { +func (x *ListTargetGrpcProxiesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for TargetSslProxies.List. See the method description for details. -type ListTargetSslProxiesRequest struct { +// A request message for TargetHttpProxies.List. See the method description for details. +type ListTargetHttpProxiesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -135493,21 +140386,21 @@ type ListTargetSslProxiesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListTargetSslProxiesRequest) Reset() { - *x = ListTargetSslProxiesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1040] +func (x *ListTargetHttpProxiesRequest) Reset() { + *x = ListTargetHttpProxiesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1088] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListTargetSslProxiesRequest) String() string { +func (x *ListTargetHttpProxiesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListTargetSslProxiesRequest) ProtoMessage() {} +func (*ListTargetHttpProxiesRequest) ProtoMessage() {} -func (x *ListTargetSslProxiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1040] +func (x *ListTargetHttpProxiesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1088] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135518,55 +140411,55 @@ func (x *ListTargetSslProxiesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListTargetSslProxiesRequest.ProtoReflect.Descriptor instead. -func (*ListTargetSslProxiesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1040} +// Deprecated: Use ListTargetHttpProxiesRequest.ProtoReflect.Descriptor instead. +func (*ListTargetHttpProxiesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1088} } -func (x *ListTargetSslProxiesRequest) GetFilter() string { +func (x *ListTargetHttpProxiesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListTargetSslProxiesRequest) GetMaxResults() uint32 { +func (x *ListTargetHttpProxiesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListTargetSslProxiesRequest) GetOrderBy() string { +func (x *ListTargetHttpProxiesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListTargetSslProxiesRequest) GetPageToken() string { +func (x *ListTargetHttpProxiesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListTargetSslProxiesRequest) GetProject() string { +func (x *ListTargetHttpProxiesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListTargetSslProxiesRequest) GetReturnPartialSuccess() bool { +func (x *ListTargetHttpProxiesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for TargetTcpProxies.List. See the method description for details. -type ListTargetTcpProxiesRequest struct { +// A request message for TargetHttpsProxies.List. See the method description for details. +type ListTargetHttpsProxiesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -135662,21 +140555,21 @@ type ListTargetTcpProxiesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListTargetTcpProxiesRequest) Reset() { - *x = ListTargetTcpProxiesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1041] +func (x *ListTargetHttpsProxiesRequest) Reset() { + *x = ListTargetHttpsProxiesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1089] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListTargetTcpProxiesRequest) String() string { +func (x *ListTargetHttpsProxiesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListTargetTcpProxiesRequest) ProtoMessage() {} +func (*ListTargetHttpsProxiesRequest) ProtoMessage() {} -func (x *ListTargetTcpProxiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1041] +func (x *ListTargetHttpsProxiesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1089] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135687,55 +140580,55 @@ func (x *ListTargetTcpProxiesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListTargetTcpProxiesRequest.ProtoReflect.Descriptor instead. -func (*ListTargetTcpProxiesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1041} +// Deprecated: Use ListTargetHttpsProxiesRequest.ProtoReflect.Descriptor instead. +func (*ListTargetHttpsProxiesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1089} } -func (x *ListTargetTcpProxiesRequest) GetFilter() string { +func (x *ListTargetHttpsProxiesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListTargetTcpProxiesRequest) GetMaxResults() uint32 { +func (x *ListTargetHttpsProxiesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListTargetTcpProxiesRequest) GetOrderBy() string { +func (x *ListTargetHttpsProxiesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListTargetTcpProxiesRequest) GetPageToken() string { +func (x *ListTargetHttpsProxiesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListTargetTcpProxiesRequest) GetProject() string { +func (x *ListTargetHttpsProxiesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListTargetTcpProxiesRequest) GetReturnPartialSuccess() bool { +func (x *ListTargetHttpsProxiesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for TargetVpnGateways.List. See the method description for details. -type ListTargetVpnGatewaysRequest struct { +// A request message for TargetInstances.List. See the method description for details. +type ListTargetInstancesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -135820,8 +140713,6 @@ type ListTargetVpnGatewaysRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region for this request. - Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -135829,25 +140720,27 @@ type ListTargetVpnGatewaysRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // Name of the zone scoping this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListTargetVpnGatewaysRequest) Reset() { - *x = ListTargetVpnGatewaysRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1042] +func (x *ListTargetInstancesRequest) Reset() { + *x = ListTargetInstancesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1090] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListTargetVpnGatewaysRequest) String() string { +func (x *ListTargetInstancesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListTargetVpnGatewaysRequest) ProtoMessage() {} +func (*ListTargetInstancesRequest) ProtoMessage() {} -func (x *ListTargetVpnGatewaysRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1042] +func (x *ListTargetInstancesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1090] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135858,62 +140751,62 @@ func (x *ListTargetVpnGatewaysRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListTargetVpnGatewaysRequest.ProtoReflect.Descriptor instead. -func (*ListTargetVpnGatewaysRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1042} +// Deprecated: Use ListTargetInstancesRequest.ProtoReflect.Descriptor instead. +func (*ListTargetInstancesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1090} } -func (x *ListTargetVpnGatewaysRequest) GetFilter() string { +func (x *ListTargetInstancesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListTargetVpnGatewaysRequest) GetMaxResults() uint32 { +func (x *ListTargetInstancesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListTargetVpnGatewaysRequest) GetOrderBy() string { +func (x *ListTargetInstancesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListTargetVpnGatewaysRequest) GetPageToken() string { +func (x *ListTargetInstancesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListTargetVpnGatewaysRequest) GetProject() string { +func (x *ListTargetInstancesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListTargetVpnGatewaysRequest) GetRegion() string { - if x != nil { - return x.Region - } - return "" -} - -func (x *ListTargetVpnGatewaysRequest) GetReturnPartialSuccess() bool { +func (x *ListTargetInstancesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for UrlMaps.List. See the method description for details. -type ListUrlMapsRequest struct { +func (x *ListTargetInstancesRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + +// A request message for TargetPools.List. See the method description for details. +type ListTargetPoolsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -135998,6 +140891,8 @@ type ListUrlMapsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region scoping this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -136009,21 +140904,21 @@ type ListUrlMapsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListUrlMapsRequest) Reset() { - *x = ListUrlMapsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1043] +func (x *ListTargetPoolsRequest) Reset() { + *x = ListTargetPoolsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1091] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListUrlMapsRequest) String() string { +func (x *ListTargetPoolsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListUrlMapsRequest) ProtoMessage() {} +func (*ListTargetPoolsRequest) ProtoMessage() {} -func (x *ListUrlMapsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1043] +func (x *ListTargetPoolsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1091] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136034,55 +140929,62 @@ func (x *ListUrlMapsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListUrlMapsRequest.ProtoReflect.Descriptor instead. -func (*ListUrlMapsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1043} +// Deprecated: Use ListTargetPoolsRequest.ProtoReflect.Descriptor instead. +func (*ListTargetPoolsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1091} } -func (x *ListUrlMapsRequest) GetFilter() string { +func (x *ListTargetPoolsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListUrlMapsRequest) GetMaxResults() uint32 { +func (x *ListTargetPoolsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListUrlMapsRequest) GetOrderBy() string { +func (x *ListTargetPoolsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListUrlMapsRequest) GetPageToken() string { +func (x *ListTargetPoolsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListUrlMapsRequest) GetProject() string { +func (x *ListTargetPoolsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListUrlMapsRequest) GetReturnPartialSuccess() bool { +func (x *ListTargetPoolsRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *ListTargetPoolsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for BackendServices.ListUsable. See the method description for details. -type ListUsableBackendServicesRequest struct { +// A request message for TargetSslProxies.List. See the method description for details. +type ListTargetSslProxiesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -136178,21 +141080,21 @@ type ListUsableBackendServicesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListUsableBackendServicesRequest) Reset() { - *x = ListUsableBackendServicesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1044] +func (x *ListTargetSslProxiesRequest) Reset() { + *x = ListTargetSslProxiesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1092] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListUsableBackendServicesRequest) String() string { +func (x *ListTargetSslProxiesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListUsableBackendServicesRequest) ProtoMessage() {} +func (*ListTargetSslProxiesRequest) ProtoMessage() {} -func (x *ListUsableBackendServicesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1044] +func (x *ListTargetSslProxiesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1092] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136203,55 +141105,55 @@ func (x *ListUsableBackendServicesRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListUsableBackendServicesRequest.ProtoReflect.Descriptor instead. -func (*ListUsableBackendServicesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1044} +// Deprecated: Use ListTargetSslProxiesRequest.ProtoReflect.Descriptor instead. +func (*ListTargetSslProxiesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1092} } -func (x *ListUsableBackendServicesRequest) GetFilter() string { +func (x *ListTargetSslProxiesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListUsableBackendServicesRequest) GetMaxResults() uint32 { +func (x *ListTargetSslProxiesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListUsableBackendServicesRequest) GetOrderBy() string { +func (x *ListTargetSslProxiesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListUsableBackendServicesRequest) GetPageToken() string { +func (x *ListTargetSslProxiesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListUsableBackendServicesRequest) GetProject() string { +func (x *ListTargetSslProxiesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListUsableBackendServicesRequest) GetReturnPartialSuccess() bool { +func (x *ListTargetSslProxiesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for RegionBackendServices.ListUsable. See the method description for details. -type ListUsableRegionBackendServicesRequest struct { +// A request message for TargetTcpProxies.List. See the method description for details. +type ListTargetTcpProxiesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -136336,9 +141238,6 @@ type ListUsableRegionBackendServicesRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region scoping this request. - // It must be a string that meets the requirements in RFC1035. - Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -136350,21 +141249,21 @@ type ListUsableRegionBackendServicesRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListUsableRegionBackendServicesRequest) Reset() { - *x = ListUsableRegionBackendServicesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1045] +func (x *ListTargetTcpProxiesRequest) Reset() { + *x = ListTargetTcpProxiesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1093] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListUsableRegionBackendServicesRequest) String() string { +func (x *ListTargetTcpProxiesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListUsableRegionBackendServicesRequest) ProtoMessage() {} +func (*ListTargetTcpProxiesRequest) ProtoMessage() {} -func (x *ListUsableRegionBackendServicesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1045] +func (x *ListTargetTcpProxiesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1093] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136375,62 +141274,55 @@ func (x *ListUsableRegionBackendServicesRequest) ProtoReflect() protoreflect.Mes return mi.MessageOf(x) } -// Deprecated: Use ListUsableRegionBackendServicesRequest.ProtoReflect.Descriptor instead. -func (*ListUsableRegionBackendServicesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1045} +// Deprecated: Use ListTargetTcpProxiesRequest.ProtoReflect.Descriptor instead. +func (*ListTargetTcpProxiesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1093} } -func (x *ListUsableRegionBackendServicesRequest) GetFilter() string { +func (x *ListTargetTcpProxiesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListUsableRegionBackendServicesRequest) GetMaxResults() uint32 { +func (x *ListTargetTcpProxiesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListUsableRegionBackendServicesRequest) GetOrderBy() string { +func (x *ListTargetTcpProxiesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListUsableRegionBackendServicesRequest) GetPageToken() string { +func (x *ListTargetTcpProxiesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListUsableRegionBackendServicesRequest) GetProject() string { +func (x *ListTargetTcpProxiesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListUsableRegionBackendServicesRequest) GetRegion() string { - if x != nil { - return x.Region - } - return "" -} - -func (x *ListUsableRegionBackendServicesRequest) GetReturnPartialSuccess() bool { +func (x *ListTargetTcpProxiesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for Subnetworks.ListUsable. See the method description for details. -type ListUsableSubnetworksRequest struct { +// A request message for TargetVpnGateways.List. See the method description for details. +type ListTargetVpnGatewaysRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -136515,6 +141407,8 @@ type ListUsableSubnetworksRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -136522,29 +141416,25 @@ type ListUsableSubnetworksRequest struct { // single zone scope either returns all resources in the zone or no resources, // with an error code. ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` - // The project id or project number in which the subnetwork is intended to be - // used. Only applied for Shared VPC. See [Shared VPC - // documentation](https://cloud.google.com/vpc/docs/shared-vpc/) - ServiceProject *string `protobuf:"bytes,530592655,opt,name=service_project,json=serviceProject,proto3,oneof" json:"service_project,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *ListUsableSubnetworksRequest) Reset() { - *x = ListUsableSubnetworksRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1046] +func (x *ListTargetVpnGatewaysRequest) Reset() { + *x = ListTargetVpnGatewaysRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1094] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListUsableSubnetworksRequest) String() string { +func (x *ListTargetVpnGatewaysRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListUsableSubnetworksRequest) ProtoMessage() {} +func (*ListTargetVpnGatewaysRequest) ProtoMessage() {} -func (x *ListUsableSubnetworksRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1046] +func (x *ListTargetVpnGatewaysRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1094] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136555,62 +141445,62 @@ func (x *ListUsableSubnetworksRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListUsableSubnetworksRequest.ProtoReflect.Descriptor instead. -func (*ListUsableSubnetworksRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1046} +// Deprecated: Use ListTargetVpnGatewaysRequest.ProtoReflect.Descriptor instead. +func (*ListTargetVpnGatewaysRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1094} } -func (x *ListUsableSubnetworksRequest) GetFilter() string { +func (x *ListTargetVpnGatewaysRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListUsableSubnetworksRequest) GetMaxResults() uint32 { +func (x *ListTargetVpnGatewaysRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListUsableSubnetworksRequest) GetOrderBy() string { +func (x *ListTargetVpnGatewaysRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListUsableSubnetworksRequest) GetPageToken() string { +func (x *ListTargetVpnGatewaysRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListUsableSubnetworksRequest) GetProject() string { +func (x *ListTargetVpnGatewaysRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListUsableSubnetworksRequest) GetReturnPartialSuccess() bool { - if x != nil && x.ReturnPartialSuccess != nil { - return *x.ReturnPartialSuccess +func (x *ListTargetVpnGatewaysRequest) GetRegion() string { + if x != nil { + return x.Region } - return false + return "" } -func (x *ListUsableSubnetworksRequest) GetServiceProject() string { - if x != nil && x.ServiceProject != nil { - return *x.ServiceProject +func (x *ListTargetVpnGatewaysRequest) GetReturnPartialSuccess() bool { + if x != nil && x.ReturnPartialSuccess != nil { + return *x.ReturnPartialSuccess } - return "" + return false } -// A request message for VpnGateways.List. See the method description for details. -type ListVpnGatewaysRequest struct { +// A request message for UrlMaps.List. See the method description for details. +type ListUrlMapsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -136695,8 +141585,6 @@ type ListVpnGatewaysRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region for this request. - Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -136708,21 +141596,21 @@ type ListVpnGatewaysRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListVpnGatewaysRequest) Reset() { - *x = ListVpnGatewaysRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1047] +func (x *ListUrlMapsRequest) Reset() { + *x = ListUrlMapsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1095] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListVpnGatewaysRequest) String() string { +func (x *ListUrlMapsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListVpnGatewaysRequest) ProtoMessage() {} +func (*ListUrlMapsRequest) ProtoMessage() {} -func (x *ListVpnGatewaysRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1047] +func (x *ListUrlMapsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1095] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136733,62 +141621,55 @@ func (x *ListVpnGatewaysRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListVpnGatewaysRequest.ProtoReflect.Descriptor instead. -func (*ListVpnGatewaysRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1047} +// Deprecated: Use ListUrlMapsRequest.ProtoReflect.Descriptor instead. +func (*ListUrlMapsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1095} } -func (x *ListVpnGatewaysRequest) GetFilter() string { +func (x *ListUrlMapsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListVpnGatewaysRequest) GetMaxResults() uint32 { +func (x *ListUrlMapsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListVpnGatewaysRequest) GetOrderBy() string { +func (x *ListUrlMapsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListVpnGatewaysRequest) GetPageToken() string { +func (x *ListUrlMapsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListVpnGatewaysRequest) GetProject() string { +func (x *ListUrlMapsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListVpnGatewaysRequest) GetRegion() string { - if x != nil { - return x.Region - } - return "" -} - -func (x *ListVpnGatewaysRequest) GetReturnPartialSuccess() bool { +func (x *ListUrlMapsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for VpnTunnels.List. See the method description for details. -type ListVpnTunnelsRequest struct { +// A request message for BackendBuckets.ListUsable. See the method description for details. +type ListUsableBackendBucketsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -136873,8 +141754,6 @@ type ListVpnTunnelsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // Name of the region for this request. - Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -136886,21 +141765,21 @@ type ListVpnTunnelsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListVpnTunnelsRequest) Reset() { - *x = ListVpnTunnelsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1048] +func (x *ListUsableBackendBucketsRequest) Reset() { + *x = ListUsableBackendBucketsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1096] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListVpnTunnelsRequest) String() string { +func (x *ListUsableBackendBucketsRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListVpnTunnelsRequest) ProtoMessage() {} +func (*ListUsableBackendBucketsRequest) ProtoMessage() {} -func (x *ListVpnTunnelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1048] +func (x *ListUsableBackendBucketsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1096] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136911,64 +141790,56 @@ func (x *ListVpnTunnelsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListVpnTunnelsRequest.ProtoReflect.Descriptor instead. -func (*ListVpnTunnelsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1048} +// Deprecated: Use ListUsableBackendBucketsRequest.ProtoReflect.Descriptor instead. +func (*ListUsableBackendBucketsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1096} } -func (x *ListVpnTunnelsRequest) GetFilter() string { +func (x *ListUsableBackendBucketsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListVpnTunnelsRequest) GetMaxResults() uint32 { +func (x *ListUsableBackendBucketsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListVpnTunnelsRequest) GetOrderBy() string { +func (x *ListUsableBackendBucketsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListVpnTunnelsRequest) GetPageToken() string { +func (x *ListUsableBackendBucketsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListVpnTunnelsRequest) GetProject() string { +func (x *ListUsableBackendBucketsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListVpnTunnelsRequest) GetRegion() string { - if x != nil { - return x.Region - } - return "" -} - -func (x *ListVpnTunnelsRequest) GetReturnPartialSuccess() bool { +func (x *ListUsableBackendBucketsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for WireGroups.List. See the method description for details. -type ListWireGroupsRequest struct { - state protoimpl.MessageState `protogen:"open.v1"` - CrossSiteNetwork string `protobuf:"bytes,108192469,opt,name=cross_site_network,json=crossSiteNetwork,proto3" json:"cross_site_network,omitempty"` +// A request message for BackendServices.ListUsable. See the method description for details. +type ListUsableBackendServicesRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: // expressions that support regular expressions and expressions that follow @@ -137063,21 +141934,21 @@ type ListWireGroupsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListWireGroupsRequest) Reset() { - *x = ListWireGroupsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1049] +func (x *ListUsableBackendServicesRequest) Reset() { + *x = ListUsableBackendServicesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1097] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListWireGroupsRequest) String() string { +func (x *ListUsableBackendServicesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListWireGroupsRequest) ProtoMessage() {} +func (*ListUsableBackendServicesRequest) ProtoMessage() {} -func (x *ListWireGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1049] +func (x *ListUsableBackendServicesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1097] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137088,62 +141959,234 @@ func (x *ListWireGroupsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListWireGroupsRequest.ProtoReflect.Descriptor instead. -func (*ListWireGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1049} +// Deprecated: Use ListUsableBackendServicesRequest.ProtoReflect.Descriptor instead. +func (*ListUsableBackendServicesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1097} } -func (x *ListWireGroupsRequest) GetCrossSiteNetwork() string { +func (x *ListUsableBackendServicesRequest) GetFilter() string { + if x != nil && x.Filter != nil { + return *x.Filter + } + return "" +} + +func (x *ListUsableBackendServicesRequest) GetMaxResults() uint32 { + if x != nil && x.MaxResults != nil { + return *x.MaxResults + } + return 0 +} + +func (x *ListUsableBackendServicesRequest) GetOrderBy() string { + if x != nil && x.OrderBy != nil { + return *x.OrderBy + } + return "" +} + +func (x *ListUsableBackendServicesRequest) GetPageToken() string { + if x != nil && x.PageToken != nil { + return *x.PageToken + } + return "" +} + +func (x *ListUsableBackendServicesRequest) GetProject() string { if x != nil { - return x.CrossSiteNetwork + return x.Project } return "" } -func (x *ListWireGroupsRequest) GetFilter() string { +func (x *ListUsableBackendServicesRequest) GetReturnPartialSuccess() bool { + if x != nil && x.ReturnPartialSuccess != nil { + return *x.ReturnPartialSuccess + } + return false +} + +// A request message for RegionBackendBuckets.ListUsable. See the method description for details. +type ListUsableRegionBackendBucketsRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // A filter expression that filters resources listed in the response. Most + // Compute resources support two types of filter expressions: + // expressions that support regular expressions and expressions that follow + // API improvement proposal AIP-160. + // These two types of filter expressions cannot be mixed in one request. + // + // If you want to use AIP-160, your expression must specify the field name, an + // operator, and the value that you want to use for filtering. The value + // must be a string, a number, or a boolean. The operator + // must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. + // + // For example, if you are filtering Compute Engine instances, you can + // exclude instances named `example-instance` by specifying + // `name != example-instance`. + // + // The `:*` comparison can be used to test whether a key has been defined. + // For example, to find all objects with `owner` label use: + // ``` + // labels.owner:* + // ``` + // + // You can also filter nested fields. For example, you could specify + // `scheduling.automaticRestart = false` to include instances only + // if they are not scheduled for automatic restarts. You can use filtering + // on nested fields to filter based onresource labels. + // + // To filter on multiple expressions, provide each separate expression within + // parentheses. For example: + // ``` + // (scheduling.automaticRestart = true) + // (cpuPlatform = "Intel Skylake") + // ``` + // By default, each expression is an `AND` expression. However, you + // can include `AND` and `OR` expressions explicitly. + // For example: + // ``` + // (cpuPlatform = "Intel Skylake") OR + // (cpuPlatform = "Intel Broadwell") AND + // (scheduling.automaticRestart = true) + // ``` + // + // If you want to use a regular expression, use the `eq` (equal) or `ne` + // (not equal) operator against a single un-parenthesized expression with or + // without quotes or against multiple parenthesized expressions. Examples: + // + // `fieldname eq unquoted literal` + // `fieldname eq 'single quoted literal'` + // `fieldname eq "double quoted literal"` + // `(fieldname1 eq literal) (fieldname2 ne "literal")` + // + // The literal value is interpreted as a regular expression using GoogleRE2 library syntax. + // The literal value must match the entire field. + // + // For example, to filter for instances that do not end with name "instance", + // you would use `name ne .*instance`. + // + // You cannot combine constraints on multiple fields using regular + // expressions. + Filter *string `protobuf:"bytes,336120696,opt,name=filter,proto3,oneof" json:"filter,omitempty"` + // The maximum number of results per page that should be returned. + // If the number of available results is larger than `maxResults`, + // Compute Engine returns a `nextPageToken` that can be used to get + // the next page of results in subsequent list requests. Acceptable values are + // `0` to `500`, inclusive. (Default: `500`) + MaxResults *uint32 `protobuf:"varint,54715419,opt,name=max_results,json=maxResults,proto3,oneof" json:"max_results,omitempty"` + // Sorts list results by a certain order. By default, results + // are returned in alphanumerical order based on the resource name. + // + // You can also sort results in descending order based on the creation + // timestamp using `orderBy="creationTimestamp desc"`. This sorts + // results based on the `creationTimestamp` field in + // reverse chronological order (newest result first). Use this to sort + // resources like operations so that the newest operation is returned first. + // + // Currently, only sorting by `name` or + // `creationTimestamp desc` is supported. + OrderBy *string `protobuf:"bytes,160562920,opt,name=order_by,json=orderBy,proto3,oneof" json:"order_by,omitempty"` + // Specifies a page token to use. Set `pageToken` to the + // `nextPageToken` returned by a previous list request to get + // the next page of results. + PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region scoping this request. + // It must be a string that meets the requirements in RFC1035. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // Opt-in for partial success behavior which provides partial results in case + // of failure. The default value is false. + // + // For example, when partial success behavior is enabled, aggregatedList for a + // single zone scope either returns all resources in the zone or no resources, + // with an error code. + ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListUsableRegionBackendBucketsRequest) Reset() { + *x = ListUsableRegionBackendBucketsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1098] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListUsableRegionBackendBucketsRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListUsableRegionBackendBucketsRequest) ProtoMessage() {} + +func (x *ListUsableRegionBackendBucketsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1098] + 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 ListUsableRegionBackendBucketsRequest.ProtoReflect.Descriptor instead. +func (*ListUsableRegionBackendBucketsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1098} +} + +func (x *ListUsableRegionBackendBucketsRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListWireGroupsRequest) GetMaxResults() uint32 { +func (x *ListUsableRegionBackendBucketsRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListWireGroupsRequest) GetOrderBy() string { +func (x *ListUsableRegionBackendBucketsRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListWireGroupsRequest) GetPageToken() string { +func (x *ListUsableRegionBackendBucketsRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListWireGroupsRequest) GetProject() string { +func (x *ListUsableRegionBackendBucketsRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListWireGroupsRequest) GetReturnPartialSuccess() bool { +func (x *ListUsableRegionBackendBucketsRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *ListUsableRegionBackendBucketsRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for Projects.ListXpnHosts. See the method description for details. -type ListXpnHostsProjectsRequest struct { +// A request message for RegionBackendServices.ListUsable. See the method description for details. +type ListUsableRegionBackendServicesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -137228,8 +142271,9 @@ type ListXpnHostsProjectsRequest struct { PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` - // The body resource for this request - ProjectsListXpnHostsRequestResource *ProjectsListXpnHostsRequest `protobuf:"bytes,238266391,opt,name=projects_list_xpn_hosts_request_resource,json=projectsListXpnHostsRequestResource,proto3" json:"projects_list_xpn_hosts_request_resource,omitempty"` + // Name of the region scoping this request. + // It must be a string that meets the requirements in RFC1035. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` // Opt-in for partial success behavior which provides partial results in case // of failure. The default value is false. // @@ -137241,21 +142285,21 @@ type ListXpnHostsProjectsRequest struct { sizeCache protoimpl.SizeCache } -func (x *ListXpnHostsProjectsRequest) Reset() { - *x = ListXpnHostsProjectsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1050] +func (x *ListUsableRegionBackendServicesRequest) Reset() { + *x = ListUsableRegionBackendServicesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1099] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *ListXpnHostsProjectsRequest) String() string { +func (x *ListUsableRegionBackendServicesRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*ListXpnHostsProjectsRequest) ProtoMessage() {} +func (*ListUsableRegionBackendServicesRequest) ProtoMessage() {} -func (x *ListXpnHostsProjectsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1050] +func (x *ListUsableRegionBackendServicesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1099] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137266,62 +142310,953 @@ func (x *ListXpnHostsProjectsRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use ListXpnHostsProjectsRequest.ProtoReflect.Descriptor instead. -func (*ListXpnHostsProjectsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1050} +// Deprecated: Use ListUsableRegionBackendServicesRequest.ProtoReflect.Descriptor instead. +func (*ListUsableRegionBackendServicesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1099} } -func (x *ListXpnHostsProjectsRequest) GetFilter() string { +func (x *ListUsableRegionBackendServicesRequest) GetFilter() string { if x != nil && x.Filter != nil { return *x.Filter } return "" } -func (x *ListXpnHostsProjectsRequest) GetMaxResults() uint32 { +func (x *ListUsableRegionBackendServicesRequest) GetMaxResults() uint32 { if x != nil && x.MaxResults != nil { return *x.MaxResults } return 0 } -func (x *ListXpnHostsProjectsRequest) GetOrderBy() string { +func (x *ListUsableRegionBackendServicesRequest) GetOrderBy() string { if x != nil && x.OrderBy != nil { return *x.OrderBy } return "" } -func (x *ListXpnHostsProjectsRequest) GetPageToken() string { +func (x *ListUsableRegionBackendServicesRequest) GetPageToken() string { if x != nil && x.PageToken != nil { return *x.PageToken } return "" } -func (x *ListXpnHostsProjectsRequest) GetProject() string { +func (x *ListUsableRegionBackendServicesRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *ListXpnHostsProjectsRequest) GetProjectsListXpnHostsRequestResource() *ProjectsListXpnHostsRequest { +func (x *ListUsableRegionBackendServicesRequest) GetRegion() string { if x != nil { - return x.ProjectsListXpnHostsRequestResource + return x.Region } - return nil + return "" } -func (x *ListXpnHostsProjectsRequest) GetReturnPartialSuccess() bool { +func (x *ListUsableRegionBackendServicesRequest) GetReturnPartialSuccess() bool { if x != nil && x.ReturnPartialSuccess != nil { return *x.ReturnPartialSuccess } return false } -// A request message for ZoneOperations.List. See the method description for details. -type ListZoneOperationsRequest struct { +// A request message for Subnetworks.ListUsable. See the method description for details. +type ListUsableSubnetworksRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // A filter expression that filters resources listed in the response. Most + // Compute resources support two types of filter expressions: + // expressions that support regular expressions and expressions that follow + // API improvement proposal AIP-160. + // These two types of filter expressions cannot be mixed in one request. + // + // If you want to use AIP-160, your expression must specify the field name, an + // operator, and the value that you want to use for filtering. The value + // must be a string, a number, or a boolean. The operator + // must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. + // + // For example, if you are filtering Compute Engine instances, you can + // exclude instances named `example-instance` by specifying + // `name != example-instance`. + // + // The `:*` comparison can be used to test whether a key has been defined. + // For example, to find all objects with `owner` label use: + // ``` + // labels.owner:* + // ``` + // + // You can also filter nested fields. For example, you could specify + // `scheduling.automaticRestart = false` to include instances only + // if they are not scheduled for automatic restarts. You can use filtering + // on nested fields to filter based onresource labels. + // + // To filter on multiple expressions, provide each separate expression within + // parentheses. For example: + // ``` + // (scheduling.automaticRestart = true) + // (cpuPlatform = "Intel Skylake") + // ``` + // By default, each expression is an `AND` expression. However, you + // can include `AND` and `OR` expressions explicitly. + // For example: + // ``` + // (cpuPlatform = "Intel Skylake") OR + // (cpuPlatform = "Intel Broadwell") AND + // (scheduling.automaticRestart = true) + // ``` + // + // If you want to use a regular expression, use the `eq` (equal) or `ne` + // (not equal) operator against a single un-parenthesized expression with or + // without quotes or against multiple parenthesized expressions. Examples: + // + // `fieldname eq unquoted literal` + // `fieldname eq 'single quoted literal'` + // `fieldname eq "double quoted literal"` + // `(fieldname1 eq literal) (fieldname2 ne "literal")` + // + // The literal value is interpreted as a regular expression using GoogleRE2 library syntax. + // The literal value must match the entire field. + // + // For example, to filter for instances that do not end with name "instance", + // you would use `name ne .*instance`. + // + // You cannot combine constraints on multiple fields using regular + // expressions. + Filter *string `protobuf:"bytes,336120696,opt,name=filter,proto3,oneof" json:"filter,omitempty"` + // The maximum number of results per page that should be returned. + // If the number of available results is larger than `maxResults`, + // Compute Engine returns a `nextPageToken` that can be used to get + // the next page of results in subsequent list requests. Acceptable values are + // `0` to `500`, inclusive. (Default: `500`) + MaxResults *uint32 `protobuf:"varint,54715419,opt,name=max_results,json=maxResults,proto3,oneof" json:"max_results,omitempty"` + // Sorts list results by a certain order. By default, results + // are returned in alphanumerical order based on the resource name. + // + // You can also sort results in descending order based on the creation + // timestamp using `orderBy="creationTimestamp desc"`. This sorts + // results based on the `creationTimestamp` field in + // reverse chronological order (newest result first). Use this to sort + // resources like operations so that the newest operation is returned first. + // + // Currently, only sorting by `name` or + // `creationTimestamp desc` is supported. + OrderBy *string `protobuf:"bytes,160562920,opt,name=order_by,json=orderBy,proto3,oneof" json:"order_by,omitempty"` + // Specifies a page token to use. Set `pageToken` to the + // `nextPageToken` returned by a previous list request to get + // the next page of results. + PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Opt-in for partial success behavior which provides partial results in case + // of failure. The default value is false. + // + // For example, when partial success behavior is enabled, aggregatedList for a + // single zone scope either returns all resources in the zone or no resources, + // with an error code. + ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` + // The project id or project number in which the subnetwork is intended to be + // used. Only applied for Shared VPC. See [Shared VPC + // documentation](https://cloud.google.com/vpc/docs/shared-vpc/) + ServiceProject *string `protobuf:"bytes,530592655,opt,name=service_project,json=serviceProject,proto3,oneof" json:"service_project,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListUsableSubnetworksRequest) Reset() { + *x = ListUsableSubnetworksRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1100] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListUsableSubnetworksRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListUsableSubnetworksRequest) ProtoMessage() {} + +func (x *ListUsableSubnetworksRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1100] + 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 ListUsableSubnetworksRequest.ProtoReflect.Descriptor instead. +func (*ListUsableSubnetworksRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1100} +} + +func (x *ListUsableSubnetworksRequest) GetFilter() string { + if x != nil && x.Filter != nil { + return *x.Filter + } + return "" +} + +func (x *ListUsableSubnetworksRequest) GetMaxResults() uint32 { + if x != nil && x.MaxResults != nil { + return *x.MaxResults + } + return 0 +} + +func (x *ListUsableSubnetworksRequest) GetOrderBy() string { + if x != nil && x.OrderBy != nil { + return *x.OrderBy + } + return "" +} + +func (x *ListUsableSubnetworksRequest) GetPageToken() string { + if x != nil && x.PageToken != nil { + return *x.PageToken + } + return "" +} + +func (x *ListUsableSubnetworksRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *ListUsableSubnetworksRequest) GetReturnPartialSuccess() bool { + if x != nil && x.ReturnPartialSuccess != nil { + return *x.ReturnPartialSuccess + } + return false +} + +func (x *ListUsableSubnetworksRequest) GetServiceProject() string { + if x != nil && x.ServiceProject != nil { + return *x.ServiceProject + } + return "" +} + +// A request message for VpnGateways.List. See the method description for details. +type ListVpnGatewaysRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // A filter expression that filters resources listed in the response. Most + // Compute resources support two types of filter expressions: + // expressions that support regular expressions and expressions that follow + // API improvement proposal AIP-160. + // These two types of filter expressions cannot be mixed in one request. + // + // If you want to use AIP-160, your expression must specify the field name, an + // operator, and the value that you want to use for filtering. The value + // must be a string, a number, or a boolean. The operator + // must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. + // + // For example, if you are filtering Compute Engine instances, you can + // exclude instances named `example-instance` by specifying + // `name != example-instance`. + // + // The `:*` comparison can be used to test whether a key has been defined. + // For example, to find all objects with `owner` label use: + // ``` + // labels.owner:* + // ``` + // + // You can also filter nested fields. For example, you could specify + // `scheduling.automaticRestart = false` to include instances only + // if they are not scheduled for automatic restarts. You can use filtering + // on nested fields to filter based onresource labels. + // + // To filter on multiple expressions, provide each separate expression within + // parentheses. For example: + // ``` + // (scheduling.automaticRestart = true) + // (cpuPlatform = "Intel Skylake") + // ``` + // By default, each expression is an `AND` expression. However, you + // can include `AND` and `OR` expressions explicitly. + // For example: + // ``` + // (cpuPlatform = "Intel Skylake") OR + // (cpuPlatform = "Intel Broadwell") AND + // (scheduling.automaticRestart = true) + // ``` + // + // If you want to use a regular expression, use the `eq` (equal) or `ne` + // (not equal) operator against a single un-parenthesized expression with or + // without quotes or against multiple parenthesized expressions. Examples: + // + // `fieldname eq unquoted literal` + // `fieldname eq 'single quoted literal'` + // `fieldname eq "double quoted literal"` + // `(fieldname1 eq literal) (fieldname2 ne "literal")` + // + // The literal value is interpreted as a regular expression using GoogleRE2 library syntax. + // The literal value must match the entire field. + // + // For example, to filter for instances that do not end with name "instance", + // you would use `name ne .*instance`. + // + // You cannot combine constraints on multiple fields using regular + // expressions. + Filter *string `protobuf:"bytes,336120696,opt,name=filter,proto3,oneof" json:"filter,omitempty"` + // The maximum number of results per page that should be returned. + // If the number of available results is larger than `maxResults`, + // Compute Engine returns a `nextPageToken` that can be used to get + // the next page of results in subsequent list requests. Acceptable values are + // `0` to `500`, inclusive. (Default: `500`) + MaxResults *uint32 `protobuf:"varint,54715419,opt,name=max_results,json=maxResults,proto3,oneof" json:"max_results,omitempty"` + // Sorts list results by a certain order. By default, results + // are returned in alphanumerical order based on the resource name. + // + // You can also sort results in descending order based on the creation + // timestamp using `orderBy="creationTimestamp desc"`. This sorts + // results based on the `creationTimestamp` field in + // reverse chronological order (newest result first). Use this to sort + // resources like operations so that the newest operation is returned first. + // + // Currently, only sorting by `name` or + // `creationTimestamp desc` is supported. + OrderBy *string `protobuf:"bytes,160562920,opt,name=order_by,json=orderBy,proto3,oneof" json:"order_by,omitempty"` + // Specifies a page token to use. Set `pageToken` to the + // `nextPageToken` returned by a previous list request to get + // the next page of results. + PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // Opt-in for partial success behavior which provides partial results in case + // of failure. The default value is false. + // + // For example, when partial success behavior is enabled, aggregatedList for a + // single zone scope either returns all resources in the zone or no resources, + // with an error code. + ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListVpnGatewaysRequest) Reset() { + *x = ListVpnGatewaysRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1101] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListVpnGatewaysRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListVpnGatewaysRequest) ProtoMessage() {} + +func (x *ListVpnGatewaysRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1101] + 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 ListVpnGatewaysRequest.ProtoReflect.Descriptor instead. +func (*ListVpnGatewaysRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1101} +} + +func (x *ListVpnGatewaysRequest) GetFilter() string { + if x != nil && x.Filter != nil { + return *x.Filter + } + return "" +} + +func (x *ListVpnGatewaysRequest) GetMaxResults() uint32 { + if x != nil && x.MaxResults != nil { + return *x.MaxResults + } + return 0 +} + +func (x *ListVpnGatewaysRequest) GetOrderBy() string { + if x != nil && x.OrderBy != nil { + return *x.OrderBy + } + return "" +} + +func (x *ListVpnGatewaysRequest) GetPageToken() string { + if x != nil && x.PageToken != nil { + return *x.PageToken + } + return "" +} + +func (x *ListVpnGatewaysRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *ListVpnGatewaysRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *ListVpnGatewaysRequest) GetReturnPartialSuccess() bool { + if x != nil && x.ReturnPartialSuccess != nil { + return *x.ReturnPartialSuccess + } + return false +} + +// A request message for VpnTunnels.List. See the method description for details. +type ListVpnTunnelsRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // A filter expression that filters resources listed in the response. Most + // Compute resources support two types of filter expressions: + // expressions that support regular expressions and expressions that follow + // API improvement proposal AIP-160. + // These two types of filter expressions cannot be mixed in one request. + // + // If you want to use AIP-160, your expression must specify the field name, an + // operator, and the value that you want to use for filtering. The value + // must be a string, a number, or a boolean. The operator + // must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. + // + // For example, if you are filtering Compute Engine instances, you can + // exclude instances named `example-instance` by specifying + // `name != example-instance`. + // + // The `:*` comparison can be used to test whether a key has been defined. + // For example, to find all objects with `owner` label use: + // ``` + // labels.owner:* + // ``` + // + // You can also filter nested fields. For example, you could specify + // `scheduling.automaticRestart = false` to include instances only + // if they are not scheduled for automatic restarts. You can use filtering + // on nested fields to filter based onresource labels. + // + // To filter on multiple expressions, provide each separate expression within + // parentheses. For example: + // ``` + // (scheduling.automaticRestart = true) + // (cpuPlatform = "Intel Skylake") + // ``` + // By default, each expression is an `AND` expression. However, you + // can include `AND` and `OR` expressions explicitly. + // For example: + // ``` + // (cpuPlatform = "Intel Skylake") OR + // (cpuPlatform = "Intel Broadwell") AND + // (scheduling.automaticRestart = true) + // ``` + // + // If you want to use a regular expression, use the `eq` (equal) or `ne` + // (not equal) operator against a single un-parenthesized expression with or + // without quotes or against multiple parenthesized expressions. Examples: + // + // `fieldname eq unquoted literal` + // `fieldname eq 'single quoted literal'` + // `fieldname eq "double quoted literal"` + // `(fieldname1 eq literal) (fieldname2 ne "literal")` + // + // The literal value is interpreted as a regular expression using GoogleRE2 library syntax. + // The literal value must match the entire field. + // + // For example, to filter for instances that do not end with name "instance", + // you would use `name ne .*instance`. + // + // You cannot combine constraints on multiple fields using regular + // expressions. + Filter *string `protobuf:"bytes,336120696,opt,name=filter,proto3,oneof" json:"filter,omitempty"` + // The maximum number of results per page that should be returned. + // If the number of available results is larger than `maxResults`, + // Compute Engine returns a `nextPageToken` that can be used to get + // the next page of results in subsequent list requests. Acceptable values are + // `0` to `500`, inclusive. (Default: `500`) + MaxResults *uint32 `protobuf:"varint,54715419,opt,name=max_results,json=maxResults,proto3,oneof" json:"max_results,omitempty"` + // Sorts list results by a certain order. By default, results + // are returned in alphanumerical order based on the resource name. + // + // You can also sort results in descending order based on the creation + // timestamp using `orderBy="creationTimestamp desc"`. This sorts + // results based on the `creationTimestamp` field in + // reverse chronological order (newest result first). Use this to sort + // resources like operations so that the newest operation is returned first. + // + // Currently, only sorting by `name` or + // `creationTimestamp desc` is supported. + OrderBy *string `protobuf:"bytes,160562920,opt,name=order_by,json=orderBy,proto3,oneof" json:"order_by,omitempty"` + // Specifies a page token to use. Set `pageToken` to the + // `nextPageToken` returned by a previous list request to get + // the next page of results. + PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // Opt-in for partial success behavior which provides partial results in case + // of failure. The default value is false. + // + // For example, when partial success behavior is enabled, aggregatedList for a + // single zone scope either returns all resources in the zone or no resources, + // with an error code. + ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListVpnTunnelsRequest) Reset() { + *x = ListVpnTunnelsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1102] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListVpnTunnelsRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListVpnTunnelsRequest) ProtoMessage() {} + +func (x *ListVpnTunnelsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1102] + 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 ListVpnTunnelsRequest.ProtoReflect.Descriptor instead. +func (*ListVpnTunnelsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1102} +} + +func (x *ListVpnTunnelsRequest) GetFilter() string { + if x != nil && x.Filter != nil { + return *x.Filter + } + return "" +} + +func (x *ListVpnTunnelsRequest) GetMaxResults() uint32 { + if x != nil && x.MaxResults != nil { + return *x.MaxResults + } + return 0 +} + +func (x *ListVpnTunnelsRequest) GetOrderBy() string { + if x != nil && x.OrderBy != nil { + return *x.OrderBy + } + return "" +} + +func (x *ListVpnTunnelsRequest) GetPageToken() string { + if x != nil && x.PageToken != nil { + return *x.PageToken + } + return "" +} + +func (x *ListVpnTunnelsRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *ListVpnTunnelsRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *ListVpnTunnelsRequest) GetReturnPartialSuccess() bool { + if x != nil && x.ReturnPartialSuccess != nil { + return *x.ReturnPartialSuccess + } + return false +} + +// A request message for WireGroups.List. See the method description for details. +type ListWireGroupsRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + CrossSiteNetwork string `protobuf:"bytes,108192469,opt,name=cross_site_network,json=crossSiteNetwork,proto3" json:"cross_site_network,omitempty"` + // A filter expression that filters resources listed in the response. Most + // Compute resources support two types of filter expressions: + // expressions that support regular expressions and expressions that follow + // API improvement proposal AIP-160. + // These two types of filter expressions cannot be mixed in one request. + // + // If you want to use AIP-160, your expression must specify the field name, an + // operator, and the value that you want to use for filtering. The value + // must be a string, a number, or a boolean. The operator + // must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. + // + // For example, if you are filtering Compute Engine instances, you can + // exclude instances named `example-instance` by specifying + // `name != example-instance`. + // + // The `:*` comparison can be used to test whether a key has been defined. + // For example, to find all objects with `owner` label use: + // ``` + // labels.owner:* + // ``` + // + // You can also filter nested fields. For example, you could specify + // `scheduling.automaticRestart = false` to include instances only + // if they are not scheduled for automatic restarts. You can use filtering + // on nested fields to filter based onresource labels. + // + // To filter on multiple expressions, provide each separate expression within + // parentheses. For example: + // ``` + // (scheduling.automaticRestart = true) + // (cpuPlatform = "Intel Skylake") + // ``` + // By default, each expression is an `AND` expression. However, you + // can include `AND` and `OR` expressions explicitly. + // For example: + // ``` + // (cpuPlatform = "Intel Skylake") OR + // (cpuPlatform = "Intel Broadwell") AND + // (scheduling.automaticRestart = true) + // ``` + // + // If you want to use a regular expression, use the `eq` (equal) or `ne` + // (not equal) operator against a single un-parenthesized expression with or + // without quotes or against multiple parenthesized expressions. Examples: + // + // `fieldname eq unquoted literal` + // `fieldname eq 'single quoted literal'` + // `fieldname eq "double quoted literal"` + // `(fieldname1 eq literal) (fieldname2 ne "literal")` + // + // The literal value is interpreted as a regular expression using GoogleRE2 library syntax. + // The literal value must match the entire field. + // + // For example, to filter for instances that do not end with name "instance", + // you would use `name ne .*instance`. + // + // You cannot combine constraints on multiple fields using regular + // expressions. + Filter *string `protobuf:"bytes,336120696,opt,name=filter,proto3,oneof" json:"filter,omitempty"` + // The maximum number of results per page that should be returned. + // If the number of available results is larger than `maxResults`, + // Compute Engine returns a `nextPageToken` that can be used to get + // the next page of results in subsequent list requests. Acceptable values are + // `0` to `500`, inclusive. (Default: `500`) + MaxResults *uint32 `protobuf:"varint,54715419,opt,name=max_results,json=maxResults,proto3,oneof" json:"max_results,omitempty"` + // Sorts list results by a certain order. By default, results + // are returned in alphanumerical order based on the resource name. + // + // You can also sort results in descending order based on the creation + // timestamp using `orderBy="creationTimestamp desc"`. This sorts + // results based on the `creationTimestamp` field in + // reverse chronological order (newest result first). Use this to sort + // resources like operations so that the newest operation is returned first. + // + // Currently, only sorting by `name` or + // `creationTimestamp desc` is supported. + OrderBy *string `protobuf:"bytes,160562920,opt,name=order_by,json=orderBy,proto3,oneof" json:"order_by,omitempty"` + // Specifies a page token to use. Set `pageToken` to the + // `nextPageToken` returned by a previous list request to get + // the next page of results. + PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Opt-in for partial success behavior which provides partial results in case + // of failure. The default value is false. + // + // For example, when partial success behavior is enabled, aggregatedList for a + // single zone scope either returns all resources in the zone or no resources, + // with an error code. + ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListWireGroupsRequest) Reset() { + *x = ListWireGroupsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1103] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListWireGroupsRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListWireGroupsRequest) ProtoMessage() {} + +func (x *ListWireGroupsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1103] + 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 ListWireGroupsRequest.ProtoReflect.Descriptor instead. +func (*ListWireGroupsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1103} +} + +func (x *ListWireGroupsRequest) GetCrossSiteNetwork() string { + if x != nil { + return x.CrossSiteNetwork + } + return "" +} + +func (x *ListWireGroupsRequest) GetFilter() string { + if x != nil && x.Filter != nil { + return *x.Filter + } + return "" +} + +func (x *ListWireGroupsRequest) GetMaxResults() uint32 { + if x != nil && x.MaxResults != nil { + return *x.MaxResults + } + return 0 +} + +func (x *ListWireGroupsRequest) GetOrderBy() string { + if x != nil && x.OrderBy != nil { + return *x.OrderBy + } + return "" +} + +func (x *ListWireGroupsRequest) GetPageToken() string { + if x != nil && x.PageToken != nil { + return *x.PageToken + } + return "" +} + +func (x *ListWireGroupsRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *ListWireGroupsRequest) GetReturnPartialSuccess() bool { + if x != nil && x.ReturnPartialSuccess != nil { + return *x.ReturnPartialSuccess + } + return false +} + +// A request message for Projects.ListXpnHosts. See the method description for details. +type ListXpnHostsProjectsRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // A filter expression that filters resources listed in the response. Most + // Compute resources support two types of filter expressions: + // expressions that support regular expressions and expressions that follow + // API improvement proposal AIP-160. + // These two types of filter expressions cannot be mixed in one request. + // + // If you want to use AIP-160, your expression must specify the field name, an + // operator, and the value that you want to use for filtering. The value + // must be a string, a number, or a boolean. The operator + // must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. + // + // For example, if you are filtering Compute Engine instances, you can + // exclude instances named `example-instance` by specifying + // `name != example-instance`. + // + // The `:*` comparison can be used to test whether a key has been defined. + // For example, to find all objects with `owner` label use: + // ``` + // labels.owner:* + // ``` + // + // You can also filter nested fields. For example, you could specify + // `scheduling.automaticRestart = false` to include instances only + // if they are not scheduled for automatic restarts. You can use filtering + // on nested fields to filter based onresource labels. + // + // To filter on multiple expressions, provide each separate expression within + // parentheses. For example: + // ``` + // (scheduling.automaticRestart = true) + // (cpuPlatform = "Intel Skylake") + // ``` + // By default, each expression is an `AND` expression. However, you + // can include `AND` and `OR` expressions explicitly. + // For example: + // ``` + // (cpuPlatform = "Intel Skylake") OR + // (cpuPlatform = "Intel Broadwell") AND + // (scheduling.automaticRestart = true) + // ``` + // + // If you want to use a regular expression, use the `eq` (equal) or `ne` + // (not equal) operator against a single un-parenthesized expression with or + // without quotes or against multiple parenthesized expressions. Examples: + // + // `fieldname eq unquoted literal` + // `fieldname eq 'single quoted literal'` + // `fieldname eq "double quoted literal"` + // `(fieldname1 eq literal) (fieldname2 ne "literal")` + // + // The literal value is interpreted as a regular expression using GoogleRE2 library syntax. + // The literal value must match the entire field. + // + // For example, to filter for instances that do not end with name "instance", + // you would use `name ne .*instance`. + // + // You cannot combine constraints on multiple fields using regular + // expressions. + Filter *string `protobuf:"bytes,336120696,opt,name=filter,proto3,oneof" json:"filter,omitempty"` + // The maximum number of results per page that should be returned. + // If the number of available results is larger than `maxResults`, + // Compute Engine returns a `nextPageToken` that can be used to get + // the next page of results in subsequent list requests. Acceptable values are + // `0` to `500`, inclusive. (Default: `500`) + MaxResults *uint32 `protobuf:"varint,54715419,opt,name=max_results,json=maxResults,proto3,oneof" json:"max_results,omitempty"` + // Sorts list results by a certain order. By default, results + // are returned in alphanumerical order based on the resource name. + // + // You can also sort results in descending order based on the creation + // timestamp using `orderBy="creationTimestamp desc"`. This sorts + // results based on the `creationTimestamp` field in + // reverse chronological order (newest result first). Use this to sort + // resources like operations so that the newest operation is returned first. + // + // Currently, only sorting by `name` or + // `creationTimestamp desc` is supported. + OrderBy *string `protobuf:"bytes,160562920,opt,name=order_by,json=orderBy,proto3,oneof" json:"order_by,omitempty"` + // Specifies a page token to use. Set `pageToken` to the + // `nextPageToken` returned by a previous list request to get + // the next page of results. + PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The body resource for this request + ProjectsListXpnHostsRequestResource *ProjectsListXpnHostsRequest `protobuf:"bytes,238266391,opt,name=projects_list_xpn_hosts_request_resource,json=projectsListXpnHostsRequestResource,proto3" json:"projects_list_xpn_hosts_request_resource,omitempty"` + // Opt-in for partial success behavior which provides partial results in case + // of failure. The default value is false. + // + // For example, when partial success behavior is enabled, aggregatedList for a + // single zone scope either returns all resources in the zone or no resources, + // with an error code. + ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListXpnHostsProjectsRequest) Reset() { + *x = ListXpnHostsProjectsRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1104] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListXpnHostsProjectsRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListXpnHostsProjectsRequest) ProtoMessage() {} + +func (x *ListXpnHostsProjectsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1104] + 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 ListXpnHostsProjectsRequest.ProtoReflect.Descriptor instead. +func (*ListXpnHostsProjectsRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1104} +} + +func (x *ListXpnHostsProjectsRequest) GetFilter() string { + if x != nil && x.Filter != nil { + return *x.Filter + } + return "" +} + +func (x *ListXpnHostsProjectsRequest) GetMaxResults() uint32 { + if x != nil && x.MaxResults != nil { + return *x.MaxResults + } + return 0 +} + +func (x *ListXpnHostsProjectsRequest) GetOrderBy() string { + if x != nil && x.OrderBy != nil { + return *x.OrderBy + } + return "" +} + +func (x *ListXpnHostsProjectsRequest) GetPageToken() string { + if x != nil && x.PageToken != nil { + return *x.PageToken + } + return "" +} + +func (x *ListXpnHostsProjectsRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *ListXpnHostsProjectsRequest) GetProjectsListXpnHostsRequestResource() *ProjectsListXpnHostsRequest { + if x != nil { + return x.ProjectsListXpnHostsRequestResource + } + return nil +} + +func (x *ListXpnHostsProjectsRequest) GetReturnPartialSuccess() bool { + if x != nil && x.ReturnPartialSuccess != nil { + return *x.ReturnPartialSuccess + } + return false +} + +// A request message for ZoneOperations.List. See the method description for details. +type ListZoneOperationsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // A filter expression that filters resources listed in the response. Most // Compute resources support two types of filter expressions: @@ -137421,7 +143356,7 @@ type ListZoneOperationsRequest struct { func (x *ListZoneOperationsRequest) Reset() { *x = ListZoneOperationsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1051] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1105] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137433,7 +143368,7 @@ func (x *ListZoneOperationsRequest) String() string { func (*ListZoneOperationsRequest) ProtoMessage() {} func (x *ListZoneOperationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1051] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1105] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137446,7 +143381,7 @@ func (x *ListZoneOperationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListZoneOperationsRequest.ProtoReflect.Descriptor instead. func (*ListZoneOperationsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1051} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1105} } func (x *ListZoneOperationsRequest) GetFilter() string { @@ -137498,6 +143433,184 @@ func (x *ListZoneOperationsRequest) GetZone() string { return "" } +// A request message for ZoneVmExtensionPolicies.List. See the method description for details. +type ListZoneVmExtensionPoliciesRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // A filter expression that filters resources listed in the response. Most + // Compute resources support two types of filter expressions: + // expressions that support regular expressions and expressions that follow + // API improvement proposal AIP-160. + // These two types of filter expressions cannot be mixed in one request. + // + // If you want to use AIP-160, your expression must specify the field name, an + // operator, and the value that you want to use for filtering. The value + // must be a string, a number, or a boolean. The operator + // must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`. + // + // For example, if you are filtering Compute Engine instances, you can + // exclude instances named `example-instance` by specifying + // `name != example-instance`. + // + // The `:*` comparison can be used to test whether a key has been defined. + // For example, to find all objects with `owner` label use: + // ``` + // labels.owner:* + // ``` + // + // You can also filter nested fields. For example, you could specify + // `scheduling.automaticRestart = false` to include instances only + // if they are not scheduled for automatic restarts. You can use filtering + // on nested fields to filter based onresource labels. + // + // To filter on multiple expressions, provide each separate expression within + // parentheses. For example: + // ``` + // (scheduling.automaticRestart = true) + // (cpuPlatform = "Intel Skylake") + // ``` + // By default, each expression is an `AND` expression. However, you + // can include `AND` and `OR` expressions explicitly. + // For example: + // ``` + // (cpuPlatform = "Intel Skylake") OR + // (cpuPlatform = "Intel Broadwell") AND + // (scheduling.automaticRestart = true) + // ``` + // + // If you want to use a regular expression, use the `eq` (equal) or `ne` + // (not equal) operator against a single un-parenthesized expression with or + // without quotes or against multiple parenthesized expressions. Examples: + // + // `fieldname eq unquoted literal` + // `fieldname eq 'single quoted literal'` + // `fieldname eq "double quoted literal"` + // `(fieldname1 eq literal) (fieldname2 ne "literal")` + // + // The literal value is interpreted as a regular expression using GoogleRE2 library syntax. + // The literal value must match the entire field. + // + // For example, to filter for instances that do not end with name "instance", + // you would use `name ne .*instance`. + // + // You cannot combine constraints on multiple fields using regular + // expressions. + Filter *string `protobuf:"bytes,336120696,opt,name=filter,proto3,oneof" json:"filter,omitempty"` + // The maximum number of results per page that should be returned. + // If the number of available results is larger than `maxResults`, + // Compute Engine returns a `nextPageToken` that can be used to get + // the next page of results in subsequent list requests. Acceptable values are + // `0` to `500`, inclusive. (Default: `500`) + MaxResults *uint32 `protobuf:"varint,54715419,opt,name=max_results,json=maxResults,proto3,oneof" json:"max_results,omitempty"` + // Sorts list results by a certain order. By default, results + // are returned in alphanumerical order based on the resource name. + // + // You can also sort results in descending order based on the creation + // timestamp using `orderBy="creationTimestamp desc"`. This sorts + // results based on the `creationTimestamp` field in + // reverse chronological order (newest result first). Use this to sort + // resources like operations so that the newest operation is returned first. + // + // Currently, only sorting by `name` or + // `creationTimestamp desc` is supported. + OrderBy *string `protobuf:"bytes,160562920,opt,name=order_by,json=orderBy,proto3,oneof" json:"order_by,omitempty"` + // Specifies a page token to use. Set `pageToken` to the + // `nextPageToken` returned by a previous list request to get + // the next page of results. + PageToken *string `protobuf:"bytes,19994697,opt,name=page_token,json=pageToken,proto3,oneof" json:"page_token,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Opt-in for partial success behavior which provides partial results in case + // of failure. The default value is false. + // + // For example, when partial success behavior is enabled, aggregatedList for a + // single zone scope either returns all resources in the zone or no resources, + // with an error code. + ReturnPartialSuccess *bool `protobuf:"varint,517198390,opt,name=return_partial_success,json=returnPartialSuccess,proto3,oneof" json:"return_partial_success,omitempty"` + // Name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ListZoneVmExtensionPoliciesRequest) Reset() { + *x = ListZoneVmExtensionPoliciesRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1106] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ListZoneVmExtensionPoliciesRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ListZoneVmExtensionPoliciesRequest) ProtoMessage() {} + +func (x *ListZoneVmExtensionPoliciesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1106] + 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 ListZoneVmExtensionPoliciesRequest.ProtoReflect.Descriptor instead. +func (*ListZoneVmExtensionPoliciesRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1106} +} + +func (x *ListZoneVmExtensionPoliciesRequest) GetFilter() string { + if x != nil && x.Filter != nil { + return *x.Filter + } + return "" +} + +func (x *ListZoneVmExtensionPoliciesRequest) GetMaxResults() uint32 { + if x != nil && x.MaxResults != nil { + return *x.MaxResults + } + return 0 +} + +func (x *ListZoneVmExtensionPoliciesRequest) GetOrderBy() string { + if x != nil && x.OrderBy != nil { + return *x.OrderBy + } + return "" +} + +func (x *ListZoneVmExtensionPoliciesRequest) GetPageToken() string { + if x != nil && x.PageToken != nil { + return *x.PageToken + } + return "" +} + +func (x *ListZoneVmExtensionPoliciesRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *ListZoneVmExtensionPoliciesRequest) GetReturnPartialSuccess() bool { + if x != nil && x.ReturnPartialSuccess != nil { + return *x.ReturnPartialSuccess + } + return false +} + +func (x *ListZoneVmExtensionPoliciesRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + // A request message for Zones.List. See the method description for details. type ListZonesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -137597,7 +143710,7 @@ type ListZonesRequest struct { func (x *ListZonesRequest) Reset() { *x = ListZonesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1052] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1107] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137609,7 +143722,7 @@ func (x *ListZonesRequest) String() string { func (*ListZonesRequest) ProtoMessage() {} func (x *ListZonesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1052] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1107] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137622,7 +143735,7 @@ func (x *ListZonesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListZonesRequest.ProtoReflect.Descriptor instead. func (*ListZonesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1052} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1107} } func (x *ListZonesRequest) GetFilter() string { @@ -137684,7 +143797,7 @@ type LocalDisk struct { func (x *LocalDisk) Reset() { *x = LocalDisk{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1053] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1108] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137696,7 +143809,7 @@ func (x *LocalDisk) String() string { func (*LocalDisk) ProtoMessage() {} func (x *LocalDisk) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1053] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1108] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137709,7 +143822,7 @@ func (x *LocalDisk) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalDisk.ProtoReflect.Descriptor instead. func (*LocalDisk) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1053} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1108} } func (x *LocalDisk) GetDiskCount() int32 { @@ -137749,7 +143862,7 @@ type LocalizedMessage struct { func (x *LocalizedMessage) Reset() { *x = LocalizedMessage{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1054] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1109] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137761,7 +143874,7 @@ func (x *LocalizedMessage) String() string { func (*LocalizedMessage) ProtoMessage() {} func (x *LocalizedMessage) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1054] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1109] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137774,7 +143887,7 @@ func (x *LocalizedMessage) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalizedMessage.ProtoReflect.Descriptor instead. func (*LocalizedMessage) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1054} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1109} } func (x *LocalizedMessage) GetLocale() string { @@ -137819,7 +143932,7 @@ type LocationPolicy struct { func (x *LocationPolicy) Reset() { *x = LocationPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1055] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1110] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137831,7 +143944,7 @@ func (x *LocationPolicy) String() string { func (*LocationPolicy) ProtoMessage() {} func (x *LocationPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1055] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1110] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137844,7 +143957,7 @@ func (x *LocationPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationPolicy.ProtoReflect.Descriptor instead. func (*LocationPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1055} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1110} } func (x *LocationPolicy) GetLocations() map[string]*LocationPolicyLocation { @@ -137882,7 +143995,7 @@ type LocationPolicyLocation struct { func (x *LocationPolicyLocation) Reset() { *x = LocationPolicyLocation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1056] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1111] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137894,7 +144007,7 @@ func (x *LocationPolicyLocation) String() string { func (*LocationPolicyLocation) ProtoMessage() {} func (x *LocationPolicyLocation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1056] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1111] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137907,7 +144020,7 @@ func (x *LocationPolicyLocation) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationPolicyLocation.ProtoReflect.Descriptor instead. func (*LocationPolicyLocation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1056} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1111} } func (x *LocationPolicyLocation) GetConstraints() *LocationPolicyLocationConstraints { @@ -137936,7 +144049,7 @@ type LocationPolicyLocationConstraints struct { func (x *LocationPolicyLocationConstraints) Reset() { *x = LocationPolicyLocationConstraints{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1057] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1112] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137948,7 +144061,7 @@ func (x *LocationPolicyLocationConstraints) String() string { func (*LocationPolicyLocationConstraints) ProtoMessage() {} func (x *LocationPolicyLocationConstraints) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1057] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1112] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137961,7 +144074,7 @@ func (x *LocationPolicyLocationConstraints) ProtoReflect() protoreflect.Message // Deprecated: Use LocationPolicyLocationConstraints.ProtoReflect.Descriptor instead. func (*LocationPolicyLocationConstraints) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1057} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1112} } func (x *LocationPolicyLocationConstraints) GetMaxCount() int32 { @@ -137984,7 +144097,7 @@ type LocationPolicyZoneConfiguration struct { func (x *LocationPolicyZoneConfiguration) Reset() { *x = LocationPolicyZoneConfiguration{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1058] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1113] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137996,7 +144109,7 @@ func (x *LocationPolicyZoneConfiguration) String() string { func (*LocationPolicyZoneConfiguration) ProtoMessage() {} func (x *LocationPolicyZoneConfiguration) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1058] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1113] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138009,7 +144122,7 @@ func (x *LocationPolicyZoneConfiguration) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationPolicyZoneConfiguration.ProtoReflect.Descriptor instead. func (*LocationPolicyZoneConfiguration) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1058} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1113} } func (x *LocationPolicyZoneConfiguration) GetZone() string { @@ -138118,7 +144231,7 @@ type MachineImage struct { func (x *MachineImage) Reset() { *x = MachineImage{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1059] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1114] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138130,7 +144243,7 @@ func (x *MachineImage) String() string { func (*MachineImage) ProtoMessage() {} func (x *MachineImage) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1059] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1114] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138143,7 +144256,7 @@ func (x *MachineImage) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineImage.ProtoReflect.Descriptor instead. func (*MachineImage) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1059} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1114} } func (x *MachineImage) GetCreationTimestamp() string { @@ -138318,7 +144431,7 @@ type MachineImageList struct { func (x *MachineImageList) Reset() { *x = MachineImageList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1060] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1115] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138330,7 +144443,7 @@ func (x *MachineImageList) String() string { func (*MachineImageList) ProtoMessage() {} func (x *MachineImageList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1060] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1115] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138343,7 +144456,7 @@ func (x *MachineImageList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineImageList.ProtoReflect.Descriptor instead. func (*MachineImageList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1060} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1115} } func (x *MachineImageList) GetId() string { @@ -138405,7 +144518,7 @@ type MachineImageParams struct { func (x *MachineImageParams) Reset() { *x = MachineImageParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1061] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1116] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138417,7 +144530,7 @@ func (x *MachineImageParams) String() string { func (*MachineImageParams) ProtoMessage() {} func (x *MachineImageParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1061] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1116] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138430,7 +144543,7 @@ func (x *MachineImageParams) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineImageParams.ProtoReflect.Descriptor instead. func (*MachineImageParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1061} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1116} } func (x *MachineImageParams) GetResourceManagerTags() map[string]string { @@ -138496,7 +144609,7 @@ type MachineType struct { func (x *MachineType) Reset() { *x = MachineType{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1062] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1117] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138508,7 +144621,7 @@ func (x *MachineType) String() string { func (*MachineType) ProtoMessage() {} func (x *MachineType) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1062] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1117] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138521,7 +144634,7 @@ func (x *MachineType) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineType.ProtoReflect.Descriptor instead. func (*MachineType) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1062} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1117} } func (x *MachineType) GetAccelerators() []*Accelerators { @@ -138670,7 +144783,7 @@ type MachineTypeAggregatedList struct { func (x *MachineTypeAggregatedList) Reset() { *x = MachineTypeAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1063] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1118] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138682,7 +144795,7 @@ func (x *MachineTypeAggregatedList) String() string { func (*MachineTypeAggregatedList) ProtoMessage() {} func (x *MachineTypeAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1063] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1118] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138695,7 +144808,7 @@ func (x *MachineTypeAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineTypeAggregatedList.ProtoReflect.Descriptor instead. func (*MachineTypeAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1063} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1118} } func (x *MachineTypeAggregatedList) GetId() string { @@ -138773,7 +144886,7 @@ type MachineTypeList struct { func (x *MachineTypeList) Reset() { *x = MachineTypeList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1064] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1119] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138785,7 +144898,7 @@ func (x *MachineTypeList) String() string { func (*MachineTypeList) ProtoMessage() {} func (x *MachineTypeList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1064] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1119] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138798,7 +144911,7 @@ func (x *MachineTypeList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineTypeList.ProtoReflect.Descriptor instead. func (*MachineTypeList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1064} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119} } func (x *MachineTypeList) GetId() string { @@ -138856,7 +144969,7 @@ type MachineTypesScopedList struct { func (x *MachineTypesScopedList) Reset() { *x = MachineTypesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1065] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1120] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138868,7 +144981,7 @@ func (x *MachineTypesScopedList) String() string { func (*MachineTypesScopedList) ProtoMessage() {} func (x *MachineTypesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1065] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1120] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138881,7 +144994,7 @@ func (x *MachineTypesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use MachineTypesScopedList.ProtoReflect.Descriptor instead. func (*MachineTypesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1065} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1120} } func (x *MachineTypesScopedList) GetMachineTypes() []*MachineType { @@ -138965,7 +145078,7 @@ type ManagedInstance struct { func (x *ManagedInstance) Reset() { *x = ManagedInstance{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1066] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1121] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138977,7 +145090,7 @@ func (x *ManagedInstance) String() string { func (*ManagedInstance) ProtoMessage() {} func (x *ManagedInstance) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1066] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1121] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138990,7 +145103,7 @@ func (x *ManagedInstance) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedInstance.ProtoReflect.Descriptor instead. func (*ManagedInstance) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1066} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1121} } func (x *ManagedInstance) GetCurrentAction() string { @@ -139084,7 +145197,7 @@ type ManagedInstanceInstanceHealth struct { func (x *ManagedInstanceInstanceHealth) Reset() { *x = ManagedInstanceInstanceHealth{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1067] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1122] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139096,7 +145209,7 @@ func (x *ManagedInstanceInstanceHealth) String() string { func (*ManagedInstanceInstanceHealth) ProtoMessage() {} func (x *ManagedInstanceInstanceHealth) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1067] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1122] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139109,7 +145222,7 @@ func (x *ManagedInstanceInstanceHealth) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedInstanceInstanceHealth.ProtoReflect.Descriptor instead. func (*ManagedInstanceInstanceHealth) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1067} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1122} } func (x *ManagedInstanceInstanceHealth) GetDetailedHealthState() string { @@ -139137,7 +145250,7 @@ type ManagedInstanceLastAttempt struct { func (x *ManagedInstanceLastAttempt) Reset() { *x = ManagedInstanceLastAttempt{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1068] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1123] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139149,7 +145262,7 @@ func (x *ManagedInstanceLastAttempt) String() string { func (*ManagedInstanceLastAttempt) ProtoMessage() {} func (x *ManagedInstanceLastAttempt) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1068] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1123] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139162,7 +145275,7 @@ func (x *ManagedInstanceLastAttempt) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedInstanceLastAttempt.ProtoReflect.Descriptor instead. func (*ManagedInstanceLastAttempt) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1068} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1123} } func (x *ManagedInstanceLastAttempt) GetErrors() *ManagedInstanceLastAttemptErrors { @@ -139185,7 +145298,7 @@ type ManagedInstanceLastAttemptErrors struct { func (x *ManagedInstanceLastAttemptErrors) Reset() { *x = ManagedInstanceLastAttemptErrors{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1069] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1124] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139197,7 +145310,7 @@ func (x *ManagedInstanceLastAttemptErrors) String() string { func (*ManagedInstanceLastAttemptErrors) ProtoMessage() {} func (x *ManagedInstanceLastAttemptErrors) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1069] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1124] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139210,7 +145323,7 @@ func (x *ManagedInstanceLastAttemptErrors) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedInstanceLastAttemptErrors.ProtoReflect.Descriptor instead. func (*ManagedInstanceLastAttemptErrors) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1069} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1124} } func (x *ManagedInstanceLastAttemptErrors) GetErrors() []*Errors { @@ -139230,7 +145343,7 @@ type ManagedInstancePropertiesFromFlexibilityPolicy struct { func (x *ManagedInstancePropertiesFromFlexibilityPolicy) Reset() { *x = ManagedInstancePropertiesFromFlexibilityPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1070] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1125] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139242,7 +145355,7 @@ func (x *ManagedInstancePropertiesFromFlexibilityPolicy) String() string { func (*ManagedInstancePropertiesFromFlexibilityPolicy) ProtoMessage() {} func (x *ManagedInstancePropertiesFromFlexibilityPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1070] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1125] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139255,7 +145368,7 @@ func (x *ManagedInstancePropertiesFromFlexibilityPolicy) ProtoReflect() protoref // Deprecated: Use ManagedInstancePropertiesFromFlexibilityPolicy.ProtoReflect.Descriptor instead. func (*ManagedInstancePropertiesFromFlexibilityPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1070} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1125} } func (x *ManagedInstancePropertiesFromFlexibilityPolicy) GetMachineType() string { @@ -139278,7 +145391,7 @@ type ManagedInstanceVersion struct { func (x *ManagedInstanceVersion) Reset() { *x = ManagedInstanceVersion{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1071] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1126] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139290,7 +145403,7 @@ func (x *ManagedInstanceVersion) String() string { func (*ManagedInstanceVersion) ProtoMessage() {} func (x *ManagedInstanceVersion) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1071] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1126] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139303,7 +145416,7 @@ func (x *ManagedInstanceVersion) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedInstanceVersion.ProtoReflect.Descriptor instead. func (*ManagedInstanceVersion) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1071} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1126} } func (x *ManagedInstanceVersion) GetInstanceTemplate() string { @@ -139345,7 +145458,7 @@ type Metadata struct { func (x *Metadata) Reset() { *x = Metadata{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1072] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1127] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139357,7 +145470,7 @@ func (x *Metadata) String() string { func (*Metadata) ProtoMessage() {} func (x *Metadata) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1072] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1127] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139370,7 +145483,7 @@ func (x *Metadata) ProtoReflect() protoreflect.Message { // Deprecated: Use Metadata.ProtoReflect.Descriptor instead. func (*Metadata) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1072} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1127} } func (x *Metadata) GetFingerprint() string { @@ -139436,7 +145549,7 @@ type MetadataFilter struct { func (x *MetadataFilter) Reset() { *x = MetadataFilter{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1073] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1128] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139448,7 +145561,7 @@ func (x *MetadataFilter) String() string { func (*MetadataFilter) ProtoMessage() {} func (x *MetadataFilter) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1073] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1128] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139461,7 +145574,7 @@ func (x *MetadataFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use MetadataFilter.ProtoReflect.Descriptor instead. func (*MetadataFilter) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1073} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1128} } func (x *MetadataFilter) GetFilterLabels() []*MetadataFilterLabelMatch { @@ -139498,7 +145611,7 @@ type MetadataFilterLabelMatch struct { func (x *MetadataFilterLabelMatch) Reset() { *x = MetadataFilterLabelMatch{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1074] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1129] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139510,7 +145623,7 @@ func (x *MetadataFilterLabelMatch) String() string { func (*MetadataFilterLabelMatch) ProtoMessage() {} func (x *MetadataFilterLabelMatch) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1074] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1129] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139523,7 +145636,7 @@ func (x *MetadataFilterLabelMatch) ProtoReflect() protoreflect.Message { // Deprecated: Use MetadataFilterLabelMatch.ProtoReflect.Descriptor instead. func (*MetadataFilterLabelMatch) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1074} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1129} } func (x *MetadataFilterLabelMatch) GetName() string { @@ -139571,7 +145684,7 @@ type MoveAddressRequest struct { func (x *MoveAddressRequest) Reset() { *x = MoveAddressRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1075] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1130] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139583,7 +145696,7 @@ func (x *MoveAddressRequest) String() string { func (*MoveAddressRequest) ProtoMessage() {} func (x *MoveAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1075] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1130] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139596,7 +145709,7 @@ func (x *MoveAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MoveAddressRequest.ProtoReflect.Descriptor instead. func (*MoveAddressRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1075} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1130} } func (x *MoveAddressRequest) GetAddress() string { @@ -139661,7 +145774,7 @@ type MoveDiskProjectRequest struct { func (x *MoveDiskProjectRequest) Reset() { *x = MoveDiskProjectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1076] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1131] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139673,7 +145786,7 @@ func (x *MoveDiskProjectRequest) String() string { func (*MoveDiskProjectRequest) ProtoMessage() {} func (x *MoveDiskProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1076] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1131] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139686,7 +145799,7 @@ func (x *MoveDiskProjectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MoveDiskProjectRequest.ProtoReflect.Descriptor instead. func (*MoveDiskProjectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1076} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1131} } func (x *MoveDiskProjectRequest) GetDiskMoveRequestResource() *DiskMoveRequest { @@ -139739,7 +145852,7 @@ type MoveFirewallPolicyRequest struct { func (x *MoveFirewallPolicyRequest) Reset() { *x = MoveFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1077] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1132] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139751,7 +145864,7 @@ func (x *MoveFirewallPolicyRequest) String() string { func (*MoveFirewallPolicyRequest) ProtoMessage() {} func (x *MoveFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1077] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1132] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139764,7 +145877,7 @@ func (x *MoveFirewallPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MoveFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*MoveFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1077} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1132} } func (x *MoveFirewallPolicyRequest) GetFirewallPolicy() string { @@ -139817,7 +145930,7 @@ type MoveGlobalAddressRequest struct { func (x *MoveGlobalAddressRequest) Reset() { *x = MoveGlobalAddressRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1078] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1133] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139829,7 +145942,7 @@ func (x *MoveGlobalAddressRequest) String() string { func (*MoveGlobalAddressRequest) ProtoMessage() {} func (x *MoveGlobalAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1078] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1133] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139842,7 +145955,7 @@ func (x *MoveGlobalAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MoveGlobalAddressRequest.ProtoReflect.Descriptor instead. func (*MoveGlobalAddressRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1078} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1133} } func (x *MoveGlobalAddressRequest) GetAddress() string { @@ -139900,7 +146013,7 @@ type MoveInstanceProjectRequest struct { func (x *MoveInstanceProjectRequest) Reset() { *x = MoveInstanceProjectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1079] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1134] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139912,7 +146025,7 @@ func (x *MoveInstanceProjectRequest) String() string { func (*MoveInstanceProjectRequest) ProtoMessage() {} func (x *MoveInstanceProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1079] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1134] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139925,7 +146038,7 @@ func (x *MoveInstanceProjectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MoveInstanceProjectRequest.ProtoReflect.Descriptor instead. func (*MoveInstanceProjectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1079} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1134} } func (x *MoveInstanceProjectRequest) GetInstanceMoveRequestResource() *InstanceMoveRequest { @@ -139976,7 +146089,7 @@ type MoveOrganizationSecurityPolicyRequest struct { func (x *MoveOrganizationSecurityPolicyRequest) Reset() { *x = MoveOrganizationSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1080] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1135] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139988,7 +146101,7 @@ func (x *MoveOrganizationSecurityPolicyRequest) String() string { func (*MoveOrganizationSecurityPolicyRequest) ProtoMessage() {} func (x *MoveOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1080] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1135] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140001,7 +146114,7 @@ func (x *MoveOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use MoveOrganizationSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*MoveOrganizationSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1080} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1135} } func (x *MoveOrganizationSecurityPolicyRequest) GetParentId() string { @@ -140039,7 +146152,7 @@ type NamedPort struct { func (x *NamedPort) Reset() { *x = NamedPort{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1081] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1136] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140051,7 +146164,7 @@ func (x *NamedPort) String() string { func (*NamedPort) ProtoMessage() {} func (x *NamedPort) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1081] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1136] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140064,7 +146177,7 @@ func (x *NamedPort) ProtoReflect() protoreflect.Message { // Deprecated: Use NamedPort.ProtoReflect.Descriptor instead. func (*NamedPort) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1081} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1136} } func (x *NamedPort) GetName() string { @@ -140094,7 +146207,7 @@ type NatIpInfo struct { func (x *NatIpInfo) Reset() { *x = NatIpInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1082] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1137] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140106,7 +146219,7 @@ func (x *NatIpInfo) String() string { func (*NatIpInfo) ProtoMessage() {} func (x *NatIpInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1082] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1137] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140119,7 +146232,7 @@ func (x *NatIpInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use NatIpInfo.ProtoReflect.Descriptor instead. func (*NatIpInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1082} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1137} } func (x *NatIpInfo) GetNatIpInfoMappings() []*NatIpInfoNatIpInfoMapping { @@ -140154,7 +146267,7 @@ type NatIpInfoNatIpInfoMapping struct { func (x *NatIpInfoNatIpInfoMapping) Reset() { *x = NatIpInfoNatIpInfoMapping{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1083] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1138] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140166,7 +146279,7 @@ func (x *NatIpInfoNatIpInfoMapping) String() string { func (*NatIpInfoNatIpInfoMapping) ProtoMessage() {} func (x *NatIpInfoNatIpInfoMapping) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1083] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1138] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140179,7 +146292,7 @@ func (x *NatIpInfoNatIpInfoMapping) ProtoReflect() protoreflect.Message { // Deprecated: Use NatIpInfoNatIpInfoMapping.ProtoReflect.Descriptor instead. func (*NatIpInfoNatIpInfoMapping) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1083} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1138} } func (x *NatIpInfoNatIpInfoMapping) GetMode() string { @@ -140213,7 +146326,7 @@ type NatIpInfoResponse struct { func (x *NatIpInfoResponse) Reset() { *x = NatIpInfoResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1084] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1139] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140225,7 +146338,7 @@ func (x *NatIpInfoResponse) String() string { func (*NatIpInfoResponse) ProtoMessage() {} func (x *NatIpInfoResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1084] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1139] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140238,7 +146351,7 @@ func (x *NatIpInfoResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use NatIpInfoResponse.ProtoReflect.Descriptor instead. func (*NatIpInfoResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1084} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1139} } func (x *NatIpInfoResponse) GetResult() []*NatIpInfo { @@ -140347,7 +146460,7 @@ type Network struct { func (x *Network) Reset() { *x = Network{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1085] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1140] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140359,7 +146472,7 @@ func (x *Network) String() string { func (*Network) ProtoMessage() {} func (x *Network) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1085] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1140] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140372,7 +146485,7 @@ func (x *Network) ProtoReflect() protoreflect.Message { // Deprecated: Use Network.ProtoReflect.Descriptor instead. func (*Network) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1085} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1140} } func (x *Network) GetIPv4Range() string { @@ -140578,7 +146691,7 @@ type NetworkAttachment struct { func (x *NetworkAttachment) Reset() { *x = NetworkAttachment{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1086] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1141] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140590,7 +146703,7 @@ func (x *NetworkAttachment) String() string { func (*NetworkAttachment) ProtoMessage() {} func (x *NetworkAttachment) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1086] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1141] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140603,7 +146716,7 @@ func (x *NetworkAttachment) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkAttachment.ProtoReflect.Descriptor instead. func (*NetworkAttachment) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1086} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1141} } func (x *NetworkAttachment) GetConnectionEndpoints() []*NetworkAttachmentConnectedEndpoint { @@ -140735,7 +146848,7 @@ type NetworkAttachmentAggregatedList struct { func (x *NetworkAttachmentAggregatedList) Reset() { *x = NetworkAttachmentAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1087] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1142] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140747,7 +146860,7 @@ func (x *NetworkAttachmentAggregatedList) String() string { func (*NetworkAttachmentAggregatedList) ProtoMessage() {} func (x *NetworkAttachmentAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1087] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1142] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140760,7 +146873,7 @@ func (x *NetworkAttachmentAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkAttachmentAggregatedList.ProtoReflect.Descriptor instead. func (*NetworkAttachmentAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1087} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1142} } func (x *NetworkAttachmentAggregatedList) GetId() string { @@ -140819,6 +146932,9 @@ type NetworkAttachmentConnectedEndpoint struct { ProjectIdOrNum *string `protobuf:"bytes,349783336,opt,name=project_id_or_num,json=projectIdOrNum,proto3,oneof" json:"project_id_or_num,omitempty"` // Alias IP ranges from the same subnetwork. SecondaryIpCidrRanges []string `protobuf:"bytes,117184788,rep,name=secondary_ip_cidr_ranges,json=secondaryIpCidrRanges,proto3" json:"secondary_ip_cidr_ranges,omitempty"` + // The service class id of the producer service to which the IP was + // assigned. + ServiceClassId *string `protobuf:"bytes,422763404,opt,name=service_class_id,json=serviceClassId,proto3,oneof" json:"service_class_id,omitempty"` // The status of a connected endpoint to this network attachment. // Check the Status enum for the list of possible values. Status *string `protobuf:"bytes,181260274,opt,name=status,proto3,oneof" json:"status,omitempty"` @@ -140834,7 +146950,7 @@ type NetworkAttachmentConnectedEndpoint struct { func (x *NetworkAttachmentConnectedEndpoint) Reset() { *x = NetworkAttachmentConnectedEndpoint{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1088] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1143] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140846,7 +146962,7 @@ func (x *NetworkAttachmentConnectedEndpoint) String() string { func (*NetworkAttachmentConnectedEndpoint) ProtoMessage() {} func (x *NetworkAttachmentConnectedEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1088] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1143] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140859,7 +146975,7 @@ func (x *NetworkAttachmentConnectedEndpoint) ProtoReflect() protoreflect.Message // Deprecated: Use NetworkAttachmentConnectedEndpoint.ProtoReflect.Descriptor instead. func (*NetworkAttachmentConnectedEndpoint) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1088} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1143} } func (x *NetworkAttachmentConnectedEndpoint) GetIpAddress() string { @@ -140890,6 +147006,13 @@ func (x *NetworkAttachmentConnectedEndpoint) GetSecondaryIpCidrRanges() []string return nil } +func (x *NetworkAttachmentConnectedEndpoint) GetServiceClassId() string { + if x != nil && x.ServiceClassId != nil { + return *x.ServiceClassId + } + return "" +} + func (x *NetworkAttachmentConnectedEndpoint) GetStatus() string { if x != nil && x.Status != nil { return *x.Status @@ -140934,7 +147057,7 @@ type NetworkAttachmentList struct { func (x *NetworkAttachmentList) Reset() { *x = NetworkAttachmentList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1089] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1144] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140946,7 +147069,7 @@ func (x *NetworkAttachmentList) String() string { func (*NetworkAttachmentList) ProtoMessage() {} func (x *NetworkAttachmentList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1089] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1144] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140959,7 +147082,7 @@ func (x *NetworkAttachmentList) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkAttachmentList.ProtoReflect.Descriptor instead. func (*NetworkAttachmentList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1089} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1144} } func (x *NetworkAttachmentList) GetId() string { @@ -141017,7 +147140,7 @@ type NetworkAttachmentsScopedList struct { func (x *NetworkAttachmentsScopedList) Reset() { *x = NetworkAttachmentsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1090] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1145] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141029,7 +147152,7 @@ func (x *NetworkAttachmentsScopedList) String() string { func (*NetworkAttachmentsScopedList) ProtoMessage() {} func (x *NetworkAttachmentsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1090] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1145] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141042,7 +147165,7 @@ func (x *NetworkAttachmentsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkAttachmentsScopedList.ProtoReflect.Descriptor instead. func (*NetworkAttachmentsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1090} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1145} } func (x *NetworkAttachmentsScopedList) GetNetworkAttachments() []*NetworkAttachment { @@ -141108,7 +147231,7 @@ type NetworkEdgeSecurityService struct { func (x *NetworkEdgeSecurityService) Reset() { *x = NetworkEdgeSecurityService{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1091] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1146] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141120,7 +147243,7 @@ func (x *NetworkEdgeSecurityService) String() string { func (*NetworkEdgeSecurityService) ProtoMessage() {} func (x *NetworkEdgeSecurityService) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1091] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1146] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141133,7 +147256,7 @@ func (x *NetworkEdgeSecurityService) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkEdgeSecurityService.ProtoReflect.Descriptor instead. func (*NetworkEdgeSecurityService) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1091} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1146} } func (x *NetworkEdgeSecurityService) GetCreationTimestamp() string { @@ -141234,7 +147357,7 @@ type NetworkEdgeSecurityServiceAggregatedList struct { func (x *NetworkEdgeSecurityServiceAggregatedList) Reset() { *x = NetworkEdgeSecurityServiceAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1092] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1147] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141246,7 +147369,7 @@ func (x *NetworkEdgeSecurityServiceAggregatedList) String() string { func (*NetworkEdgeSecurityServiceAggregatedList) ProtoMessage() {} func (x *NetworkEdgeSecurityServiceAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1092] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1147] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141259,7 +147382,7 @@ func (x *NetworkEdgeSecurityServiceAggregatedList) ProtoReflect() protoreflect.M // Deprecated: Use NetworkEdgeSecurityServiceAggregatedList.ProtoReflect.Descriptor instead. func (*NetworkEdgeSecurityServiceAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1092} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1147} } func (x *NetworkEdgeSecurityServiceAggregatedList) GetEtag() string { @@ -141331,7 +147454,7 @@ type NetworkEdgeSecurityServicesScopedList struct { func (x *NetworkEdgeSecurityServicesScopedList) Reset() { *x = NetworkEdgeSecurityServicesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1093] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1148] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141343,7 +147466,7 @@ func (x *NetworkEdgeSecurityServicesScopedList) String() string { func (*NetworkEdgeSecurityServicesScopedList) ProtoMessage() {} func (x *NetworkEdgeSecurityServicesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1093] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1148] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141356,7 +147479,7 @@ func (x *NetworkEdgeSecurityServicesScopedList) ProtoReflect() protoreflect.Mess // Deprecated: Use NetworkEdgeSecurityServicesScopedList.ProtoReflect.Descriptor instead. func (*NetworkEdgeSecurityServicesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1093} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1148} } func (x *NetworkEdgeSecurityServicesScopedList) GetNetworkEdgeSecurityServices() []*NetworkEdgeSecurityService { @@ -141421,7 +147544,7 @@ type NetworkEndpoint struct { func (x *NetworkEndpoint) Reset() { *x = NetworkEndpoint{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1094] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1149] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141433,7 +147556,7 @@ func (x *NetworkEndpoint) String() string { func (*NetworkEndpoint) ProtoMessage() {} func (x *NetworkEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1094] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1149] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141446,7 +147569,7 @@ func (x *NetworkEndpoint) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkEndpoint.ProtoReflect.Descriptor instead. func (*NetworkEndpoint) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1094} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1149} } func (x *NetworkEndpoint) GetAnnotations() map[string]string { @@ -141585,7 +147708,7 @@ type NetworkEndpointGroup struct { func (x *NetworkEndpointGroup) Reset() { *x = NetworkEndpointGroup{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1095] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1150] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141597,7 +147720,7 @@ func (x *NetworkEndpointGroup) String() string { func (*NetworkEndpointGroup) ProtoMessage() {} func (x *NetworkEndpointGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1095] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1150] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141610,7 +147733,7 @@ func (x *NetworkEndpointGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkEndpointGroup.ProtoReflect.Descriptor instead. func (*NetworkEndpointGroup) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1095} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1150} } func (x *NetworkEndpointGroup) GetAnnotations() map[string]string { @@ -141773,7 +147896,7 @@ type NetworkEndpointGroupAggregatedList struct { func (x *NetworkEndpointGroupAggregatedList) Reset() { *x = NetworkEndpointGroupAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1096] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1151] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141785,7 +147908,7 @@ func (x *NetworkEndpointGroupAggregatedList) String() string { func (*NetworkEndpointGroupAggregatedList) ProtoMessage() {} func (x *NetworkEndpointGroupAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1096] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1151] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141798,7 +147921,7 @@ func (x *NetworkEndpointGroupAggregatedList) ProtoReflect() protoreflect.Message // Deprecated: Use NetworkEndpointGroupAggregatedList.ProtoReflect.Descriptor instead. func (*NetworkEndpointGroupAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1096} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1151} } func (x *NetworkEndpointGroupAggregatedList) GetId() string { @@ -141893,7 +148016,7 @@ type NetworkEndpointGroupAppEngine struct { func (x *NetworkEndpointGroupAppEngine) Reset() { *x = NetworkEndpointGroupAppEngine{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1097] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1152] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141905,7 +148028,7 @@ func (x *NetworkEndpointGroupAppEngine) String() string { func (*NetworkEndpointGroupAppEngine) ProtoMessage() {} func (x *NetworkEndpointGroupAppEngine) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1097] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1152] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141918,7 +148041,7 @@ func (x *NetworkEndpointGroupAppEngine) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkEndpointGroupAppEngine.ProtoReflect.Descriptor instead. func (*NetworkEndpointGroupAppEngine) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1097} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1152} } func (x *NetworkEndpointGroupAppEngine) GetService() string { @@ -141973,7 +148096,7 @@ type NetworkEndpointGroupCloudFunction struct { func (x *NetworkEndpointGroupCloudFunction) Reset() { *x = NetworkEndpointGroupCloudFunction{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1098] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1153] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141985,7 +148108,7 @@ func (x *NetworkEndpointGroupCloudFunction) String() string { func (*NetworkEndpointGroupCloudFunction) ProtoMessage() {} func (x *NetworkEndpointGroupCloudFunction) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1098] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1153] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141998,7 +148121,7 @@ func (x *NetworkEndpointGroupCloudFunction) ProtoReflect() protoreflect.Message // Deprecated: Use NetworkEndpointGroupCloudFunction.ProtoReflect.Descriptor instead. func (*NetworkEndpointGroupCloudFunction) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1098} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1153} } func (x *NetworkEndpointGroupCloudFunction) GetFunction() string { @@ -142055,7 +148178,7 @@ type NetworkEndpointGroupCloudRun struct { func (x *NetworkEndpointGroupCloudRun) Reset() { *x = NetworkEndpointGroupCloudRun{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1099] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1154] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142067,7 +148190,7 @@ func (x *NetworkEndpointGroupCloudRun) String() string { func (*NetworkEndpointGroupCloudRun) ProtoMessage() {} func (x *NetworkEndpointGroupCloudRun) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1099] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1154] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142080,7 +148203,7 @@ func (x *NetworkEndpointGroupCloudRun) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkEndpointGroupCloudRun.ProtoReflect.Descriptor instead. func (*NetworkEndpointGroupCloudRun) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1099} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1154} } func (x *NetworkEndpointGroupCloudRun) GetService() string { @@ -142129,7 +148252,7 @@ type NetworkEndpointGroupList struct { func (x *NetworkEndpointGroupList) Reset() { *x = NetworkEndpointGroupList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1100] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1155] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142141,7 +148264,7 @@ func (x *NetworkEndpointGroupList) String() string { func (*NetworkEndpointGroupList) ProtoMessage() {} func (x *NetworkEndpointGroupList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1100] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1155] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142154,7 +148277,7 @@ func (x *NetworkEndpointGroupList) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkEndpointGroupList.ProtoReflect.Descriptor instead. func (*NetworkEndpointGroupList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1100} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1155} } func (x *NetworkEndpointGroupList) GetId() string { @@ -142223,7 +148346,7 @@ type NetworkEndpointGroupPscData struct { func (x *NetworkEndpointGroupPscData) Reset() { *x = NetworkEndpointGroupPscData{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1101] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1156] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142235,7 +148358,7 @@ func (x *NetworkEndpointGroupPscData) String() string { func (*NetworkEndpointGroupPscData) ProtoMessage() {} func (x *NetworkEndpointGroupPscData) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1101] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1156] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142248,7 +148371,7 @@ func (x *NetworkEndpointGroupPscData) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkEndpointGroupPscData.ProtoReflect.Descriptor instead. func (*NetworkEndpointGroupPscData) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1101} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1156} } func (x *NetworkEndpointGroupPscData) GetConsumerPscAddress() string { @@ -142289,7 +148412,7 @@ type NetworkEndpointGroupsAttachEndpointsRequest struct { func (x *NetworkEndpointGroupsAttachEndpointsRequest) Reset() { *x = NetworkEndpointGroupsAttachEndpointsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1102] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1157] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142301,7 +148424,7 @@ func (x *NetworkEndpointGroupsAttachEndpointsRequest) String() string { func (*NetworkEndpointGroupsAttachEndpointsRequest) ProtoMessage() {} func (x *NetworkEndpointGroupsAttachEndpointsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1102] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1157] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142314,7 +148437,7 @@ func (x *NetworkEndpointGroupsAttachEndpointsRequest) ProtoReflect() protoreflec // Deprecated: Use NetworkEndpointGroupsAttachEndpointsRequest.ProtoReflect.Descriptor instead. func (*NetworkEndpointGroupsAttachEndpointsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1102} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1157} } func (x *NetworkEndpointGroupsAttachEndpointsRequest) GetNetworkEndpoints() []*NetworkEndpoint { @@ -142334,7 +148457,7 @@ type NetworkEndpointGroupsDetachEndpointsRequest struct { func (x *NetworkEndpointGroupsDetachEndpointsRequest) Reset() { *x = NetworkEndpointGroupsDetachEndpointsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1103] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1158] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142346,7 +148469,7 @@ func (x *NetworkEndpointGroupsDetachEndpointsRequest) String() string { func (*NetworkEndpointGroupsDetachEndpointsRequest) ProtoMessage() {} func (x *NetworkEndpointGroupsDetachEndpointsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1103] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1158] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142359,7 +148482,7 @@ func (x *NetworkEndpointGroupsDetachEndpointsRequest) ProtoReflect() protoreflec // Deprecated: Use NetworkEndpointGroupsDetachEndpointsRequest.ProtoReflect.Descriptor instead. func (*NetworkEndpointGroupsDetachEndpointsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1103} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1158} } func (x *NetworkEndpointGroupsDetachEndpointsRequest) GetNetworkEndpoints() []*NetworkEndpoint { @@ -142383,7 +148506,7 @@ type NetworkEndpointGroupsListEndpointsRequest struct { func (x *NetworkEndpointGroupsListEndpointsRequest) Reset() { *x = NetworkEndpointGroupsListEndpointsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1104] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1159] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142395,7 +148518,7 @@ func (x *NetworkEndpointGroupsListEndpointsRequest) String() string { func (*NetworkEndpointGroupsListEndpointsRequest) ProtoMessage() {} func (x *NetworkEndpointGroupsListEndpointsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1104] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1159] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142408,7 +148531,7 @@ func (x *NetworkEndpointGroupsListEndpointsRequest) ProtoReflect() protoreflect. // Deprecated: Use NetworkEndpointGroupsListEndpointsRequest.ProtoReflect.Descriptor instead. func (*NetworkEndpointGroupsListEndpointsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1104} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1159} } func (x *NetworkEndpointGroupsListEndpointsRequest) GetHealthStatus() string { @@ -142441,7 +148564,7 @@ type NetworkEndpointGroupsListNetworkEndpoints struct { func (x *NetworkEndpointGroupsListNetworkEndpoints) Reset() { *x = NetworkEndpointGroupsListNetworkEndpoints{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1105] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1160] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142453,7 +148576,7 @@ func (x *NetworkEndpointGroupsListNetworkEndpoints) String() string { func (*NetworkEndpointGroupsListNetworkEndpoints) ProtoMessage() {} func (x *NetworkEndpointGroupsListNetworkEndpoints) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1105] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1160] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142466,7 +148589,7 @@ func (x *NetworkEndpointGroupsListNetworkEndpoints) ProtoReflect() protoreflect. // Deprecated: Use NetworkEndpointGroupsListNetworkEndpoints.ProtoReflect.Descriptor instead. func (*NetworkEndpointGroupsListNetworkEndpoints) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1105} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1160} } func (x *NetworkEndpointGroupsListNetworkEndpoints) GetId() string { @@ -142518,7 +148641,7 @@ type NetworkEndpointGroupsScopedList struct { func (x *NetworkEndpointGroupsScopedList) Reset() { *x = NetworkEndpointGroupsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1106] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1161] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142530,7 +148653,7 @@ func (x *NetworkEndpointGroupsScopedList) String() string { func (*NetworkEndpointGroupsScopedList) ProtoMessage() {} func (x *NetworkEndpointGroupsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1106] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1161] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142543,7 +148666,7 @@ func (x *NetworkEndpointGroupsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkEndpointGroupsScopedList.ProtoReflect.Descriptor instead. func (*NetworkEndpointGroupsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1106} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1161} } func (x *NetworkEndpointGroupsScopedList) GetNetworkEndpointGroups() []*NetworkEndpointGroup { @@ -142575,7 +148698,7 @@ type NetworkEndpointWithHealthStatus struct { func (x *NetworkEndpointWithHealthStatus) Reset() { *x = NetworkEndpointWithHealthStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1107] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1162] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142587,7 +148710,7 @@ func (x *NetworkEndpointWithHealthStatus) String() string { func (*NetworkEndpointWithHealthStatus) ProtoMessage() {} func (x *NetworkEndpointWithHealthStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1107] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1162] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142600,7 +148723,7 @@ func (x *NetworkEndpointWithHealthStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkEndpointWithHealthStatus.ProtoReflect.Descriptor instead. func (*NetworkEndpointWithHealthStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1107} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1162} } func (x *NetworkEndpointWithHealthStatus) GetHealths() []*HealthStatusForNetworkEndpoint { @@ -142644,7 +148767,7 @@ type NetworkFirewallPolicyAggregatedList struct { func (x *NetworkFirewallPolicyAggregatedList) Reset() { *x = NetworkFirewallPolicyAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1108] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1163] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142656,7 +148779,7 @@ func (x *NetworkFirewallPolicyAggregatedList) String() string { func (*NetworkFirewallPolicyAggregatedList) ProtoMessage() {} func (x *NetworkFirewallPolicyAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1108] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1163] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142669,7 +148792,7 @@ func (x *NetworkFirewallPolicyAggregatedList) ProtoReflect() protoreflect.Messag // Deprecated: Use NetworkFirewallPolicyAggregatedList.ProtoReflect.Descriptor instead. func (*NetworkFirewallPolicyAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1108} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1163} } func (x *NetworkFirewallPolicyAggregatedList) GetId() string { @@ -142800,6 +148923,11 @@ type NetworkInterface struct { // interface. Both Rx and Tx queues will be set to this number. It'll be empty // if not specified by the users. QueueCount *int32 `protobuf:"varint,503708769,opt,name=queue_count,json=queueCount,proto3,oneof" json:"queue_count,omitempty"` + // Optional. Producer Service's Service class Id for the region of this network + // interface. Can only be used with network_attachment. It is not possible to + // use on its own however, network_attachment can be used without + // service_class_id. + ServiceClassId *string `protobuf:"bytes,422763404,opt,name=service_class_id,json=serviceClassId,proto3,oneof" json:"service_class_id,omitempty"` // The stack type for this network interface. To assign only IPv4 addresses, // use IPV4_ONLY. To assign both IPv4 and IPv6 addresses, useIPV4_IPV6. If not specified, IPV4_ONLY is used. // @@ -142827,7 +148955,7 @@ type NetworkInterface struct { func (x *NetworkInterface) Reset() { *x = NetworkInterface{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1109] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1164] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142839,7 +148967,7 @@ func (x *NetworkInterface) String() string { func (*NetworkInterface) ProtoMessage() {} func (x *NetworkInterface) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1109] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1164] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142852,7 +148980,7 @@ func (x *NetworkInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkInterface.ProtoReflect.Descriptor instead. func (*NetworkInterface) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1109} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1164} } func (x *NetworkInterface) GetAccessConfigs() []*AccessConfig { @@ -142974,6 +149102,13 @@ func (x *NetworkInterface) GetQueueCount() int32 { return 0 } +func (x *NetworkInterface) GetServiceClassId() string { + if x != nil && x.ServiceClassId != nil { + return *x.ServiceClassId + } + return "" +} + func (x *NetworkInterface) GetStackType() string { if x != nil && x.StackType != nil { return *x.StackType @@ -143021,7 +149156,7 @@ type NetworkList struct { func (x *NetworkList) Reset() { *x = NetworkList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1110] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1165] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143033,7 +149168,7 @@ func (x *NetworkList) String() string { func (*NetworkList) ProtoMessage() {} func (x *NetworkList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1110] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1165] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143046,7 +149181,7 @@ func (x *NetworkList) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkList.ProtoReflect.Descriptor instead. func (*NetworkList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1110} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1165} } func (x *NetworkList) GetId() string { @@ -143113,7 +149248,7 @@ type NetworkParams struct { func (x *NetworkParams) Reset() { *x = NetworkParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1111] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1166] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143125,7 +149260,7 @@ func (x *NetworkParams) String() string { func (*NetworkParams) ProtoMessage() {} func (x *NetworkParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1111] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1166] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143138,7 +149273,7 @@ func (x *NetworkParams) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkParams.ProtoReflect.Descriptor instead. func (*NetworkParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1111} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1166} } func (x *NetworkParams) GetResourceManagerTags() map[string]string { @@ -143217,7 +149352,7 @@ type NetworkPeering struct { func (x *NetworkPeering) Reset() { *x = NetworkPeering{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1112] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1167] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143229,7 +149364,7 @@ func (x *NetworkPeering) String() string { func (*NetworkPeering) ProtoMessage() {} func (x *NetworkPeering) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1112] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1167] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143242,7 +149377,7 @@ func (x *NetworkPeering) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkPeering.ProtoReflect.Descriptor instead. func (*NetworkPeering) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1112} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1167} } func (x *NetworkPeering) GetAutoCreateRoutes() bool { @@ -143365,7 +149500,7 @@ type NetworkPeeringConnectionStatus struct { func (x *NetworkPeeringConnectionStatus) Reset() { *x = NetworkPeeringConnectionStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1113] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1168] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143377,7 +149512,7 @@ func (x *NetworkPeeringConnectionStatus) String() string { func (*NetworkPeeringConnectionStatus) ProtoMessage() {} func (x *NetworkPeeringConnectionStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1113] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1168] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143390,7 +149525,7 @@ func (x *NetworkPeeringConnectionStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkPeeringConnectionStatus.ProtoReflect.Descriptor instead. func (*NetworkPeeringConnectionStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1113} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1168} } func (x *NetworkPeeringConnectionStatus) GetConsensusState() *NetworkPeeringConnectionStatusConsensusState { @@ -143431,7 +149566,7 @@ type NetworkPeeringConnectionStatusConsensusState struct { func (x *NetworkPeeringConnectionStatusConsensusState) Reset() { *x = NetworkPeeringConnectionStatusConsensusState{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1114] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1169] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143443,7 +149578,7 @@ func (x *NetworkPeeringConnectionStatusConsensusState) String() string { func (*NetworkPeeringConnectionStatusConsensusState) ProtoMessage() {} func (x *NetworkPeeringConnectionStatusConsensusState) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1114] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1169] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143456,7 +149591,7 @@ func (x *NetworkPeeringConnectionStatusConsensusState) ProtoReflect() protorefle // Deprecated: Use NetworkPeeringConnectionStatusConsensusState.ProtoReflect.Descriptor instead. func (*NetworkPeeringConnectionStatusConsensusState) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1114} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1169} } func (x *NetworkPeeringConnectionStatusConsensusState) GetDeleteStatus() string { @@ -143495,7 +149630,7 @@ type NetworkPeeringConnectionStatusTrafficConfiguration struct { func (x *NetworkPeeringConnectionStatusTrafficConfiguration) Reset() { *x = NetworkPeeringConnectionStatusTrafficConfiguration{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1115] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1170] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143507,7 +149642,7 @@ func (x *NetworkPeeringConnectionStatusTrafficConfiguration) String() string { func (*NetworkPeeringConnectionStatusTrafficConfiguration) ProtoMessage() {} func (x *NetworkPeeringConnectionStatusTrafficConfiguration) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1115] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1170] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143520,7 +149655,7 @@ func (x *NetworkPeeringConnectionStatusTrafficConfiguration) ProtoReflect() prot // Deprecated: Use NetworkPeeringConnectionStatusTrafficConfiguration.ProtoReflect.Descriptor instead. func (*NetworkPeeringConnectionStatusTrafficConfiguration) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1115} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1170} } func (x *NetworkPeeringConnectionStatusTrafficConfiguration) GetExportCustomRoutesToPeer() bool { @@ -143568,7 +149703,7 @@ type NetworkPerformanceConfig struct { func (x *NetworkPerformanceConfig) Reset() { *x = NetworkPerformanceConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1116] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1171] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143580,7 +149715,7 @@ func (x *NetworkPerformanceConfig) String() string { func (*NetworkPerformanceConfig) ProtoMessage() {} func (x *NetworkPerformanceConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1116] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1171] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143593,7 +149728,7 @@ func (x *NetworkPerformanceConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkPerformanceConfig.ProtoReflect.Descriptor instead. func (*NetworkPerformanceConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1116} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1171} } func (x *NetworkPerformanceConfig) GetTotalEgressBandwidthTier() string { @@ -143635,7 +149770,7 @@ type NetworkProfile struct { func (x *NetworkProfile) Reset() { *x = NetworkProfile{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1117] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1172] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143647,7 +149782,7 @@ func (x *NetworkProfile) String() string { func (*NetworkProfile) ProtoMessage() {} func (x *NetworkProfile) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1117] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1172] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143660,7 +149795,7 @@ func (x *NetworkProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkProfile.ProtoReflect.Descriptor instead. func (*NetworkProfile) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1117} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1172} } func (x *NetworkProfile) GetCreationTimestamp() string { @@ -143751,7 +149886,7 @@ type NetworkProfileLocation struct { func (x *NetworkProfileLocation) Reset() { *x = NetworkProfileLocation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1118] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1173] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143763,7 +149898,7 @@ func (x *NetworkProfileLocation) String() string { func (*NetworkProfileLocation) ProtoMessage() {} func (x *NetworkProfileLocation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1118] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1173] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143776,7 +149911,7 @@ func (x *NetworkProfileLocation) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkProfileLocation.ProtoReflect.Descriptor instead. func (*NetworkProfileLocation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1118} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1173} } func (x *NetworkProfileLocation) GetName() string { @@ -143916,7 +150051,7 @@ type NetworkProfileNetworkFeatures struct { func (x *NetworkProfileNetworkFeatures) Reset() { *x = NetworkProfileNetworkFeatures{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1119] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1174] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143928,7 +150063,7 @@ func (x *NetworkProfileNetworkFeatures) String() string { func (*NetworkProfileNetworkFeatures) ProtoMessage() {} func (x *NetworkProfileNetworkFeatures) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1119] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1174] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143941,7 +150076,7 @@ func (x *NetworkProfileNetworkFeatures) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkProfileNetworkFeatures.ProtoReflect.Descriptor instead. func (*NetworkProfileNetworkFeatures) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1119} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174} } func (x *NetworkProfileNetworkFeatures) GetAddressPurposes() []string { @@ -144222,7 +150357,7 @@ type NetworkProfileNetworkFeaturesPredefinedSubnetworkRange struct { func (x *NetworkProfileNetworkFeaturesPredefinedSubnetworkRange) Reset() { *x = NetworkProfileNetworkFeaturesPredefinedSubnetworkRange{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1120] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1175] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144234,7 +150369,7 @@ func (x *NetworkProfileNetworkFeaturesPredefinedSubnetworkRange) String() string func (*NetworkProfileNetworkFeaturesPredefinedSubnetworkRange) ProtoMessage() {} func (x *NetworkProfileNetworkFeaturesPredefinedSubnetworkRange) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1120] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1175] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144247,7 +150382,7 @@ func (x *NetworkProfileNetworkFeaturesPredefinedSubnetworkRange) ProtoReflect() // Deprecated: Use NetworkProfileNetworkFeaturesPredefinedSubnetworkRange.ProtoReflect.Descriptor instead. func (*NetworkProfileNetworkFeaturesPredefinedSubnetworkRange) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1120} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1175} } func (x *NetworkProfileNetworkFeaturesPredefinedSubnetworkRange) GetIpv6Range() string { @@ -144280,7 +150415,7 @@ type NetworkProfileProfileType struct { func (x *NetworkProfileProfileType) Reset() { *x = NetworkProfileProfileType{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1121] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1176] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144292,7 +150427,7 @@ func (x *NetworkProfileProfileType) String() string { func (*NetworkProfileProfileType) ProtoMessage() {} func (x *NetworkProfileProfileType) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1121] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1176] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144305,7 +150440,7 @@ func (x *NetworkProfileProfileType) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkProfileProfileType.ProtoReflect.Descriptor instead. func (*NetworkProfileProfileType) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1121} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1176} } func (x *NetworkProfileProfileType) GetNetworkType() string { @@ -144367,7 +150502,7 @@ type NetworkProfilesListResponse struct { func (x *NetworkProfilesListResponse) Reset() { *x = NetworkProfilesListResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1122] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1177] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144379,7 +150514,7 @@ func (x *NetworkProfilesListResponse) String() string { func (*NetworkProfilesListResponse) ProtoMessage() {} func (x *NetworkProfilesListResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1122] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1177] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144392,7 +150527,7 @@ func (x *NetworkProfilesListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkProfilesListResponse.ProtoReflect.Descriptor instead. func (*NetworkProfilesListResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1122} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1177} } func (x *NetworkProfilesListResponse) GetEtag() string { @@ -144489,7 +150624,7 @@ type NetworkRoutingConfig struct { func (x *NetworkRoutingConfig) Reset() { *x = NetworkRoutingConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1123] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1178] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144501,7 +150636,7 @@ func (x *NetworkRoutingConfig) String() string { func (*NetworkRoutingConfig) ProtoMessage() {} func (x *NetworkRoutingConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1123] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1178] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144514,7 +150649,7 @@ func (x *NetworkRoutingConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworkRoutingConfig.ProtoReflect.Descriptor instead. func (*NetworkRoutingConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1123} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1178} } func (x *NetworkRoutingConfig) GetBgpAlwaysCompareMed() bool { @@ -144589,7 +150724,7 @@ type NetworksAddPeeringRequest struct { func (x *NetworksAddPeeringRequest) Reset() { *x = NetworksAddPeeringRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1124] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1179] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144601,7 +150736,7 @@ func (x *NetworksAddPeeringRequest) String() string { func (*NetworksAddPeeringRequest) ProtoMessage() {} func (x *NetworksAddPeeringRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1124] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1179] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144614,7 +150749,7 @@ func (x *NetworksAddPeeringRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworksAddPeeringRequest.ProtoReflect.Descriptor instead. func (*NetworksAddPeeringRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1124} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1179} } func (x *NetworksAddPeeringRequest) GetAutoCreateRoutes() bool { @@ -144659,7 +150794,7 @@ type NetworksGetEffectiveFirewallsResponse struct { func (x *NetworksGetEffectiveFirewallsResponse) Reset() { *x = NetworksGetEffectiveFirewallsResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1125] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1180] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144671,7 +150806,7 @@ func (x *NetworksGetEffectiveFirewallsResponse) String() string { func (*NetworksGetEffectiveFirewallsResponse) ProtoMessage() {} func (x *NetworksGetEffectiveFirewallsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1125] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1180] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144684,7 +150819,7 @@ func (x *NetworksGetEffectiveFirewallsResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use NetworksGetEffectiveFirewallsResponse.ProtoReflect.Descriptor instead. func (*NetworksGetEffectiveFirewallsResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1125} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1180} } func (x *NetworksGetEffectiveFirewallsResponse) GetFirewallPolicys() []*NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy { @@ -144726,7 +150861,7 @@ type NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy struct { func (x *NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy) Reset() { *x = NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1126] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1181] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144738,7 +150873,7 @@ func (x *NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy) String() func (*NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy) ProtoMessage() {} func (x *NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1126] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1181] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144751,7 +150886,7 @@ func (x *NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy) ProtoRefl // Deprecated: Use NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.ProtoReflect.Descriptor instead. func (*NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1126} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1181} } func (x *NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy) GetDisplayName() string { @@ -144813,7 +150948,7 @@ type NetworksRemovePeeringRequest struct { func (x *NetworksRemovePeeringRequest) Reset() { *x = NetworksRemovePeeringRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1127] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1182] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144825,7 +150960,7 @@ func (x *NetworksRemovePeeringRequest) String() string { func (*NetworksRemovePeeringRequest) ProtoMessage() {} func (x *NetworksRemovePeeringRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1127] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1182] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144838,7 +150973,7 @@ func (x *NetworksRemovePeeringRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworksRemovePeeringRequest.ProtoReflect.Descriptor instead. func (*NetworksRemovePeeringRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1127} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1182} } func (x *NetworksRemovePeeringRequest) GetName() string { @@ -144858,7 +150993,7 @@ type NetworksRequestRemovePeeringRequest struct { func (x *NetworksRequestRemovePeeringRequest) Reset() { *x = NetworksRequestRemovePeeringRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1128] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1183] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144870,7 +151005,7 @@ func (x *NetworksRequestRemovePeeringRequest) String() string { func (*NetworksRequestRemovePeeringRequest) ProtoMessage() {} func (x *NetworksRequestRemovePeeringRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1128] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1183] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144883,7 +151018,7 @@ func (x *NetworksRequestRemovePeeringRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use NetworksRequestRemovePeeringRequest.ProtoReflect.Descriptor instead. func (*NetworksRequestRemovePeeringRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1128} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1183} } func (x *NetworksRequestRemovePeeringRequest) GetName() string { @@ -144902,7 +151037,7 @@ type NetworksUpdatePeeringRequest struct { func (x *NetworksUpdatePeeringRequest) Reset() { *x = NetworksUpdatePeeringRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1129] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1184] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144914,7 +151049,7 @@ func (x *NetworksUpdatePeeringRequest) String() string { func (*NetworksUpdatePeeringRequest) ProtoMessage() {} func (x *NetworksUpdatePeeringRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1129] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1184] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144927,7 +151062,7 @@ func (x *NetworksUpdatePeeringRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use NetworksUpdatePeeringRequest.ProtoReflect.Descriptor instead. func (*NetworksUpdatePeeringRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1129} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1184} } func (x *NetworksUpdatePeeringRequest) GetNetworkPeering() *NetworkPeering { @@ -145005,7 +151140,7 @@ type NodeGroup struct { func (x *NodeGroup) Reset() { *x = NodeGroup{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1130] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1185] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145017,7 +151152,7 @@ func (x *NodeGroup) String() string { func (*NodeGroup) ProtoMessage() {} func (x *NodeGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1130] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1185] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145030,7 +151165,7 @@ func (x *NodeGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeGroup.ProtoReflect.Descriptor instead. func (*NodeGroup) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1130} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1185} } func (x *NodeGroup) GetAutoscalingPolicy() *NodeGroupAutoscalingPolicy { @@ -145179,7 +151314,7 @@ type NodeGroupAggregatedList struct { func (x *NodeGroupAggregatedList) Reset() { *x = NodeGroupAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1131] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1186] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145191,7 +151326,7 @@ func (x *NodeGroupAggregatedList) String() string { func (*NodeGroupAggregatedList) ProtoMessage() {} func (x *NodeGroupAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1131] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1186] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145204,7 +151339,7 @@ func (x *NodeGroupAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeGroupAggregatedList.ProtoReflect.Descriptor instead. func (*NodeGroupAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1131} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1186} } func (x *NodeGroupAggregatedList) GetId() string { @@ -145274,7 +151409,7 @@ type NodeGroupAutoscalingPolicy struct { func (x *NodeGroupAutoscalingPolicy) Reset() { *x = NodeGroupAutoscalingPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1132] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1187] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145286,7 +151421,7 @@ func (x *NodeGroupAutoscalingPolicy) String() string { func (*NodeGroupAutoscalingPolicy) ProtoMessage() {} func (x *NodeGroupAutoscalingPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1132] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1187] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145299,7 +151434,7 @@ func (x *NodeGroupAutoscalingPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeGroupAutoscalingPolicy.ProtoReflect.Descriptor instead. func (*NodeGroupAutoscalingPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1132} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1187} } func (x *NodeGroupAutoscalingPolicy) GetMaxNodes() int32 { @@ -145349,7 +151484,7 @@ type NodeGroupList struct { func (x *NodeGroupList) Reset() { *x = NodeGroupList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1133] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1188] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145361,7 +151496,7 @@ func (x *NodeGroupList) String() string { func (*NodeGroupList) ProtoMessage() {} func (x *NodeGroupList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1133] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1188] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145374,7 +151509,7 @@ func (x *NodeGroupList) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeGroupList.ProtoReflect.Descriptor instead. func (*NodeGroupList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1133} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1188} } func (x *NodeGroupList) GetId() string { @@ -145436,7 +151571,7 @@ type NodeGroupMaintenanceWindow struct { func (x *NodeGroupMaintenanceWindow) Reset() { *x = NodeGroupMaintenanceWindow{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1134] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1189] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145448,7 +151583,7 @@ func (x *NodeGroupMaintenanceWindow) String() string { func (*NodeGroupMaintenanceWindow) ProtoMessage() {} func (x *NodeGroupMaintenanceWindow) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1134] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1189] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145461,7 +151596,7 @@ func (x *NodeGroupMaintenanceWindow) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeGroupMaintenanceWindow.ProtoReflect.Descriptor instead. func (*NodeGroupMaintenanceWindow) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1134} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1189} } func (x *NodeGroupMaintenanceWindow) GetMaintenanceDuration() *Duration { @@ -145515,7 +151650,7 @@ type NodeGroupNode struct { func (x *NodeGroupNode) Reset() { *x = NodeGroupNode{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1135] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1190] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145527,7 +151662,7 @@ func (x *NodeGroupNode) String() string { func (*NodeGroupNode) ProtoMessage() {} func (x *NodeGroupNode) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1135] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1190] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145540,7 +151675,7 @@ func (x *NodeGroupNode) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeGroupNode.ProtoReflect.Descriptor instead. func (*NodeGroupNode) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1135} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1190} } func (x *NodeGroupNode) GetAccelerators() []*AcceleratorConfig { @@ -145651,7 +151786,7 @@ type NodeGroupsAddNodesRequest struct { func (x *NodeGroupsAddNodesRequest) Reset() { *x = NodeGroupsAddNodesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1136] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1191] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145663,7 +151798,7 @@ func (x *NodeGroupsAddNodesRequest) String() string { func (*NodeGroupsAddNodesRequest) ProtoMessage() {} func (x *NodeGroupsAddNodesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1136] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1191] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145676,7 +151811,7 @@ func (x *NodeGroupsAddNodesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeGroupsAddNodesRequest.ProtoReflect.Descriptor instead. func (*NodeGroupsAddNodesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1136} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1191} } func (x *NodeGroupsAddNodesRequest) GetAdditionalNodeCount() int32 { @@ -145696,7 +151831,7 @@ type NodeGroupsDeleteNodesRequest struct { func (x *NodeGroupsDeleteNodesRequest) Reset() { *x = NodeGroupsDeleteNodesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1137] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1192] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145708,7 +151843,7 @@ func (x *NodeGroupsDeleteNodesRequest) String() string { func (*NodeGroupsDeleteNodesRequest) ProtoMessage() {} func (x *NodeGroupsDeleteNodesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1137] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1192] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145721,7 +151856,7 @@ func (x *NodeGroupsDeleteNodesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeGroupsDeleteNodesRequest.ProtoReflect.Descriptor instead. func (*NodeGroupsDeleteNodesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1137} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1192} } func (x *NodeGroupsDeleteNodesRequest) GetNodes() []string { @@ -145756,7 +151891,7 @@ type NodeGroupsListNodes struct { func (x *NodeGroupsListNodes) Reset() { *x = NodeGroupsListNodes{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1138] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1193] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145768,7 +151903,7 @@ func (x *NodeGroupsListNodes) String() string { func (*NodeGroupsListNodes) ProtoMessage() {} func (x *NodeGroupsListNodes) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1138] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1193] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145781,7 +151916,7 @@ func (x *NodeGroupsListNodes) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeGroupsListNodes.ProtoReflect.Descriptor instead. func (*NodeGroupsListNodes) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1138} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1193} } func (x *NodeGroupsListNodes) GetId() string { @@ -145838,7 +151973,7 @@ type NodeGroupsPerformMaintenanceRequest struct { func (x *NodeGroupsPerformMaintenanceRequest) Reset() { *x = NodeGroupsPerformMaintenanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1139] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1194] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145850,7 +151985,7 @@ func (x *NodeGroupsPerformMaintenanceRequest) String() string { func (*NodeGroupsPerformMaintenanceRequest) ProtoMessage() {} func (x *NodeGroupsPerformMaintenanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1139] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1194] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145863,7 +151998,7 @@ func (x *NodeGroupsPerformMaintenanceRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use NodeGroupsPerformMaintenanceRequest.ProtoReflect.Descriptor instead. func (*NodeGroupsPerformMaintenanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1139} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1194} } func (x *NodeGroupsPerformMaintenanceRequest) GetNodes() []string { @@ -145893,7 +152028,7 @@ type NodeGroupsScopedList struct { func (x *NodeGroupsScopedList) Reset() { *x = NodeGroupsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1140] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1195] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145905,7 +152040,7 @@ func (x *NodeGroupsScopedList) String() string { func (*NodeGroupsScopedList) ProtoMessage() {} func (x *NodeGroupsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1140] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1195] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145918,7 +152053,7 @@ func (x *NodeGroupsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeGroupsScopedList.ProtoReflect.Descriptor instead. func (*NodeGroupsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1140} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1195} } func (x *NodeGroupsScopedList) GetNodeGroups() []*NodeGroup { @@ -145946,7 +152081,7 @@ type NodeGroupsSetNodeTemplateRequest struct { func (x *NodeGroupsSetNodeTemplateRequest) Reset() { *x = NodeGroupsSetNodeTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1141] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1196] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145958,7 +152093,7 @@ func (x *NodeGroupsSetNodeTemplateRequest) String() string { func (*NodeGroupsSetNodeTemplateRequest) ProtoMessage() {} func (x *NodeGroupsSetNodeTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1141] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1196] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145971,7 +152106,7 @@ func (x *NodeGroupsSetNodeTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeGroupsSetNodeTemplateRequest.ProtoReflect.Descriptor instead. func (*NodeGroupsSetNodeTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1141} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1196} } func (x *NodeGroupsSetNodeTemplateRequest) GetNodeTemplate() string { @@ -145991,7 +152126,7 @@ type NodeGroupsSimulateMaintenanceEventRequest struct { func (x *NodeGroupsSimulateMaintenanceEventRequest) Reset() { *x = NodeGroupsSimulateMaintenanceEventRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1142] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1197] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146003,7 +152138,7 @@ func (x *NodeGroupsSimulateMaintenanceEventRequest) String() string { func (*NodeGroupsSimulateMaintenanceEventRequest) ProtoMessage() {} func (x *NodeGroupsSimulateMaintenanceEventRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1142] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1197] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146016,7 +152151,7 @@ func (x *NodeGroupsSimulateMaintenanceEventRequest) ProtoReflect() protoreflect. // Deprecated: Use NodeGroupsSimulateMaintenanceEventRequest.ProtoReflect.Descriptor instead. func (*NodeGroupsSimulateMaintenanceEventRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1142} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1197} } func (x *NodeGroupsSimulateMaintenanceEventRequest) GetNodes() []string { @@ -146091,7 +152226,7 @@ type NodeTemplate struct { func (x *NodeTemplate) Reset() { *x = NodeTemplate{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1143] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1198] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146103,7 +152238,7 @@ func (x *NodeTemplate) String() string { func (*NodeTemplate) ProtoMessage() {} func (x *NodeTemplate) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1143] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1198] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146116,7 +152251,7 @@ func (x *NodeTemplate) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeTemplate.ProtoReflect.Descriptor instead. func (*NodeTemplate) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1143} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1198} } func (x *NodeTemplate) GetAccelerators() []*AcceleratorConfig { @@ -146258,7 +152393,7 @@ type NodeTemplateAggregatedList struct { func (x *NodeTemplateAggregatedList) Reset() { *x = NodeTemplateAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1144] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1199] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146270,7 +152405,7 @@ func (x *NodeTemplateAggregatedList) String() string { func (*NodeTemplateAggregatedList) ProtoMessage() {} func (x *NodeTemplateAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1144] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1199] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146283,7 +152418,7 @@ func (x *NodeTemplateAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeTemplateAggregatedList.ProtoReflect.Descriptor instead. func (*NodeTemplateAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1144} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1199} } func (x *NodeTemplateAggregatedList) GetId() string { @@ -146361,7 +152496,7 @@ type NodeTemplateList struct { func (x *NodeTemplateList) Reset() { *x = NodeTemplateList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1145] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1200] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146373,7 +152508,7 @@ func (x *NodeTemplateList) String() string { func (*NodeTemplateList) ProtoMessage() {} func (x *NodeTemplateList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1145] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1200] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146386,7 +152521,7 @@ func (x *NodeTemplateList) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeTemplateList.ProtoReflect.Descriptor instead. func (*NodeTemplateList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1145} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1200} } func (x *NodeTemplateList) GetId() string { @@ -146442,7 +152577,7 @@ type NodeTemplateNodeTypeFlexibility struct { func (x *NodeTemplateNodeTypeFlexibility) Reset() { *x = NodeTemplateNodeTypeFlexibility{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1146] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1201] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146454,7 +152589,7 @@ func (x *NodeTemplateNodeTypeFlexibility) String() string { func (*NodeTemplateNodeTypeFlexibility) ProtoMessage() {} func (x *NodeTemplateNodeTypeFlexibility) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1146] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1201] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146467,7 +152602,7 @@ func (x *NodeTemplateNodeTypeFlexibility) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeTemplateNodeTypeFlexibility.ProtoReflect.Descriptor instead. func (*NodeTemplateNodeTypeFlexibility) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1146} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1201} } func (x *NodeTemplateNodeTypeFlexibility) GetCpus() string { @@ -146504,7 +152639,7 @@ type NodeTemplatesScopedList struct { func (x *NodeTemplatesScopedList) Reset() { *x = NodeTemplatesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1147] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1202] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146516,7 +152651,7 @@ func (x *NodeTemplatesScopedList) String() string { func (*NodeTemplatesScopedList) ProtoMessage() {} func (x *NodeTemplatesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1147] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1202] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146529,7 +152664,7 @@ func (x *NodeTemplatesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeTemplatesScopedList.ProtoReflect.Descriptor instead. func (*NodeTemplatesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1147} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1202} } func (x *NodeTemplatesScopedList) GetNodeTemplates() []*NodeTemplate { @@ -146592,7 +152727,7 @@ type NodeType struct { func (x *NodeType) Reset() { *x = NodeType{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1148] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1203] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146604,7 +152739,7 @@ func (x *NodeType) String() string { func (*NodeType) ProtoMessage() {} func (x *NodeType) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1148] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1203] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146617,7 +152752,7 @@ func (x *NodeType) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeType.ProtoReflect.Descriptor instead. func (*NodeType) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1148} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1203} } func (x *NodeType) GetCpuPlatform() string { @@ -146738,7 +152873,7 @@ type NodeTypeAggregatedList struct { func (x *NodeTypeAggregatedList) Reset() { *x = NodeTypeAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1149] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1204] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146750,7 +152885,7 @@ func (x *NodeTypeAggregatedList) String() string { func (*NodeTypeAggregatedList) ProtoMessage() {} func (x *NodeTypeAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1149] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1204] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146763,7 +152898,7 @@ func (x *NodeTypeAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeTypeAggregatedList.ProtoReflect.Descriptor instead. func (*NodeTypeAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1149} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1204} } func (x *NodeTypeAggregatedList) GetId() string { @@ -146841,7 +152976,7 @@ type NodeTypeList struct { func (x *NodeTypeList) Reset() { *x = NodeTypeList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1150] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1205] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146853,7 +152988,7 @@ func (x *NodeTypeList) String() string { func (*NodeTypeList) ProtoMessage() {} func (x *NodeTypeList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1150] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1205] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146866,7 +153001,7 @@ func (x *NodeTypeList) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeTypeList.ProtoReflect.Descriptor instead. func (*NodeTypeList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1150} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1205} } func (x *NodeTypeList) GetId() string { @@ -146924,7 +153059,7 @@ type NodeTypesScopedList struct { func (x *NodeTypesScopedList) Reset() { *x = NodeTypesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1151] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1206] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146936,7 +153071,7 @@ func (x *NodeTypesScopedList) String() string { func (*NodeTypesScopedList) ProtoMessage() {} func (x *NodeTypesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1151] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1206] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146949,7 +153084,7 @@ func (x *NodeTypesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use NodeTypesScopedList.ProtoReflect.Descriptor instead. func (*NodeTypesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1151} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1206} } func (x *NodeTypesScopedList) GetNodeTypes() []*NodeType { @@ -147011,7 +153146,7 @@ type NotificationEndpoint struct { func (x *NotificationEndpoint) Reset() { *x = NotificationEndpoint{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1152] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1207] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -147023,7 +153158,7 @@ func (x *NotificationEndpoint) String() string { func (*NotificationEndpoint) ProtoMessage() {} func (x *NotificationEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1152] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1207] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147036,7 +153171,7 @@ func (x *NotificationEndpoint) ProtoReflect() protoreflect.Message { // Deprecated: Use NotificationEndpoint.ProtoReflect.Descriptor instead. func (*NotificationEndpoint) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1152} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1207} } func (x *NotificationEndpoint) GetCreationTimestamp() string { @@ -147122,7 +153257,7 @@ type NotificationEndpointAggregatedList struct { func (x *NotificationEndpointAggregatedList) Reset() { *x = NotificationEndpointAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1153] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1208] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -147134,7 +153269,7 @@ func (x *NotificationEndpointAggregatedList) String() string { func (*NotificationEndpointAggregatedList) ProtoMessage() {} func (x *NotificationEndpointAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1153] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1208] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147147,7 +153282,7 @@ func (x *NotificationEndpointAggregatedList) ProtoReflect() protoreflect.Message // Deprecated: Use NotificationEndpointAggregatedList.ProtoReflect.Descriptor instead. func (*NotificationEndpointAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1153} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1208} } func (x *NotificationEndpointAggregatedList) GetId() string { @@ -147229,7 +153364,7 @@ type NotificationEndpointGrpcSettings struct { func (x *NotificationEndpointGrpcSettings) Reset() { *x = NotificationEndpointGrpcSettings{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1154] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1209] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -147241,7 +153376,7 @@ func (x *NotificationEndpointGrpcSettings) String() string { func (*NotificationEndpointGrpcSettings) ProtoMessage() {} func (x *NotificationEndpointGrpcSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1154] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1209] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147254,7 +153389,7 @@ func (x *NotificationEndpointGrpcSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use NotificationEndpointGrpcSettings.ProtoReflect.Descriptor instead. func (*NotificationEndpointGrpcSettings) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1154} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1209} } func (x *NotificationEndpointGrpcSettings) GetAuthority() string { @@ -147316,7 +153451,7 @@ type NotificationEndpointList struct { func (x *NotificationEndpointList) Reset() { *x = NotificationEndpointList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1155] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1210] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -147328,7 +153463,7 @@ func (x *NotificationEndpointList) String() string { func (*NotificationEndpointList) ProtoMessage() {} func (x *NotificationEndpointList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1155] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1210] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147341,7 +153476,7 @@ func (x *NotificationEndpointList) ProtoReflect() protoreflect.Message { // Deprecated: Use NotificationEndpointList.ProtoReflect.Descriptor instead. func (*NotificationEndpointList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1155} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1210} } func (x *NotificationEndpointList) GetId() string { @@ -147399,7 +153534,7 @@ type NotificationEndpointsScopedList struct { func (x *NotificationEndpointsScopedList) Reset() { *x = NotificationEndpointsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1156] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1211] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -147411,7 +153546,7 @@ func (x *NotificationEndpointsScopedList) String() string { func (*NotificationEndpointsScopedList) ProtoMessage() {} func (x *NotificationEndpointsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1156] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1211] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147424,7 +153559,7 @@ func (x *NotificationEndpointsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use NotificationEndpointsScopedList.ProtoReflect.Descriptor instead. func (*NotificationEndpointsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1156} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1211} } func (x *NotificationEndpointsScopedList) GetResources() []*NotificationEndpoint { @@ -147559,7 +153694,7 @@ type Operation struct { func (x *Operation) Reset() { *x = Operation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1157] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1212] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -147571,7 +153706,7 @@ func (x *Operation) String() string { func (*Operation) ProtoMessage() {} func (x *Operation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1157] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1212] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147584,7 +153719,7 @@ func (x *Operation) ProtoReflect() protoreflect.Message { // Deprecated: Use Operation.ProtoReflect.Descriptor instead. func (*Operation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1157} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1212} } func (x *Operation) GetClientOperationId() string { @@ -147805,7 +153940,7 @@ type OperationAggregatedList struct { func (x *OperationAggregatedList) Reset() { *x = OperationAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1158] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1213] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -147817,7 +153952,7 @@ func (x *OperationAggregatedList) String() string { func (*OperationAggregatedList) ProtoMessage() {} func (x *OperationAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1158] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1213] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147830,7 +153965,7 @@ func (x *OperationAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use OperationAggregatedList.ProtoReflect.Descriptor instead. func (*OperationAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1158} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1213} } func (x *OperationAggregatedList) GetId() string { @@ -147910,7 +154045,7 @@ type OperationList struct { func (x *OperationList) Reset() { *x = OperationList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1159] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1214] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -147922,7 +154057,7 @@ func (x *OperationList) String() string { func (*OperationList) ProtoMessage() {} func (x *OperationList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1159] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1214] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147935,7 +154070,7 @@ func (x *OperationList) ProtoReflect() protoreflect.Message { // Deprecated: Use OperationList.ProtoReflect.Descriptor instead. func (*OperationList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1159} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1214} } func (x *OperationList) GetId() string { @@ -147993,7 +154128,7 @@ type OperationsScopedList struct { func (x *OperationsScopedList) Reset() { *x = OperationsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1160] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1215] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148005,7 +154140,7 @@ func (x *OperationsScopedList) String() string { func (*OperationsScopedList) ProtoMessage() {} func (x *OperationsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1160] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1215] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148018,7 +154153,7 @@ func (x *OperationsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use OperationsScopedList.ProtoReflect.Descriptor instead. func (*OperationsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1160} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1215} } func (x *OperationsScopedList) GetOperations() []*Operation { @@ -148048,7 +154183,7 @@ type OrganizationSecurityPoliciesListAssociationsResponse struct { func (x *OrganizationSecurityPoliciesListAssociationsResponse) Reset() { *x = OrganizationSecurityPoliciesListAssociationsResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1161] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1216] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148060,7 +154195,7 @@ func (x *OrganizationSecurityPoliciesListAssociationsResponse) String() string { func (*OrganizationSecurityPoliciesListAssociationsResponse) ProtoMessage() {} func (x *OrganizationSecurityPoliciesListAssociationsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1161] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1216] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148073,7 +154208,7 @@ func (x *OrganizationSecurityPoliciesListAssociationsResponse) ProtoReflect() pr // Deprecated: Use OrganizationSecurityPoliciesListAssociationsResponse.ProtoReflect.Descriptor instead. func (*OrganizationSecurityPoliciesListAssociationsResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1161} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1216} } func (x *OrganizationSecurityPoliciesListAssociationsResponse) GetAssociations() []*SecurityPolicyAssociation { @@ -148166,7 +154301,7 @@ type OutlierDetection struct { func (x *OutlierDetection) Reset() { *x = OutlierDetection{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1162] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1217] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148178,7 +154313,7 @@ func (x *OutlierDetection) String() string { func (*OutlierDetection) ProtoMessage() {} func (x *OutlierDetection) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1162] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1217] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148191,7 +154326,7 @@ func (x *OutlierDetection) ProtoReflect() protoreflect.Message { // Deprecated: Use OutlierDetection.ProtoReflect.Descriptor instead. func (*OutlierDetection) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1162} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1217} } func (x *OutlierDetection) GetBaseEjectionTime() *Duration { @@ -148294,7 +154429,7 @@ type PacketIntervals struct { func (x *PacketIntervals) Reset() { *x = PacketIntervals{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1163] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1218] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148306,7 +154441,7 @@ func (x *PacketIntervals) String() string { func (*PacketIntervals) ProtoMessage() {} func (x *PacketIntervals) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1163] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1218] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148319,7 +154454,7 @@ func (x *PacketIntervals) ProtoReflect() protoreflect.Message { // Deprecated: Use PacketIntervals.ProtoReflect.Descriptor instead. func (*PacketIntervals) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1163} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1218} } func (x *PacketIntervals) GetAvgMs() int64 { @@ -148431,7 +154566,7 @@ type PacketMirroring struct { func (x *PacketMirroring) Reset() { *x = PacketMirroring{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1164] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1219] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148443,7 +154578,7 @@ func (x *PacketMirroring) String() string { func (*PacketMirroring) ProtoMessage() {} func (x *PacketMirroring) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1164] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1219] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148456,7 +154591,7 @@ func (x *PacketMirroring) ProtoReflect() protoreflect.Message { // Deprecated: Use PacketMirroring.ProtoReflect.Descriptor instead. func (*PacketMirroring) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1164} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1219} } func (x *PacketMirroring) GetCollectorIlb() *PacketMirroringForwardingRuleInfo { @@ -148577,7 +154712,7 @@ type PacketMirroringAggregatedList struct { func (x *PacketMirroringAggregatedList) Reset() { *x = PacketMirroringAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1165] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1220] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148589,7 +154724,7 @@ func (x *PacketMirroringAggregatedList) String() string { func (*PacketMirroringAggregatedList) ProtoMessage() {} func (x *PacketMirroringAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1165] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1220] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148602,7 +154737,7 @@ func (x *PacketMirroringAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use PacketMirroringAggregatedList.ProtoReflect.Descriptor instead. func (*PacketMirroringAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1165} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1220} } func (x *PacketMirroringAggregatedList) GetId() string { @@ -148679,7 +154814,7 @@ type PacketMirroringFilter struct { func (x *PacketMirroringFilter) Reset() { *x = PacketMirroringFilter{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1166] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1221] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148691,7 +154826,7 @@ func (x *PacketMirroringFilter) String() string { func (*PacketMirroringFilter) ProtoMessage() {} func (x *PacketMirroringFilter) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1166] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1221] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148704,7 +154839,7 @@ func (x *PacketMirroringFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use PacketMirroringFilter.ProtoReflect.Descriptor instead. func (*PacketMirroringFilter) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1166} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1221} } func (x *PacketMirroringFilter) GetIPProtocols() []string { @@ -148742,7 +154877,7 @@ type PacketMirroringForwardingRuleInfo struct { func (x *PacketMirroringForwardingRuleInfo) Reset() { *x = PacketMirroringForwardingRuleInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1167] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1222] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148754,7 +154889,7 @@ func (x *PacketMirroringForwardingRuleInfo) String() string { func (*PacketMirroringForwardingRuleInfo) ProtoMessage() {} func (x *PacketMirroringForwardingRuleInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1167] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1222] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148767,7 +154902,7 @@ func (x *PacketMirroringForwardingRuleInfo) ProtoReflect() protoreflect.Message // Deprecated: Use PacketMirroringForwardingRuleInfo.ProtoReflect.Descriptor instead. func (*PacketMirroringForwardingRuleInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1167} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1222} } func (x *PacketMirroringForwardingRuleInfo) GetCanonicalUrl() string { @@ -148810,7 +154945,7 @@ type PacketMirroringList struct { func (x *PacketMirroringList) Reset() { *x = PacketMirroringList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1168] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1223] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148822,7 +154957,7 @@ func (x *PacketMirroringList) String() string { func (*PacketMirroringList) ProtoMessage() {} func (x *PacketMirroringList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1168] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1223] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148835,7 +154970,7 @@ func (x *PacketMirroringList) ProtoReflect() protoreflect.Message { // Deprecated: Use PacketMirroringList.ProtoReflect.Descriptor instead. func (*PacketMirroringList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1168} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1223} } func (x *PacketMirroringList) GetId() string { @@ -148905,7 +155040,7 @@ type PacketMirroringMirroredResourceInfo struct { func (x *PacketMirroringMirroredResourceInfo) Reset() { *x = PacketMirroringMirroredResourceInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1169] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1224] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148917,7 +155052,7 @@ func (x *PacketMirroringMirroredResourceInfo) String() string { func (*PacketMirroringMirroredResourceInfo) ProtoMessage() {} func (x *PacketMirroringMirroredResourceInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1169] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1224] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148930,7 +155065,7 @@ func (x *PacketMirroringMirroredResourceInfo) ProtoReflect() protoreflect.Messag // Deprecated: Use PacketMirroringMirroredResourceInfo.ProtoReflect.Descriptor instead. func (*PacketMirroringMirroredResourceInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1169} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1224} } func (x *PacketMirroringMirroredResourceInfo) GetInstances() []*PacketMirroringMirroredResourceInfoInstanceInfo { @@ -148967,7 +155102,7 @@ type PacketMirroringMirroredResourceInfoInstanceInfo struct { func (x *PacketMirroringMirroredResourceInfoInstanceInfo) Reset() { *x = PacketMirroringMirroredResourceInfoInstanceInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1170] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1225] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148979,7 +155114,7 @@ func (x *PacketMirroringMirroredResourceInfoInstanceInfo) String() string { func (*PacketMirroringMirroredResourceInfoInstanceInfo) ProtoMessage() {} func (x *PacketMirroringMirroredResourceInfoInstanceInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1170] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1225] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148992,7 +155127,7 @@ func (x *PacketMirroringMirroredResourceInfoInstanceInfo) ProtoReflect() protore // Deprecated: Use PacketMirroringMirroredResourceInfoInstanceInfo.ProtoReflect.Descriptor instead. func (*PacketMirroringMirroredResourceInfoInstanceInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1170} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1225} } func (x *PacketMirroringMirroredResourceInfoInstanceInfo) GetCanonicalUrl() string { @@ -149023,7 +155158,7 @@ type PacketMirroringMirroredResourceInfoSubnetInfo struct { func (x *PacketMirroringMirroredResourceInfoSubnetInfo) Reset() { *x = PacketMirroringMirroredResourceInfoSubnetInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1171] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1226] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149035,7 +155170,7 @@ func (x *PacketMirroringMirroredResourceInfoSubnetInfo) String() string { func (*PacketMirroringMirroredResourceInfoSubnetInfo) ProtoMessage() {} func (x *PacketMirroringMirroredResourceInfoSubnetInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1171] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1226] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149048,7 +155183,7 @@ func (x *PacketMirroringMirroredResourceInfoSubnetInfo) ProtoReflect() protorefl // Deprecated: Use PacketMirroringMirroredResourceInfoSubnetInfo.ProtoReflect.Descriptor instead. func (*PacketMirroringMirroredResourceInfoSubnetInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1171} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1226} } func (x *PacketMirroringMirroredResourceInfoSubnetInfo) GetCanonicalUrl() string { @@ -149077,7 +155212,7 @@ type PacketMirroringNetworkInfo struct { func (x *PacketMirroringNetworkInfo) Reset() { *x = PacketMirroringNetworkInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1172] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1227] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149089,7 +155224,7 @@ func (x *PacketMirroringNetworkInfo) String() string { func (*PacketMirroringNetworkInfo) ProtoMessage() {} func (x *PacketMirroringNetworkInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1172] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1227] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149102,7 +155237,7 @@ func (x *PacketMirroringNetworkInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use PacketMirroringNetworkInfo.ProtoReflect.Descriptor instead. func (*PacketMirroringNetworkInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1172} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1227} } func (x *PacketMirroringNetworkInfo) GetCanonicalUrl() string { @@ -149132,7 +155267,7 @@ type PacketMirroringsScopedList struct { func (x *PacketMirroringsScopedList) Reset() { *x = PacketMirroringsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1173] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1228] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149144,7 +155279,7 @@ func (x *PacketMirroringsScopedList) String() string { func (*PacketMirroringsScopedList) ProtoMessage() {} func (x *PacketMirroringsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1173] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1228] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149157,7 +155292,7 @@ func (x *PacketMirroringsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use PacketMirroringsScopedList.ProtoReflect.Descriptor instead. func (*PacketMirroringsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1173} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1228} } func (x *PacketMirroringsScopedList) GetPacketMirrorings() []*PacketMirroring { @@ -149205,7 +155340,7 @@ type PatchAutoscalerRequest struct { func (x *PatchAutoscalerRequest) Reset() { *x = PatchAutoscalerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1174] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1229] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149217,7 +155352,7 @@ func (x *PatchAutoscalerRequest) String() string { func (*PatchAutoscalerRequest) ProtoMessage() {} func (x *PatchAutoscalerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1174] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1229] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149230,7 +155365,7 @@ func (x *PatchAutoscalerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchAutoscalerRequest.ProtoReflect.Descriptor instead. func (*PatchAutoscalerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1174} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1229} } func (x *PatchAutoscalerRequest) GetAutoscaler() string { @@ -149297,7 +155432,7 @@ type PatchBackendBucketRequest struct { func (x *PatchBackendBucketRequest) Reset() { *x = PatchBackendBucketRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1175] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1230] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149309,7 +155444,7 @@ func (x *PatchBackendBucketRequest) String() string { func (*PatchBackendBucketRequest) ProtoMessage() {} func (x *PatchBackendBucketRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1175] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1230] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149322,7 +155457,7 @@ func (x *PatchBackendBucketRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchBackendBucketRequest.ProtoReflect.Descriptor instead. func (*PatchBackendBucketRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1175} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1230} } func (x *PatchBackendBucketRequest) GetBackendBucket() string { @@ -149382,7 +155517,7 @@ type PatchBackendServiceRequest struct { func (x *PatchBackendServiceRequest) Reset() { *x = PatchBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1176] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1231] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149394,7 +155529,7 @@ func (x *PatchBackendServiceRequest) String() string { func (*PatchBackendServiceRequest) ProtoMessage() {} func (x *PatchBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1176] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1231] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149407,7 +155542,7 @@ func (x *PatchBackendServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchBackendServiceRequest.ProtoReflect.Descriptor instead. func (*PatchBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1176} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1231} } func (x *PatchBackendServiceRequest) GetBackendService() string { @@ -149472,7 +155607,7 @@ type PatchCrossSiteNetworkRequest struct { func (x *PatchCrossSiteNetworkRequest) Reset() { *x = PatchCrossSiteNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1177] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1232] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149484,7 +155619,7 @@ func (x *PatchCrossSiteNetworkRequest) String() string { func (*PatchCrossSiteNetworkRequest) ProtoMessage() {} func (x *PatchCrossSiteNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1177] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1232] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149497,7 +155632,7 @@ func (x *PatchCrossSiteNetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchCrossSiteNetworkRequest.ProtoReflect.Descriptor instead. func (*PatchCrossSiteNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1177} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1232} } func (x *PatchCrossSiteNetworkRequest) GetCrossSiteNetwork() string { @@ -149569,7 +155704,7 @@ type PatchFirewallPolicyRequest struct { func (x *PatchFirewallPolicyRequest) Reset() { *x = PatchFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1178] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1233] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149581,7 +155716,7 @@ func (x *PatchFirewallPolicyRequest) String() string { func (*PatchFirewallPolicyRequest) ProtoMessage() {} func (x *PatchFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1178] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1233] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149594,7 +155729,7 @@ func (x *PatchFirewallPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1178} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1233} } func (x *PatchFirewallPolicyRequest) GetFirewallPolicy() string { @@ -149647,7 +155782,7 @@ type PatchFirewallRequest struct { func (x *PatchFirewallRequest) Reset() { *x = PatchFirewallRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1179] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1234] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149659,7 +155794,7 @@ func (x *PatchFirewallRequest) String() string { func (*PatchFirewallRequest) ProtoMessage() {} func (x *PatchFirewallRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1179] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1234] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149672,7 +155807,7 @@ func (x *PatchFirewallRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchFirewallRequest.ProtoReflect.Descriptor instead. func (*PatchFirewallRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1179} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1234} } func (x *PatchFirewallRequest) GetFirewall() string { @@ -149734,7 +155869,7 @@ type PatchForwardingRuleRequest struct { func (x *PatchForwardingRuleRequest) Reset() { *x = PatchForwardingRuleRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1180] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1235] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149746,7 +155881,7 @@ func (x *PatchForwardingRuleRequest) String() string { func (*PatchForwardingRuleRequest) ProtoMessage() {} func (x *PatchForwardingRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1180] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1235] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149759,7 +155894,7 @@ func (x *PatchForwardingRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchForwardingRuleRequest.ProtoReflect.Descriptor instead. func (*PatchForwardingRuleRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1180} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1235} } func (x *PatchForwardingRuleRequest) GetForwardingRule() string { @@ -149826,7 +155961,7 @@ type PatchGlobalForwardingRuleRequest struct { func (x *PatchGlobalForwardingRuleRequest) Reset() { *x = PatchGlobalForwardingRuleRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1181] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1236] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149838,7 +155973,7 @@ func (x *PatchGlobalForwardingRuleRequest) String() string { func (*PatchGlobalForwardingRuleRequest) ProtoMessage() {} func (x *PatchGlobalForwardingRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1181] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1236] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149851,7 +155986,7 @@ func (x *PatchGlobalForwardingRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchGlobalForwardingRuleRequest.ProtoReflect.Descriptor instead. func (*PatchGlobalForwardingRuleRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1181} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1236} } func (x *PatchGlobalForwardingRuleRequest) GetForwardingRule() string { @@ -149911,7 +156046,7 @@ type PatchGlobalPublicDelegatedPrefixeRequest struct { func (x *PatchGlobalPublicDelegatedPrefixeRequest) Reset() { *x = PatchGlobalPublicDelegatedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1182] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1237] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149923,7 +156058,7 @@ func (x *PatchGlobalPublicDelegatedPrefixeRequest) String() string { func (*PatchGlobalPublicDelegatedPrefixeRequest) ProtoMessage() {} func (x *PatchGlobalPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1182] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1237] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149936,7 +156071,7 @@ func (x *PatchGlobalPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.M // Deprecated: Use PatchGlobalPublicDelegatedPrefixeRequest.ProtoReflect.Descriptor instead. func (*PatchGlobalPublicDelegatedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1182} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1237} } func (x *PatchGlobalPublicDelegatedPrefixeRequest) GetProject() string { @@ -149996,7 +156131,7 @@ type PatchHealthCheckRequest struct { func (x *PatchHealthCheckRequest) Reset() { *x = PatchHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1183] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1238] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150008,7 +156143,7 @@ func (x *PatchHealthCheckRequest) String() string { func (*PatchHealthCheckRequest) ProtoMessage() {} func (x *PatchHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1183] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1238] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150021,7 +156156,7 @@ func (x *PatchHealthCheckRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchHealthCheckRequest.ProtoReflect.Descriptor instead. func (*PatchHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1183} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1238} } func (x *PatchHealthCheckRequest) GetHealthCheck() string { @@ -150081,7 +156216,7 @@ type PatchImageRequest struct { func (x *PatchImageRequest) Reset() { *x = PatchImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1184] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1239] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150093,7 +156228,7 @@ func (x *PatchImageRequest) String() string { func (*PatchImageRequest) ProtoMessage() {} func (x *PatchImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1184] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1239] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150106,7 +156241,7 @@ func (x *PatchImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchImageRequest.ProtoReflect.Descriptor instead. func (*PatchImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1184} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1239} } func (x *PatchImageRequest) GetImage() string { @@ -150169,7 +156304,7 @@ type PatchInstanceGroupManagerRequest struct { func (x *PatchInstanceGroupManagerRequest) Reset() { *x = PatchInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1185] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1240] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150181,7 +156316,7 @@ func (x *PatchInstanceGroupManagerRequest) String() string { func (*PatchInstanceGroupManagerRequest) ProtoMessage() {} func (x *PatchInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1185] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1240] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150194,7 +156329,7 @@ func (x *PatchInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*PatchInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1185} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1240} } func (x *PatchInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -150263,7 +156398,7 @@ type PatchInstanceSettingRequest struct { func (x *PatchInstanceSettingRequest) Reset() { *x = PatchInstanceSettingRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1186] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1241] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150275,7 +156410,7 @@ func (x *PatchInstanceSettingRequest) String() string { func (*PatchInstanceSettingRequest) ProtoMessage() {} func (x *PatchInstanceSettingRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1186] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1241] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150288,7 +156423,7 @@ func (x *PatchInstanceSettingRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchInstanceSettingRequest.ProtoReflect.Descriptor instead. func (*PatchInstanceSettingRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1186} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1241} } func (x *PatchInstanceSettingRequest) GetInstanceSettingsResource() *InstanceSettings { @@ -150358,7 +156493,7 @@ type PatchInterconnectAttachmentGroupRequest struct { func (x *PatchInterconnectAttachmentGroupRequest) Reset() { *x = PatchInterconnectAttachmentGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1187] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1242] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150370,7 +156505,7 @@ func (x *PatchInterconnectAttachmentGroupRequest) String() string { func (*PatchInterconnectAttachmentGroupRequest) ProtoMessage() {} func (x *PatchInterconnectAttachmentGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1187] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1242] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150383,7 +156518,7 @@ func (x *PatchInterconnectAttachmentGroupRequest) ProtoReflect() protoreflect.Me // Deprecated: Use PatchInterconnectAttachmentGroupRequest.ProtoReflect.Descriptor instead. func (*PatchInterconnectAttachmentGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1187} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1242} } func (x *PatchInterconnectAttachmentGroupRequest) GetInterconnectAttachmentGroup() string { @@ -150452,7 +156587,7 @@ type PatchInterconnectAttachmentRequest struct { func (x *PatchInterconnectAttachmentRequest) Reset() { *x = PatchInterconnectAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1188] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1243] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150464,7 +156599,7 @@ func (x *PatchInterconnectAttachmentRequest) String() string { func (*PatchInterconnectAttachmentRequest) ProtoMessage() {} func (x *PatchInterconnectAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1188] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1243] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150477,7 +156612,7 @@ func (x *PatchInterconnectAttachmentRequest) ProtoReflect() protoreflect.Message // Deprecated: Use PatchInterconnectAttachmentRequest.ProtoReflect.Descriptor instead. func (*PatchInterconnectAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1188} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1243} } func (x *PatchInterconnectAttachmentRequest) GetInterconnectAttachment() string { @@ -150547,7 +156682,7 @@ type PatchInterconnectGroupRequest struct { func (x *PatchInterconnectGroupRequest) Reset() { *x = PatchInterconnectGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1189] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1244] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150559,7 +156694,7 @@ func (x *PatchInterconnectGroupRequest) String() string { func (*PatchInterconnectGroupRequest) ProtoMessage() {} func (x *PatchInterconnectGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1189] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1244] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150572,7 +156707,7 @@ func (x *PatchInterconnectGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchInterconnectGroupRequest.ProtoReflect.Descriptor instead. func (*PatchInterconnectGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1189} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1244} } func (x *PatchInterconnectGroupRequest) GetInterconnectGroup() string { @@ -150639,7 +156774,7 @@ type PatchInterconnectRequest struct { func (x *PatchInterconnectRequest) Reset() { *x = PatchInterconnectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1190] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1245] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150651,7 +156786,7 @@ func (x *PatchInterconnectRequest) String() string { func (*PatchInterconnectRequest) ProtoMessage() {} func (x *PatchInterconnectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1190] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1245] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150664,7 +156799,7 @@ func (x *PatchInterconnectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchInterconnectRequest.ProtoReflect.Descriptor instead. func (*PatchInterconnectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1190} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1245} } func (x *PatchInterconnectRequest) GetInterconnect() string { @@ -150727,7 +156862,7 @@ type PatchNetworkAttachmentRequest struct { func (x *PatchNetworkAttachmentRequest) Reset() { *x = PatchNetworkAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1191] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1246] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150739,7 +156874,7 @@ func (x *PatchNetworkAttachmentRequest) String() string { func (*PatchNetworkAttachmentRequest) ProtoMessage() {} func (x *PatchNetworkAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1191] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1246] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150752,7 +156887,7 @@ func (x *PatchNetworkAttachmentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchNetworkAttachmentRequest.ProtoReflect.Descriptor instead. func (*PatchNetworkAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1191} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1246} } func (x *PatchNetworkAttachmentRequest) GetNetworkAttachment() string { @@ -150824,7 +156959,7 @@ type PatchNetworkEdgeSecurityServiceRequest struct { func (x *PatchNetworkEdgeSecurityServiceRequest) Reset() { *x = PatchNetworkEdgeSecurityServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1192] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1247] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150836,7 +156971,7 @@ func (x *PatchNetworkEdgeSecurityServiceRequest) String() string { func (*PatchNetworkEdgeSecurityServiceRequest) ProtoMessage() {} func (x *PatchNetworkEdgeSecurityServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1192] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1247] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150849,7 +156984,7 @@ func (x *PatchNetworkEdgeSecurityServiceRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use PatchNetworkEdgeSecurityServiceRequest.ProtoReflect.Descriptor instead. func (*PatchNetworkEdgeSecurityServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1192} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1247} } func (x *PatchNetworkEdgeSecurityServiceRequest) GetNetworkEdgeSecurityService() string { @@ -150930,7 +157065,7 @@ type PatchNetworkFirewallPolicyRequest struct { func (x *PatchNetworkFirewallPolicyRequest) Reset() { *x = PatchNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1193] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1248] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150942,7 +157077,7 @@ func (x *PatchNetworkFirewallPolicyRequest) String() string { func (*PatchNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *PatchNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1193] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1248] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150955,7 +157090,7 @@ func (x *PatchNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use PatchNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1193} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1248} } func (x *PatchNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -151015,7 +157150,7 @@ type PatchNetworkRequest struct { func (x *PatchNetworkRequest) Reset() { *x = PatchNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1194] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1249] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151027,7 +157162,7 @@ func (x *PatchNetworkRequest) String() string { func (*PatchNetworkRequest) ProtoMessage() {} func (x *PatchNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1194] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1249] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151040,7 +157175,7 @@ func (x *PatchNetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchNetworkRequest.ProtoReflect.Descriptor instead. func (*PatchNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1194} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1249} } func (x *PatchNetworkRequest) GetNetwork() string { @@ -151102,7 +157237,7 @@ type PatchNodeGroupRequest struct { func (x *PatchNodeGroupRequest) Reset() { *x = PatchNodeGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1195] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1250] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151114,7 +157249,7 @@ func (x *PatchNodeGroupRequest) String() string { func (*PatchNodeGroupRequest) ProtoMessage() {} func (x *PatchNodeGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1195] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1250] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151127,7 +157262,7 @@ func (x *PatchNodeGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchNodeGroupRequest.ProtoReflect.Descriptor instead. func (*PatchNodeGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1195} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1250} } func (x *PatchNodeGroupRequest) GetNodeGroup() string { @@ -151192,7 +157327,7 @@ type PatchOrganizationSecurityPolicyRequest struct { func (x *PatchOrganizationSecurityPolicyRequest) Reset() { *x = PatchOrganizationSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1196] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1251] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151204,7 +157339,7 @@ func (x *PatchOrganizationSecurityPolicyRequest) String() string { func (*PatchOrganizationSecurityPolicyRequest) ProtoMessage() {} func (x *PatchOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1196] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1251] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151217,7 +157352,7 @@ func (x *PatchOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use PatchOrganizationSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchOrganizationSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1196} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1251} } func (x *PatchOrganizationSecurityPolicyRequest) GetRequestId() string { @@ -151272,7 +157407,7 @@ type PatchPacketMirroringRequest struct { func (x *PatchPacketMirroringRequest) Reset() { *x = PatchPacketMirroringRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1197] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1252] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151284,7 +157419,7 @@ func (x *PatchPacketMirroringRequest) String() string { func (*PatchPacketMirroringRequest) ProtoMessage() {} func (x *PatchPacketMirroringRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1197] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1252] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151297,7 +157432,7 @@ func (x *PatchPacketMirroringRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchPacketMirroringRequest.ProtoReflect.Descriptor instead. func (*PatchPacketMirroringRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1197} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1252} } func (x *PatchPacketMirroringRequest) GetPacketMirroring() string { @@ -151366,7 +157501,7 @@ type PatchPacketMirroringRuleNetworkFirewallPolicyRequest struct { func (x *PatchPacketMirroringRuleNetworkFirewallPolicyRequest) Reset() { *x = PatchPacketMirroringRuleNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1198] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1253] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151378,7 +157513,7 @@ func (x *PatchPacketMirroringRuleNetworkFirewallPolicyRequest) String() string { func (*PatchPacketMirroringRuleNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *PatchPacketMirroringRuleNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1198] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1253] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151391,7 +157526,7 @@ func (x *PatchPacketMirroringRuleNetworkFirewallPolicyRequest) ProtoReflect() pr // Deprecated: Use PatchPacketMirroringRuleNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchPacketMirroringRuleNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1198} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1253} } func (x *PatchPacketMirroringRuleNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -151463,7 +157598,7 @@ type PatchPerInstanceConfigsInstanceGroupManagerRequest struct { func (x *PatchPerInstanceConfigsInstanceGroupManagerRequest) Reset() { *x = PatchPerInstanceConfigsInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1199] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1254] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151475,7 +157610,7 @@ func (x *PatchPerInstanceConfigsInstanceGroupManagerRequest) String() string { func (*PatchPerInstanceConfigsInstanceGroupManagerRequest) ProtoMessage() {} func (x *PatchPerInstanceConfigsInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1199] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1254] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151488,7 +157623,7 @@ func (x *PatchPerInstanceConfigsInstanceGroupManagerRequest) ProtoReflect() prot // Deprecated: Use PatchPerInstanceConfigsInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*PatchPerInstanceConfigsInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1199} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1254} } func (x *PatchPerInstanceConfigsInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -151558,7 +157693,7 @@ type PatchPerInstanceConfigsRegionInstanceGroupManagerRequest struct { func (x *PatchPerInstanceConfigsRegionInstanceGroupManagerRequest) Reset() { *x = PatchPerInstanceConfigsRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1200] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1255] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151570,7 +157705,7 @@ func (x *PatchPerInstanceConfigsRegionInstanceGroupManagerRequest) String() stri func (*PatchPerInstanceConfigsRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *PatchPerInstanceConfigsRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1200] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1255] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151583,7 +157718,7 @@ func (x *PatchPerInstanceConfigsRegionInstanceGroupManagerRequest) ProtoReflect( // Deprecated: Use PatchPerInstanceConfigsRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*PatchPerInstanceConfigsRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1200} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1255} } func (x *PatchPerInstanceConfigsRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -151650,7 +157785,7 @@ type PatchPublicAdvertisedPrefixeRequest struct { func (x *PatchPublicAdvertisedPrefixeRequest) Reset() { *x = PatchPublicAdvertisedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1201] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1256] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151662,7 +157797,7 @@ func (x *PatchPublicAdvertisedPrefixeRequest) String() string { func (*PatchPublicAdvertisedPrefixeRequest) ProtoMessage() {} func (x *PatchPublicAdvertisedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1201] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1256] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151675,7 +157810,7 @@ func (x *PatchPublicAdvertisedPrefixeRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use PatchPublicAdvertisedPrefixeRequest.ProtoReflect.Descriptor instead. func (*PatchPublicAdvertisedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1201} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1256} } func (x *PatchPublicAdvertisedPrefixeRequest) GetProject() string { @@ -151737,7 +157872,7 @@ type PatchPublicDelegatedPrefixeRequest struct { func (x *PatchPublicDelegatedPrefixeRequest) Reset() { *x = PatchPublicDelegatedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1202] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1257] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151749,7 +157884,7 @@ func (x *PatchPublicDelegatedPrefixeRequest) String() string { func (*PatchPublicDelegatedPrefixeRequest) ProtoMessage() {} func (x *PatchPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1202] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1257] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151762,7 +157897,7 @@ func (x *PatchPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Message // Deprecated: Use PatchPublicDelegatedPrefixeRequest.ProtoReflect.Descriptor instead. func (*PatchPublicDelegatedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1202} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1257} } func (x *PatchPublicDelegatedPrefixeRequest) GetProject() string { @@ -151831,7 +157966,7 @@ type PatchRegionAutoscalerRequest struct { func (x *PatchRegionAutoscalerRequest) Reset() { *x = PatchRegionAutoscalerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1203] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1258] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151843,7 +157978,7 @@ func (x *PatchRegionAutoscalerRequest) String() string { func (*PatchRegionAutoscalerRequest) ProtoMessage() {} func (x *PatchRegionAutoscalerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1203] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1258] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151856,7 +157991,7 @@ func (x *PatchRegionAutoscalerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRegionAutoscalerRequest.ProtoReflect.Descriptor instead. func (*PatchRegionAutoscalerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1203} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1258} } func (x *PatchRegionAutoscalerRequest) GetAutoscaler() string { @@ -151894,6 +158029,101 @@ func (x *PatchRegionAutoscalerRequest) GetRequestId() string { return "" } +// A request message for RegionBackendBuckets.Patch. See the method description for details. +type PatchRegionBackendBucketRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the BackendBucket resource to patch. + BackendBucket string `protobuf:"bytes,91714037,opt,name=backend_bucket,json=backendBucket,proto3" json:"backend_bucket,omitempty"` + // The body resource for this request + BackendBucketResource *BackendBucket `protobuf:"bytes,380757784,opt,name=backend_bucket_resource,json=backendBucketResource,proto3" json:"backend_bucket_resource,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region scoping this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + // end_interface: MixerMutationRequestBuilder + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *PatchRegionBackendBucketRequest) Reset() { + *x = PatchRegionBackendBucketRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1259] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *PatchRegionBackendBucketRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*PatchRegionBackendBucketRequest) ProtoMessage() {} + +func (x *PatchRegionBackendBucketRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1259] + 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 PatchRegionBackendBucketRequest.ProtoReflect.Descriptor instead. +func (*PatchRegionBackendBucketRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1259} +} + +func (x *PatchRegionBackendBucketRequest) GetBackendBucket() string { + if x != nil { + return x.BackendBucket + } + return "" +} + +func (x *PatchRegionBackendBucketRequest) GetBackendBucketResource() *BackendBucket { + if x != nil { + return x.BackendBucketResource + } + return nil +} + +func (x *PatchRegionBackendBucketRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *PatchRegionBackendBucketRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *PatchRegionBackendBucketRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + // A request message for RegionBackendServices.Patch. See the method description for details. type PatchRegionBackendServiceRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -151925,7 +158155,7 @@ type PatchRegionBackendServiceRequest struct { func (x *PatchRegionBackendServiceRequest) Reset() { *x = PatchRegionBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1204] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1260] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151937,7 +158167,7 @@ func (x *PatchRegionBackendServiceRequest) String() string { func (*PatchRegionBackendServiceRequest) ProtoMessage() {} func (x *PatchRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1204] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1260] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151950,7 +158180,7 @@ func (x *PatchRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRegionBackendServiceRequest.ProtoReflect.Descriptor instead. func (*PatchRegionBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1204} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1260} } func (x *PatchRegionBackendServiceRequest) GetBackendService() string { @@ -152020,7 +158250,7 @@ type PatchRegionCompositeHealthCheckRequest struct { func (x *PatchRegionCompositeHealthCheckRequest) Reset() { *x = PatchRegionCompositeHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1205] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1261] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152032,7 +158262,7 @@ func (x *PatchRegionCompositeHealthCheckRequest) String() string { func (*PatchRegionCompositeHealthCheckRequest) ProtoMessage() {} func (x *PatchRegionCompositeHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1205] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1261] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152045,7 +158275,7 @@ func (x *PatchRegionCompositeHealthCheckRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use PatchRegionCompositeHealthCheckRequest.ProtoReflect.Descriptor instead. func (*PatchRegionCompositeHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1205} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1261} } func (x *PatchRegionCompositeHealthCheckRequest) GetCompositeHealthCheck() string { @@ -152115,7 +158345,7 @@ type PatchRegionHealthAggregationPolicyRequest struct { func (x *PatchRegionHealthAggregationPolicyRequest) Reset() { *x = PatchRegionHealthAggregationPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1206] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1262] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152127,7 +158357,7 @@ func (x *PatchRegionHealthAggregationPolicyRequest) String() string { func (*PatchRegionHealthAggregationPolicyRequest) ProtoMessage() {} func (x *PatchRegionHealthAggregationPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1206] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1262] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152140,7 +158370,7 @@ func (x *PatchRegionHealthAggregationPolicyRequest) ProtoReflect() protoreflect. // Deprecated: Use PatchRegionHealthAggregationPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchRegionHealthAggregationPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1206} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1262} } func (x *PatchRegionHealthAggregationPolicyRequest) GetHealthAggregationPolicy() string { @@ -152209,7 +158439,7 @@ type PatchRegionHealthCheckRequest struct { func (x *PatchRegionHealthCheckRequest) Reset() { *x = PatchRegionHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1207] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1263] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152221,7 +158451,7 @@ func (x *PatchRegionHealthCheckRequest) String() string { func (*PatchRegionHealthCheckRequest) ProtoMessage() {} func (x *PatchRegionHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1207] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1263] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152234,7 +158464,7 @@ func (x *PatchRegionHealthCheckRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRegionHealthCheckRequest.ProtoReflect.Descriptor instead. func (*PatchRegionHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1207} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1263} } func (x *PatchRegionHealthCheckRequest) GetHealthCheck() string { @@ -152304,7 +158534,7 @@ type PatchRegionHealthCheckServiceRequest struct { func (x *PatchRegionHealthCheckServiceRequest) Reset() { *x = PatchRegionHealthCheckServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1208] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1264] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152316,7 +158546,7 @@ func (x *PatchRegionHealthCheckServiceRequest) String() string { func (*PatchRegionHealthCheckServiceRequest) ProtoMessage() {} func (x *PatchRegionHealthCheckServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1208] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1264] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152329,7 +158559,7 @@ func (x *PatchRegionHealthCheckServiceRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use PatchRegionHealthCheckServiceRequest.ProtoReflect.Descriptor instead. func (*PatchRegionHealthCheckServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1208} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1264} } func (x *PatchRegionHealthCheckServiceRequest) GetHealthCheckService() string { @@ -152399,7 +158629,7 @@ type PatchRegionHealthSourceRequest struct { func (x *PatchRegionHealthSourceRequest) Reset() { *x = PatchRegionHealthSourceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1209] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1265] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152411,7 +158641,7 @@ func (x *PatchRegionHealthSourceRequest) String() string { func (*PatchRegionHealthSourceRequest) ProtoMessage() {} func (x *PatchRegionHealthSourceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1209] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1265] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152424,7 +158654,7 @@ func (x *PatchRegionHealthSourceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRegionHealthSourceRequest.ProtoReflect.Descriptor instead. func (*PatchRegionHealthSourceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1209} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1265} } func (x *PatchRegionHealthSourceRequest) GetHealthSource() string { @@ -152493,7 +158723,7 @@ type PatchRegionInstanceGroupManagerRequest struct { func (x *PatchRegionInstanceGroupManagerRequest) Reset() { *x = PatchRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1210] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1266] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152505,7 +158735,7 @@ func (x *PatchRegionInstanceGroupManagerRequest) String() string { func (*PatchRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *PatchRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1210] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1266] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152518,7 +158748,7 @@ func (x *PatchRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use PatchRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*PatchRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1210} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1266} } func (x *PatchRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -152587,7 +158817,7 @@ type PatchRegionNetworkFirewallPolicyRequest struct { func (x *PatchRegionNetworkFirewallPolicyRequest) Reset() { *x = PatchRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1211] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1267] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152599,7 +158829,7 @@ func (x *PatchRegionNetworkFirewallPolicyRequest) String() string { func (*PatchRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *PatchRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1211] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1267] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152612,7 +158842,7 @@ func (x *PatchRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Me // Deprecated: Use PatchRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1211} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1267} } func (x *PatchRegionNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -152683,7 +158913,7 @@ type PatchRegionSecurityPolicyRequest struct { func (x *PatchRegionSecurityPolicyRequest) Reset() { *x = PatchRegionSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1212] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1268] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152695,7 +158925,7 @@ func (x *PatchRegionSecurityPolicyRequest) String() string { func (*PatchRegionSecurityPolicyRequest) ProtoMessage() {} func (x *PatchRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1212] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1268] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152708,7 +158938,7 @@ func (x *PatchRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRegionSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchRegionSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1212} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1268} } func (x *PatchRegionSecurityPolicyRequest) GetProject() string { @@ -152753,6 +158983,100 @@ func (x *PatchRegionSecurityPolicyRequest) GetUpdateMask() string { return "" } +// A request message for RegionSnapshotSettings.Patch. See the method description for details. +type PatchRegionSnapshotSettingRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // The body resource for this request + SnapshotSettingsResource *SnapshotSettings `protobuf:"bytes,357664495,opt,name=snapshot_settings_resource,json=snapshotSettingsResource,proto3" json:"snapshot_settings_resource,omitempty"` + // update_mask indicates fields to be updated as part of this request. + UpdateMask *string `protobuf:"bytes,500079778,opt,name=update_mask,json=updateMask,proto3,oneof" json:"update_mask,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *PatchRegionSnapshotSettingRequest) Reset() { + *x = PatchRegionSnapshotSettingRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1269] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *PatchRegionSnapshotSettingRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*PatchRegionSnapshotSettingRequest) ProtoMessage() {} + +func (x *PatchRegionSnapshotSettingRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1269] + 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 PatchRegionSnapshotSettingRequest.ProtoReflect.Descriptor instead. +func (*PatchRegionSnapshotSettingRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1269} +} + +func (x *PatchRegionSnapshotSettingRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *PatchRegionSnapshotSettingRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *PatchRegionSnapshotSettingRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *PatchRegionSnapshotSettingRequest) GetSnapshotSettingsResource() *SnapshotSettings { + if x != nil { + return x.SnapshotSettingsResource + } + return nil +} + +func (x *PatchRegionSnapshotSettingRequest) GetUpdateMask() string { + if x != nil && x.UpdateMask != nil { + return *x.UpdateMask + } + return "" +} + // A request message for RegionSslPolicies.Patch. See the method description for details. type PatchRegionSslPolicyRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -152785,7 +159109,7 @@ type PatchRegionSslPolicyRequest struct { func (x *PatchRegionSslPolicyRequest) Reset() { *x = PatchRegionSslPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1213] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1270] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152797,7 +159121,7 @@ func (x *PatchRegionSslPolicyRequest) String() string { func (*PatchRegionSslPolicyRequest) ProtoMessage() {} func (x *PatchRegionSslPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1213] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1270] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152810,7 +159134,7 @@ func (x *PatchRegionSslPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRegionSslPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchRegionSslPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1213} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1270} } func (x *PatchRegionSslPolicyRequest) GetProject() string { @@ -152879,7 +159203,7 @@ type PatchRegionTargetHttpsProxyRequest struct { func (x *PatchRegionTargetHttpsProxyRequest) Reset() { *x = PatchRegionTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1214] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1271] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152891,7 +159215,7 @@ func (x *PatchRegionTargetHttpsProxyRequest) String() string { func (*PatchRegionTargetHttpsProxyRequest) ProtoMessage() {} func (x *PatchRegionTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1214] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1271] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152904,7 +159228,7 @@ func (x *PatchRegionTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use PatchRegionTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*PatchRegionTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1214} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1271} } func (x *PatchRegionTargetHttpsProxyRequest) GetProject() string { @@ -152962,7 +159286,7 @@ type PatchRegionUrlMapRequest struct { func (x *PatchRegionUrlMapRequest) Reset() { *x = PatchRegionUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1215] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1272] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152974,7 +159298,7 @@ func (x *PatchRegionUrlMapRequest) String() string { func (*PatchRegionUrlMapRequest) ProtoMessage() {} func (x *PatchRegionUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1215] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1272] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152987,7 +159311,7 @@ func (x *PatchRegionUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRegionUrlMapRequest.ProtoReflect.Descriptor instead. func (*PatchRegionUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1215} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1272} } func (x *PatchRegionUrlMapRequest) GetProject() string { @@ -153058,7 +159382,7 @@ type PatchResourcePolicyRequest struct { func (x *PatchResourcePolicyRequest) Reset() { *x = PatchResourcePolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1216] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1273] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153070,7 +159394,7 @@ func (x *PatchResourcePolicyRequest) String() string { func (*PatchResourcePolicyRequest) ProtoMessage() {} func (x *PatchResourcePolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1216] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1273] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -153083,7 +159407,7 @@ func (x *PatchResourcePolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchResourcePolicyRequest.ProtoReflect.Descriptor instead. func (*PatchResourcePolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1216} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1273} } func (x *PatchResourcePolicyRequest) GetProject() string { @@ -153159,7 +159483,7 @@ type PatchRoutePolicyRouterRequest struct { func (x *PatchRoutePolicyRouterRequest) Reset() { *x = PatchRoutePolicyRouterRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1217] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1274] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153171,7 +159495,7 @@ func (x *PatchRoutePolicyRouterRequest) String() string { func (*PatchRoutePolicyRouterRequest) ProtoMessage() {} func (x *PatchRoutePolicyRouterRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1217] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1274] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -153184,7 +159508,7 @@ func (x *PatchRoutePolicyRouterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRoutePolicyRouterRequest.ProtoReflect.Descriptor instead. func (*PatchRoutePolicyRouterRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1217} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1274} } func (x *PatchRoutePolicyRouterRequest) GetProject() string { @@ -153253,7 +159577,7 @@ type PatchRouterRequest struct { func (x *PatchRouterRequest) Reset() { *x = PatchRouterRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1218] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1275] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153265,7 +159589,7 @@ func (x *PatchRouterRequest) String() string { func (*PatchRouterRequest) ProtoMessage() {} func (x *PatchRouterRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1218] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1275] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -153278,7 +159602,7 @@ func (x *PatchRouterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRouterRequest.ProtoReflect.Descriptor instead. func (*PatchRouterRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1218} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1275} } func (x *PatchRouterRequest) GetProject() string { @@ -153345,7 +159669,7 @@ type PatchRuleFirewallPolicyRequest struct { func (x *PatchRuleFirewallPolicyRequest) Reset() { *x = PatchRuleFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1219] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1276] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153357,7 +159681,7 @@ func (x *PatchRuleFirewallPolicyRequest) String() string { func (*PatchRuleFirewallPolicyRequest) ProtoMessage() {} func (x *PatchRuleFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1219] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1276] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -153370,7 +159694,7 @@ func (x *PatchRuleFirewallPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRuleFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchRuleFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1219} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1276} } func (x *PatchRuleFirewallPolicyRequest) GetFirewallPolicy() string { @@ -153432,7 +159756,7 @@ type PatchRuleNetworkFirewallPolicyRequest struct { func (x *PatchRuleNetworkFirewallPolicyRequest) Reset() { *x = PatchRuleNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1220] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1277] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153444,7 +159768,7 @@ func (x *PatchRuleNetworkFirewallPolicyRequest) String() string { func (*PatchRuleNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *PatchRuleNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1220] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1277] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -153457,7 +159781,7 @@ func (x *PatchRuleNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use PatchRuleNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchRuleNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1220} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1277} } func (x *PatchRuleNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -153524,7 +159848,7 @@ type PatchRuleOrganizationSecurityPolicyRequest struct { func (x *PatchRuleOrganizationSecurityPolicyRequest) Reset() { *x = PatchRuleOrganizationSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1221] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1278] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153536,7 +159860,7 @@ func (x *PatchRuleOrganizationSecurityPolicyRequest) String() string { func (*PatchRuleOrganizationSecurityPolicyRequest) ProtoMessage() {} func (x *PatchRuleOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1221] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1278] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -153549,7 +159873,7 @@ func (x *PatchRuleOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect // Deprecated: Use PatchRuleOrganizationSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchRuleOrganizationSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1221} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1278} } func (x *PatchRuleOrganizationSecurityPolicyRequest) GetPriority() int32 { @@ -153613,7 +159937,7 @@ type PatchRuleRegionNetworkFirewallPolicyRequest struct { func (x *PatchRuleRegionNetworkFirewallPolicyRequest) Reset() { *x = PatchRuleRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1222] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1279] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153625,7 +159949,7 @@ func (x *PatchRuleRegionNetworkFirewallPolicyRequest) String() string { func (*PatchRuleRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *PatchRuleRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1222] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1279] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -153638,7 +159962,7 @@ func (x *PatchRuleRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflec // Deprecated: Use PatchRuleRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchRuleRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1222} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1279} } func (x *PatchRuleRegionNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -153706,7 +160030,7 @@ type PatchRuleRegionSecurityPolicyRequest struct { func (x *PatchRuleRegionSecurityPolicyRequest) Reset() { *x = PatchRuleRegionSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1223] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1280] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153718,7 +160042,7 @@ func (x *PatchRuleRegionSecurityPolicyRequest) String() string { func (*PatchRuleRegionSecurityPolicyRequest) ProtoMessage() {} func (x *PatchRuleRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1223] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1280] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -153731,7 +160055,7 @@ func (x *PatchRuleRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use PatchRuleRegionSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchRuleRegionSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1223} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1280} } func (x *PatchRuleRegionSecurityPolicyRequest) GetPriority() int32 { @@ -153804,7 +160128,7 @@ type PatchRuleSecurityPolicyRequest struct { func (x *PatchRuleSecurityPolicyRequest) Reset() { *x = PatchRuleSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1224] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1281] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153816,7 +160140,7 @@ func (x *PatchRuleSecurityPolicyRequest) String() string { func (*PatchRuleSecurityPolicyRequest) ProtoMessage() {} func (x *PatchRuleSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1224] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1281] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -153829,7 +160153,7 @@ func (x *PatchRuleSecurityPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchRuleSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchRuleSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1224} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1281} } func (x *PatchRuleSecurityPolicyRequest) GetPriority() int32 { @@ -153905,7 +160229,7 @@ type PatchSecurityPolicyRequest struct { func (x *PatchSecurityPolicyRequest) Reset() { *x = PatchSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1225] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1282] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153917,7 +160241,7 @@ func (x *PatchSecurityPolicyRequest) String() string { func (*PatchSecurityPolicyRequest) ProtoMessage() {} func (x *PatchSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1225] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1282] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -153930,7 +160254,7 @@ func (x *PatchSecurityPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1225} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1282} } func (x *PatchSecurityPolicyRequest) GetProject() string { @@ -154000,7 +160324,7 @@ type PatchServiceAttachmentRequest struct { func (x *PatchServiceAttachmentRequest) Reset() { *x = PatchServiceAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1226] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1283] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154012,7 +160336,7 @@ func (x *PatchServiceAttachmentRequest) String() string { func (*PatchServiceAttachmentRequest) ProtoMessage() {} func (x *PatchServiceAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1226] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1283] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154025,7 +160349,7 @@ func (x *PatchServiceAttachmentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchServiceAttachmentRequest.ProtoReflect.Descriptor instead. func (*PatchServiceAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1226} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1283} } func (x *PatchServiceAttachmentRequest) GetProject() string { @@ -154092,7 +160416,7 @@ type PatchSnapshotSettingRequest struct { func (x *PatchSnapshotSettingRequest) Reset() { *x = PatchSnapshotSettingRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1227] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1284] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154104,7 +160428,7 @@ func (x *PatchSnapshotSettingRequest) String() string { func (*PatchSnapshotSettingRequest) ProtoMessage() {} func (x *PatchSnapshotSettingRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1227] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1284] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154117,7 +160441,7 @@ func (x *PatchSnapshotSettingRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchSnapshotSettingRequest.ProtoReflect.Descriptor instead. func (*PatchSnapshotSettingRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1227} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1284} } func (x *PatchSnapshotSettingRequest) GetProject() string { @@ -154178,7 +160502,7 @@ type PatchSslPolicyRequest struct { func (x *PatchSslPolicyRequest) Reset() { *x = PatchSslPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1228] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1285] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154190,7 +160514,7 @@ func (x *PatchSslPolicyRequest) String() string { func (*PatchSslPolicyRequest) ProtoMessage() {} func (x *PatchSslPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1228] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1285] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154203,7 +160527,7 @@ func (x *PatchSslPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchSslPolicyRequest.ProtoReflect.Descriptor instead. func (*PatchSslPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1228} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1285} } func (x *PatchSslPolicyRequest) GetProject() string { @@ -154275,7 +160599,7 @@ type PatchSubnetworkRequest struct { func (x *PatchSubnetworkRequest) Reset() { *x = PatchSubnetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1229] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1286] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154287,7 +160611,7 @@ func (x *PatchSubnetworkRequest) String() string { func (*PatchSubnetworkRequest) ProtoMessage() {} func (x *PatchSubnetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1229] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1286] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154300,7 +160624,7 @@ func (x *PatchSubnetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchSubnetworkRequest.ProtoReflect.Descriptor instead. func (*PatchSubnetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1229} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1286} } func (x *PatchSubnetworkRequest) GetDrainTimeoutSeconds() int32 { @@ -154374,7 +160698,7 @@ type PatchTargetGrpcProxyRequest struct { func (x *PatchTargetGrpcProxyRequest) Reset() { *x = PatchTargetGrpcProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1230] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1287] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154386,7 +160710,7 @@ func (x *PatchTargetGrpcProxyRequest) String() string { func (*PatchTargetGrpcProxyRequest) ProtoMessage() {} func (x *PatchTargetGrpcProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1230] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1287] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154399,7 +160723,7 @@ func (x *PatchTargetGrpcProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchTargetGrpcProxyRequest.ProtoReflect.Descriptor instead. func (*PatchTargetGrpcProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1230} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1287} } func (x *PatchTargetGrpcProxyRequest) GetProject() string { @@ -154459,7 +160783,7 @@ type PatchTargetHttpProxyRequest struct { func (x *PatchTargetHttpProxyRequest) Reset() { *x = PatchTargetHttpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1231] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1288] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154471,7 +160795,7 @@ func (x *PatchTargetHttpProxyRequest) String() string { func (*PatchTargetHttpProxyRequest) ProtoMessage() {} func (x *PatchTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1231] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1288] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154484,7 +160808,7 @@ func (x *PatchTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchTargetHttpProxyRequest.ProtoReflect.Descriptor instead. func (*PatchTargetHttpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1231} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1288} } func (x *PatchTargetHttpProxyRequest) GetProject() string { @@ -154544,7 +160868,7 @@ type PatchTargetHttpsProxyRequest struct { func (x *PatchTargetHttpsProxyRequest) Reset() { *x = PatchTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1232] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1289] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154556,7 +160880,7 @@ func (x *PatchTargetHttpsProxyRequest) String() string { func (*PatchTargetHttpsProxyRequest) ProtoMessage() {} func (x *PatchTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1232] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1289] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154569,7 +160893,7 @@ func (x *PatchTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*PatchTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1232} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1289} } func (x *PatchTargetHttpsProxyRequest) GetProject() string { @@ -154629,7 +160953,7 @@ type PatchUrlMapRequest struct { func (x *PatchUrlMapRequest) Reset() { *x = PatchUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1233] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1290] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154641,7 +160965,7 @@ func (x *PatchUrlMapRequest) String() string { func (*PatchUrlMapRequest) ProtoMessage() {} func (x *PatchUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1233] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1290] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154654,7 +160978,7 @@ func (x *PatchUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchUrlMapRequest.ProtoReflect.Descriptor instead. func (*PatchUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1233} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1290} } func (x *PatchUrlMapRequest) GetProject() string { @@ -154720,7 +161044,7 @@ type PatchWireGroupRequest struct { func (x *PatchWireGroupRequest) Reset() { *x = PatchWireGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1234] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1291] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154732,7 +161056,7 @@ func (x *PatchWireGroupRequest) String() string { func (*PatchWireGroupRequest) ProtoMessage() {} func (x *PatchWireGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1234] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1291] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154745,7 +161069,7 @@ func (x *PatchWireGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PatchWireGroupRequest.ProtoReflect.Descriptor instead. func (*PatchWireGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1234} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1291} } func (x *PatchWireGroupRequest) GetCrossSiteNetwork() string { @@ -154921,7 +161245,7 @@ type PathMatcher struct { func (x *PathMatcher) Reset() { *x = PathMatcher{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1235] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1292] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154933,7 +161257,7 @@ func (x *PathMatcher) String() string { func (*PathMatcher) ProtoMessage() {} func (x *PathMatcher) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1235] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1292] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154946,7 +161270,7 @@ func (x *PathMatcher) ProtoReflect() protoreflect.Message { // Deprecated: Use PathMatcher.ProtoReflect.Descriptor instead. func (*PathMatcher) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1235} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1292} } func (x *PathMatcher) GetDefaultCustomErrorResponsePolicy() *CustomErrorResponsePolicy { @@ -155077,7 +161401,7 @@ type PathRule struct { func (x *PathRule) Reset() { *x = PathRule{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1236] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1293] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155089,7 +161413,7 @@ func (x *PathRule) String() string { func (*PathRule) ProtoMessage() {} func (x *PathRule) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1236] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1293] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155102,7 +161426,7 @@ func (x *PathRule) ProtoReflect() protoreflect.Message { // Deprecated: Use PathRule.ProtoReflect.Descriptor instead. func (*PathRule) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1236} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1293} } func (x *PathRule) GetCustomErrorResponsePolicy() *CustomErrorResponsePolicy { @@ -155168,7 +161492,7 @@ type PerInstanceConfig struct { func (x *PerInstanceConfig) Reset() { *x = PerInstanceConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1237] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1294] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155180,7 +161504,7 @@ func (x *PerInstanceConfig) String() string { func (*PerInstanceConfig) ProtoMessage() {} func (x *PerInstanceConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1237] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1294] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155193,7 +161517,7 @@ func (x *PerInstanceConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use PerInstanceConfig.ProtoReflect.Descriptor instead. func (*PerInstanceConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1237} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1294} } func (x *PerInstanceConfig) GetFingerprint() string { @@ -155253,7 +161577,7 @@ type PerformMaintenanceInstanceRequest struct { func (x *PerformMaintenanceInstanceRequest) Reset() { *x = PerformMaintenanceInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1238] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1295] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155265,7 +161589,7 @@ func (x *PerformMaintenanceInstanceRequest) String() string { func (*PerformMaintenanceInstanceRequest) ProtoMessage() {} func (x *PerformMaintenanceInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1238] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1295] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155278,7 +161602,7 @@ func (x *PerformMaintenanceInstanceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use PerformMaintenanceInstanceRequest.ProtoReflect.Descriptor instead. func (*PerformMaintenanceInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1238} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1295} } func (x *PerformMaintenanceInstanceRequest) GetInstance() string { @@ -155340,7 +161664,7 @@ type PerformMaintenanceNodeGroupRequest struct { func (x *PerformMaintenanceNodeGroupRequest) Reset() { *x = PerformMaintenanceNodeGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1239] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1296] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155352,7 +161676,7 @@ func (x *PerformMaintenanceNodeGroupRequest) String() string { func (*PerformMaintenanceNodeGroupRequest) ProtoMessage() {} func (x *PerformMaintenanceNodeGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1239] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1296] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155365,7 +161689,7 @@ func (x *PerformMaintenanceNodeGroupRequest) ProtoReflect() protoreflect.Message // Deprecated: Use PerformMaintenanceNodeGroupRequest.ProtoReflect.Descriptor instead. func (*PerformMaintenanceNodeGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1239} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1296} } func (x *PerformMaintenanceNodeGroupRequest) GetNodeGroup() string { @@ -155438,7 +161762,7 @@ type PerformMaintenanceReservationBlockRequest struct { func (x *PerformMaintenanceReservationBlockRequest) Reset() { *x = PerformMaintenanceReservationBlockRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1240] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1297] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155450,7 +161774,7 @@ func (x *PerformMaintenanceReservationBlockRequest) String() string { func (*PerformMaintenanceReservationBlockRequest) ProtoMessage() {} func (x *PerformMaintenanceReservationBlockRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1240] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1297] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155463,7 +161787,7 @@ func (x *PerformMaintenanceReservationBlockRequest) ProtoReflect() protoreflect. // Deprecated: Use PerformMaintenanceReservationBlockRequest.ProtoReflect.Descriptor instead. func (*PerformMaintenanceReservationBlockRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1240} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1297} } func (x *PerformMaintenanceReservationBlockRequest) GetProject() string { @@ -155540,7 +161864,7 @@ type PerformMaintenanceReservationRequest struct { func (x *PerformMaintenanceReservationRequest) Reset() { *x = PerformMaintenanceReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1241] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1298] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155552,7 +161876,7 @@ func (x *PerformMaintenanceReservationRequest) String() string { func (*PerformMaintenanceReservationRequest) ProtoMessage() {} func (x *PerformMaintenanceReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1241] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1298] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155565,7 +161889,7 @@ func (x *PerformMaintenanceReservationRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use PerformMaintenanceReservationRequest.ProtoReflect.Descriptor instead. func (*PerformMaintenanceReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1241} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1298} } func (x *PerformMaintenanceReservationRequest) GetProject() string { @@ -155636,7 +161960,7 @@ type PerformMaintenanceReservationSubBlockRequest struct { func (x *PerformMaintenanceReservationSubBlockRequest) Reset() { *x = PerformMaintenanceReservationSubBlockRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1242] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1299] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155648,7 +161972,7 @@ func (x *PerformMaintenanceReservationSubBlockRequest) String() string { func (*PerformMaintenanceReservationSubBlockRequest) ProtoMessage() {} func (x *PerformMaintenanceReservationSubBlockRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1242] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1299] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155661,7 +161985,7 @@ func (x *PerformMaintenanceReservationSubBlockRequest) ProtoReflect() protorefle // Deprecated: Use PerformMaintenanceReservationSubBlockRequest.ProtoReflect.Descriptor instead. func (*PerformMaintenanceReservationSubBlockRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1242} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1299} } func (x *PerformMaintenanceReservationSubBlockRequest) GetParentName() string { @@ -155833,7 +162157,7 @@ type Policy struct { func (x *Policy) Reset() { *x = Policy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1243] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1300] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155845,7 +162169,7 @@ func (x *Policy) String() string { func (*Policy) ProtoMessage() {} func (x *Policy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1243] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1300] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155858,7 +162182,7 @@ func (x *Policy) ProtoReflect() protoreflect.Message { // Deprecated: Use Policy.ProtoReflect.Descriptor instead. func (*Policy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1243} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1300} } func (x *Policy) GetAuditConfigs() []*AuditConfig { @@ -155906,7 +162230,7 @@ type PreconfiguredWafSet struct { func (x *PreconfiguredWafSet) Reset() { *x = PreconfiguredWafSet{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1244] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1301] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155918,7 +162242,7 @@ func (x *PreconfiguredWafSet) String() string { func (*PreconfiguredWafSet) ProtoMessage() {} func (x *PreconfiguredWafSet) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1244] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1301] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155931,7 +162255,7 @@ func (x *PreconfiguredWafSet) ProtoReflect() protoreflect.Message { // Deprecated: Use PreconfiguredWafSet.ProtoReflect.Descriptor instead. func (*PreconfiguredWafSet) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1244} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1301} } func (x *PreconfiguredWafSet) GetExpressionSets() []*WafExpressionSet { @@ -155961,7 +162285,7 @@ type PreservedState struct { func (x *PreservedState) Reset() { *x = PreservedState{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1245] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1302] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155973,7 +162297,7 @@ func (x *PreservedState) String() string { func (*PreservedState) ProtoMessage() {} func (x *PreservedState) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1245] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1302] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155986,7 +162310,7 @@ func (x *PreservedState) ProtoReflect() protoreflect.Message { // Deprecated: Use PreservedState.ProtoReflect.Descriptor instead. func (*PreservedState) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1245} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1302} } func (x *PreservedState) GetDisks() map[string]*PreservedStatePreservedDisk { @@ -156040,7 +162364,7 @@ type PreservedStatePreservedDisk struct { func (x *PreservedStatePreservedDisk) Reset() { *x = PreservedStatePreservedDisk{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1246] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1303] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156052,7 +162376,7 @@ func (x *PreservedStatePreservedDisk) String() string { func (*PreservedStatePreservedDisk) ProtoMessage() {} func (x *PreservedStatePreservedDisk) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1246] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1303] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156065,7 +162389,7 @@ func (x *PreservedStatePreservedDisk) ProtoReflect() protoreflect.Message { // Deprecated: Use PreservedStatePreservedDisk.ProtoReflect.Descriptor instead. func (*PreservedStatePreservedDisk) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1246} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1303} } func (x *PreservedStatePreservedDisk) GetAutoDelete() string { @@ -156106,7 +162430,7 @@ type PreservedStatePreservedNetworkIp struct { func (x *PreservedStatePreservedNetworkIp) Reset() { *x = PreservedStatePreservedNetworkIp{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1247] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1304] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156118,7 +162442,7 @@ func (x *PreservedStatePreservedNetworkIp) String() string { func (*PreservedStatePreservedNetworkIp) ProtoMessage() {} func (x *PreservedStatePreservedNetworkIp) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1247] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1304] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156131,7 +162455,7 @@ func (x *PreservedStatePreservedNetworkIp) ProtoReflect() protoreflect.Message { // Deprecated: Use PreservedStatePreservedNetworkIp.ProtoReflect.Descriptor instead. func (*PreservedStatePreservedNetworkIp) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1247} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1304} } func (x *PreservedStatePreservedNetworkIp) GetAutoDelete() string { @@ -156161,7 +162485,7 @@ type PreservedStatePreservedNetworkIpIpAddress struct { func (x *PreservedStatePreservedNetworkIpIpAddress) Reset() { *x = PreservedStatePreservedNetworkIpIpAddress{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1248] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1305] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156173,7 +162497,7 @@ func (x *PreservedStatePreservedNetworkIpIpAddress) String() string { func (*PreservedStatePreservedNetworkIpIpAddress) ProtoMessage() {} func (x *PreservedStatePreservedNetworkIpIpAddress) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1248] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1305] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156186,7 +162510,7 @@ func (x *PreservedStatePreservedNetworkIpIpAddress) ProtoReflect() protoreflect. // Deprecated: Use PreservedStatePreservedNetworkIpIpAddress.ProtoReflect.Descriptor instead. func (*PreservedStatePreservedNetworkIpIpAddress) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1248} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1305} } func (x *PreservedStatePreservedNetworkIpIpAddress) GetAddress() string { @@ -156234,7 +162558,7 @@ type PreviewFeature struct { func (x *PreviewFeature) Reset() { *x = PreviewFeature{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1249] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1306] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156246,7 +162570,7 @@ func (x *PreviewFeature) String() string { func (*PreviewFeature) ProtoMessage() {} func (x *PreviewFeature) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1249] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1306] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156259,7 +162583,7 @@ func (x *PreviewFeature) ProtoReflect() protoreflect.Message { // Deprecated: Use PreviewFeature.ProtoReflect.Descriptor instead. func (*PreviewFeature) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1249} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1306} } func (x *PreviewFeature) GetActivationStatus() string { @@ -156351,7 +162675,7 @@ type PreviewFeatureList struct { func (x *PreviewFeatureList) Reset() { *x = PreviewFeatureList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1250] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1307] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156363,7 +162687,7 @@ func (x *PreviewFeatureList) String() string { func (*PreviewFeatureList) ProtoMessage() {} func (x *PreviewFeatureList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1250] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1307] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156376,7 +162700,7 @@ func (x *PreviewFeatureList) ProtoReflect() protoreflect.Message { // Deprecated: Use PreviewFeatureList.ProtoReflect.Descriptor instead. func (*PreviewFeatureList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1250} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1307} } func (x *PreviewFeatureList) GetEtag() string { @@ -156439,7 +162763,7 @@ type PreviewFeatureRolloutOperation struct { func (x *PreviewFeatureRolloutOperation) Reset() { *x = PreviewFeatureRolloutOperation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1251] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1308] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156451,7 +162775,7 @@ func (x *PreviewFeatureRolloutOperation) String() string { func (*PreviewFeatureRolloutOperation) ProtoMessage() {} func (x *PreviewFeatureRolloutOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1251] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1308] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156464,7 +162788,7 @@ func (x *PreviewFeatureRolloutOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use PreviewFeatureRolloutOperation.ProtoReflect.Descriptor instead. func (*PreviewFeatureRolloutOperation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1251} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1308} } func (x *PreviewFeatureRolloutOperation) GetRolloutInput() *PreviewFeatureRolloutOperationRolloutInput { @@ -156494,7 +162818,7 @@ type PreviewFeatureRolloutOperationRolloutInput struct { func (x *PreviewFeatureRolloutOperationRolloutInput) Reset() { *x = PreviewFeatureRolloutOperationRolloutInput{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1252] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1309] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156506,7 +162830,7 @@ func (x *PreviewFeatureRolloutOperationRolloutInput) String() string { func (*PreviewFeatureRolloutOperationRolloutInput) ProtoMessage() {} func (x *PreviewFeatureRolloutOperationRolloutInput) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1252] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1309] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156519,7 +162843,7 @@ func (x *PreviewFeatureRolloutOperationRolloutInput) ProtoReflect() protoreflect // Deprecated: Use PreviewFeatureRolloutOperationRolloutInput.ProtoReflect.Descriptor instead. func (*PreviewFeatureRolloutOperationRolloutInput) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1252} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1309} } func (x *PreviewFeatureRolloutOperationRolloutInput) GetName() string { @@ -156550,7 +162874,7 @@ type PreviewFeatureStatus struct { func (x *PreviewFeatureStatus) Reset() { *x = PreviewFeatureStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1253] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1310] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156562,7 +162886,7 @@ func (x *PreviewFeatureStatus) String() string { func (*PreviewFeatureStatus) ProtoMessage() {} func (x *PreviewFeatureStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1253] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1310] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156575,7 +162899,7 @@ func (x *PreviewFeatureStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use PreviewFeatureStatus.ProtoReflect.Descriptor instead. func (*PreviewFeatureStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1253} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1310} } func (x *PreviewFeatureStatus) GetDescription() string { @@ -156613,7 +162937,7 @@ type PreviewFeatureStatusReleaseStatus struct { func (x *PreviewFeatureStatusReleaseStatus) Reset() { *x = PreviewFeatureStatusReleaseStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1254] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1311] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156625,7 +162949,7 @@ func (x *PreviewFeatureStatusReleaseStatus) String() string { func (*PreviewFeatureStatusReleaseStatus) ProtoMessage() {} func (x *PreviewFeatureStatusReleaseStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1254] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1311] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156638,7 +162962,7 @@ func (x *PreviewFeatureStatusReleaseStatus) ProtoReflect() protoreflect.Message // Deprecated: Use PreviewFeatureStatusReleaseStatus.ProtoReflect.Descriptor instead. func (*PreviewFeatureStatusReleaseStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1254} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1311} } func (x *PreviewFeatureStatusReleaseStatus) GetStage() string { @@ -156672,7 +162996,7 @@ type PreviewRouterRequest struct { func (x *PreviewRouterRequest) Reset() { *x = PreviewRouterRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1255] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1312] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156684,7 +163008,7 @@ func (x *PreviewRouterRequest) String() string { func (*PreviewRouterRequest) ProtoMessage() {} func (x *PreviewRouterRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1255] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1312] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156697,7 +163021,7 @@ func (x *PreviewRouterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PreviewRouterRequest.ProtoReflect.Descriptor instead. func (*PreviewRouterRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1255} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1312} } func (x *PreviewRouterRequest) GetProject() string { @@ -156791,7 +163115,7 @@ type Project struct { func (x *Project) Reset() { *x = Project{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1256] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1313] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156803,7 +163127,7 @@ func (x *Project) String() string { func (*Project) ProtoMessage() {} func (x *Project) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1256] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1313] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156816,7 +163140,7 @@ func (x *Project) ProtoReflect() protoreflect.Message { // Deprecated: Use Project.ProtoReflect.Descriptor instead. func (*Project) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1256} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1313} } func (x *Project) GetCloudArmorTier() string { @@ -156934,7 +163258,7 @@ type ProjectsDisableXpnResourceRequest struct { func (x *ProjectsDisableXpnResourceRequest) Reset() { *x = ProjectsDisableXpnResourceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1257] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1314] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156946,7 +163270,7 @@ func (x *ProjectsDisableXpnResourceRequest) String() string { func (*ProjectsDisableXpnResourceRequest) ProtoMessage() {} func (x *ProjectsDisableXpnResourceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1257] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1314] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156959,7 +163283,7 @@ func (x *ProjectsDisableXpnResourceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ProjectsDisableXpnResourceRequest.ProtoReflect.Descriptor instead. func (*ProjectsDisableXpnResourceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1257} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1314} } func (x *ProjectsDisableXpnResourceRequest) GetXpnResource() *XpnResourceId { @@ -156979,7 +163303,7 @@ type ProjectsEnableXpnResourceRequest struct { func (x *ProjectsEnableXpnResourceRequest) Reset() { *x = ProjectsEnableXpnResourceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1258] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1315] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -156991,7 +163315,7 @@ func (x *ProjectsEnableXpnResourceRequest) String() string { func (*ProjectsEnableXpnResourceRequest) ProtoMessage() {} func (x *ProjectsEnableXpnResourceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1258] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1315] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157004,7 +163328,7 @@ func (x *ProjectsEnableXpnResourceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ProjectsEnableXpnResourceRequest.ProtoReflect.Descriptor instead. func (*ProjectsEnableXpnResourceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1258} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1315} } func (x *ProjectsEnableXpnResourceRequest) GetXpnResource() *XpnResourceId { @@ -157034,7 +163358,7 @@ type ProjectsGetXpnResources struct { func (x *ProjectsGetXpnResources) Reset() { *x = ProjectsGetXpnResources{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1259] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1316] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157046,7 +163370,7 @@ func (x *ProjectsGetXpnResources) String() string { func (*ProjectsGetXpnResources) ProtoMessage() {} func (x *ProjectsGetXpnResources) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1259] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1316] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157059,7 +163383,7 @@ func (x *ProjectsGetXpnResources) ProtoReflect() protoreflect.Message { // Deprecated: Use ProjectsGetXpnResources.ProtoReflect.Descriptor instead. func (*ProjectsGetXpnResources) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1259} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1316} } func (x *ProjectsGetXpnResources) GetKind() string { @@ -157095,7 +163419,7 @@ type ProjectsListXpnHostsRequest struct { func (x *ProjectsListXpnHostsRequest) Reset() { *x = ProjectsListXpnHostsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1260] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1317] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157107,7 +163431,7 @@ func (x *ProjectsListXpnHostsRequest) String() string { func (*ProjectsListXpnHostsRequest) ProtoMessage() {} func (x *ProjectsListXpnHostsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1260] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1317] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157120,7 +163444,7 @@ func (x *ProjectsListXpnHostsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ProjectsListXpnHostsRequest.ProtoReflect.Descriptor instead. func (*ProjectsListXpnHostsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1260} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1317} } func (x *ProjectsListXpnHostsRequest) GetOrganization() string { @@ -157141,7 +163465,7 @@ type ProjectsSetCloudArmorTierRequest struct { func (x *ProjectsSetCloudArmorTierRequest) Reset() { *x = ProjectsSetCloudArmorTierRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1261] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1318] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157153,7 +163477,7 @@ func (x *ProjectsSetCloudArmorTierRequest) String() string { func (*ProjectsSetCloudArmorTierRequest) ProtoMessage() {} func (x *ProjectsSetCloudArmorTierRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1261] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1318] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157166,7 +163490,7 @@ func (x *ProjectsSetCloudArmorTierRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ProjectsSetCloudArmorTierRequest.ProtoReflect.Descriptor instead. func (*ProjectsSetCloudArmorTierRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1261} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1318} } func (x *ProjectsSetCloudArmorTierRequest) GetCloudArmorTier() string { @@ -157187,7 +163511,7 @@ type ProjectsSetDefaultNetworkTierRequest struct { func (x *ProjectsSetDefaultNetworkTierRequest) Reset() { *x = ProjectsSetDefaultNetworkTierRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1262] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1319] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157199,7 +163523,7 @@ func (x *ProjectsSetDefaultNetworkTierRequest) String() string { func (*ProjectsSetDefaultNetworkTierRequest) ProtoMessage() {} func (x *ProjectsSetDefaultNetworkTierRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1262] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1319] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157212,7 +163536,7 @@ func (x *ProjectsSetDefaultNetworkTierRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use ProjectsSetDefaultNetworkTierRequest.ProtoReflect.Descriptor instead. func (*ProjectsSetDefaultNetworkTierRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1262} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1319} } func (x *ProjectsSetDefaultNetworkTierRequest) GetNetworkTier() string { @@ -157305,7 +163629,7 @@ type PublicAdvertisedPrefix struct { func (x *PublicAdvertisedPrefix) Reset() { *x = PublicAdvertisedPrefix{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1263] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1320] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157317,7 +163641,7 @@ func (x *PublicAdvertisedPrefix) String() string { func (*PublicAdvertisedPrefix) ProtoMessage() {} func (x *PublicAdvertisedPrefix) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1263] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1320] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157330,7 +163654,7 @@ func (x *PublicAdvertisedPrefix) ProtoReflect() protoreflect.Message { // Deprecated: Use PublicAdvertisedPrefix.ProtoReflect.Descriptor instead. func (*PublicAdvertisedPrefix) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1263} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1320} } func (x *PublicAdvertisedPrefix) GetByoipApiVersion() string { @@ -157462,7 +163786,7 @@ type PublicAdvertisedPrefixList struct { func (x *PublicAdvertisedPrefixList) Reset() { *x = PublicAdvertisedPrefixList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1264] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1321] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157474,7 +163798,7 @@ func (x *PublicAdvertisedPrefixList) String() string { func (*PublicAdvertisedPrefixList) ProtoMessage() {} func (x *PublicAdvertisedPrefixList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1264] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1321] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157487,7 +163811,7 @@ func (x *PublicAdvertisedPrefixList) ProtoReflect() protoreflect.Message { // Deprecated: Use PublicAdvertisedPrefixList.ProtoReflect.Descriptor instead. func (*PublicAdvertisedPrefixList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1264} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1321} } func (x *PublicAdvertisedPrefixList) GetId() string { @@ -157556,7 +163880,7 @@ type PublicAdvertisedPrefixPublicDelegatedPrefix struct { func (x *PublicAdvertisedPrefixPublicDelegatedPrefix) Reset() { *x = PublicAdvertisedPrefixPublicDelegatedPrefix{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1265] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1322] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157568,7 +163892,7 @@ func (x *PublicAdvertisedPrefixPublicDelegatedPrefix) String() string { func (*PublicAdvertisedPrefixPublicDelegatedPrefix) ProtoMessage() {} func (x *PublicAdvertisedPrefixPublicDelegatedPrefix) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1265] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1322] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157581,7 +163905,7 @@ func (x *PublicAdvertisedPrefixPublicDelegatedPrefix) ProtoReflect() protoreflec // Deprecated: Use PublicAdvertisedPrefixPublicDelegatedPrefix.ProtoReflect.Descriptor instead. func (*PublicAdvertisedPrefixPublicDelegatedPrefix) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1265} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1322} } func (x *PublicAdvertisedPrefixPublicDelegatedPrefix) GetIpRange() string { @@ -157709,7 +164033,7 @@ type PublicDelegatedPrefix struct { func (x *PublicDelegatedPrefix) Reset() { *x = PublicDelegatedPrefix{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1266] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1323] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157721,7 +164045,7 @@ func (x *PublicDelegatedPrefix) String() string { func (*PublicDelegatedPrefix) ProtoMessage() {} func (x *PublicDelegatedPrefix) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1266] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1323] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157734,7 +164058,7 @@ func (x *PublicDelegatedPrefix) ProtoReflect() protoreflect.Message { // Deprecated: Use PublicDelegatedPrefix.ProtoReflect.Descriptor instead. func (*PublicDelegatedPrefix) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1266} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1323} } func (x *PublicDelegatedPrefix) GetAllocatablePrefixLength() int32 { @@ -157890,7 +164214,7 @@ type PublicDelegatedPrefixAggregatedList struct { func (x *PublicDelegatedPrefixAggregatedList) Reset() { *x = PublicDelegatedPrefixAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1267] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1324] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157902,7 +164226,7 @@ func (x *PublicDelegatedPrefixAggregatedList) String() string { func (*PublicDelegatedPrefixAggregatedList) ProtoMessage() {} func (x *PublicDelegatedPrefixAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1267] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1324] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157915,7 +164239,7 @@ func (x *PublicDelegatedPrefixAggregatedList) ProtoReflect() protoreflect.Messag // Deprecated: Use PublicDelegatedPrefixAggregatedList.ProtoReflect.Descriptor instead. func (*PublicDelegatedPrefixAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1267} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1324} } func (x *PublicDelegatedPrefixAggregatedList) GetId() string { @@ -157992,7 +164316,7 @@ type PublicDelegatedPrefixList struct { func (x *PublicDelegatedPrefixList) Reset() { *x = PublicDelegatedPrefixList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1268] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1325] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158004,7 +164328,7 @@ func (x *PublicDelegatedPrefixList) String() string { func (*PublicDelegatedPrefixList) ProtoMessage() {} func (x *PublicDelegatedPrefixList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1268] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1325] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158017,7 +164341,7 @@ func (x *PublicDelegatedPrefixList) ProtoReflect() protoreflect.Message { // Deprecated: Use PublicDelegatedPrefixList.ProtoReflect.Descriptor instead. func (*PublicDelegatedPrefixList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1268} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1325} } func (x *PublicDelegatedPrefixList) GetId() string { @@ -158102,7 +164426,7 @@ type PublicDelegatedPrefixPublicDelegatedSubPrefix struct { func (x *PublicDelegatedPrefixPublicDelegatedSubPrefix) Reset() { *x = PublicDelegatedPrefixPublicDelegatedSubPrefix{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1269] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1326] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158114,7 +164438,7 @@ func (x *PublicDelegatedPrefixPublicDelegatedSubPrefix) String() string { func (*PublicDelegatedPrefixPublicDelegatedSubPrefix) ProtoMessage() {} func (x *PublicDelegatedPrefixPublicDelegatedSubPrefix) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1269] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1326] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158127,7 +164451,7 @@ func (x *PublicDelegatedPrefixPublicDelegatedSubPrefix) ProtoReflect() protorefl // Deprecated: Use PublicDelegatedPrefixPublicDelegatedSubPrefix.ProtoReflect.Descriptor instead. func (*PublicDelegatedPrefixPublicDelegatedSubPrefix) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1269} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1326} } func (x *PublicDelegatedPrefixPublicDelegatedSubPrefix) GetAllocatablePrefixLength() int32 { @@ -158220,7 +164544,7 @@ type PublicDelegatedPrefixesScopedList struct { func (x *PublicDelegatedPrefixesScopedList) Reset() { *x = PublicDelegatedPrefixesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1270] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1327] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158232,7 +164556,7 @@ func (x *PublicDelegatedPrefixesScopedList) String() string { func (*PublicDelegatedPrefixesScopedList) ProtoMessage() {} func (x *PublicDelegatedPrefixesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1270] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1327] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158245,7 +164569,7 @@ func (x *PublicDelegatedPrefixesScopedList) ProtoReflect() protoreflect.Message // Deprecated: Use PublicDelegatedPrefixesScopedList.ProtoReflect.Descriptor instead. func (*PublicDelegatedPrefixesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1270} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1327} } func (x *PublicDelegatedPrefixesScopedList) GetPublicDelegatedPrefixes() []*PublicDelegatedPrefix { @@ -158281,7 +164605,7 @@ type Quota struct { func (x *Quota) Reset() { *x = Quota{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1271] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1328] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158293,7 +164617,7 @@ func (x *Quota) String() string { func (*Quota) ProtoMessage() {} func (x *Quota) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1271] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1328] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158306,7 +164630,7 @@ func (x *Quota) ProtoReflect() protoreflect.Message { // Deprecated: Use Quota.ProtoReflect.Descriptor instead. func (*Quota) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1271} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1328} } func (x *Quota) GetLimit() float64 { @@ -158362,7 +164686,7 @@ type QuotaExceededInfo struct { func (x *QuotaExceededInfo) Reset() { *x = QuotaExceededInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1272] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1329] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158374,7 +164698,7 @@ func (x *QuotaExceededInfo) String() string { func (*QuotaExceededInfo) ProtoMessage() {} func (x *QuotaExceededInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1272] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1329] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158387,7 +164711,7 @@ func (x *QuotaExceededInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use QuotaExceededInfo.ProtoReflect.Descriptor instead. func (*QuotaExceededInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1272} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1329} } func (x *QuotaExceededInfo) GetDimensions() map[string]string { @@ -158459,7 +164783,7 @@ type QuotaStatusWarning struct { func (x *QuotaStatusWarning) Reset() { *x = QuotaStatusWarning{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1273] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1330] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158471,7 +164795,7 @@ func (x *QuotaStatusWarning) String() string { func (*QuotaStatusWarning) ProtoMessage() {} func (x *QuotaStatusWarning) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1273] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1330] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158484,7 +164808,7 @@ func (x *QuotaStatusWarning) ProtoReflect() protoreflect.Message { // Deprecated: Use QuotaStatusWarning.ProtoReflect.Descriptor instead. func (*QuotaStatusWarning) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1273} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1330} } func (x *QuotaStatusWarning) GetCode() string { @@ -158519,12 +164843,14 @@ type RawDisk struct { // An optional SHA1 checksum of the disk image before unpackaging provided // by the client when the disk image is created. Sha1Checksum *string `protobuf:"bytes,314444349,opt,name=sha1_checksum,json=sha1Checksum,proto3,oneof" json:"sha1_checksum,omitempty"` - // The full Google Cloud Storage URL where the raw disk image archive is - // stored. - // The following are valid formats for the URL: + // The full Google Cloud Storage URL or Artifact Registry path where the raw + // disk image archive is stored. + // The following are valid formats: // // - https://storage.googleapis.com/bucket_name/image_archive_name // - https://storage.googleapis.com/bucket_name/folder_name/image_archive_name + // - projects/project/locations/location/repositories/repo/packages/package/versions/version_id + // - projects/project/locations/location/repositories/repo/packages/package/versions/version_id@dirsum_sha256:hex_value // // In order to create an image, you must provide the full or partial URL of // one of the following: @@ -158540,7 +164866,7 @@ type RawDisk struct { func (x *RawDisk) Reset() { *x = RawDisk{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1274] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1331] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158552,7 +164878,7 @@ func (x *RawDisk) String() string { func (*RawDisk) ProtoMessage() {} func (x *RawDisk) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1274] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1331] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158565,7 +164891,7 @@ func (x *RawDisk) ProtoReflect() protoreflect.Message { // Deprecated: Use RawDisk.ProtoReflect.Descriptor instead. func (*RawDisk) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1274} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1331} } func (x *RawDisk) GetContainerType() string { @@ -158621,7 +164947,7 @@ type RecreateInstancesInstanceGroupManagerRequest struct { func (x *RecreateInstancesInstanceGroupManagerRequest) Reset() { *x = RecreateInstancesInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1275] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1332] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158633,7 +164959,7 @@ func (x *RecreateInstancesInstanceGroupManagerRequest) String() string { func (*RecreateInstancesInstanceGroupManagerRequest) ProtoMessage() {} func (x *RecreateInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1275] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1332] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158646,7 +164972,7 @@ func (x *RecreateInstancesInstanceGroupManagerRequest) ProtoReflect() protorefle // Deprecated: Use RecreateInstancesInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*RecreateInstancesInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1275} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1332} } func (x *RecreateInstancesInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -158715,7 +165041,7 @@ type RecreateInstancesRegionInstanceGroupManagerRequest struct { func (x *RecreateInstancesRegionInstanceGroupManagerRequest) Reset() { *x = RecreateInstancesRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1276] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1333] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158727,7 +165053,7 @@ func (x *RecreateInstancesRegionInstanceGroupManagerRequest) String() string { func (*RecreateInstancesRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *RecreateInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1276] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1333] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158740,7 +165066,7 @@ func (x *RecreateInstancesRegionInstanceGroupManagerRequest) ProtoReflect() prot // Deprecated: Use RecreateInstancesRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*RecreateInstancesRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1276} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1333} } func (x *RecreateInstancesRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -158799,7 +165125,7 @@ type Reference struct { func (x *Reference) Reset() { *x = Reference{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1277] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1334] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158811,7 +165137,7 @@ func (x *Reference) String() string { func (*Reference) ProtoMessage() {} func (x *Reference) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1277] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1334] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158824,7 +165150,7 @@ func (x *Reference) ProtoReflect() protoreflect.Message { // Deprecated: Use Reference.ProtoReflect.Descriptor instead. func (*Reference) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1277} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1334} } func (x *Reference) GetKind() string { @@ -158898,7 +165224,7 @@ type Region struct { func (x *Region) Reset() { *x = Region{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1278] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1335] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158910,7 +165236,7 @@ func (x *Region) String() string { func (*Region) ProtoMessage() {} func (x *Region) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1278] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1335] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158923,7 +165249,7 @@ func (x *Region) ProtoReflect() protoreflect.Message { // Deprecated: Use Region.ProtoReflect.Descriptor instead. func (*Region) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1278} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1335} } func (x *Region) GetCreationTimestamp() string { @@ -159029,7 +165355,7 @@ type RegionAddressesMoveRequest struct { func (x *RegionAddressesMoveRequest) Reset() { *x = RegionAddressesMoveRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1279] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1336] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159041,7 +165367,7 @@ func (x *RegionAddressesMoveRequest) String() string { func (*RegionAddressesMoveRequest) ProtoMessage() {} func (x *RegionAddressesMoveRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1279] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1336] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159054,7 +165380,7 @@ func (x *RegionAddressesMoveRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RegionAddressesMoveRequest.ProtoReflect.Descriptor instead. func (*RegionAddressesMoveRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1279} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1336} } func (x *RegionAddressesMoveRequest) GetDescription() string { @@ -159096,7 +165422,7 @@ type RegionAutoscalerList struct { func (x *RegionAutoscalerList) Reset() { *x = RegionAutoscalerList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1280] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1337] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159108,7 +165434,7 @@ func (x *RegionAutoscalerList) String() string { func (*RegionAutoscalerList) ProtoMessage() {} func (x *RegionAutoscalerList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1280] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1337] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159121,7 +165447,7 @@ func (x *RegionAutoscalerList) ProtoReflect() protoreflect.Message { // Deprecated: Use RegionAutoscalerList.ProtoReflect.Descriptor instead. func (*RegionAutoscalerList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1280} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1337} } func (x *RegionAutoscalerList) GetId() string { @@ -159190,7 +165516,7 @@ type RegionDiskTypeList struct { func (x *RegionDiskTypeList) Reset() { *x = RegionDiskTypeList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1281] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1338] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159202,7 +165528,7 @@ func (x *RegionDiskTypeList) String() string { func (*RegionDiskTypeList) ProtoMessage() {} func (x *RegionDiskTypeList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1281] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1338] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159215,7 +165541,7 @@ func (x *RegionDiskTypeList) ProtoReflect() protoreflect.Message { // Deprecated: Use RegionDiskTypeList.ProtoReflect.Descriptor instead. func (*RegionDiskTypeList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1281} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1338} } func (x *RegionDiskTypeList) GetId() string { @@ -159260,6 +165586,60 @@ func (x *RegionDiskTypeList) GetWarning() *Warning { return nil } +type RegionDiskUpdateKmsKeyRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional. The new KMS key to replace the current one on the disk. If empty, the disk + // will be re-encrypted using the primary version of the disk's current KMS + // key. + // + // The KMS key can be provided in the following formats: + // + // - projects/project_id/locations/location/keyRings/key_ring/cryptoKeys/key + // + // Where project is the project ID or + // project number. + KmsKeyName *string `protobuf:"bytes,484373913,opt,name=kms_key_name,json=kmsKeyName,proto3,oneof" json:"kms_key_name,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *RegionDiskUpdateKmsKeyRequest) Reset() { + *x = RegionDiskUpdateKmsKeyRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1339] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *RegionDiskUpdateKmsKeyRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*RegionDiskUpdateKmsKeyRequest) ProtoMessage() {} + +func (x *RegionDiskUpdateKmsKeyRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1339] + 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 RegionDiskUpdateKmsKeyRequest.ProtoReflect.Descriptor instead. +func (*RegionDiskUpdateKmsKeyRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1339} +} + +func (x *RegionDiskUpdateKmsKeyRequest) GetKmsKeyName() string { + if x != nil && x.KmsKeyName != nil { + return *x.KmsKeyName + } + return "" +} + type RegionDisksAddResourcePoliciesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Resource policies to be added to this disk. @@ -159270,7 +165650,7 @@ type RegionDisksAddResourcePoliciesRequest struct { func (x *RegionDisksAddResourcePoliciesRequest) Reset() { *x = RegionDisksAddResourcePoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1282] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1340] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159282,7 +165662,7 @@ func (x *RegionDisksAddResourcePoliciesRequest) String() string { func (*RegionDisksAddResourcePoliciesRequest) ProtoMessage() {} func (x *RegionDisksAddResourcePoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1282] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1340] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159295,7 +165675,7 @@ func (x *RegionDisksAddResourcePoliciesRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use RegionDisksAddResourcePoliciesRequest.ProtoReflect.Descriptor instead. func (*RegionDisksAddResourcePoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1282} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1340} } func (x *RegionDisksAddResourcePoliciesRequest) GetResourcePolicies() []string { @@ -159315,7 +165695,7 @@ type RegionDisksRemoveResourcePoliciesRequest struct { func (x *RegionDisksRemoveResourcePoliciesRequest) Reset() { *x = RegionDisksRemoveResourcePoliciesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1283] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1341] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159327,7 +165707,7 @@ func (x *RegionDisksRemoveResourcePoliciesRequest) String() string { func (*RegionDisksRemoveResourcePoliciesRequest) ProtoMessage() {} func (x *RegionDisksRemoveResourcePoliciesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1283] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1341] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159340,7 +165720,7 @@ func (x *RegionDisksRemoveResourcePoliciesRequest) ProtoReflect() protoreflect.M // Deprecated: Use RegionDisksRemoveResourcePoliciesRequest.ProtoReflect.Descriptor instead. func (*RegionDisksRemoveResourcePoliciesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1283} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1341} } func (x *RegionDisksRemoveResourcePoliciesRequest) GetResourcePolicies() []string { @@ -159360,7 +165740,7 @@ type RegionDisksResizeRequest struct { func (x *RegionDisksResizeRequest) Reset() { *x = RegionDisksResizeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1284] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1342] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159372,7 +165752,7 @@ func (x *RegionDisksResizeRequest) String() string { func (*RegionDisksResizeRequest) ProtoMessage() {} func (x *RegionDisksResizeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1284] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1342] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159385,7 +165765,7 @@ func (x *RegionDisksResizeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RegionDisksResizeRequest.ProtoReflect.Descriptor instead. func (*RegionDisksResizeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1284} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1342} } func (x *RegionDisksResizeRequest) GetSizeGb() int64 { @@ -159425,7 +165805,7 @@ type RegionDisksStartAsyncReplicationRequest struct { func (x *RegionDisksStartAsyncReplicationRequest) Reset() { *x = RegionDisksStartAsyncReplicationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1285] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1343] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159437,7 +165817,7 @@ func (x *RegionDisksStartAsyncReplicationRequest) String() string { func (*RegionDisksStartAsyncReplicationRequest) ProtoMessage() {} func (x *RegionDisksStartAsyncReplicationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1285] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1343] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159450,7 +165830,7 @@ func (x *RegionDisksStartAsyncReplicationRequest) ProtoReflect() protoreflect.Me // Deprecated: Use RegionDisksStartAsyncReplicationRequest.ProtoReflect.Descriptor instead. func (*RegionDisksStartAsyncReplicationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1285} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1343} } func (x *RegionDisksStartAsyncReplicationRequest) GetAsyncSecondaryDisk() string { @@ -159485,7 +165865,7 @@ type RegionInstanceGroupList struct { func (x *RegionInstanceGroupList) Reset() { *x = RegionInstanceGroupList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1286] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1344] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159497,7 +165877,7 @@ func (x *RegionInstanceGroupList) String() string { func (*RegionInstanceGroupList) ProtoMessage() {} func (x *RegionInstanceGroupList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1286] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1344] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159510,7 +165890,7 @@ func (x *RegionInstanceGroupList) ProtoReflect() protoreflect.Message { // Deprecated: Use RegionInstanceGroupList.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1286} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1344} } func (x *RegionInstanceGroupList) GetId() string { @@ -159567,7 +165947,7 @@ type RegionInstanceGroupManagerDeleteInstanceConfigReq struct { func (x *RegionInstanceGroupManagerDeleteInstanceConfigReq) Reset() { *x = RegionInstanceGroupManagerDeleteInstanceConfigReq{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1287] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1345] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159579,7 +165959,7 @@ func (x *RegionInstanceGroupManagerDeleteInstanceConfigReq) String() string { func (*RegionInstanceGroupManagerDeleteInstanceConfigReq) ProtoMessage() {} func (x *RegionInstanceGroupManagerDeleteInstanceConfigReq) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1287] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1345] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159592,7 +165972,7 @@ func (x *RegionInstanceGroupManagerDeleteInstanceConfigReq) ProtoReflect() proto // Deprecated: Use RegionInstanceGroupManagerDeleteInstanceConfigReq.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagerDeleteInstanceConfigReq) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1287} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1345} } func (x *RegionInstanceGroupManagerDeleteInstanceConfigReq) GetNames() []string { @@ -159629,7 +166009,7 @@ type RegionInstanceGroupManagerList struct { func (x *RegionInstanceGroupManagerList) Reset() { *x = RegionInstanceGroupManagerList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1288] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1346] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159641,7 +166021,7 @@ func (x *RegionInstanceGroupManagerList) String() string { func (*RegionInstanceGroupManagerList) ProtoMessage() {} func (x *RegionInstanceGroupManagerList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1288] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1346] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159654,7 +166034,7 @@ func (x *RegionInstanceGroupManagerList) ProtoReflect() protoreflect.Message { // Deprecated: Use RegionInstanceGroupManagerList.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagerList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1288} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1346} } func (x *RegionInstanceGroupManagerList) GetId() string { @@ -159711,7 +166091,7 @@ type RegionInstanceGroupManagerPatchInstanceConfigReq struct { func (x *RegionInstanceGroupManagerPatchInstanceConfigReq) Reset() { *x = RegionInstanceGroupManagerPatchInstanceConfigReq{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1289] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1347] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159723,7 +166103,7 @@ func (x *RegionInstanceGroupManagerPatchInstanceConfigReq) String() string { func (*RegionInstanceGroupManagerPatchInstanceConfigReq) ProtoMessage() {} func (x *RegionInstanceGroupManagerPatchInstanceConfigReq) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1289] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1347] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159736,7 +166116,7 @@ func (x *RegionInstanceGroupManagerPatchInstanceConfigReq) ProtoReflect() protor // Deprecated: Use RegionInstanceGroupManagerPatchInstanceConfigReq.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagerPatchInstanceConfigReq) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1289} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1347} } func (x *RegionInstanceGroupManagerPatchInstanceConfigReq) GetPerInstanceConfigs() []*PerInstanceConfig { @@ -159746,6 +166126,119 @@ func (x *RegionInstanceGroupManagerPatchInstanceConfigReq) GetPerInstanceConfigs return nil } +type RegionInstanceGroupManagerResizeRequestsListResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + Etag *string `protobuf:"bytes,3123477,opt,name=etag,proto3,oneof" json:"etag,omitempty"` + // Output only. [Output Only] Unique identifier for the resource; defined by the server. + Id *string `protobuf:"bytes,3355,opt,name=id,proto3,oneof" json:"id,omitempty"` + // A list of Resize Request resources. + Items []*InstanceGroupManagerResizeRequest `protobuf:"bytes,100526016,rep,name=items,proto3" json:"items,omitempty"` + // Output only. [Output Only] Type of the resource. Alwayscompute#regionInstanceGroupManagerResizeRequestList for + // a list of Resize Requests. + Kind *string `protobuf:"bytes,3292052,opt,name=kind,proto3,oneof" json:"kind,omitempty"` + // Output only. [Output Only] This token allows you to get the next page of results for + // list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for + // the query parameter pageToken in the next list request. + // Subsequent list requests will have their own nextPageToken to + // continue paging through the results. + NextPageToken *string `protobuf:"bytes,79797525,opt,name=next_page_token,json=nextPageToken,proto3,oneof" json:"next_page_token,omitempty"` + // Output only. [Output Only] Server-defined URL for this resource. + SelfLink *string `protobuf:"bytes,456214797,opt,name=self_link,json=selfLink,proto3,oneof" json:"self_link,omitempty"` + // Output only. [Output Only] Unreachable resources. + // end_interface: MixerListResponseWithEtagBuilder + Unreachables []string `protobuf:"bytes,243372063,rep,name=unreachables,proto3" json:"unreachables,omitempty"` + // Output only. [Output Only] Informational warning message. + Warning *Warning `protobuf:"bytes,50704284,opt,name=warning,proto3,oneof" json:"warning,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *RegionInstanceGroupManagerResizeRequestsListResponse) Reset() { + *x = RegionInstanceGroupManagerResizeRequestsListResponse{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1348] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *RegionInstanceGroupManagerResizeRequestsListResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*RegionInstanceGroupManagerResizeRequestsListResponse) ProtoMessage() {} + +func (x *RegionInstanceGroupManagerResizeRequestsListResponse) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1348] + 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 RegionInstanceGroupManagerResizeRequestsListResponse.ProtoReflect.Descriptor instead. +func (*RegionInstanceGroupManagerResizeRequestsListResponse) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1348} +} + +func (x *RegionInstanceGroupManagerResizeRequestsListResponse) GetEtag() string { + if x != nil && x.Etag != nil { + return *x.Etag + } + return "" +} + +func (x *RegionInstanceGroupManagerResizeRequestsListResponse) GetId() string { + if x != nil && x.Id != nil { + return *x.Id + } + return "" +} + +func (x *RegionInstanceGroupManagerResizeRequestsListResponse) GetItems() []*InstanceGroupManagerResizeRequest { + if x != nil { + return x.Items + } + return nil +} + +func (x *RegionInstanceGroupManagerResizeRequestsListResponse) GetKind() string { + if x != nil && x.Kind != nil { + return *x.Kind + } + return "" +} + +func (x *RegionInstanceGroupManagerResizeRequestsListResponse) GetNextPageToken() string { + if x != nil && x.NextPageToken != nil { + return *x.NextPageToken + } + return "" +} + +func (x *RegionInstanceGroupManagerResizeRequestsListResponse) GetSelfLink() string { + if x != nil && x.SelfLink != nil { + return *x.SelfLink + } + return "" +} + +func (x *RegionInstanceGroupManagerResizeRequestsListResponse) GetUnreachables() []string { + if x != nil { + return x.Unreachables + } + return nil +} + +func (x *RegionInstanceGroupManagerResizeRequestsListResponse) GetWarning() *Warning { + if x != nil { + return x.Warning + } + return nil +} + // RegionInstanceGroupManagers.updatePerInstanceConfigs type RegionInstanceGroupManagerUpdateInstanceConfigReq struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -159758,7 +166251,7 @@ type RegionInstanceGroupManagerUpdateInstanceConfigReq struct { func (x *RegionInstanceGroupManagerUpdateInstanceConfigReq) Reset() { *x = RegionInstanceGroupManagerUpdateInstanceConfigReq{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1290] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1349] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159770,7 +166263,7 @@ func (x *RegionInstanceGroupManagerUpdateInstanceConfigReq) String() string { func (*RegionInstanceGroupManagerUpdateInstanceConfigReq) ProtoMessage() {} func (x *RegionInstanceGroupManagerUpdateInstanceConfigReq) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1290] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1349] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159783,7 +166276,7 @@ func (x *RegionInstanceGroupManagerUpdateInstanceConfigReq) ProtoReflect() proto // Deprecated: Use RegionInstanceGroupManagerUpdateInstanceConfigReq.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagerUpdateInstanceConfigReq) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1290} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1349} } func (x *RegionInstanceGroupManagerUpdateInstanceConfigReq) GetPerInstanceConfigs() []*PerInstanceConfig { @@ -159804,7 +166297,7 @@ type RegionInstanceGroupManagersAbandonInstancesRequest struct { func (x *RegionInstanceGroupManagersAbandonInstancesRequest) Reset() { *x = RegionInstanceGroupManagersAbandonInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1291] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1350] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159816,7 +166309,7 @@ func (x *RegionInstanceGroupManagersAbandonInstancesRequest) String() string { func (*RegionInstanceGroupManagersAbandonInstancesRequest) ProtoMessage() {} func (x *RegionInstanceGroupManagersAbandonInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1291] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1350] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159829,7 +166322,7 @@ func (x *RegionInstanceGroupManagersAbandonInstancesRequest) ProtoReflect() prot // Deprecated: Use RegionInstanceGroupManagersAbandonInstancesRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersAbandonInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1291} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1350} } func (x *RegionInstanceGroupManagersAbandonInstancesRequest) GetInstances() []string { @@ -159887,7 +166380,7 @@ type RegionInstanceGroupManagersApplyUpdatesRequest struct { func (x *RegionInstanceGroupManagersApplyUpdatesRequest) Reset() { *x = RegionInstanceGroupManagersApplyUpdatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1292] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1351] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159899,7 +166392,7 @@ func (x *RegionInstanceGroupManagersApplyUpdatesRequest) String() string { func (*RegionInstanceGroupManagersApplyUpdatesRequest) ProtoMessage() {} func (x *RegionInstanceGroupManagersApplyUpdatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1292] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1351] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159912,7 +166405,7 @@ func (x *RegionInstanceGroupManagersApplyUpdatesRequest) ProtoReflect() protoref // Deprecated: Use RegionInstanceGroupManagersApplyUpdatesRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersApplyUpdatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1292} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1351} } func (x *RegionInstanceGroupManagersApplyUpdatesRequest) GetAllInstances() bool { @@ -159954,7 +166447,7 @@ type RegionInstanceGroupManagersCreateInstancesRequest struct { func (x *RegionInstanceGroupManagersCreateInstancesRequest) Reset() { *x = RegionInstanceGroupManagersCreateInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1293] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1352] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159966,7 +166459,7 @@ func (x *RegionInstanceGroupManagersCreateInstancesRequest) String() string { func (*RegionInstanceGroupManagersCreateInstancesRequest) ProtoMessage() {} func (x *RegionInstanceGroupManagersCreateInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1293] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1352] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159979,7 +166472,7 @@ func (x *RegionInstanceGroupManagersCreateInstancesRequest) ProtoReflect() proto // Deprecated: Use RegionInstanceGroupManagersCreateInstancesRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersCreateInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1293} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1352} } func (x *RegionInstanceGroupManagersCreateInstancesRequest) GetInstances() []*PerInstanceConfig { @@ -160008,7 +166501,7 @@ type RegionInstanceGroupManagersDeleteInstancesRequest struct { func (x *RegionInstanceGroupManagersDeleteInstancesRequest) Reset() { *x = RegionInstanceGroupManagersDeleteInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1294] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1353] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160020,7 +166513,7 @@ func (x *RegionInstanceGroupManagersDeleteInstancesRequest) String() string { func (*RegionInstanceGroupManagersDeleteInstancesRequest) ProtoMessage() {} func (x *RegionInstanceGroupManagersDeleteInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1294] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1353] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160033,7 +166526,7 @@ func (x *RegionInstanceGroupManagersDeleteInstancesRequest) ProtoReflect() proto // Deprecated: Use RegionInstanceGroupManagersDeleteInstancesRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersDeleteInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1294} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1353} } func (x *RegionInstanceGroupManagersDeleteInstancesRequest) GetInstances() []string { @@ -160066,7 +166559,7 @@ type RegionInstanceGroupManagersListErrorsResponse struct { func (x *RegionInstanceGroupManagersListErrorsResponse) Reset() { *x = RegionInstanceGroupManagersListErrorsResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1295] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1354] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160078,7 +166571,7 @@ func (x *RegionInstanceGroupManagersListErrorsResponse) String() string { func (*RegionInstanceGroupManagersListErrorsResponse) ProtoMessage() {} func (x *RegionInstanceGroupManagersListErrorsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1295] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1354] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160091,7 +166584,7 @@ func (x *RegionInstanceGroupManagersListErrorsResponse) ProtoReflect() protorefl // Deprecated: Use RegionInstanceGroupManagersListErrorsResponse.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersListErrorsResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1295} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1354} } func (x *RegionInstanceGroupManagersListErrorsResponse) GetItems() []*InstanceManagedByIgmError { @@ -160126,7 +166619,7 @@ type RegionInstanceGroupManagersListInstanceConfigsResp struct { func (x *RegionInstanceGroupManagersListInstanceConfigsResp) Reset() { *x = RegionInstanceGroupManagersListInstanceConfigsResp{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1296] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1355] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160138,7 +166631,7 @@ func (x *RegionInstanceGroupManagersListInstanceConfigsResp) String() string { func (*RegionInstanceGroupManagersListInstanceConfigsResp) ProtoMessage() {} func (x *RegionInstanceGroupManagersListInstanceConfigsResp) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1296] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1355] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160151,7 +166644,7 @@ func (x *RegionInstanceGroupManagersListInstanceConfigsResp) ProtoReflect() prot // Deprecated: Use RegionInstanceGroupManagersListInstanceConfigsResp.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersListInstanceConfigsResp) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1296} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1355} } func (x *RegionInstanceGroupManagersListInstanceConfigsResp) GetItems() []*PerInstanceConfig { @@ -160191,7 +166684,7 @@ type RegionInstanceGroupManagersListInstancesResponse struct { func (x *RegionInstanceGroupManagersListInstancesResponse) Reset() { *x = RegionInstanceGroupManagersListInstancesResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1297] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1356] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160203,7 +166696,7 @@ func (x *RegionInstanceGroupManagersListInstancesResponse) String() string { func (*RegionInstanceGroupManagersListInstancesResponse) ProtoMessage() {} func (x *RegionInstanceGroupManagersListInstancesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1297] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1356] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160216,7 +166709,7 @@ func (x *RegionInstanceGroupManagersListInstancesResponse) ProtoReflect() protor // Deprecated: Use RegionInstanceGroupManagersListInstancesResponse.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersListInstancesResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1297} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1356} } func (x *RegionInstanceGroupManagersListInstancesResponse) GetManagedInstances() []*ManagedInstance { @@ -160244,7 +166737,7 @@ type RegionInstanceGroupManagersRecreateRequest struct { func (x *RegionInstanceGroupManagersRecreateRequest) Reset() { *x = RegionInstanceGroupManagersRecreateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1298] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1357] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160256,7 +166749,7 @@ func (x *RegionInstanceGroupManagersRecreateRequest) String() string { func (*RegionInstanceGroupManagersRecreateRequest) ProtoMessage() {} func (x *RegionInstanceGroupManagersRecreateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1298] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1357] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160269,7 +166762,7 @@ func (x *RegionInstanceGroupManagersRecreateRequest) ProtoReflect() protoreflect // Deprecated: Use RegionInstanceGroupManagersRecreateRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersRecreateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1298} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1357} } func (x *RegionInstanceGroupManagersRecreateRequest) GetInstances() []string { @@ -160290,7 +166783,7 @@ type RegionInstanceGroupManagersResumeInstancesRequest struct { func (x *RegionInstanceGroupManagersResumeInstancesRequest) Reset() { *x = RegionInstanceGroupManagersResumeInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1299] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1358] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160302,7 +166795,7 @@ func (x *RegionInstanceGroupManagersResumeInstancesRequest) String() string { func (*RegionInstanceGroupManagersResumeInstancesRequest) ProtoMessage() {} func (x *RegionInstanceGroupManagersResumeInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1299] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1358] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160315,7 +166808,7 @@ func (x *RegionInstanceGroupManagersResumeInstancesRequest) ProtoReflect() proto // Deprecated: Use RegionInstanceGroupManagersResumeInstancesRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersResumeInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1299} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1358} } func (x *RegionInstanceGroupManagersResumeInstancesRequest) GetInstances() []string { @@ -160340,7 +166833,7 @@ type RegionInstanceGroupManagersSetTargetPoolsRequest struct { func (x *RegionInstanceGroupManagersSetTargetPoolsRequest) Reset() { *x = RegionInstanceGroupManagersSetTargetPoolsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1300] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1359] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160352,7 +166845,7 @@ func (x *RegionInstanceGroupManagersSetTargetPoolsRequest) String() string { func (*RegionInstanceGroupManagersSetTargetPoolsRequest) ProtoMessage() {} func (x *RegionInstanceGroupManagersSetTargetPoolsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1300] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1359] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160365,7 +166858,7 @@ func (x *RegionInstanceGroupManagersSetTargetPoolsRequest) ProtoReflect() protor // Deprecated: Use RegionInstanceGroupManagersSetTargetPoolsRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersSetTargetPoolsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1300} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1359} } func (x *RegionInstanceGroupManagersSetTargetPoolsRequest) GetFingerprint() string { @@ -160393,7 +166886,7 @@ type RegionInstanceGroupManagersSetTemplateRequest struct { func (x *RegionInstanceGroupManagersSetTemplateRequest) Reset() { *x = RegionInstanceGroupManagersSetTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1301] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1360] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160405,7 +166898,7 @@ func (x *RegionInstanceGroupManagersSetTemplateRequest) String() string { func (*RegionInstanceGroupManagersSetTemplateRequest) ProtoMessage() {} func (x *RegionInstanceGroupManagersSetTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1301] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1360] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160418,7 +166911,7 @@ func (x *RegionInstanceGroupManagersSetTemplateRequest) ProtoReflect() protorefl // Deprecated: Use RegionInstanceGroupManagersSetTemplateRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersSetTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1301} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1360} } func (x *RegionInstanceGroupManagersSetTemplateRequest) GetInstanceTemplate() string { @@ -160439,7 +166932,7 @@ type RegionInstanceGroupManagersStartInstancesRequest struct { func (x *RegionInstanceGroupManagersStartInstancesRequest) Reset() { *x = RegionInstanceGroupManagersStartInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1302] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1361] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160451,7 +166944,7 @@ func (x *RegionInstanceGroupManagersStartInstancesRequest) String() string { func (*RegionInstanceGroupManagersStartInstancesRequest) ProtoMessage() {} func (x *RegionInstanceGroupManagersStartInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1302] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1361] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160464,7 +166957,7 @@ func (x *RegionInstanceGroupManagersStartInstancesRequest) ProtoReflect() protor // Deprecated: Use RegionInstanceGroupManagersStartInstancesRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersStartInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1302} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1361} } func (x *RegionInstanceGroupManagersStartInstancesRequest) GetInstances() []string { @@ -160488,7 +166981,7 @@ type RegionInstanceGroupManagersStopInstancesRequest struct { func (x *RegionInstanceGroupManagersStopInstancesRequest) Reset() { *x = RegionInstanceGroupManagersStopInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1303] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1362] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160500,7 +166993,7 @@ func (x *RegionInstanceGroupManagersStopInstancesRequest) String() string { func (*RegionInstanceGroupManagersStopInstancesRequest) ProtoMessage() {} func (x *RegionInstanceGroupManagersStopInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1303] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1362] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160513,7 +167006,7 @@ func (x *RegionInstanceGroupManagersStopInstancesRequest) ProtoReflect() protore // Deprecated: Use RegionInstanceGroupManagersStopInstancesRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersStopInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1303} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1362} } func (x *RegionInstanceGroupManagersStopInstancesRequest) GetForceStop() bool { @@ -160544,7 +167037,7 @@ type RegionInstanceGroupManagersSuspendInstancesRequest struct { func (x *RegionInstanceGroupManagersSuspendInstancesRequest) Reset() { *x = RegionInstanceGroupManagersSuspendInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1304] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1363] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160556,7 +167049,7 @@ func (x *RegionInstanceGroupManagersSuspendInstancesRequest) String() string { func (*RegionInstanceGroupManagersSuspendInstancesRequest) ProtoMessage() {} func (x *RegionInstanceGroupManagersSuspendInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1304] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1363] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160569,7 +167062,7 @@ func (x *RegionInstanceGroupManagersSuspendInstancesRequest) ProtoReflect() prot // Deprecated: Use RegionInstanceGroupManagersSuspendInstancesRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupManagersSuspendInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1304} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1363} } func (x *RegionInstanceGroupManagersSuspendInstancesRequest) GetForceSuspend() bool { @@ -160610,7 +167103,7 @@ type RegionInstanceGroupsListInstances struct { func (x *RegionInstanceGroupsListInstances) Reset() { *x = RegionInstanceGroupsListInstances{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1305] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1364] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160622,7 +167115,7 @@ func (x *RegionInstanceGroupsListInstances) String() string { func (*RegionInstanceGroupsListInstances) ProtoMessage() {} func (x *RegionInstanceGroupsListInstances) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1305] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1364] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160635,7 +167128,7 @@ func (x *RegionInstanceGroupsListInstances) ProtoReflect() protoreflect.Message // Deprecated: Use RegionInstanceGroupsListInstances.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupsListInstances) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1305} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1364} } func (x *RegionInstanceGroupsListInstances) GetId() string { @@ -160697,7 +167190,7 @@ type RegionInstanceGroupsListInstancesRequest struct { func (x *RegionInstanceGroupsListInstancesRequest) Reset() { *x = RegionInstanceGroupsListInstancesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1306] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1365] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160709,7 +167202,7 @@ func (x *RegionInstanceGroupsListInstancesRequest) String() string { func (*RegionInstanceGroupsListInstancesRequest) ProtoMessage() {} func (x *RegionInstanceGroupsListInstancesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1306] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1365] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160722,7 +167215,7 @@ func (x *RegionInstanceGroupsListInstancesRequest) ProtoReflect() protoreflect.M // Deprecated: Use RegionInstanceGroupsListInstancesRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupsListInstancesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1306} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1365} } func (x *RegionInstanceGroupsListInstancesRequest) GetInstanceState() string { @@ -160756,7 +167249,7 @@ type RegionInstanceGroupsSetNamedPortsRequest struct { func (x *RegionInstanceGroupsSetNamedPortsRequest) Reset() { *x = RegionInstanceGroupsSetNamedPortsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1307] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1366] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160768,7 +167261,7 @@ func (x *RegionInstanceGroupsSetNamedPortsRequest) String() string { func (*RegionInstanceGroupsSetNamedPortsRequest) ProtoMessage() {} func (x *RegionInstanceGroupsSetNamedPortsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1307] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1366] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160781,7 +167274,7 @@ func (x *RegionInstanceGroupsSetNamedPortsRequest) ProtoReflect() protoreflect.M // Deprecated: Use RegionInstanceGroupsSetNamedPortsRequest.ProtoReflect.Descriptor instead. func (*RegionInstanceGroupsSetNamedPortsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1307} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1366} } func (x *RegionInstanceGroupsSetNamedPortsRequest) GetFingerprint() string { @@ -160824,7 +167317,7 @@ type RegionList struct { func (x *RegionList) Reset() { *x = RegionList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1308] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1367] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160836,7 +167329,7 @@ func (x *RegionList) String() string { func (*RegionList) ProtoMessage() {} func (x *RegionList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1308] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1367] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160849,7 +167342,7 @@ func (x *RegionList) ProtoReflect() protoreflect.Message { // Deprecated: Use RegionList.ProtoReflect.Descriptor instead. func (*RegionList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1308} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1367} } func (x *RegionList) GetId() string { @@ -160904,7 +167397,7 @@ type RegionNetworkEndpointGroupsAttachEndpointsRequest struct { func (x *RegionNetworkEndpointGroupsAttachEndpointsRequest) Reset() { *x = RegionNetworkEndpointGroupsAttachEndpointsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1309] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1368] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160916,7 +167409,7 @@ func (x *RegionNetworkEndpointGroupsAttachEndpointsRequest) String() string { func (*RegionNetworkEndpointGroupsAttachEndpointsRequest) ProtoMessage() {} func (x *RegionNetworkEndpointGroupsAttachEndpointsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1309] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1368] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160929,7 +167422,7 @@ func (x *RegionNetworkEndpointGroupsAttachEndpointsRequest) ProtoReflect() proto // Deprecated: Use RegionNetworkEndpointGroupsAttachEndpointsRequest.ProtoReflect.Descriptor instead. func (*RegionNetworkEndpointGroupsAttachEndpointsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1309} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1368} } func (x *RegionNetworkEndpointGroupsAttachEndpointsRequest) GetNetworkEndpoints() []*NetworkEndpoint { @@ -160949,7 +167442,7 @@ type RegionNetworkEndpointGroupsDetachEndpointsRequest struct { func (x *RegionNetworkEndpointGroupsDetachEndpointsRequest) Reset() { *x = RegionNetworkEndpointGroupsDetachEndpointsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1310] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1369] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160961,7 +167454,7 @@ func (x *RegionNetworkEndpointGroupsDetachEndpointsRequest) String() string { func (*RegionNetworkEndpointGroupsDetachEndpointsRequest) ProtoMessage() {} func (x *RegionNetworkEndpointGroupsDetachEndpointsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1310] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1369] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160974,7 +167467,7 @@ func (x *RegionNetworkEndpointGroupsDetachEndpointsRequest) ProtoReflect() proto // Deprecated: Use RegionNetworkEndpointGroupsDetachEndpointsRequest.ProtoReflect.Descriptor instead. func (*RegionNetworkEndpointGroupsDetachEndpointsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1310} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1369} } func (x *RegionNetworkEndpointGroupsDetachEndpointsRequest) GetNetworkEndpoints() []*NetworkEndpoint { @@ -160999,7 +167492,7 @@ type RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse struct { func (x *RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse) Reset() { *x = RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1311] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1370] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161011,7 +167504,7 @@ func (x *RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse) String() st func (*RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse) ProtoMessage() {} func (x *RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1311] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1370] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161024,7 +167517,7 @@ func (x *RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse) ProtoReflec // Deprecated: Use RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse.ProtoReflect.Descriptor instead. func (*RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1311} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1370} } func (x *RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse) GetFirewallPolicys() []*RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy { @@ -161064,7 +167557,7 @@ type RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewall func (x *RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy) Reset() { *x = RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1312] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1371] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161077,7 +167570,7 @@ func (*RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewa } func (x *RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1312] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1371] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161090,7 +167583,7 @@ func (x *RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFire // Deprecated: Use RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.ProtoReflect.Descriptor instead. func (*RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1312} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1371} } func (x *RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy) GetDisplayName() string { @@ -161152,7 +167645,7 @@ type RegionSetLabelsRequest struct { func (x *RegionSetLabelsRequest) Reset() { *x = RegionSetLabelsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1313] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1372] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161164,7 +167657,7 @@ func (x *RegionSetLabelsRequest) String() string { func (*RegionSetLabelsRequest) ProtoMessage() {} func (x *RegionSetLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1313] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1372] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161177,7 +167670,7 @@ func (x *RegionSetLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RegionSetLabelsRequest.ProtoReflect.Descriptor instead. func (*RegionSetLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1313} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1372} } func (x *RegionSetLabelsRequest) GetLabelFingerprint() string { @@ -161212,7 +167705,7 @@ type RegionSetPolicyRequest struct { func (x *RegionSetPolicyRequest) Reset() { *x = RegionSetPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1314] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1373] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161224,7 +167717,7 @@ func (x *RegionSetPolicyRequest) String() string { func (*RegionSetPolicyRequest) ProtoMessage() {} func (x *RegionSetPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1314] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1373] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161237,7 +167730,7 @@ func (x *RegionSetPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RegionSetPolicyRequest.ProtoReflect.Descriptor instead. func (*RegionSetPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1314} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1373} } func (x *RegionSetPolicyRequest) GetBindings() []*Binding { @@ -161261,6 +167754,57 @@ func (x *RegionSetPolicyRequest) GetPolicy() *Policy { return nil } +type RegionSnapshotUpdateKmsKeyRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional. The new KMS key to replace the current one on the snapshot. If empty, the + // snapshot will be re-encrypted using the primary version of the snapshot's + // current KMS key. + // + // The KMS key can be provided in the following formats: + // + // - projects/project_id/locations/region/keyRings/region/cryptoKeys/key + KmsKeyName *string `protobuf:"bytes,484373913,opt,name=kms_key_name,json=kmsKeyName,proto3,oneof" json:"kms_key_name,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *RegionSnapshotUpdateKmsKeyRequest) Reset() { + *x = RegionSnapshotUpdateKmsKeyRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1374] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *RegionSnapshotUpdateKmsKeyRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*RegionSnapshotUpdateKmsKeyRequest) ProtoMessage() {} + +func (x *RegionSnapshotUpdateKmsKeyRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1374] + 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 RegionSnapshotUpdateKmsKeyRequest.ProtoReflect.Descriptor instead. +func (*RegionSnapshotUpdateKmsKeyRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1374} +} + +func (x *RegionSnapshotUpdateKmsKeyRequest) GetKmsKeyName() string { + if x != nil && x.KmsKeyName != nil { + return *x.KmsKeyName + } + return "" +} + type RegionTargetHttpsProxiesSetSslCertificatesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // New set of SslCertificate resources to associate @@ -161272,7 +167816,7 @@ type RegionTargetHttpsProxiesSetSslCertificatesRequest struct { func (x *RegionTargetHttpsProxiesSetSslCertificatesRequest) Reset() { *x = RegionTargetHttpsProxiesSetSslCertificatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1315] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1375] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161284,7 +167828,7 @@ func (x *RegionTargetHttpsProxiesSetSslCertificatesRequest) String() string { func (*RegionTargetHttpsProxiesSetSslCertificatesRequest) ProtoMessage() {} func (x *RegionTargetHttpsProxiesSetSslCertificatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1315] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1375] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161297,7 +167841,7 @@ func (x *RegionTargetHttpsProxiesSetSslCertificatesRequest) ProtoReflect() proto // Deprecated: Use RegionTargetHttpsProxiesSetSslCertificatesRequest.ProtoReflect.Descriptor instead. func (*RegionTargetHttpsProxiesSetSslCertificatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1315} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1375} } func (x *RegionTargetHttpsProxiesSetSslCertificatesRequest) GetSslCertificates() []string { @@ -161317,7 +167861,7 @@ type RegionUrlMapsValidateRequest struct { func (x *RegionUrlMapsValidateRequest) Reset() { *x = RegionUrlMapsValidateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1316] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1376] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161329,7 +167873,7 @@ func (x *RegionUrlMapsValidateRequest) String() string { func (*RegionUrlMapsValidateRequest) ProtoMessage() {} func (x *RegionUrlMapsValidateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1316] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1376] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161342,7 +167886,7 @@ func (x *RegionUrlMapsValidateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RegionUrlMapsValidateRequest.ProtoReflect.Descriptor instead. func (*RegionUrlMapsValidateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1316} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1376} } func (x *RegionUrlMapsValidateRequest) GetResource() *UrlMap { @@ -161379,7 +167923,7 @@ type RemoveAssociationFirewallPolicyRequest struct { func (x *RemoveAssociationFirewallPolicyRequest) Reset() { *x = RemoveAssociationFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1317] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1377] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161391,7 +167935,7 @@ func (x *RemoveAssociationFirewallPolicyRequest) String() string { func (*RemoveAssociationFirewallPolicyRequest) ProtoMessage() {} func (x *RemoveAssociationFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1317] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1377] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161404,7 +167948,7 @@ func (x *RemoveAssociationFirewallPolicyRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use RemoveAssociationFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*RemoveAssociationFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1317} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1377} } func (x *RemoveAssociationFirewallPolicyRequest) GetFirewallPolicy() string { @@ -161457,7 +168001,7 @@ type RemoveAssociationNetworkFirewallPolicyRequest struct { func (x *RemoveAssociationNetworkFirewallPolicyRequest) Reset() { *x = RemoveAssociationNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1318] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1378] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161469,7 +168013,7 @@ func (x *RemoveAssociationNetworkFirewallPolicyRequest) String() string { func (*RemoveAssociationNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *RemoveAssociationNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1318] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1378] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161482,7 +168026,7 @@ func (x *RemoveAssociationNetworkFirewallPolicyRequest) ProtoReflect() protorefl // Deprecated: Use RemoveAssociationNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*RemoveAssociationNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1318} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1378} } func (x *RemoveAssociationNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -161540,7 +168084,7 @@ type RemoveAssociationOrganizationSecurityPolicyRequest struct { func (x *RemoveAssociationOrganizationSecurityPolicyRequest) Reset() { *x = RemoveAssociationOrganizationSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1319] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1379] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161552,7 +168096,7 @@ func (x *RemoveAssociationOrganizationSecurityPolicyRequest) String() string { func (*RemoveAssociationOrganizationSecurityPolicyRequest) ProtoMessage() {} func (x *RemoveAssociationOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1319] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1379] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161565,7 +168109,7 @@ func (x *RemoveAssociationOrganizationSecurityPolicyRequest) ProtoReflect() prot // Deprecated: Use RemoveAssociationOrganizationSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*RemoveAssociationOrganizationSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1319} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1379} } func (x *RemoveAssociationOrganizationSecurityPolicyRequest) GetName() string { @@ -161620,7 +168164,7 @@ type RemoveAssociationRegionNetworkFirewallPolicyRequest struct { func (x *RemoveAssociationRegionNetworkFirewallPolicyRequest) Reset() { *x = RemoveAssociationRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1320] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1380] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161632,7 +168176,7 @@ func (x *RemoveAssociationRegionNetworkFirewallPolicyRequest) String() string { func (*RemoveAssociationRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *RemoveAssociationRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1320] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1380] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161645,7 +168189,7 @@ func (x *RemoveAssociationRegionNetworkFirewallPolicyRequest) ProtoReflect() pro // Deprecated: Use RemoveAssociationRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*RemoveAssociationRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1320} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1380} } func (x *RemoveAssociationRegionNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -161714,7 +168258,7 @@ type RemoveHealthCheckTargetPoolRequest struct { func (x *RemoveHealthCheckTargetPoolRequest) Reset() { *x = RemoveHealthCheckTargetPoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1321] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1381] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161726,7 +168270,7 @@ func (x *RemoveHealthCheckTargetPoolRequest) String() string { func (*RemoveHealthCheckTargetPoolRequest) ProtoMessage() {} func (x *RemoveHealthCheckTargetPoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1321] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1381] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161739,7 +168283,7 @@ func (x *RemoveHealthCheckTargetPoolRequest) ProtoReflect() protoreflect.Message // Deprecated: Use RemoveHealthCheckTargetPoolRequest.ProtoReflect.Descriptor instead. func (*RemoveHealthCheckTargetPoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1321} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1381} } func (x *RemoveHealthCheckTargetPoolRequest) GetProject() string { @@ -161808,7 +168352,7 @@ type RemoveInstanceTargetPoolRequest struct { func (x *RemoveInstanceTargetPoolRequest) Reset() { *x = RemoveInstanceTargetPoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1322] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1382] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161820,7 +168364,7 @@ func (x *RemoveInstanceTargetPoolRequest) String() string { func (*RemoveInstanceTargetPoolRequest) ProtoMessage() {} func (x *RemoveInstanceTargetPoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1322] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1382] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161833,7 +168377,7 @@ func (x *RemoveInstanceTargetPoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveInstanceTargetPoolRequest.ProtoReflect.Descriptor instead. func (*RemoveInstanceTargetPoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1322} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1382} } func (x *RemoveInstanceTargetPoolRequest) GetProject() string { @@ -161904,7 +168448,7 @@ type RemoveInstancesInstanceGroupRequest struct { func (x *RemoveInstancesInstanceGroupRequest) Reset() { *x = RemoveInstancesInstanceGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1323] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1383] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161916,7 +168460,7 @@ func (x *RemoveInstancesInstanceGroupRequest) String() string { func (*RemoveInstancesInstanceGroupRequest) ProtoMessage() {} func (x *RemoveInstancesInstanceGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1323] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1383] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161929,7 +168473,7 @@ func (x *RemoveInstancesInstanceGroupRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use RemoveInstancesInstanceGroupRequest.ProtoReflect.Descriptor instead. func (*RemoveInstancesInstanceGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1323} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1383} } func (x *RemoveInstancesInstanceGroupRequest) GetInstanceGroup() string { @@ -161996,7 +168540,7 @@ type RemovePacketMirroringRuleNetworkFirewallPolicyRequest struct { func (x *RemovePacketMirroringRuleNetworkFirewallPolicyRequest) Reset() { *x = RemovePacketMirroringRuleNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1324] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1384] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162008,7 +168552,7 @@ func (x *RemovePacketMirroringRuleNetworkFirewallPolicyRequest) String() string func (*RemovePacketMirroringRuleNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *RemovePacketMirroringRuleNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1324] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1384] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162021,7 +168565,7 @@ func (x *RemovePacketMirroringRuleNetworkFirewallPolicyRequest) ProtoReflect() p // Deprecated: Use RemovePacketMirroringRuleNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*RemovePacketMirroringRuleNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1324} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1384} } func (x *RemovePacketMirroringRuleNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -162081,7 +168625,7 @@ type RemovePeeringNetworkRequest struct { func (x *RemovePeeringNetworkRequest) Reset() { *x = RemovePeeringNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1325] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1385] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162093,7 +168637,7 @@ func (x *RemovePeeringNetworkRequest) String() string { func (*RemovePeeringNetworkRequest) ProtoMessage() {} func (x *RemovePeeringNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1325] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1385] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162106,7 +168650,7 @@ func (x *RemovePeeringNetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemovePeeringNetworkRequest.ProtoReflect.Descriptor instead. func (*RemovePeeringNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1325} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1385} } func (x *RemovePeeringNetworkRequest) GetNetwork() string { @@ -162168,7 +168712,7 @@ type RemoveResourcePoliciesDiskRequest struct { func (x *RemoveResourcePoliciesDiskRequest) Reset() { *x = RemoveResourcePoliciesDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1326] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1386] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162180,7 +168724,7 @@ func (x *RemoveResourcePoliciesDiskRequest) String() string { func (*RemoveResourcePoliciesDiskRequest) ProtoMessage() {} func (x *RemoveResourcePoliciesDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1326] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1386] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162193,7 +168737,7 @@ func (x *RemoveResourcePoliciesDiskRequest) ProtoReflect() protoreflect.Message // Deprecated: Use RemoveResourcePoliciesDiskRequest.ProtoReflect.Descriptor instead. func (*RemoveResourcePoliciesDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1326} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1386} } func (x *RemoveResourcePoliciesDiskRequest) GetDisk() string { @@ -162262,7 +168806,7 @@ type RemoveResourcePoliciesInstanceRequest struct { func (x *RemoveResourcePoliciesInstanceRequest) Reset() { *x = RemoveResourcePoliciesInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1327] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1387] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162274,7 +168818,7 @@ func (x *RemoveResourcePoliciesInstanceRequest) String() string { func (*RemoveResourcePoliciesInstanceRequest) ProtoMessage() {} func (x *RemoveResourcePoliciesInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1327] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1387] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162287,7 +168831,7 @@ func (x *RemoveResourcePoliciesInstanceRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use RemoveResourcePoliciesInstanceRequest.ProtoReflect.Descriptor instead. func (*RemoveResourcePoliciesInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1327} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1387} } func (x *RemoveResourcePoliciesInstanceRequest) GetInstance() string { @@ -162356,7 +168900,7 @@ type RemoveResourcePoliciesRegionDiskRequest struct { func (x *RemoveResourcePoliciesRegionDiskRequest) Reset() { *x = RemoveResourcePoliciesRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1328] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1388] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162368,7 +168912,7 @@ func (x *RemoveResourcePoliciesRegionDiskRequest) String() string { func (*RemoveResourcePoliciesRegionDiskRequest) ProtoMessage() {} func (x *RemoveResourcePoliciesRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1328] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1388] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162381,7 +168925,7 @@ func (x *RemoveResourcePoliciesRegionDiskRequest) ProtoReflect() protoreflect.Me // Deprecated: Use RemoveResourcePoliciesRegionDiskRequest.ProtoReflect.Descriptor instead. func (*RemoveResourcePoliciesRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1328} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1388} } func (x *RemoveResourcePoliciesRegionDiskRequest) GetDisk() string { @@ -162446,7 +168990,7 @@ type RemoveRuleFirewallPolicyRequest struct { func (x *RemoveRuleFirewallPolicyRequest) Reset() { *x = RemoveRuleFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1329] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1389] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162458,7 +169002,7 @@ func (x *RemoveRuleFirewallPolicyRequest) String() string { func (*RemoveRuleFirewallPolicyRequest) ProtoMessage() {} func (x *RemoveRuleFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1329] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1389] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162471,7 +169015,7 @@ func (x *RemoveRuleFirewallPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveRuleFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*RemoveRuleFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1329} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1389} } func (x *RemoveRuleFirewallPolicyRequest) GetFirewallPolicy() string { @@ -162524,7 +169068,7 @@ type RemoveRuleNetworkFirewallPolicyRequest struct { func (x *RemoveRuleNetworkFirewallPolicyRequest) Reset() { *x = RemoveRuleNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1330] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1390] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162536,7 +169080,7 @@ func (x *RemoveRuleNetworkFirewallPolicyRequest) String() string { func (*RemoveRuleNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *RemoveRuleNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1330] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1390] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162549,7 +169093,7 @@ func (x *RemoveRuleNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use RemoveRuleNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*RemoveRuleNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1330} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1390} } func (x *RemoveRuleNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -162607,7 +169151,7 @@ type RemoveRuleOrganizationSecurityPolicyRequest struct { func (x *RemoveRuleOrganizationSecurityPolicyRequest) Reset() { *x = RemoveRuleOrganizationSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1331] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1391] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162619,7 +169163,7 @@ func (x *RemoveRuleOrganizationSecurityPolicyRequest) String() string { func (*RemoveRuleOrganizationSecurityPolicyRequest) ProtoMessage() {} func (x *RemoveRuleOrganizationSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1331] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1391] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162632,7 +169176,7 @@ func (x *RemoveRuleOrganizationSecurityPolicyRequest) ProtoReflect() protoreflec // Deprecated: Use RemoveRuleOrganizationSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*RemoveRuleOrganizationSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1331} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1391} } func (x *RemoveRuleOrganizationSecurityPolicyRequest) GetPriority() int32 { @@ -162687,7 +169231,7 @@ type RemoveRuleRegionNetworkFirewallPolicyRequest struct { func (x *RemoveRuleRegionNetworkFirewallPolicyRequest) Reset() { *x = RemoveRuleRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1332] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1392] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162699,7 +169243,7 @@ func (x *RemoveRuleRegionNetworkFirewallPolicyRequest) String() string { func (*RemoveRuleRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *RemoveRuleRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1332] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1392] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162712,7 +169256,7 @@ func (x *RemoveRuleRegionNetworkFirewallPolicyRequest) ProtoReflect() protorefle // Deprecated: Use RemoveRuleRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*RemoveRuleRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1332} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1392} } func (x *RemoveRuleRegionNetworkFirewallPolicyRequest) GetFirewallPolicy() string { @@ -162767,7 +169311,7 @@ type RemoveRuleRegionSecurityPolicyRequest struct { func (x *RemoveRuleRegionSecurityPolicyRequest) Reset() { *x = RemoveRuleRegionSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1333] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1393] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162779,7 +169323,7 @@ func (x *RemoveRuleRegionSecurityPolicyRequest) String() string { func (*RemoveRuleRegionSecurityPolicyRequest) ProtoMessage() {} func (x *RemoveRuleRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1333] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1393] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162792,7 +169336,7 @@ func (x *RemoveRuleRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use RemoveRuleRegionSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*RemoveRuleRegionSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1333} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1393} } func (x *RemoveRuleRegionSecurityPolicyRequest) GetPriority() int32 { @@ -162838,7 +169382,7 @@ type RemoveRuleSecurityPolicyRequest struct { func (x *RemoveRuleSecurityPolicyRequest) Reset() { *x = RemoveRuleSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1334] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1394] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162850,7 +169394,7 @@ func (x *RemoveRuleSecurityPolicyRequest) String() string { func (*RemoveRuleSecurityPolicyRequest) ProtoMessage() {} func (x *RemoveRuleSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1334] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1394] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162863,7 +169407,7 @@ func (x *RemoveRuleSecurityPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveRuleSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*RemoveRuleSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1334} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1394} } func (x *RemoveRuleSecurityPolicyRequest) GetPriority() int32 { @@ -162922,7 +169466,7 @@ type ReportFaultyReservationSubBlockRequest struct { func (x *ReportFaultyReservationSubBlockRequest) Reset() { *x = ReportFaultyReservationSubBlockRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1335] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1395] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162934,7 +169478,7 @@ func (x *ReportFaultyReservationSubBlockRequest) String() string { func (*ReportFaultyReservationSubBlockRequest) ProtoMessage() {} func (x *ReportFaultyReservationSubBlockRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1335] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1395] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162947,7 +169491,7 @@ func (x *ReportFaultyReservationSubBlockRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use ReportFaultyReservationSubBlockRequest.ProtoReflect.Descriptor instead. func (*ReportFaultyReservationSubBlockRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1335} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1395} } func (x *ReportFaultyReservationSubBlockRequest) GetParentName() string { @@ -163023,7 +169567,7 @@ type ReportHostAsFaultyInstanceRequest struct { func (x *ReportHostAsFaultyInstanceRequest) Reset() { *x = ReportHostAsFaultyInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1336] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1396] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163035,7 +169579,7 @@ func (x *ReportHostAsFaultyInstanceRequest) String() string { func (*ReportHostAsFaultyInstanceRequest) ProtoMessage() {} func (x *ReportHostAsFaultyInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1336] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1396] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163048,7 +169592,7 @@ func (x *ReportHostAsFaultyInstanceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ReportHostAsFaultyInstanceRequest.ProtoReflect.Descriptor instead. func (*ReportHostAsFaultyInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1336} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1396} } func (x *ReportHostAsFaultyInstanceRequest) GetInstance() string { @@ -163110,7 +169654,7 @@ type RequestMirrorPolicy struct { func (x *RequestMirrorPolicy) Reset() { *x = RequestMirrorPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1337] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1397] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163122,7 +169666,7 @@ func (x *RequestMirrorPolicy) String() string { func (*RequestMirrorPolicy) ProtoMessage() {} func (x *RequestMirrorPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1337] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1397] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163135,7 +169679,7 @@ func (x *RequestMirrorPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use RequestMirrorPolicy.ProtoReflect.Descriptor instead. func (*RequestMirrorPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1337} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1397} } func (x *RequestMirrorPolicy) GetBackendService() string { @@ -163181,7 +169725,7 @@ type RequestRemovePeeringNetworkRequest struct { func (x *RequestRemovePeeringNetworkRequest) Reset() { *x = RequestRemovePeeringNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1338] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1398] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163193,7 +169737,7 @@ func (x *RequestRemovePeeringNetworkRequest) String() string { func (*RequestRemovePeeringNetworkRequest) ProtoMessage() {} func (x *RequestRemovePeeringNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1338] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1398] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163206,7 +169750,7 @@ func (x *RequestRemovePeeringNetworkRequest) ProtoReflect() protoreflect.Message // Deprecated: Use RequestRemovePeeringNetworkRequest.ProtoReflect.Descriptor instead. func (*RequestRemovePeeringNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1338} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1398} } func (x *RequestRemovePeeringNetworkRequest) GetNetwork() string { @@ -163251,6 +169795,8 @@ type Reservation struct { // Output only. [Output Only] Full or partial URL to a parent commitment. This field // displays for reservations that are tied to a commitment. Commitment *string `protobuf:"bytes,482134805,opt,name=commitment,proto3,oneof" json:"commitment,omitempty"` + // Check the ConfidentialComputeType enum for the list of possible values. + ConfidentialComputeType *string `protobuf:"bytes,386447257,opt,name=confidential_compute_type,json=confidentialComputeType,proto3,oneof" json:"confidential_compute_type,omitempty"` // Output only. [Output Only] Creation timestamp inRFC3339 // text format. CreationTimestamp *string `protobuf:"bytes,30525366,opt,name=creation_timestamp,json=creationTimestamp,proto3,oneof" json:"creation_timestamp,omitempty"` @@ -163347,7 +169893,7 @@ type Reservation struct { func (x *Reservation) Reset() { *x = Reservation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1339] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1399] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163359,7 +169905,7 @@ func (x *Reservation) String() string { func (*Reservation) ProtoMessage() {} func (x *Reservation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1339] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1399] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163372,7 +169918,7 @@ func (x *Reservation) ProtoReflect() protoreflect.Message { // Deprecated: Use Reservation.ProtoReflect.Descriptor instead. func (*Reservation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1339} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1399} } func (x *Reservation) GetAdvancedDeploymentControl() *ReservationAdvancedDeploymentControl { @@ -163396,6 +169942,13 @@ func (x *Reservation) GetCommitment() string { return "" } +func (x *Reservation) GetConfidentialComputeType() string { + if x != nil && x.ConfidentialComputeType != nil { + return *x.ConfidentialComputeType + } + return "" +} + func (x *Reservation) GetCreationTimestamp() string { if x != nil && x.CreationTimestamp != nil { return *x.CreationTimestamp @@ -163577,7 +170130,7 @@ type ReservationAdvancedDeploymentControl struct { func (x *ReservationAdvancedDeploymentControl) Reset() { *x = ReservationAdvancedDeploymentControl{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1340] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1400] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163589,7 +170142,7 @@ func (x *ReservationAdvancedDeploymentControl) String() string { func (*ReservationAdvancedDeploymentControl) ProtoMessage() {} func (x *ReservationAdvancedDeploymentControl) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1340] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1400] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163602,7 +170155,7 @@ func (x *ReservationAdvancedDeploymentControl) ProtoReflect() protoreflect.Messa // Deprecated: Use ReservationAdvancedDeploymentControl.ProtoReflect.Descriptor instead. func (*ReservationAdvancedDeploymentControl) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1340} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1400} } func (x *ReservationAdvancedDeploymentControl) GetReservationOperationalMode() string { @@ -163634,7 +170187,7 @@ type ReservationAffinity struct { func (x *ReservationAffinity) Reset() { *x = ReservationAffinity{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1341] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1401] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163646,7 +170199,7 @@ func (x *ReservationAffinity) String() string { func (*ReservationAffinity) ProtoMessage() {} func (x *ReservationAffinity) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1341] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1401] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163659,7 +170212,7 @@ func (x *ReservationAffinity) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationAffinity.ProtoReflect.Descriptor instead. func (*ReservationAffinity) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1341} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1401} } func (x *ReservationAffinity) GetConsumeReservationType() string { @@ -163710,7 +170263,7 @@ type ReservationAggregatedList struct { func (x *ReservationAggregatedList) Reset() { *x = ReservationAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1342] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1402] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163722,7 +170275,7 @@ func (x *ReservationAggregatedList) String() string { func (*ReservationAggregatedList) ProtoMessage() {} func (x *ReservationAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1342] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1402] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163735,7 +170288,7 @@ func (x *ReservationAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationAggregatedList.ProtoReflect.Descriptor instead. func (*ReservationAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1342} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1402} } func (x *ReservationAggregatedList) GetId() string { @@ -163838,7 +170391,7 @@ type ReservationBlock struct { func (x *ReservationBlock) Reset() { *x = ReservationBlock{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1343] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1403] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163850,7 +170403,7 @@ func (x *ReservationBlock) String() string { func (*ReservationBlock) ProtoMessage() {} func (x *ReservationBlock) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1343] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1403] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163863,7 +170416,7 @@ func (x *ReservationBlock) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationBlock.ProtoReflect.Descriptor instead. func (*ReservationBlock) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1343} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1403} } func (x *ReservationBlock) GetCount() int32 { @@ -163994,7 +170547,7 @@ type ReservationBlockHealthInfo struct { func (x *ReservationBlockHealthInfo) Reset() { *x = ReservationBlockHealthInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1344] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1404] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164006,7 +170559,7 @@ func (x *ReservationBlockHealthInfo) String() string { func (*ReservationBlockHealthInfo) ProtoMessage() {} func (x *ReservationBlockHealthInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1344] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1404] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164019,7 +170572,7 @@ func (x *ReservationBlockHealthInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationBlockHealthInfo.ProtoReflect.Descriptor instead. func (*ReservationBlockHealthInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1344} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1404} } func (x *ReservationBlockHealthInfo) GetDegradedSubBlockCount() int32 { @@ -164057,7 +170610,7 @@ type ReservationBlockPhysicalTopology struct { func (x *ReservationBlockPhysicalTopology) Reset() { *x = ReservationBlockPhysicalTopology{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1345] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1405] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164069,7 +170622,7 @@ func (x *ReservationBlockPhysicalTopology) String() string { func (*ReservationBlockPhysicalTopology) ProtoMessage() {} func (x *ReservationBlockPhysicalTopology) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1345] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1405] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164082,7 +170635,7 @@ func (x *ReservationBlockPhysicalTopology) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationBlockPhysicalTopology.ProtoReflect.Descriptor instead. func (*ReservationBlockPhysicalTopology) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1345} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1405} } func (x *ReservationBlockPhysicalTopology) GetBlock() string { @@ -164121,7 +170674,7 @@ type ReservationBlockPhysicalTopologyInstance struct { func (x *ReservationBlockPhysicalTopologyInstance) Reset() { *x = ReservationBlockPhysicalTopologyInstance{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1346] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1406] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164133,7 +170686,7 @@ func (x *ReservationBlockPhysicalTopologyInstance) String() string { func (*ReservationBlockPhysicalTopologyInstance) ProtoMessage() {} func (x *ReservationBlockPhysicalTopologyInstance) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1346] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1406] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164146,7 +170699,7 @@ func (x *ReservationBlockPhysicalTopologyInstance) ProtoReflect() protoreflect.M // Deprecated: Use ReservationBlockPhysicalTopologyInstance.ProtoReflect.Descriptor instead. func (*ReservationBlockPhysicalTopologyInstance) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1346} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1406} } func (x *ReservationBlockPhysicalTopologyInstance) GetInstanceId() uint64 { @@ -164183,7 +170736,7 @@ type ReservationBlockPhysicalTopologyInstancePhysicalHostTopology struct { func (x *ReservationBlockPhysicalTopologyInstancePhysicalHostTopology) Reset() { *x = ReservationBlockPhysicalTopologyInstancePhysicalHostTopology{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1347] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1407] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164195,7 +170748,7 @@ func (x *ReservationBlockPhysicalTopologyInstancePhysicalHostTopology) String() func (*ReservationBlockPhysicalTopologyInstancePhysicalHostTopology) ProtoMessage() {} func (x *ReservationBlockPhysicalTopologyInstancePhysicalHostTopology) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1347] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1407] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164208,7 +170761,7 @@ func (x *ReservationBlockPhysicalTopologyInstancePhysicalHostTopology) ProtoRefl // Deprecated: Use ReservationBlockPhysicalTopologyInstancePhysicalHostTopology.ProtoReflect.Descriptor instead. func (*ReservationBlockPhysicalTopologyInstancePhysicalHostTopology) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1347} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1407} } func (x *ReservationBlockPhysicalTopologyInstancePhysicalHostTopology) GetHost() string { @@ -164234,7 +170787,7 @@ type ReservationBlocksGetResponse struct { func (x *ReservationBlocksGetResponse) Reset() { *x = ReservationBlocksGetResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1348] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1408] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164246,7 +170799,7 @@ func (x *ReservationBlocksGetResponse) String() string { func (*ReservationBlocksGetResponse) ProtoMessage() {} func (x *ReservationBlocksGetResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1348] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1408] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164259,7 +170812,7 @@ func (x *ReservationBlocksGetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationBlocksGetResponse.ProtoReflect.Descriptor instead. func (*ReservationBlocksGetResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1348} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1408} } func (x *ReservationBlocksGetResponse) GetResource() *ReservationBlock { @@ -164294,7 +170847,7 @@ type ReservationBlocksListResponse struct { func (x *ReservationBlocksListResponse) Reset() { *x = ReservationBlocksListResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1349] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1409] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164306,7 +170859,7 @@ func (x *ReservationBlocksListResponse) String() string { func (*ReservationBlocksListResponse) ProtoMessage() {} func (x *ReservationBlocksListResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1349] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1409] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164319,7 +170872,7 @@ func (x *ReservationBlocksListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationBlocksListResponse.ProtoReflect.Descriptor instead. func (*ReservationBlocksListResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1349} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1409} } func (x *ReservationBlocksListResponse) GetId() string { @@ -164390,7 +170943,7 @@ type ReservationList struct { func (x *ReservationList) Reset() { *x = ReservationList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1350] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1410] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164402,7 +170955,7 @@ func (x *ReservationList) String() string { func (*ReservationList) ProtoMessage() {} func (x *ReservationList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1350] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1410] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164415,7 +170968,7 @@ func (x *ReservationList) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationList.ProtoReflect.Descriptor instead. func (*ReservationList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1350} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1410} } func (x *ReservationList) GetId() string { @@ -164477,7 +171030,7 @@ type ReservationParams struct { func (x *ReservationParams) Reset() { *x = ReservationParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1351] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1411] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164489,7 +171042,7 @@ func (x *ReservationParams) String() string { func (*ReservationParams) ProtoMessage() {} func (x *ReservationParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1351] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1411] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164502,7 +171055,7 @@ func (x *ReservationParams) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationParams.ProtoReflect.Descriptor instead. func (*ReservationParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1351} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1411} } func (x *ReservationParams) GetResourceManagerTags() map[string]string { @@ -164546,7 +171099,7 @@ type ReservationSlot struct { func (x *ReservationSlot) Reset() { *x = ReservationSlot{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1352] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1412] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164558,7 +171111,7 @@ func (x *ReservationSlot) String() string { func (*ReservationSlot) ProtoMessage() {} func (x *ReservationSlot) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1352] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1412] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164571,7 +171124,7 @@ func (x *ReservationSlot) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationSlot.ProtoReflect.Descriptor instead. func (*ReservationSlot) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1352} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1412} } func (x *ReservationSlot) GetCreationTimestamp() string { @@ -164668,7 +171221,7 @@ type ReservationSlotPhysicalTopology struct { func (x *ReservationSlotPhysicalTopology) Reset() { *x = ReservationSlotPhysicalTopology{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1353] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1413] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164680,7 +171233,7 @@ func (x *ReservationSlotPhysicalTopology) String() string { func (*ReservationSlotPhysicalTopology) ProtoMessage() {} func (x *ReservationSlotPhysicalTopology) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1353] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1413] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164693,7 +171246,7 @@ func (x *ReservationSlotPhysicalTopology) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationSlotPhysicalTopology.ProtoReflect.Descriptor instead. func (*ReservationSlotPhysicalTopology) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1353} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1413} } func (x *ReservationSlotPhysicalTopology) GetBlock() string { @@ -164738,7 +171291,7 @@ type ReservationSlotStatus struct { func (x *ReservationSlotStatus) Reset() { *x = ReservationSlotStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1354] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1414] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164750,7 +171303,7 @@ func (x *ReservationSlotStatus) String() string { func (*ReservationSlotStatus) ProtoMessage() {} func (x *ReservationSlotStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1354] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1414] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164763,7 +171316,7 @@ func (x *ReservationSlotStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationSlotStatus.ProtoReflect.Descriptor instead. func (*ReservationSlotStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1354} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1414} } func (x *ReservationSlotStatus) GetPhysicalTopology() *ReservationSlotPhysicalTopology { @@ -164796,7 +171349,7 @@ type ReservationSlotsGetResponse struct { func (x *ReservationSlotsGetResponse) Reset() { *x = ReservationSlotsGetResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1355] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1415] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164808,7 +171361,7 @@ func (x *ReservationSlotsGetResponse) String() string { func (*ReservationSlotsGetResponse) ProtoMessage() {} func (x *ReservationSlotsGetResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1355] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1415] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164821,7 +171374,7 @@ func (x *ReservationSlotsGetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationSlotsGetResponse.ProtoReflect.Descriptor instead. func (*ReservationSlotsGetResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1355} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1415} } func (x *ReservationSlotsGetResponse) GetResource() *ReservationSlot { @@ -164842,7 +171395,7 @@ type ReservationSlotsGetVersionRequest struct { func (x *ReservationSlotsGetVersionRequest) Reset() { *x = ReservationSlotsGetVersionRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1356] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1416] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164854,7 +171407,7 @@ func (x *ReservationSlotsGetVersionRequest) String() string { func (*ReservationSlotsGetVersionRequest) ProtoMessage() {} func (x *ReservationSlotsGetVersionRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1356] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1416] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164867,7 +171420,7 @@ func (x *ReservationSlotsGetVersionRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ReservationSlotsGetVersionRequest.ProtoReflect.Descriptor instead. func (*ReservationSlotsGetVersionRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1356} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1416} } func (x *ReservationSlotsGetVersionRequest) GetSbomSelections() []string { @@ -164903,7 +171456,7 @@ type ReservationSlotsListResponse struct { func (x *ReservationSlotsListResponse) Reset() { *x = ReservationSlotsListResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1357] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1417] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164915,7 +171468,7 @@ func (x *ReservationSlotsListResponse) String() string { func (*ReservationSlotsListResponse) ProtoMessage() {} func (x *ReservationSlotsListResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1357] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1417] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164928,7 +171481,7 @@ func (x *ReservationSlotsListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationSlotsListResponse.ProtoReflect.Descriptor instead. func (*ReservationSlotsListResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1357} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1417} } func (x *ReservationSlotsListResponse) GetId() string { @@ -165019,7 +171572,7 @@ type ReservationSubBlock struct { func (x *ReservationSubBlock) Reset() { *x = ReservationSubBlock{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1358] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1418] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165031,7 +171584,7 @@ func (x *ReservationSubBlock) String() string { func (*ReservationSubBlock) ProtoMessage() {} func (x *ReservationSubBlock) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1358] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1418] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165044,7 +171597,7 @@ func (x *ReservationSubBlock) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationSubBlock.ProtoReflect.Descriptor instead. func (*ReservationSubBlock) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1358} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1418} } func (x *ReservationSubBlock) GetAcceleratorTopologiesInfo() *AcceleratorTopologiesInfo { @@ -165174,7 +171727,7 @@ type ReservationSubBlockHealthInfo struct { func (x *ReservationSubBlockHealthInfo) Reset() { *x = ReservationSubBlockHealthInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1359] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1419] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165186,7 +171739,7 @@ func (x *ReservationSubBlockHealthInfo) String() string { func (*ReservationSubBlockHealthInfo) ProtoMessage() {} func (x *ReservationSubBlockHealthInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1359] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1419] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165199,7 +171752,7 @@ func (x *ReservationSubBlockHealthInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationSubBlockHealthInfo.ProtoReflect.Descriptor instead. func (*ReservationSubBlockHealthInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1359} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1419} } func (x *ReservationSubBlockHealthInfo) GetDegradedHostCount() int32 { @@ -165251,7 +171804,7 @@ type ReservationSubBlockPhysicalTopology struct { func (x *ReservationSubBlockPhysicalTopology) Reset() { *x = ReservationSubBlockPhysicalTopology{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1360] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1420] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165263,7 +171816,7 @@ func (x *ReservationSubBlockPhysicalTopology) String() string { func (*ReservationSubBlockPhysicalTopology) ProtoMessage() {} func (x *ReservationSubBlockPhysicalTopology) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1360] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1420] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165276,7 +171829,7 @@ func (x *ReservationSubBlockPhysicalTopology) ProtoReflect() protoreflect.Messag // Deprecated: Use ReservationSubBlockPhysicalTopology.ProtoReflect.Descriptor instead. func (*ReservationSubBlockPhysicalTopology) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1360} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1420} } func (x *ReservationSubBlockPhysicalTopology) GetBlock() string { @@ -165309,7 +171862,7 @@ type ReservationSubBlocksGetResponse struct { func (x *ReservationSubBlocksGetResponse) Reset() { *x = ReservationSubBlocksGetResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1361] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1421] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165321,7 +171874,7 @@ func (x *ReservationSubBlocksGetResponse) String() string { func (*ReservationSubBlocksGetResponse) ProtoMessage() {} func (x *ReservationSubBlocksGetResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1361] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1421] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165334,7 +171887,7 @@ func (x *ReservationSubBlocksGetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationSubBlocksGetResponse.ProtoReflect.Descriptor instead. func (*ReservationSubBlocksGetResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1361} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1421} } func (x *ReservationSubBlocksGetResponse) GetResource() *ReservationSubBlock { @@ -165355,7 +171908,7 @@ type ReservationSubBlocksGetVersionRequest struct { func (x *ReservationSubBlocksGetVersionRequest) Reset() { *x = ReservationSubBlocksGetVersionRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1362] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1422] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165367,7 +171920,7 @@ func (x *ReservationSubBlocksGetVersionRequest) String() string { func (*ReservationSubBlocksGetVersionRequest) ProtoMessage() {} func (x *ReservationSubBlocksGetVersionRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1362] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1422] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165380,7 +171933,7 @@ func (x *ReservationSubBlocksGetVersionRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use ReservationSubBlocksGetVersionRequest.ProtoReflect.Descriptor instead. func (*ReservationSubBlocksGetVersionRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1362} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1422} } func (x *ReservationSubBlocksGetVersionRequest) GetSbomSelections() []string { @@ -165416,7 +171969,7 @@ type ReservationSubBlocksListResponse struct { func (x *ReservationSubBlocksListResponse) Reset() { *x = ReservationSubBlocksListResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1363] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1423] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165428,7 +171981,7 @@ func (x *ReservationSubBlocksListResponse) String() string { func (*ReservationSubBlocksListResponse) ProtoMessage() {} func (x *ReservationSubBlocksListResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1363] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1423] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165441,7 +171994,7 @@ func (x *ReservationSubBlocksListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationSubBlocksListResponse.ProtoReflect.Descriptor instead. func (*ReservationSubBlocksListResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1363} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1423} } func (x *ReservationSubBlocksListResponse) GetId() string { @@ -165502,7 +172055,7 @@ type ReservationSubBlocksReportFaultyRequest struct { func (x *ReservationSubBlocksReportFaultyRequest) Reset() { *x = ReservationSubBlocksReportFaultyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1364] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1424] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165514,7 +172067,7 @@ func (x *ReservationSubBlocksReportFaultyRequest) String() string { func (*ReservationSubBlocksReportFaultyRequest) ProtoMessage() {} func (x *ReservationSubBlocksReportFaultyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1364] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1424] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165527,7 +172080,7 @@ func (x *ReservationSubBlocksReportFaultyRequest) ProtoReflect() protoreflect.Me // Deprecated: Use ReservationSubBlocksReportFaultyRequest.ProtoReflect.Descriptor instead. func (*ReservationSubBlocksReportFaultyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1364} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1424} } func (x *ReservationSubBlocksReportFaultyRequest) GetDisruptionSchedule() string { @@ -165565,7 +172118,7 @@ type ReservationSubBlocksReportFaultyRequestFaultReason struct { func (x *ReservationSubBlocksReportFaultyRequestFaultReason) Reset() { *x = ReservationSubBlocksReportFaultyRequestFaultReason{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1365] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1425] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165577,7 +172130,7 @@ func (x *ReservationSubBlocksReportFaultyRequestFaultReason) String() string { func (*ReservationSubBlocksReportFaultyRequestFaultReason) ProtoMessage() {} func (x *ReservationSubBlocksReportFaultyRequestFaultReason) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1365] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1425] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165590,7 +172143,7 @@ func (x *ReservationSubBlocksReportFaultyRequestFaultReason) ProtoReflect() prot // Deprecated: Use ReservationSubBlocksReportFaultyRequestFaultReason.ProtoReflect.Descriptor instead. func (*ReservationSubBlocksReportFaultyRequestFaultReason) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1365} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1425} } func (x *ReservationSubBlocksReportFaultyRequestFaultReason) GetBehavior() string { @@ -165618,7 +172171,7 @@ type ReservationsBlocksPerformMaintenanceRequest struct { func (x *ReservationsBlocksPerformMaintenanceRequest) Reset() { *x = ReservationsBlocksPerformMaintenanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1366] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1426] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165630,7 +172183,7 @@ func (x *ReservationsBlocksPerformMaintenanceRequest) String() string { func (*ReservationsBlocksPerformMaintenanceRequest) ProtoMessage() {} func (x *ReservationsBlocksPerformMaintenanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1366] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1426] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165643,7 +172196,7 @@ func (x *ReservationsBlocksPerformMaintenanceRequest) ProtoReflect() protoreflec // Deprecated: Use ReservationsBlocksPerformMaintenanceRequest.ProtoReflect.Descriptor instead. func (*ReservationsBlocksPerformMaintenanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1366} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1426} } func (x *ReservationsBlocksPerformMaintenanceRequest) GetMaintenanceScope() string { @@ -165664,7 +172217,7 @@ type ReservationsPerformMaintenanceRequest struct { func (x *ReservationsPerformMaintenanceRequest) Reset() { *x = ReservationsPerformMaintenanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1367] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1427] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165676,7 +172229,7 @@ func (x *ReservationsPerformMaintenanceRequest) String() string { func (*ReservationsPerformMaintenanceRequest) ProtoMessage() {} func (x *ReservationsPerformMaintenanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1367] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1427] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165689,7 +172242,7 @@ func (x *ReservationsPerformMaintenanceRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use ReservationsPerformMaintenanceRequest.ProtoReflect.Descriptor instead. func (*ReservationsPerformMaintenanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1367} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1427} } func (x *ReservationsPerformMaintenanceRequest) GetMaintenanceScope() string { @@ -165710,7 +172263,7 @@ type ReservationsResizeRequest struct { func (x *ReservationsResizeRequest) Reset() { *x = ReservationsResizeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1368] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1428] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165722,7 +172275,7 @@ func (x *ReservationsResizeRequest) String() string { func (*ReservationsResizeRequest) ProtoMessage() {} func (x *ReservationsResizeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1368] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1428] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165735,7 +172288,7 @@ func (x *ReservationsResizeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationsResizeRequest.ProtoReflect.Descriptor instead. func (*ReservationsResizeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1368} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1428} } func (x *ReservationsResizeRequest) GetSpecificSkuCount() int64 { @@ -165758,7 +172311,7 @@ type ReservationsScopedList struct { func (x *ReservationsScopedList) Reset() { *x = ReservationsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1369] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1429] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165770,7 +172323,7 @@ func (x *ReservationsScopedList) String() string { func (*ReservationsScopedList) ProtoMessage() {} func (x *ReservationsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1369] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1429] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165783,7 +172336,7 @@ func (x *ReservationsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use ReservationsScopedList.ProtoReflect.Descriptor instead. func (*ReservationsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1369} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1429} } func (x *ReservationsScopedList) GetReservations() []*Reservation { @@ -165829,7 +172382,7 @@ type ResetInstanceRequest struct { func (x *ResetInstanceRequest) Reset() { *x = ResetInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1370] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1430] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165841,7 +172394,7 @@ func (x *ResetInstanceRequest) String() string { func (*ResetInstanceRequest) ProtoMessage() {} func (x *ResetInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1370] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1430] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165854,7 +172407,7 @@ func (x *ResetInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ResetInstanceRequest.ProtoReflect.Descriptor instead. func (*ResetInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1370} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1430} } func (x *ResetInstanceRequest) GetInstance() string { @@ -165916,7 +172469,7 @@ type ResizeDiskRequest struct { func (x *ResizeDiskRequest) Reset() { *x = ResizeDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1371] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1431] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165928,7 +172481,7 @@ func (x *ResizeDiskRequest) String() string { func (*ResizeDiskRequest) ProtoMessage() {} func (x *ResizeDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1371] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1431] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165941,7 +172494,7 @@ func (x *ResizeDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ResizeDiskRequest.ProtoReflect.Descriptor instead. func (*ResizeDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1371} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1431} } func (x *ResizeDiskRequest) GetDisk() string { @@ -166013,7 +172566,7 @@ type ResizeInstanceGroupManagerRequest struct { func (x *ResizeInstanceGroupManagerRequest) Reset() { *x = ResizeInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1372] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1432] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166025,7 +172578,7 @@ func (x *ResizeInstanceGroupManagerRequest) String() string { func (*ResizeInstanceGroupManagerRequest) ProtoMessage() {} func (x *ResizeInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1372] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1432] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166038,7 +172591,7 @@ func (x *ResizeInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ResizeInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*ResizeInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1372} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1432} } func (x *ResizeInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -166107,7 +172660,7 @@ type ResizeRegionDiskRequest struct { func (x *ResizeRegionDiskRequest) Reset() { *x = ResizeRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1373] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1433] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166119,7 +172672,7 @@ func (x *ResizeRegionDiskRequest) String() string { func (*ResizeRegionDiskRequest) ProtoMessage() {} func (x *ResizeRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1373] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1433] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166132,7 +172685,7 @@ func (x *ResizeRegionDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ResizeRegionDiskRequest.ProtoReflect.Descriptor instead. func (*ResizeRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1373} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1433} } func (x *ResizeRegionDiskRequest) GetDisk() string { @@ -166202,7 +172755,7 @@ type ResizeRegionInstanceGroupManagerRequest struct { func (x *ResizeRegionInstanceGroupManagerRequest) Reset() { *x = ResizeRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1374] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1434] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166214,7 +172767,7 @@ func (x *ResizeRegionInstanceGroupManagerRequest) String() string { func (*ResizeRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *ResizeRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1374] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1434] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166227,7 +172780,7 @@ func (x *ResizeRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Me // Deprecated: Use ResizeRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*ResizeRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1374} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1434} } func (x *ResizeRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -166296,7 +172849,7 @@ type ResizeReservationRequest struct { func (x *ResizeReservationRequest) Reset() { *x = ResizeReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1375] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1435] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166308,7 +172861,7 @@ func (x *ResizeReservationRequest) String() string { func (*ResizeReservationRequest) ProtoMessage() {} func (x *ResizeReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1375] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1435] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166321,7 +172874,7 @@ func (x *ResizeReservationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ResizeReservationRequest.ProtoReflect.Descriptor instead. func (*ResizeReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1375} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1435} } func (x *ResizeReservationRequest) GetProject() string { @@ -166395,7 +172948,7 @@ type ResourceCommitment struct { func (x *ResourceCommitment) Reset() { *x = ResourceCommitment{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1376] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1436] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166407,7 +172960,7 @@ func (x *ResourceCommitment) String() string { func (*ResourceCommitment) ProtoMessage() {} func (x *ResourceCommitment) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1376] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1436] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166420,7 +172973,7 @@ func (x *ResourceCommitment) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourceCommitment.ProtoReflect.Descriptor instead. func (*ResourceCommitment) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1376} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1436} } func (x *ResourceCommitment) GetAcceleratorType() string { @@ -166455,7 +173008,7 @@ type ResourceGroupReference struct { func (x *ResourceGroupReference) Reset() { *x = ResourceGroupReference{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1377] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1437] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166467,7 +173020,7 @@ func (x *ResourceGroupReference) String() string { func (*ResourceGroupReference) ProtoMessage() {} func (x *ResourceGroupReference) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1377] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1437] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166480,7 +173033,7 @@ func (x *ResourceGroupReference) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourceGroupReference.ProtoReflect.Descriptor instead. func (*ResourceGroupReference) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1377} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1437} } func (x *ResourceGroupReference) GetGroup() string { @@ -166503,7 +173056,7 @@ type ResourcePoliciesScopedList struct { func (x *ResourcePoliciesScopedList) Reset() { *x = ResourcePoliciesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1378] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1438] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166515,7 +173068,7 @@ func (x *ResourcePoliciesScopedList) String() string { func (*ResourcePoliciesScopedList) ProtoMessage() {} func (x *ResourcePoliciesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1378] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1438] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166528,7 +173081,7 @@ func (x *ResourcePoliciesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePoliciesScopedList.ProtoReflect.Descriptor instead. func (*ResourcePoliciesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1378} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1438} } func (x *ResourcePoliciesScopedList) GetResourcePolicies() []*ResourcePolicy { @@ -166593,7 +173146,7 @@ type ResourcePolicy struct { func (x *ResourcePolicy) Reset() { *x = ResourcePolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1379] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1439] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166605,7 +173158,7 @@ func (x *ResourcePolicy) String() string { func (*ResourcePolicy) ProtoMessage() {} func (x *ResourcePolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1379] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1439] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166618,7 +173171,7 @@ func (x *ResourcePolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePolicy.ProtoReflect.Descriptor instead. func (*ResourcePolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1379} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1439} } func (x *ResourcePolicy) GetCreationTimestamp() string { @@ -166747,7 +173300,7 @@ type ResourcePolicyAggregatedList struct { func (x *ResourcePolicyAggregatedList) Reset() { *x = ResourcePolicyAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1380] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1440] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166759,7 +173312,7 @@ func (x *ResourcePolicyAggregatedList) String() string { func (*ResourcePolicyAggregatedList) ProtoMessage() {} func (x *ResourcePolicyAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1380] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1440] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166772,7 +173325,7 @@ func (x *ResourcePolicyAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePolicyAggregatedList.ProtoReflect.Descriptor instead. func (*ResourcePolicyAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1380} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1440} } func (x *ResourcePolicyAggregatedList) GetEtag() string { @@ -166850,7 +173403,7 @@ type ResourcePolicyDailyCycle struct { func (x *ResourcePolicyDailyCycle) Reset() { *x = ResourcePolicyDailyCycle{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1381] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1441] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166862,7 +173415,7 @@ func (x *ResourcePolicyDailyCycle) String() string { func (*ResourcePolicyDailyCycle) ProtoMessage() {} func (x *ResourcePolicyDailyCycle) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1381] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1441] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166875,7 +173428,7 @@ func (x *ResourcePolicyDailyCycle) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePolicyDailyCycle.ProtoReflect.Descriptor instead. func (*ResourcePolicyDailyCycle) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1381} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1441} } func (x *ResourcePolicyDailyCycle) GetDaysInCycle() int32 { @@ -166908,7 +173461,7 @@ type ResourcePolicyDiskConsistencyGroupPolicy struct { func (x *ResourcePolicyDiskConsistencyGroupPolicy) Reset() { *x = ResourcePolicyDiskConsistencyGroupPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1382] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1442] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166920,7 +173473,7 @@ func (x *ResourcePolicyDiskConsistencyGroupPolicy) String() string { func (*ResourcePolicyDiskConsistencyGroupPolicy) ProtoMessage() {} func (x *ResourcePolicyDiskConsistencyGroupPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1382] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1442] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166933,7 +173486,7 @@ func (x *ResourcePolicyDiskConsistencyGroupPolicy) ProtoReflect() protoreflect.M // Deprecated: Use ResourcePolicyDiskConsistencyGroupPolicy.ProtoReflect.Descriptor instead. func (*ResourcePolicyDiskConsistencyGroupPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1382} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1442} } // A GroupPlacementPolicy specifies resource placement configuration. @@ -166964,7 +173517,7 @@ type ResourcePolicyGroupPlacementPolicy struct { func (x *ResourcePolicyGroupPlacementPolicy) Reset() { *x = ResourcePolicyGroupPlacementPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1383] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1443] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166976,7 +173529,7 @@ func (x *ResourcePolicyGroupPlacementPolicy) String() string { func (*ResourcePolicyGroupPlacementPolicy) ProtoMessage() {} func (x *ResourcePolicyGroupPlacementPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1383] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1443] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166989,7 +173542,7 @@ func (x *ResourcePolicyGroupPlacementPolicy) ProtoReflect() protoreflect.Message // Deprecated: Use ResourcePolicyGroupPlacementPolicy.ProtoReflect.Descriptor instead. func (*ResourcePolicyGroupPlacementPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1383} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1443} } func (x *ResourcePolicyGroupPlacementPolicy) GetAcceleratorTopologyMode() string { @@ -167045,7 +173598,7 @@ type ResourcePolicyHourlyCycle struct { func (x *ResourcePolicyHourlyCycle) Reset() { *x = ResourcePolicyHourlyCycle{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1384] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1444] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167057,7 +173610,7 @@ func (x *ResourcePolicyHourlyCycle) String() string { func (*ResourcePolicyHourlyCycle) ProtoMessage() {} func (x *ResourcePolicyHourlyCycle) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1384] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1444] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167070,7 +173623,7 @@ func (x *ResourcePolicyHourlyCycle) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePolicyHourlyCycle.ProtoReflect.Descriptor instead. func (*ResourcePolicyHourlyCycle) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1384} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1444} } func (x *ResourcePolicyHourlyCycle) GetDuration() string { @@ -167116,7 +173669,7 @@ type ResourcePolicyInstanceSchedulePolicy struct { func (x *ResourcePolicyInstanceSchedulePolicy) Reset() { *x = ResourcePolicyInstanceSchedulePolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1385] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1445] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167128,7 +173681,7 @@ func (x *ResourcePolicyInstanceSchedulePolicy) String() string { func (*ResourcePolicyInstanceSchedulePolicy) ProtoMessage() {} func (x *ResourcePolicyInstanceSchedulePolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1385] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1445] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167141,7 +173694,7 @@ func (x *ResourcePolicyInstanceSchedulePolicy) ProtoReflect() protoreflect.Messa // Deprecated: Use ResourcePolicyInstanceSchedulePolicy.ProtoReflect.Descriptor instead. func (*ResourcePolicyInstanceSchedulePolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1385} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1445} } func (x *ResourcePolicyInstanceSchedulePolicy) GetExpirationTime() string { @@ -167190,7 +173743,7 @@ type ResourcePolicyInstanceSchedulePolicySchedule struct { func (x *ResourcePolicyInstanceSchedulePolicySchedule) Reset() { *x = ResourcePolicyInstanceSchedulePolicySchedule{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1386] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1446] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167202,7 +173755,7 @@ func (x *ResourcePolicyInstanceSchedulePolicySchedule) String() string { func (*ResourcePolicyInstanceSchedulePolicySchedule) ProtoMessage() {} func (x *ResourcePolicyInstanceSchedulePolicySchedule) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1386] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1446] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167215,7 +173768,7 @@ func (x *ResourcePolicyInstanceSchedulePolicySchedule) ProtoReflect() protorefle // Deprecated: Use ResourcePolicyInstanceSchedulePolicySchedule.ProtoReflect.Descriptor instead. func (*ResourcePolicyInstanceSchedulePolicySchedule) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1386} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1446} } func (x *ResourcePolicyInstanceSchedulePolicySchedule) GetSchedule() string { @@ -167251,7 +173804,7 @@ type ResourcePolicyList struct { func (x *ResourcePolicyList) Reset() { *x = ResourcePolicyList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1387] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1447] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167263,7 +173816,7 @@ func (x *ResourcePolicyList) String() string { func (*ResourcePolicyList) ProtoMessage() {} func (x *ResourcePolicyList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1387] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1447] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167276,7 +173829,7 @@ func (x *ResourcePolicyList) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePolicyList.ProtoReflect.Descriptor instead. func (*ResourcePolicyList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1387} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1447} } func (x *ResourcePolicyList) GetEtag() string { @@ -167344,7 +173897,7 @@ type ResourcePolicyResourceStatus struct { func (x *ResourcePolicyResourceStatus) Reset() { *x = ResourcePolicyResourceStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1388] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1448] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167356,7 +173909,7 @@ func (x *ResourcePolicyResourceStatus) String() string { func (*ResourcePolicyResourceStatus) ProtoMessage() {} func (x *ResourcePolicyResourceStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1388] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1448] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167369,7 +173922,7 @@ func (x *ResourcePolicyResourceStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePolicyResourceStatus.ProtoReflect.Descriptor instead. func (*ResourcePolicyResourceStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1388} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1448} } func (x *ResourcePolicyResourceStatus) GetInstanceSchedulePolicy() *ResourcePolicyResourceStatusInstanceSchedulePolicyStatus { @@ -167394,7 +173947,7 @@ type ResourcePolicyResourceStatusInstanceSchedulePolicyStatus struct { func (x *ResourcePolicyResourceStatusInstanceSchedulePolicyStatus) Reset() { *x = ResourcePolicyResourceStatusInstanceSchedulePolicyStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1389] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1449] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167406,7 +173959,7 @@ func (x *ResourcePolicyResourceStatusInstanceSchedulePolicyStatus) String() stri func (*ResourcePolicyResourceStatusInstanceSchedulePolicyStatus) ProtoMessage() {} func (x *ResourcePolicyResourceStatusInstanceSchedulePolicyStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1389] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1449] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167419,7 +173972,7 @@ func (x *ResourcePolicyResourceStatusInstanceSchedulePolicyStatus) ProtoReflect( // Deprecated: Use ResourcePolicyResourceStatusInstanceSchedulePolicyStatus.ProtoReflect.Descriptor instead. func (*ResourcePolicyResourceStatusInstanceSchedulePolicyStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1389} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1449} } func (x *ResourcePolicyResourceStatusInstanceSchedulePolicyStatus) GetLastRunStartTime() string { @@ -167456,7 +174009,7 @@ type ResourcePolicySnapshotSchedulePolicy struct { func (x *ResourcePolicySnapshotSchedulePolicy) Reset() { *x = ResourcePolicySnapshotSchedulePolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1390] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1450] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167468,7 +174021,7 @@ func (x *ResourcePolicySnapshotSchedulePolicy) String() string { func (*ResourcePolicySnapshotSchedulePolicy) ProtoMessage() {} func (x *ResourcePolicySnapshotSchedulePolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1390] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1450] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167481,7 +174034,7 @@ func (x *ResourcePolicySnapshotSchedulePolicy) ProtoReflect() protoreflect.Messa // Deprecated: Use ResourcePolicySnapshotSchedulePolicy.ProtoReflect.Descriptor instead. func (*ResourcePolicySnapshotSchedulePolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1390} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1450} } func (x *ResourcePolicySnapshotSchedulePolicy) GetRetentionPolicy() *ResourcePolicySnapshotSchedulePolicyRetentionPolicy { @@ -167520,7 +174073,7 @@ type ResourcePolicySnapshotSchedulePolicyRetentionPolicy struct { func (x *ResourcePolicySnapshotSchedulePolicyRetentionPolicy) Reset() { *x = ResourcePolicySnapshotSchedulePolicyRetentionPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1391] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1451] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167532,7 +174085,7 @@ func (x *ResourcePolicySnapshotSchedulePolicyRetentionPolicy) String() string { func (*ResourcePolicySnapshotSchedulePolicyRetentionPolicy) ProtoMessage() {} func (x *ResourcePolicySnapshotSchedulePolicyRetentionPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1391] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1451] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167545,7 +174098,7 @@ func (x *ResourcePolicySnapshotSchedulePolicyRetentionPolicy) ProtoReflect() pro // Deprecated: Use ResourcePolicySnapshotSchedulePolicyRetentionPolicy.ProtoReflect.Descriptor instead. func (*ResourcePolicySnapshotSchedulePolicyRetentionPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1391} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1451} } func (x *ResourcePolicySnapshotSchedulePolicyRetentionPolicy) GetMaxRetentionDays() int32 { @@ -167574,7 +174127,7 @@ type ResourcePolicySnapshotSchedulePolicySchedule struct { func (x *ResourcePolicySnapshotSchedulePolicySchedule) Reset() { *x = ResourcePolicySnapshotSchedulePolicySchedule{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1392] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1452] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167586,7 +174139,7 @@ func (x *ResourcePolicySnapshotSchedulePolicySchedule) String() string { func (*ResourcePolicySnapshotSchedulePolicySchedule) ProtoMessage() {} func (x *ResourcePolicySnapshotSchedulePolicySchedule) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1392] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1452] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167599,7 +174152,7 @@ func (x *ResourcePolicySnapshotSchedulePolicySchedule) ProtoReflect() protorefle // Deprecated: Use ResourcePolicySnapshotSchedulePolicySchedule.ProtoReflect.Descriptor instead. func (*ResourcePolicySnapshotSchedulePolicySchedule) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1392} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1452} } func (x *ResourcePolicySnapshotSchedulePolicySchedule) GetDailySchedule() *ResourcePolicyDailyCycle { @@ -167643,7 +174196,7 @@ type ResourcePolicySnapshotSchedulePolicySnapshotProperties struct { func (x *ResourcePolicySnapshotSchedulePolicySnapshotProperties) Reset() { *x = ResourcePolicySnapshotSchedulePolicySnapshotProperties{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1393] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1453] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167655,7 +174208,7 @@ func (x *ResourcePolicySnapshotSchedulePolicySnapshotProperties) String() string func (*ResourcePolicySnapshotSchedulePolicySnapshotProperties) ProtoMessage() {} func (x *ResourcePolicySnapshotSchedulePolicySnapshotProperties) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1393] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1453] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167668,7 +174221,7 @@ func (x *ResourcePolicySnapshotSchedulePolicySnapshotProperties) ProtoReflect() // Deprecated: Use ResourcePolicySnapshotSchedulePolicySnapshotProperties.ProtoReflect.Descriptor instead. func (*ResourcePolicySnapshotSchedulePolicySnapshotProperties) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1393} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1453} } func (x *ResourcePolicySnapshotSchedulePolicySnapshotProperties) GetChainName() string { @@ -167710,7 +174263,7 @@ type ResourcePolicyWeeklyCycle struct { func (x *ResourcePolicyWeeklyCycle) Reset() { *x = ResourcePolicyWeeklyCycle{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1394] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1454] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167722,7 +174275,7 @@ func (x *ResourcePolicyWeeklyCycle) String() string { func (*ResourcePolicyWeeklyCycle) ProtoMessage() {} func (x *ResourcePolicyWeeklyCycle) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1394] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1454] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167735,7 +174288,7 @@ func (x *ResourcePolicyWeeklyCycle) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePolicyWeeklyCycle.ProtoReflect.Descriptor instead. func (*ResourcePolicyWeeklyCycle) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1394} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1454} } func (x *ResourcePolicyWeeklyCycle) GetDayOfWeeks() []*ResourcePolicyWeeklyCycleDayOfWeek { @@ -167764,7 +174317,7 @@ type ResourcePolicyWeeklyCycleDayOfWeek struct { func (x *ResourcePolicyWeeklyCycleDayOfWeek) Reset() { *x = ResourcePolicyWeeklyCycleDayOfWeek{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1395] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1455] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167776,7 +174329,7 @@ func (x *ResourcePolicyWeeklyCycleDayOfWeek) String() string { func (*ResourcePolicyWeeklyCycleDayOfWeek) ProtoMessage() {} func (x *ResourcePolicyWeeklyCycleDayOfWeek) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1395] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1455] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167789,7 +174342,7 @@ func (x *ResourcePolicyWeeklyCycleDayOfWeek) ProtoReflect() protoreflect.Message // Deprecated: Use ResourcePolicyWeeklyCycleDayOfWeek.ProtoReflect.Descriptor instead. func (*ResourcePolicyWeeklyCycleDayOfWeek) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1395} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1455} } func (x *ResourcePolicyWeeklyCycleDayOfWeek) GetDay() string { @@ -167835,7 +174388,7 @@ type ResourcePolicyWorkloadPolicy struct { func (x *ResourcePolicyWorkloadPolicy) Reset() { *x = ResourcePolicyWorkloadPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1396] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1456] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167847,7 +174400,7 @@ func (x *ResourcePolicyWorkloadPolicy) String() string { func (*ResourcePolicyWorkloadPolicy) ProtoMessage() {} func (x *ResourcePolicyWorkloadPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1396] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1456] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167860,7 +174413,7 @@ func (x *ResourcePolicyWorkloadPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourcePolicyWorkloadPolicy.ProtoReflect.Descriptor instead. func (*ResourcePolicyWorkloadPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1396} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1456} } func (x *ResourcePolicyWorkloadPolicy) GetAcceleratorTopology() string { @@ -167918,7 +174471,7 @@ type ResourceStatus struct { func (x *ResourceStatus) Reset() { *x = ResourceStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1397] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1457] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167930,7 +174483,7 @@ func (x *ResourceStatus) String() string { func (*ResourceStatus) ProtoMessage() {} func (x *ResourceStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1397] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1457] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167943,7 +174496,7 @@ func (x *ResourceStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourceStatus.ProtoReflect.Descriptor instead. func (*ResourceStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1397} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1457} } func (x *ResourceStatus) GetEffectiveInstanceMetadata() *ResourceStatusEffectiveInstanceMetadata { @@ -168015,7 +174568,7 @@ type ResourceStatusEffectiveInstanceMetadata struct { func (x *ResourceStatusEffectiveInstanceMetadata) Reset() { *x = ResourceStatusEffectiveInstanceMetadata{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1398] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1458] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168027,7 +174580,7 @@ func (x *ResourceStatusEffectiveInstanceMetadata) String() string { func (*ResourceStatusEffectiveInstanceMetadata) ProtoMessage() {} func (x *ResourceStatusEffectiveInstanceMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1398] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1458] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168040,7 +174593,7 @@ func (x *ResourceStatusEffectiveInstanceMetadata) ProtoReflect() protoreflect.Me // Deprecated: Use ResourceStatusEffectiveInstanceMetadata.ProtoReflect.Descriptor instead. func (*ResourceStatusEffectiveInstanceMetadata) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1398} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1458} } func (x *ResourceStatusEffectiveInstanceMetadata) GetBlockProjectSshKeysMetadataValue() bool { @@ -168130,7 +174683,7 @@ type ResourceStatusPhysicalHostTopology struct { func (x *ResourceStatusPhysicalHostTopology) Reset() { *x = ResourceStatusPhysicalHostTopology{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1399] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1459] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168142,7 +174695,7 @@ func (x *ResourceStatusPhysicalHostTopology) String() string { func (*ResourceStatusPhysicalHostTopology) ProtoMessage() {} func (x *ResourceStatusPhysicalHostTopology) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1399] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1459] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168155,7 +174708,7 @@ func (x *ResourceStatusPhysicalHostTopology) ProtoReflect() protoreflect.Message // Deprecated: Use ResourceStatusPhysicalHostTopology.ProtoReflect.Descriptor instead. func (*ResourceStatusPhysicalHostTopology) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1399} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1459} } func (x *ResourceStatusPhysicalHostTopology) GetBlock() string { @@ -168198,7 +174751,7 @@ type ResourceStatusReservationConsumptionInfo struct { func (x *ResourceStatusReservationConsumptionInfo) Reset() { *x = ResourceStatusReservationConsumptionInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1400] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1460] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168210,7 +174763,7 @@ func (x *ResourceStatusReservationConsumptionInfo) String() string { func (*ResourceStatusReservationConsumptionInfo) ProtoMessage() {} func (x *ResourceStatusReservationConsumptionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1400] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1460] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168223,7 +174776,7 @@ func (x *ResourceStatusReservationConsumptionInfo) ProtoReflect() protoreflect.M // Deprecated: Use ResourceStatusReservationConsumptionInfo.ProtoReflect.Descriptor instead. func (*ResourceStatusReservationConsumptionInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1400} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1460} } func (x *ResourceStatusReservationConsumptionInfo) GetConsumedReservation() string { @@ -168245,7 +174798,7 @@ type ResourceStatusScheduling struct { func (x *ResourceStatusScheduling) Reset() { *x = ResourceStatusScheduling{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1401] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1461] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168257,7 +174810,7 @@ func (x *ResourceStatusScheduling) String() string { func (*ResourceStatusScheduling) ProtoMessage() {} func (x *ResourceStatusScheduling) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1401] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1461] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168270,7 +174823,7 @@ func (x *ResourceStatusScheduling) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourceStatusScheduling.ProtoReflect.Descriptor instead. func (*ResourceStatusScheduling) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1401} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1461} } func (x *ResourceStatusScheduling) GetAvailabilityDomain() int32 { @@ -168309,7 +174862,7 @@ type ResumeInstanceRequest struct { func (x *ResumeInstanceRequest) Reset() { *x = ResumeInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1402] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1462] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168321,7 +174874,7 @@ func (x *ResumeInstanceRequest) String() string { func (*ResumeInstanceRequest) ProtoMessage() {} func (x *ResumeInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1402] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1462] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168334,7 +174887,7 @@ func (x *ResumeInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ResumeInstanceRequest.ProtoReflect.Descriptor instead. func (*ResumeInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1402} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1462} } func (x *ResumeInstanceRequest) GetInstance() string { @@ -168397,7 +174950,7 @@ type ResumeInstancesInstanceGroupManagerRequest struct { func (x *ResumeInstancesInstanceGroupManagerRequest) Reset() { *x = ResumeInstancesInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1403] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1463] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168409,7 +174962,7 @@ func (x *ResumeInstancesInstanceGroupManagerRequest) String() string { func (*ResumeInstancesInstanceGroupManagerRequest) ProtoMessage() {} func (x *ResumeInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1403] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1463] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168422,7 +174975,7 @@ func (x *ResumeInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect // Deprecated: Use ResumeInstancesInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*ResumeInstancesInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1403} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1463} } func (x *ResumeInstancesInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -168491,7 +175044,7 @@ type ResumeInstancesRegionInstanceGroupManagerRequest struct { func (x *ResumeInstancesRegionInstanceGroupManagerRequest) Reset() { *x = ResumeInstancesRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1404] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1464] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168503,7 +175056,7 @@ func (x *ResumeInstancesRegionInstanceGroupManagerRequest) String() string { func (*ResumeInstancesRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *ResumeInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1404] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1464] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168516,7 +175069,7 @@ func (x *ResumeInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protor // Deprecated: Use ResumeInstancesRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*ResumeInstancesRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1404} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1464} } func (x *ResumeInstancesRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -168690,7 +175243,7 @@ type Route struct { func (x *Route) Reset() { *x = Route{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1405] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1465] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168702,7 +175255,7 @@ func (x *Route) String() string { func (*Route) ProtoMessage() {} func (x *Route) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1405] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1465] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168715,7 +175268,7 @@ func (x *Route) ProtoReflect() protoreflect.Message { // Deprecated: Use Route.ProtoReflect.Descriptor instead. func (*Route) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1405} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1465} } func (x *Route) GetAsPaths() []*RouteAsPath { @@ -168931,7 +175484,7 @@ type RouteAsPath struct { func (x *RouteAsPath) Reset() { *x = RouteAsPath{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1406] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1466] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168943,7 +175496,7 @@ func (x *RouteAsPath) String() string { func (*RouteAsPath) ProtoMessage() {} func (x *RouteAsPath) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1406] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1466] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168956,7 +175509,7 @@ func (x *RouteAsPath) ProtoReflect() protoreflect.Message { // Deprecated: Use RouteAsPath.ProtoReflect.Descriptor instead. func (*RouteAsPath) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1406} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1466} } func (x *RouteAsPath) GetAsLists() []uint32 { @@ -168998,7 +175551,7 @@ type RouteList struct { func (x *RouteList) Reset() { *x = RouteList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1407] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1467] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169010,7 +175563,7 @@ func (x *RouteList) String() string { func (*RouteList) ProtoMessage() {} func (x *RouteList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1407] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1467] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -169023,7 +175576,7 @@ func (x *RouteList) ProtoReflect() protoreflect.Message { // Deprecated: Use RouteList.ProtoReflect.Descriptor instead. func (*RouteList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1407} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1467} } func (x *RouteList) GetId() string { @@ -169090,7 +175643,7 @@ type RouteParams struct { func (x *RouteParams) Reset() { *x = RouteParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1408] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1468] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169102,7 +175655,7 @@ func (x *RouteParams) String() string { func (*RouteParams) ProtoMessage() {} func (x *RouteParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1408] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1468] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -169115,7 +175668,7 @@ func (x *RouteParams) ProtoReflect() protoreflect.Message { // Deprecated: Use RouteParams.ProtoReflect.Descriptor instead. func (*RouteParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1408} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1468} } func (x *RouteParams) GetResourceManagerTags() map[string]string { @@ -169154,7 +175707,7 @@ type RoutePolicy struct { func (x *RoutePolicy) Reset() { *x = RoutePolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1409] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1469] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169166,7 +175719,7 @@ func (x *RoutePolicy) String() string { func (*RoutePolicy) ProtoMessage() {} func (x *RoutePolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1409] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1469] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -169179,7 +175732,7 @@ func (x *RoutePolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use RoutePolicy.ProtoReflect.Descriptor instead. func (*RoutePolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1409} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1469} } func (x *RoutePolicy) GetDescription() string { @@ -169234,7 +175787,7 @@ type RoutePolicyPolicyTerm struct { func (x *RoutePolicyPolicyTerm) Reset() { *x = RoutePolicyPolicyTerm{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1410] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1470] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169246,7 +175799,7 @@ func (x *RoutePolicyPolicyTerm) String() string { func (*RoutePolicyPolicyTerm) ProtoMessage() {} func (x *RoutePolicyPolicyTerm) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1410] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1470] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -169259,7 +175812,7 @@ func (x *RoutePolicyPolicyTerm) ProtoReflect() protoreflect.Message { // Deprecated: Use RoutePolicyPolicyTerm.ProtoReflect.Descriptor instead. func (*RoutePolicyPolicyTerm) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1410} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1470} } func (x *RoutePolicyPolicyTerm) GetActions() []*Expr { @@ -169350,7 +175903,7 @@ type Router struct { func (x *Router) Reset() { *x = Router{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1411] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1471] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169362,7 +175915,7 @@ func (x *Router) String() string { func (*Router) ProtoMessage() {} func (x *Router) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1411] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1471] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -169375,7 +175928,7 @@ func (x *Router) ProtoReflect() protoreflect.Message { // Deprecated: Use Router.ProtoReflect.Descriptor instead. func (*Router) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1411} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1471} } func (x *Router) GetBgp() *RouterBgp { @@ -169496,7 +176049,7 @@ type RouterAdvertisedIpRange struct { func (x *RouterAdvertisedIpRange) Reset() { *x = RouterAdvertisedIpRange{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1412] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1472] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169508,7 +176061,7 @@ func (x *RouterAdvertisedIpRange) String() string { func (*RouterAdvertisedIpRange) ProtoMessage() {} func (x *RouterAdvertisedIpRange) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1412] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1472] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -169521,7 +176074,7 @@ func (x *RouterAdvertisedIpRange) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterAdvertisedIpRange.ProtoReflect.Descriptor instead. func (*RouterAdvertisedIpRange) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1412} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1472} } func (x *RouterAdvertisedIpRange) GetDescription() string { @@ -169565,7 +176118,7 @@ type RouterAggregatedList struct { func (x *RouterAggregatedList) Reset() { *x = RouterAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1413] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1473] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169577,7 +176130,7 @@ func (x *RouterAggregatedList) String() string { func (*RouterAggregatedList) ProtoMessage() {} func (x *RouterAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1413] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1473] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -169590,7 +176143,7 @@ func (x *RouterAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterAggregatedList.ProtoReflect.Descriptor instead. func (*RouterAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1413} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1473} } func (x *RouterAggregatedList) GetId() string { @@ -169693,7 +176246,7 @@ type RouterBgp struct { func (x *RouterBgp) Reset() { *x = RouterBgp{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1414] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1474] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169705,7 +176258,7 @@ func (x *RouterBgp) String() string { func (*RouterBgp) ProtoMessage() {} func (x *RouterBgp) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1414] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1474] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -169718,7 +176271,7 @@ func (x *RouterBgp) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterBgp.ProtoReflect.Descriptor instead. func (*RouterBgp) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1414} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1474} } func (x *RouterBgp) GetAdvertiseMode() string { @@ -169875,7 +176428,7 @@ type RouterBgpPeer struct { func (x *RouterBgpPeer) Reset() { *x = RouterBgpPeer{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1415] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1475] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169887,7 +176440,7 @@ func (x *RouterBgpPeer) String() string { func (*RouterBgpPeer) ProtoMessage() {} func (x *RouterBgpPeer) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1415] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1475] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -169900,7 +176453,7 @@ func (x *RouterBgpPeer) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterBgpPeer.ProtoReflect.Descriptor instead. func (*RouterBgpPeer) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1415} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1475} } func (x *RouterBgpPeer) GetAdvertiseMode() string { @@ -170112,7 +176665,7 @@ type RouterBgpPeerBfd struct { func (x *RouterBgpPeerBfd) Reset() { *x = RouterBgpPeerBfd{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1416] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1476] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -170124,7 +176677,7 @@ func (x *RouterBgpPeerBfd) String() string { func (*RouterBgpPeerBfd) ProtoMessage() {} func (x *RouterBgpPeerBfd) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1416] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1476] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170137,7 +176690,7 @@ func (x *RouterBgpPeerBfd) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterBgpPeerBfd.ProtoReflect.Descriptor instead. func (*RouterBgpPeerBfd) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1416} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1476} } func (x *RouterBgpPeerBfd) GetMinReceiveInterval() uint32 { @@ -170181,7 +176734,7 @@ type RouterBgpPeerCustomLearnedIpRange struct { func (x *RouterBgpPeerCustomLearnedIpRange) Reset() { *x = RouterBgpPeerCustomLearnedIpRange{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1417] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1477] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -170193,7 +176746,7 @@ func (x *RouterBgpPeerCustomLearnedIpRange) String() string { func (*RouterBgpPeerCustomLearnedIpRange) ProtoMessage() {} func (x *RouterBgpPeerCustomLearnedIpRange) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1417] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1477] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170206,7 +176759,7 @@ func (x *RouterBgpPeerCustomLearnedIpRange) ProtoReflect() protoreflect.Message // Deprecated: Use RouterBgpPeerCustomLearnedIpRange.ProtoReflect.Descriptor instead. func (*RouterBgpPeerCustomLearnedIpRange) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1417} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1477} } func (x *RouterBgpPeerCustomLearnedIpRange) GetRange() string { @@ -170289,7 +176842,7 @@ type RouterInterface struct { func (x *RouterInterface) Reset() { *x = RouterInterface{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1418] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1478] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -170301,7 +176854,7 @@ func (x *RouterInterface) String() string { func (*RouterInterface) ProtoMessage() {} func (x *RouterInterface) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1418] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1478] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170314,7 +176867,7 @@ func (x *RouterInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterInterface.ProtoReflect.Descriptor instead. func (*RouterInterface) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1418} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1478} } func (x *RouterInterface) GetIpRange() string { @@ -170406,7 +176959,7 @@ type RouterList struct { func (x *RouterList) Reset() { *x = RouterList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1419] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1479] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -170418,7 +176971,7 @@ func (x *RouterList) String() string { func (*RouterList) ProtoMessage() {} func (x *RouterList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1419] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1479] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170431,7 +176984,7 @@ func (x *RouterList) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterList.ProtoReflect.Descriptor instead. func (*RouterList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1419} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1479} } func (x *RouterList) GetId() string { @@ -170496,7 +177049,7 @@ type RouterMd5AuthenticationKey struct { func (x *RouterMd5AuthenticationKey) Reset() { *x = RouterMd5AuthenticationKey{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1420] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1480] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -170508,7 +177061,7 @@ func (x *RouterMd5AuthenticationKey) String() string { func (*RouterMd5AuthenticationKey) ProtoMessage() {} func (x *RouterMd5AuthenticationKey) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1420] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1480] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170521,7 +177074,7 @@ func (x *RouterMd5AuthenticationKey) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterMd5AuthenticationKey.ProtoReflect.Descriptor instead. func (*RouterMd5AuthenticationKey) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1420} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1480} } func (x *RouterMd5AuthenticationKey) GetKey() string { @@ -170676,7 +177229,7 @@ type RouterNat struct { func (x *RouterNat) Reset() { *x = RouterNat{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1421] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1481] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -170688,7 +177241,7 @@ func (x *RouterNat) String() string { func (*RouterNat) ProtoMessage() {} func (x *RouterNat) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1421] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1481] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170701,7 +177254,7 @@ func (x *RouterNat) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterNat.ProtoReflect.Descriptor instead. func (*RouterNat) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1421} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1481} } func (x *RouterNat) GetAutoNetworkTier() string { @@ -170881,7 +177434,7 @@ type RouterNatLogConfig struct { func (x *RouterNatLogConfig) Reset() { *x = RouterNatLogConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1422] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1482] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -170893,7 +177446,7 @@ func (x *RouterNatLogConfig) String() string { func (*RouterNatLogConfig) ProtoMessage() {} func (x *RouterNatLogConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1422] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1482] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170906,7 +177459,7 @@ func (x *RouterNatLogConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterNatLogConfig.ProtoReflect.Descriptor instead. func (*RouterNatLogConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1422} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1482} } func (x *RouterNatLogConfig) GetEnable() bool { @@ -170956,7 +177509,7 @@ type RouterNatRule struct { func (x *RouterNatRule) Reset() { *x = RouterNatRule{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1423] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1483] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -170968,7 +177521,7 @@ func (x *RouterNatRule) String() string { func (*RouterNatRule) ProtoMessage() {} func (x *RouterNatRule) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1423] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1483] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170981,7 +177534,7 @@ func (x *RouterNatRule) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterNatRule.ProtoReflect.Descriptor instead. func (*RouterNatRule) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1423} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1483} } func (x *RouterNatRule) GetAction() *RouterNatRuleAction { @@ -171040,7 +177593,7 @@ type RouterNatRuleAction struct { func (x *RouterNatRuleAction) Reset() { *x = RouterNatRuleAction{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1424] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1484] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171052,7 +177605,7 @@ func (x *RouterNatRuleAction) String() string { func (*RouterNatRuleAction) ProtoMessage() {} func (x *RouterNatRuleAction) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1424] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1484] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171065,7 +177618,7 @@ func (x *RouterNatRuleAction) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterNatRuleAction.ProtoReflect.Descriptor instead. func (*RouterNatRuleAction) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1424} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1484} } func (x *RouterNatRuleAction) GetSourceNatActiveIps() []string { @@ -171119,7 +177672,7 @@ type RouterNatSubnetworkToNat struct { func (x *RouterNatSubnetworkToNat) Reset() { *x = RouterNatSubnetworkToNat{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1425] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1485] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171131,7 +177684,7 @@ func (x *RouterNatSubnetworkToNat) String() string { func (*RouterNatSubnetworkToNat) ProtoMessage() {} func (x *RouterNatSubnetworkToNat) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1425] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1485] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171144,7 +177697,7 @@ func (x *RouterNatSubnetworkToNat) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterNatSubnetworkToNat.ProtoReflect.Descriptor instead. func (*RouterNatSubnetworkToNat) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1425} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1485} } func (x *RouterNatSubnetworkToNat) GetName() string { @@ -171179,7 +177732,7 @@ type RouterNatSubnetworkToNat64 struct { func (x *RouterNatSubnetworkToNat64) Reset() { *x = RouterNatSubnetworkToNat64{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1426] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1486] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171191,7 +177744,7 @@ func (x *RouterNatSubnetworkToNat64) String() string { func (*RouterNatSubnetworkToNat64) ProtoMessage() {} func (x *RouterNatSubnetworkToNat64) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1426] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1486] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171204,7 +177757,7 @@ func (x *RouterNatSubnetworkToNat64) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterNatSubnetworkToNat64.ProtoReflect.Descriptor instead. func (*RouterNatSubnetworkToNat64) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1426} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1486} } func (x *RouterNatSubnetworkToNat64) GetName() string { @@ -171237,7 +177790,7 @@ type RouterParams struct { func (x *RouterParams) Reset() { *x = RouterParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1427] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1487] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171249,7 +177802,7 @@ func (x *RouterParams) String() string { func (*RouterParams) ProtoMessage() {} func (x *RouterParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1427] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1487] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171262,7 +177815,7 @@ func (x *RouterParams) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterParams.ProtoReflect.Descriptor instead. func (*RouterParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1427} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1487} } func (x *RouterParams) GetResourceManagerTags() map[string]string { @@ -171300,7 +177853,7 @@ type RouterStatus struct { func (x *RouterStatus) Reset() { *x = RouterStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1428] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1488] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171312,7 +177865,7 @@ func (x *RouterStatus) String() string { func (*RouterStatus) ProtoMessage() {} func (x *RouterStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1428] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1488] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171325,7 +177878,7 @@ func (x *RouterStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterStatus.ProtoReflect.Descriptor instead. func (*RouterStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1428} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1488} } func (x *RouterStatus) GetBestRoutes() []*Route { @@ -171424,7 +177977,7 @@ type RouterStatusBgpPeerStatus struct { func (x *RouterStatusBgpPeerStatus) Reset() { *x = RouterStatusBgpPeerStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1429] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1489] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171436,7 +177989,7 @@ func (x *RouterStatusBgpPeerStatus) String() string { func (*RouterStatusBgpPeerStatus) ProtoMessage() {} func (x *RouterStatusBgpPeerStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1429] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1489] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171449,7 +178002,7 @@ func (x *RouterStatusBgpPeerStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterStatusBgpPeerStatus.ProtoReflect.Descriptor instead. func (*RouterStatusBgpPeerStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1429} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1489} } func (x *RouterStatusBgpPeerStatus) GetAdvertisedRoutes() []*Route { @@ -171625,7 +178178,7 @@ type RouterStatusNatStatus struct { func (x *RouterStatusNatStatus) Reset() { *x = RouterStatusNatStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1430] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1490] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171637,7 +178190,7 @@ func (x *RouterStatusNatStatus) String() string { func (*RouterStatusNatStatus) ProtoMessage() {} func (x *RouterStatusNatStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1430] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1490] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171650,7 +178203,7 @@ func (x *RouterStatusNatStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterStatusNatStatus.ProtoReflect.Descriptor instead. func (*RouterStatusNatStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1430} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1490} } func (x *RouterStatusNatStatus) GetAutoAllocatedNatIps() []string { @@ -171740,7 +178293,7 @@ type RouterStatusNatStatusNatRuleStatus struct { func (x *RouterStatusNatStatusNatRuleStatus) Reset() { *x = RouterStatusNatStatusNatRuleStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1431] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1491] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171752,7 +178305,7 @@ func (x *RouterStatusNatStatusNatRuleStatus) String() string { func (*RouterStatusNatStatusNatRuleStatus) ProtoMessage() {} func (x *RouterStatusNatStatusNatRuleStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1431] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1491] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171765,7 +178318,7 @@ func (x *RouterStatusNatStatusNatRuleStatus) ProtoReflect() protoreflect.Message // Deprecated: Use RouterStatusNatStatusNatRuleStatus.ProtoReflect.Descriptor instead. func (*RouterStatusNatStatusNatRuleStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1431} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1491} } func (x *RouterStatusNatStatusNatRuleStatus) GetActiveNatIps() []string { @@ -171814,7 +178367,7 @@ type RouterStatusResponse struct { func (x *RouterStatusResponse) Reset() { *x = RouterStatusResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1432] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1492] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171826,7 +178379,7 @@ func (x *RouterStatusResponse) String() string { func (*RouterStatusResponse) ProtoMessage() {} func (x *RouterStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1432] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1492] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171839,7 +178392,7 @@ func (x *RouterStatusResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RouterStatusResponse.ProtoReflect.Descriptor instead. func (*RouterStatusResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1432} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1492} } func (x *RouterStatusResponse) GetKind() string { @@ -171865,7 +178418,7 @@ type RoutersGetRoutePolicyResponse struct { func (x *RoutersGetRoutePolicyResponse) Reset() { *x = RoutersGetRoutePolicyResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1433] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1493] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171877,7 +178430,7 @@ func (x *RoutersGetRoutePolicyResponse) String() string { func (*RoutersGetRoutePolicyResponse) ProtoMessage() {} func (x *RoutersGetRoutePolicyResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1433] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1493] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171890,7 +178443,7 @@ func (x *RoutersGetRoutePolicyResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RoutersGetRoutePolicyResponse.ProtoReflect.Descriptor instead. func (*RoutersGetRoutePolicyResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1433} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1493} } func (x *RoutersGetRoutePolicyResponse) GetResource() *RoutePolicy { @@ -171928,7 +178481,7 @@ type RoutersListBgpRoutes struct { func (x *RoutersListBgpRoutes) Reset() { *x = RoutersListBgpRoutes{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1434] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1494] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171940,7 +178493,7 @@ func (x *RoutersListBgpRoutes) String() string { func (*RoutersListBgpRoutes) ProtoMessage() {} func (x *RoutersListBgpRoutes) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1434] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1494] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171953,7 +178506,7 @@ func (x *RoutersListBgpRoutes) ProtoReflect() protoreflect.Message { // Deprecated: Use RoutersListBgpRoutes.ProtoReflect.Descriptor instead. func (*RoutersListBgpRoutes) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1434} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1494} } func (x *RoutersListBgpRoutes) GetEtag() string { @@ -172040,7 +178593,7 @@ type RoutersListRoutePolicies struct { func (x *RoutersListRoutePolicies) Reset() { *x = RoutersListRoutePolicies{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1435] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1495] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172052,7 +178605,7 @@ func (x *RoutersListRoutePolicies) String() string { func (*RoutersListRoutePolicies) ProtoMessage() {} func (x *RoutersListRoutePolicies) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1435] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1495] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172065,7 +178618,7 @@ func (x *RoutersListRoutePolicies) ProtoReflect() protoreflect.Message { // Deprecated: Use RoutersListRoutePolicies.ProtoReflect.Descriptor instead. func (*RoutersListRoutePolicies) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1435} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1495} } func (x *RoutersListRoutePolicies) GetEtag() string { @@ -172134,7 +178687,7 @@ type RoutersPreviewResponse struct { func (x *RoutersPreviewResponse) Reset() { *x = RoutersPreviewResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1436] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1496] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172146,7 +178699,7 @@ func (x *RoutersPreviewResponse) String() string { func (*RoutersPreviewResponse) ProtoMessage() {} func (x *RoutersPreviewResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1436] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1496] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172159,7 +178712,7 @@ func (x *RoutersPreviewResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RoutersPreviewResponse.ProtoReflect.Descriptor instead. func (*RoutersPreviewResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1436} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1496} } func (x *RoutersPreviewResponse) GetResource() *Router { @@ -172182,7 +178735,7 @@ type RoutersScopedList struct { func (x *RoutersScopedList) Reset() { *x = RoutersScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1437] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1497] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172194,7 +178747,7 @@ func (x *RoutersScopedList) String() string { func (*RoutersScopedList) ProtoMessage() {} func (x *RoutersScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1437] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1497] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172207,7 +178760,7 @@ func (x *RoutersScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use RoutersScopedList.ProtoReflect.Descriptor instead. func (*RoutersScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1437} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1497} } func (x *RoutersScopedList) GetRouters() []*Router { @@ -172278,7 +178831,7 @@ type SSLHealthCheck struct { func (x *SSLHealthCheck) Reset() { *x = SSLHealthCheck{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1438] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1498] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172290,7 +178843,7 @@ func (x *SSLHealthCheck) String() string { func (*SSLHealthCheck) ProtoMessage() {} func (x *SSLHealthCheck) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1438] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1498] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172303,7 +178856,7 @@ func (x *SSLHealthCheck) ProtoReflect() protoreflect.Message { // Deprecated: Use SSLHealthCheck.ProtoReflect.Descriptor instead. func (*SSLHealthCheck) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1438} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1498} } func (x *SSLHealthCheck) GetPort() int32 { @@ -172407,7 +178960,7 @@ type SavedAttachedDisk struct { func (x *SavedAttachedDisk) Reset() { *x = SavedAttachedDisk{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1439] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1499] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172419,7 +178972,7 @@ func (x *SavedAttachedDisk) String() string { func (*SavedAttachedDisk) ProtoMessage() {} func (x *SavedAttachedDisk) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1439] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1499] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172432,7 +178985,7 @@ func (x *SavedAttachedDisk) ProtoReflect() protoreflect.Message { // Deprecated: Use SavedAttachedDisk.ProtoReflect.Descriptor instead. func (*SavedAttachedDisk) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1439} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1499} } func (x *SavedAttachedDisk) GetAutoDelete() bool { @@ -172574,7 +179127,7 @@ type SavedDisk struct { func (x *SavedDisk) Reset() { *x = SavedDisk{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1440] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1500] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172586,7 +179139,7 @@ func (x *SavedDisk) String() string { func (*SavedDisk) ProtoMessage() {} func (x *SavedDisk) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1440] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1500] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172599,7 +179152,7 @@ func (x *SavedDisk) ProtoReflect() protoreflect.Message { // Deprecated: Use SavedDisk.ProtoReflect.Descriptor instead. func (*SavedDisk) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1440} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1500} } func (x *SavedDisk) GetArchitecture() string { @@ -172660,7 +179213,7 @@ type ScalingScheduleStatus struct { func (x *ScalingScheduleStatus) Reset() { *x = ScalingScheduleStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1441] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1501] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172672,7 +179225,7 @@ func (x *ScalingScheduleStatus) String() string { func (*ScalingScheduleStatus) ProtoMessage() {} func (x *ScalingScheduleStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1441] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1501] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172685,7 +179238,7 @@ func (x *ScalingScheduleStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use ScalingScheduleStatus.ProtoReflect.Descriptor instead. func (*ScalingScheduleStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1441} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1501} } func (x *ScalingScheduleStatus) GetLastStartTime() string { @@ -172783,7 +179336,7 @@ type Scheduling struct { func (x *Scheduling) Reset() { *x = Scheduling{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1442] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1502] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172795,7 +179348,7 @@ func (x *Scheduling) String() string { func (*Scheduling) ProtoMessage() {} func (x *Scheduling) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1442] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1502] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172808,7 +179361,7 @@ func (x *Scheduling) ProtoReflect() protoreflect.Message { // Deprecated: Use Scheduling.ProtoReflect.Descriptor instead. func (*Scheduling) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1442} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1502} } func (x *Scheduling) GetAutomaticRestart() bool { @@ -172934,7 +179487,7 @@ type SchedulingNodeAffinity struct { func (x *SchedulingNodeAffinity) Reset() { *x = SchedulingNodeAffinity{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1443] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1503] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172946,7 +179499,7 @@ func (x *SchedulingNodeAffinity) String() string { func (*SchedulingNodeAffinity) ProtoMessage() {} func (x *SchedulingNodeAffinity) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1443] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1503] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172959,7 +179512,7 @@ func (x *SchedulingNodeAffinity) ProtoReflect() protoreflect.Message { // Deprecated: Use SchedulingNodeAffinity.ProtoReflect.Descriptor instead. func (*SchedulingNodeAffinity) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1443} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1503} } func (x *SchedulingNodeAffinity) GetKey() string { @@ -172996,7 +179549,7 @@ type SchedulingOnInstanceStopAction struct { func (x *SchedulingOnInstanceStopAction) Reset() { *x = SchedulingOnInstanceStopAction{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1444] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1504] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173008,7 +179561,7 @@ func (x *SchedulingOnInstanceStopAction) String() string { func (*SchedulingOnInstanceStopAction) ProtoMessage() {} func (x *SchedulingOnInstanceStopAction) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1444] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1504] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173021,7 +179574,7 @@ func (x *SchedulingOnInstanceStopAction) ProtoReflect() protoreflect.Message { // Deprecated: Use SchedulingOnInstanceStopAction.ProtoReflect.Descriptor instead. func (*SchedulingOnInstanceStopAction) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1444} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1504} } func (x *SchedulingOnInstanceStopAction) GetDiscardLocalSsd() bool { @@ -173045,7 +179598,7 @@ type Screenshot struct { func (x *Screenshot) Reset() { *x = Screenshot{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1445] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1505] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173057,7 +179610,7 @@ func (x *Screenshot) String() string { func (*Screenshot) ProtoMessage() {} func (x *Screenshot) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1445] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1505] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173070,7 +179623,7 @@ func (x *Screenshot) ProtoReflect() protoreflect.Message { // Deprecated: Use Screenshot.ProtoReflect.Descriptor instead. func (*Screenshot) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1445} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1505} } func (x *Screenshot) GetContents() string { @@ -173115,7 +179668,7 @@ type SecurityPoliciesAggregatedList struct { func (x *SecurityPoliciesAggregatedList) Reset() { *x = SecurityPoliciesAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1446] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1506] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173127,7 +179680,7 @@ func (x *SecurityPoliciesAggregatedList) String() string { func (*SecurityPoliciesAggregatedList) ProtoMessage() {} func (x *SecurityPoliciesAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1446] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1506] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173140,7 +179693,7 @@ func (x *SecurityPoliciesAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use SecurityPoliciesAggregatedList.ProtoReflect.Descriptor instead. func (*SecurityPoliciesAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1446} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1506} } func (x *SecurityPoliciesAggregatedList) GetEtag() string { @@ -173208,7 +179761,7 @@ type SecurityPoliciesListPreconfiguredExpressionSetsResponse struct { func (x *SecurityPoliciesListPreconfiguredExpressionSetsResponse) Reset() { *x = SecurityPoliciesListPreconfiguredExpressionSetsResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1447] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1507] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173220,7 +179773,7 @@ func (x *SecurityPoliciesListPreconfiguredExpressionSetsResponse) String() strin func (*SecurityPoliciesListPreconfiguredExpressionSetsResponse) ProtoMessage() {} func (x *SecurityPoliciesListPreconfiguredExpressionSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1447] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1507] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173233,7 +179786,7 @@ func (x *SecurityPoliciesListPreconfiguredExpressionSetsResponse) ProtoReflect() // Deprecated: Use SecurityPoliciesListPreconfiguredExpressionSetsResponse.ProtoReflect.Descriptor instead. func (*SecurityPoliciesListPreconfiguredExpressionSetsResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1447} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1507} } func (x *SecurityPoliciesListPreconfiguredExpressionSetsResponse) GetPreconfiguredExpressionSets() *SecurityPoliciesWafConfig { @@ -173256,7 +179809,7 @@ type SecurityPoliciesScopedList struct { func (x *SecurityPoliciesScopedList) Reset() { *x = SecurityPoliciesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1448] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1508] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173268,7 +179821,7 @@ func (x *SecurityPoliciesScopedList) String() string { func (*SecurityPoliciesScopedList) ProtoMessage() {} func (x *SecurityPoliciesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1448] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1508] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173281,7 +179834,7 @@ func (x *SecurityPoliciesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use SecurityPoliciesScopedList.ProtoReflect.Descriptor instead. func (*SecurityPoliciesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1448} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1508} } func (x *SecurityPoliciesScopedList) GetSecurityPolicies() []*SecurityPolicy { @@ -173307,7 +179860,7 @@ type SecurityPoliciesWafConfig struct { func (x *SecurityPoliciesWafConfig) Reset() { *x = SecurityPoliciesWafConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1449] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1509] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173319,7 +179872,7 @@ func (x *SecurityPoliciesWafConfig) String() string { func (*SecurityPoliciesWafConfig) ProtoMessage() {} func (x *SecurityPoliciesWafConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1449] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1509] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173332,7 +179885,7 @@ func (x *SecurityPoliciesWafConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use SecurityPoliciesWafConfig.ProtoReflect.Descriptor instead. func (*SecurityPoliciesWafConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1449} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1509} } func (x *SecurityPoliciesWafConfig) GetWafRules() *PreconfiguredWafSet { @@ -173465,7 +180018,7 @@ type SecurityPolicy struct { func (x *SecurityPolicy) Reset() { *x = SecurityPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1450] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1510] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173477,7 +180030,7 @@ func (x *SecurityPolicy) String() string { func (*SecurityPolicy) ProtoMessage() {} func (x *SecurityPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1450] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1510] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173490,7 +180043,7 @@ func (x *SecurityPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use SecurityPolicy.ProtoReflect.Descriptor instead. func (*SecurityPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1450} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1510} } func (x *SecurityPolicy) GetAdaptiveProtectionConfig() *SecurityPolicyAdaptiveProtectionConfig { @@ -173644,7 +180197,7 @@ type SecurityPolicyAdaptiveProtectionConfig struct { func (x *SecurityPolicyAdaptiveProtectionConfig) Reset() { *x = SecurityPolicyAdaptiveProtectionConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1451] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1511] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173656,7 +180209,7 @@ func (x *SecurityPolicyAdaptiveProtectionConfig) String() string { func (*SecurityPolicyAdaptiveProtectionConfig) ProtoMessage() {} func (x *SecurityPolicyAdaptiveProtectionConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1451] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1511] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173669,7 +180222,7 @@ func (x *SecurityPolicyAdaptiveProtectionConfig) ProtoReflect() protoreflect.Mes // Deprecated: Use SecurityPolicyAdaptiveProtectionConfig.ProtoReflect.Descriptor instead. func (*SecurityPolicyAdaptiveProtectionConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1451} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1511} } func (x *SecurityPolicyAdaptiveProtectionConfig) GetLayer7DdosDefenseConfig() *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig { @@ -173704,7 +180257,7 @@ type SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig struct { func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig) Reset() { *x = SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1452] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1512] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173716,7 +180269,7 @@ func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig) String() func (*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig) ProtoMessage() {} func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1452] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1512] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173729,7 +180282,7 @@ func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig) ProtoRef // Deprecated: Use SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig.ProtoReflect.Descriptor instead. func (*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1452} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1512} } func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig) GetEnable() bool { @@ -173774,7 +180327,7 @@ type SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfi func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig) Reset() { *x = SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1453] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1513] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173786,7 +180339,7 @@ func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdC func (*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig) ProtoMessage() {} func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1453] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1513] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173799,7 +180352,7 @@ func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdC // Deprecated: Use SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig.ProtoReflect.Descriptor instead. func (*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1453} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1513} } func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig) GetAutoDeployConfidenceThreshold() float32 { @@ -173884,7 +180437,7 @@ type SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfi func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig) Reset() { *x = SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1454] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1514] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173897,7 +180450,7 @@ func (*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdCon } func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1454] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1514] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173910,7 +180463,7 @@ func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdC // Deprecated: Use SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig.ProtoReflect.Descriptor instead. func (*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1454} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1514} } func (x *SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig) GetEnableEachUniqueValue() bool { @@ -173956,7 +180509,7 @@ type SecurityPolicyAdvancedOptionsConfig struct { func (x *SecurityPolicyAdvancedOptionsConfig) Reset() { *x = SecurityPolicyAdvancedOptionsConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1455] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1515] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173968,7 +180521,7 @@ func (x *SecurityPolicyAdvancedOptionsConfig) String() string { func (*SecurityPolicyAdvancedOptionsConfig) ProtoMessage() {} func (x *SecurityPolicyAdvancedOptionsConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1455] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1515] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173981,7 +180534,7 @@ func (x *SecurityPolicyAdvancedOptionsConfig) ProtoReflect() protoreflect.Messag // Deprecated: Use SecurityPolicyAdvancedOptionsConfig.ProtoReflect.Descriptor instead. func (*SecurityPolicyAdvancedOptionsConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1455} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1515} } func (x *SecurityPolicyAdvancedOptionsConfig) GetJsonCustomConfig() *SecurityPolicyAdvancedOptionsConfigJsonCustomConfig { @@ -174037,7 +180590,7 @@ type SecurityPolicyAdvancedOptionsConfigJsonCustomConfig struct { func (x *SecurityPolicyAdvancedOptionsConfigJsonCustomConfig) Reset() { *x = SecurityPolicyAdvancedOptionsConfigJsonCustomConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1456] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1516] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174049,7 +180602,7 @@ func (x *SecurityPolicyAdvancedOptionsConfigJsonCustomConfig) String() string { func (*SecurityPolicyAdvancedOptionsConfigJsonCustomConfig) ProtoMessage() {} func (x *SecurityPolicyAdvancedOptionsConfigJsonCustomConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1456] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1516] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174062,7 +180615,7 @@ func (x *SecurityPolicyAdvancedOptionsConfigJsonCustomConfig) ProtoReflect() pro // Deprecated: Use SecurityPolicyAdvancedOptionsConfigJsonCustomConfig.ProtoReflect.Descriptor instead. func (*SecurityPolicyAdvancedOptionsConfigJsonCustomConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1456} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1516} } func (x *SecurityPolicyAdvancedOptionsConfigJsonCustomConfig) GetContentTypes() []string { @@ -174094,7 +180647,7 @@ type SecurityPolicyAssociation struct { func (x *SecurityPolicyAssociation) Reset() { *x = SecurityPolicyAssociation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1457] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1517] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174106,7 +180659,7 @@ func (x *SecurityPolicyAssociation) String() string { func (*SecurityPolicyAssociation) ProtoMessage() {} func (x *SecurityPolicyAssociation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1457] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1517] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174119,7 +180672,7 @@ func (x *SecurityPolicyAssociation) ProtoReflect() protoreflect.Message { // Deprecated: Use SecurityPolicyAssociation.ProtoReflect.Descriptor instead. func (*SecurityPolicyAssociation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1457} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1517} } func (x *SecurityPolicyAssociation) GetAttachmentId() string { @@ -174181,7 +180734,7 @@ type SecurityPolicyDdosProtectionConfig struct { func (x *SecurityPolicyDdosProtectionConfig) Reset() { *x = SecurityPolicyDdosProtectionConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1458] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1518] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174193,7 +180746,7 @@ func (x *SecurityPolicyDdosProtectionConfig) String() string { func (*SecurityPolicyDdosProtectionConfig) ProtoMessage() {} func (x *SecurityPolicyDdosProtectionConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1458] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1518] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174206,7 +180759,7 @@ func (x *SecurityPolicyDdosProtectionConfig) ProtoReflect() protoreflect.Message // Deprecated: Use SecurityPolicyDdosProtectionConfig.ProtoReflect.Descriptor instead. func (*SecurityPolicyDdosProtectionConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1458} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1518} } func (x *SecurityPolicyDdosProtectionConfig) GetDdosProtection() string { @@ -174238,7 +180791,7 @@ type SecurityPolicyList struct { func (x *SecurityPolicyList) Reset() { *x = SecurityPolicyList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1459] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1519] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174250,7 +180803,7 @@ func (x *SecurityPolicyList) String() string { func (*SecurityPolicyList) ProtoMessage() {} func (x *SecurityPolicyList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1459] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1519] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174263,7 +180816,7 @@ func (x *SecurityPolicyList) ProtoReflect() protoreflect.Message { // Deprecated: Use SecurityPolicyList.ProtoReflect.Descriptor instead. func (*SecurityPolicyList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1459} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1519} } func (x *SecurityPolicyList) GetId() string { @@ -174317,7 +180870,7 @@ type SecurityPolicyRecaptchaOptionsConfig struct { func (x *SecurityPolicyRecaptchaOptionsConfig) Reset() { *x = SecurityPolicyRecaptchaOptionsConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1460] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1520] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174329,7 +180882,7 @@ func (x *SecurityPolicyRecaptchaOptionsConfig) String() string { func (*SecurityPolicyRecaptchaOptionsConfig) ProtoMessage() {} func (x *SecurityPolicyRecaptchaOptionsConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1460] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1520] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174342,7 +180895,7 @@ func (x *SecurityPolicyRecaptchaOptionsConfig) ProtoReflect() protoreflect.Messa // Deprecated: Use SecurityPolicyRecaptchaOptionsConfig.ProtoReflect.Descriptor instead. func (*SecurityPolicyRecaptchaOptionsConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1460} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1520} } func (x *SecurityPolicyRecaptchaOptionsConfig) GetRedirectSiteKey() string { @@ -174361,7 +180914,7 @@ type SecurityPolicyReference struct { func (x *SecurityPolicyReference) Reset() { *x = SecurityPolicyReference{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1461] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1521] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174373,7 +180926,7 @@ func (x *SecurityPolicyReference) String() string { func (*SecurityPolicyReference) ProtoMessage() {} func (x *SecurityPolicyReference) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1461] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1521] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174386,7 +180939,7 @@ func (x *SecurityPolicyReference) ProtoReflect() protoreflect.Message { // Deprecated: Use SecurityPolicyReference.ProtoReflect.Descriptor instead. func (*SecurityPolicyReference) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1461} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1521} } func (x *SecurityPolicyReference) GetSecurityPolicy() string { @@ -174501,7 +181054,7 @@ type SecurityPolicyRule struct { func (x *SecurityPolicyRule) Reset() { *x = SecurityPolicyRule{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1462] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1522] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174513,7 +181066,7 @@ func (x *SecurityPolicyRule) String() string { func (*SecurityPolicyRule) ProtoMessage() {} func (x *SecurityPolicyRule) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1462] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1522] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174526,7 +181079,7 @@ func (x *SecurityPolicyRule) ProtoReflect() protoreflect.Message { // Deprecated: Use SecurityPolicyRule.ProtoReflect.Descriptor instead. func (*SecurityPolicyRule) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1462} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1522} } func (x *SecurityPolicyRule) GetAction() string { @@ -174617,7 +181170,7 @@ type SecurityPolicyRuleHttpHeaderAction struct { func (x *SecurityPolicyRuleHttpHeaderAction) Reset() { *x = SecurityPolicyRuleHttpHeaderAction{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1463] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1523] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174629,7 +181182,7 @@ func (x *SecurityPolicyRuleHttpHeaderAction) String() string { func (*SecurityPolicyRuleHttpHeaderAction) ProtoMessage() {} func (x *SecurityPolicyRuleHttpHeaderAction) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1463] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1523] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174642,7 +181195,7 @@ func (x *SecurityPolicyRuleHttpHeaderAction) ProtoReflect() protoreflect.Message // Deprecated: Use SecurityPolicyRuleHttpHeaderAction.ProtoReflect.Descriptor instead. func (*SecurityPolicyRuleHttpHeaderAction) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1463} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1523} } func (x *SecurityPolicyRuleHttpHeaderAction) GetRequestHeadersToAdds() []*SecurityPolicyRuleHttpHeaderActionHttpHeaderOption { @@ -174664,7 +181217,7 @@ type SecurityPolicyRuleHttpHeaderActionHttpHeaderOption struct { func (x *SecurityPolicyRuleHttpHeaderActionHttpHeaderOption) Reset() { *x = SecurityPolicyRuleHttpHeaderActionHttpHeaderOption{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1464] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1524] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174676,7 +181229,7 @@ func (x *SecurityPolicyRuleHttpHeaderActionHttpHeaderOption) String() string { func (*SecurityPolicyRuleHttpHeaderActionHttpHeaderOption) ProtoMessage() {} func (x *SecurityPolicyRuleHttpHeaderActionHttpHeaderOption) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1464] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1524] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174689,7 +181242,7 @@ func (x *SecurityPolicyRuleHttpHeaderActionHttpHeaderOption) ProtoReflect() prot // Deprecated: Use SecurityPolicyRuleHttpHeaderActionHttpHeaderOption.ProtoReflect.Descriptor instead. func (*SecurityPolicyRuleHttpHeaderActionHttpHeaderOption) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1464} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1524} } func (x *SecurityPolicyRuleHttpHeaderActionHttpHeaderOption) GetHeaderName() string { @@ -174740,7 +181293,7 @@ type SecurityPolicyRuleMatcher struct { func (x *SecurityPolicyRuleMatcher) Reset() { *x = SecurityPolicyRuleMatcher{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1465] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1525] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174752,7 +181305,7 @@ func (x *SecurityPolicyRuleMatcher) String() string { func (*SecurityPolicyRuleMatcher) ProtoMessage() {} func (x *SecurityPolicyRuleMatcher) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1465] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1525] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174765,7 +181318,7 @@ func (x *SecurityPolicyRuleMatcher) ProtoReflect() protoreflect.Message { // Deprecated: Use SecurityPolicyRuleMatcher.ProtoReflect.Descriptor instead. func (*SecurityPolicyRuleMatcher) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1465} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1525} } func (x *SecurityPolicyRuleMatcher) GetConfig() *SecurityPolicyRuleMatcherConfig { @@ -174807,7 +181360,7 @@ type SecurityPolicyRuleMatcherConfig struct { func (x *SecurityPolicyRuleMatcherConfig) Reset() { *x = SecurityPolicyRuleMatcherConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1466] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1526] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174819,7 +181372,7 @@ func (x *SecurityPolicyRuleMatcherConfig) String() string { func (*SecurityPolicyRuleMatcherConfig) ProtoMessage() {} func (x *SecurityPolicyRuleMatcherConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1466] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1526] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174832,7 +181385,7 @@ func (x *SecurityPolicyRuleMatcherConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use SecurityPolicyRuleMatcherConfig.ProtoReflect.Descriptor instead. func (*SecurityPolicyRuleMatcherConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1466} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1526} } func (x *SecurityPolicyRuleMatcherConfig) GetSrcIpRanges() []string { @@ -174853,7 +181406,7 @@ type SecurityPolicyRuleMatcherExprOptions struct { func (x *SecurityPolicyRuleMatcherExprOptions) Reset() { *x = SecurityPolicyRuleMatcherExprOptions{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1467] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1527] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174865,7 +181418,7 @@ func (x *SecurityPolicyRuleMatcherExprOptions) String() string { func (*SecurityPolicyRuleMatcherExprOptions) ProtoMessage() {} func (x *SecurityPolicyRuleMatcherExprOptions) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1467] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1527] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174878,7 +181431,7 @@ func (x *SecurityPolicyRuleMatcherExprOptions) ProtoReflect() protoreflect.Messa // Deprecated: Use SecurityPolicyRuleMatcherExprOptions.ProtoReflect.Descriptor instead. func (*SecurityPolicyRuleMatcherExprOptions) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1467} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1527} } func (x *SecurityPolicyRuleMatcherExprOptions) GetRecaptchaOptions() *SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions { @@ -174906,7 +181459,7 @@ type SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions struct { func (x *SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions) Reset() { *x = SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1468] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1528] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174918,7 +181471,7 @@ func (x *SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions) String() string { func (*SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions) ProtoMessage() {} func (x *SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1468] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1528] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174931,7 +181484,7 @@ func (x *SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions) ProtoReflect() pr // Deprecated: Use SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions.ProtoReflect.Descriptor instead. func (*SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1468} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1528} } func (x *SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions) GetActionTokenSiteKeys() []string { @@ -174982,7 +181535,7 @@ type SecurityPolicyRuleNetworkMatcher struct { func (x *SecurityPolicyRuleNetworkMatcher) Reset() { *x = SecurityPolicyRuleNetworkMatcher{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1469] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1529] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174994,7 +181547,7 @@ func (x *SecurityPolicyRuleNetworkMatcher) String() string { func (*SecurityPolicyRuleNetworkMatcher) ProtoMessage() {} func (x *SecurityPolicyRuleNetworkMatcher) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1469] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1529] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175007,7 +181560,7 @@ func (x *SecurityPolicyRuleNetworkMatcher) ProtoReflect() protoreflect.Message { // Deprecated: Use SecurityPolicyRuleNetworkMatcher.ProtoReflect.Descriptor instead. func (*SecurityPolicyRuleNetworkMatcher) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1469} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1529} } func (x *SecurityPolicyRuleNetworkMatcher) GetDestIpRanges() []string { @@ -175080,7 +181633,7 @@ type SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch struct { func (x *SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch) Reset() { *x = SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1470] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1530] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175092,7 +181645,7 @@ func (x *SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch) String() string func (*SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch) ProtoMessage() {} func (x *SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1470] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1530] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175105,7 +181658,7 @@ func (x *SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch) ProtoReflect() p // Deprecated: Use SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch.ProtoReflect.Descriptor instead. func (*SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1470} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1530} } func (x *SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch) GetName() string { @@ -175132,7 +181685,7 @@ type SecurityPolicyRulePreconfiguredWafConfig struct { func (x *SecurityPolicyRulePreconfiguredWafConfig) Reset() { *x = SecurityPolicyRulePreconfiguredWafConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1471] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1531] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175144,7 +181697,7 @@ func (x *SecurityPolicyRulePreconfiguredWafConfig) String() string { func (*SecurityPolicyRulePreconfiguredWafConfig) ProtoMessage() {} func (x *SecurityPolicyRulePreconfiguredWafConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1471] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1531] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175157,7 +181710,7 @@ func (x *SecurityPolicyRulePreconfiguredWafConfig) ProtoReflect() protoreflect.M // Deprecated: Use SecurityPolicyRulePreconfiguredWafConfig.ProtoReflect.Descriptor instead. func (*SecurityPolicyRulePreconfiguredWafConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1471} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1531} } func (x *SecurityPolicyRulePreconfiguredWafConfig) GetExclusions() []*SecurityPolicyRulePreconfiguredWafConfigExclusion { @@ -175195,7 +181748,7 @@ type SecurityPolicyRulePreconfiguredWafConfigExclusion struct { func (x *SecurityPolicyRulePreconfiguredWafConfigExclusion) Reset() { *x = SecurityPolicyRulePreconfiguredWafConfigExclusion{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1472] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1532] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175207,7 +181760,7 @@ func (x *SecurityPolicyRulePreconfiguredWafConfigExclusion) String() string { func (*SecurityPolicyRulePreconfiguredWafConfigExclusion) ProtoMessage() {} func (x *SecurityPolicyRulePreconfiguredWafConfigExclusion) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1472] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1532] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175220,7 +181773,7 @@ func (x *SecurityPolicyRulePreconfiguredWafConfigExclusion) ProtoReflect() proto // Deprecated: Use SecurityPolicyRulePreconfiguredWafConfigExclusion.ProtoReflect.Descriptor instead. func (*SecurityPolicyRulePreconfiguredWafConfigExclusion) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1472} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1532} } func (x *SecurityPolicyRulePreconfiguredWafConfigExclusion) GetRequestCookiesToExclude() []*SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams { @@ -175278,7 +181831,7 @@ type SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams struct { func (x *SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams) Reset() { *x = SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1473] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1533] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175290,7 +181843,7 @@ func (x *SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams) String() func (*SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams) ProtoMessage() {} func (x *SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1473] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1533] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175303,7 +181856,7 @@ func (x *SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams) ProtoRefl // Deprecated: Use SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams.ProtoReflect.Descriptor instead. func (*SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1473} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1533} } func (x *SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams) GetOp() string { @@ -175414,7 +181967,7 @@ type SecurityPolicyRuleRateLimitOptions struct { func (x *SecurityPolicyRuleRateLimitOptions) Reset() { *x = SecurityPolicyRuleRateLimitOptions{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1474] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1534] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175426,7 +181979,7 @@ func (x *SecurityPolicyRuleRateLimitOptions) String() string { func (*SecurityPolicyRuleRateLimitOptions) ProtoMessage() {} func (x *SecurityPolicyRuleRateLimitOptions) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1474] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1534] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175439,7 +181992,7 @@ func (x *SecurityPolicyRuleRateLimitOptions) ProtoReflect() protoreflect.Message // Deprecated: Use SecurityPolicyRuleRateLimitOptions.ProtoReflect.Descriptor instead. func (*SecurityPolicyRuleRateLimitOptions) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1474} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1534} } func (x *SecurityPolicyRuleRateLimitOptions) GetBanDurationSec() int32 { @@ -175560,7 +182113,7 @@ type SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig struct { func (x *SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig) Reset() { *x = SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1475] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1535] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175572,7 +182125,7 @@ func (x *SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig) String() string { func (*SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig) ProtoMessage() {} func (x *SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1475] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1535] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175585,7 +182138,7 @@ func (x *SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig) ProtoReflect() pr // Deprecated: Use SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig.ProtoReflect.Descriptor instead. func (*SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1475} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1535} } func (x *SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig) GetEnforceOnKeyName() string { @@ -175614,7 +182167,7 @@ type SecurityPolicyRuleRateLimitOptionsThreshold struct { func (x *SecurityPolicyRuleRateLimitOptionsThreshold) Reset() { *x = SecurityPolicyRuleRateLimitOptionsThreshold{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1476] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1536] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175626,7 +182179,7 @@ func (x *SecurityPolicyRuleRateLimitOptionsThreshold) String() string { func (*SecurityPolicyRuleRateLimitOptionsThreshold) ProtoMessage() {} func (x *SecurityPolicyRuleRateLimitOptionsThreshold) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1476] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1536] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175639,7 +182192,7 @@ func (x *SecurityPolicyRuleRateLimitOptionsThreshold) ProtoReflect() protoreflec // Deprecated: Use SecurityPolicyRuleRateLimitOptionsThreshold.ProtoReflect.Descriptor instead. func (*SecurityPolicyRuleRateLimitOptionsThreshold) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1476} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1536} } func (x *SecurityPolicyRuleRateLimitOptionsThreshold) GetCount() int32 { @@ -175676,7 +182229,7 @@ type SecurityPolicyRuleRedirectOptions struct { func (x *SecurityPolicyRuleRedirectOptions) Reset() { *x = SecurityPolicyRuleRedirectOptions{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1477] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1537] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175688,7 +182241,7 @@ func (x *SecurityPolicyRuleRedirectOptions) String() string { func (*SecurityPolicyRuleRedirectOptions) ProtoMessage() {} func (x *SecurityPolicyRuleRedirectOptions) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1477] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1537] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175701,7 +182254,7 @@ func (x *SecurityPolicyRuleRedirectOptions) ProtoReflect() protoreflect.Message // Deprecated: Use SecurityPolicyRuleRedirectOptions.ProtoReflect.Descriptor instead. func (*SecurityPolicyRuleRedirectOptions) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1477} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1537} } func (x *SecurityPolicyRuleRedirectOptions) GetTarget() string { @@ -175752,7 +182305,7 @@ type SecurityPolicyUserDefinedField struct { func (x *SecurityPolicyUserDefinedField) Reset() { *x = SecurityPolicyUserDefinedField{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1478] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1538] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175764,7 +182317,7 @@ func (x *SecurityPolicyUserDefinedField) String() string { func (*SecurityPolicyUserDefinedField) ProtoMessage() {} func (x *SecurityPolicyUserDefinedField) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1478] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1538] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175777,7 +182330,7 @@ func (x *SecurityPolicyUserDefinedField) ProtoReflect() protoreflect.Message { // Deprecated: Use SecurityPolicyUserDefinedField.ProtoReflect.Descriptor instead. func (*SecurityPolicyUserDefinedField) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1478} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1538} } func (x *SecurityPolicyUserDefinedField) GetBase() string { @@ -175855,7 +182408,7 @@ type SecuritySettings struct { func (x *SecuritySettings) Reset() { *x = SecuritySettings{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1479] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1539] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175867,7 +182420,7 @@ func (x *SecuritySettings) String() string { func (*SecuritySettings) ProtoMessage() {} func (x *SecuritySettings) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1479] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1539] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175880,7 +182433,7 @@ func (x *SecuritySettings) ProtoReflect() protoreflect.Message { // Deprecated: Use SecuritySettings.ProtoReflect.Descriptor instead. func (*SecuritySettings) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1479} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1539} } func (x *SecuritySettings) GetAwsV4Authentication() *AWSV4Signature { @@ -175919,7 +182472,7 @@ type SendDiagnosticInterruptInstanceRequest struct { func (x *SendDiagnosticInterruptInstanceRequest) Reset() { *x = SendDiagnosticInterruptInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1480] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1540] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175931,7 +182484,7 @@ func (x *SendDiagnosticInterruptInstanceRequest) String() string { func (*SendDiagnosticInterruptInstanceRequest) ProtoMessage() {} func (x *SendDiagnosticInterruptInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1480] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1540] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175944,7 +182497,7 @@ func (x *SendDiagnosticInterruptInstanceRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use SendDiagnosticInterruptInstanceRequest.ProtoReflect.Descriptor instead. func (*SendDiagnosticInterruptInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1480} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1540} } func (x *SendDiagnosticInterruptInstanceRequest) GetInstance() string { @@ -175977,7 +182530,7 @@ type SendDiagnosticInterruptInstanceResponse struct { func (x *SendDiagnosticInterruptInstanceResponse) Reset() { *x = SendDiagnosticInterruptInstanceResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1481] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1541] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -175989,7 +182542,7 @@ func (x *SendDiagnosticInterruptInstanceResponse) String() string { func (*SendDiagnosticInterruptInstanceResponse) ProtoMessage() {} func (x *SendDiagnosticInterruptInstanceResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1481] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1541] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176002,7 +182555,7 @@ func (x *SendDiagnosticInterruptInstanceResponse) ProtoReflect() protoreflect.Me // Deprecated: Use SendDiagnosticInterruptInstanceResponse.ProtoReflect.Descriptor instead. func (*SendDiagnosticInterruptInstanceResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1481} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1541} } // An instance serial console output. @@ -176032,7 +182585,7 @@ type SerialPortOutput struct { func (x *SerialPortOutput) Reset() { *x = SerialPortOutput{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1482] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1542] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -176044,7 +182597,7 @@ func (x *SerialPortOutput) String() string { func (*SerialPortOutput) ProtoMessage() {} func (x *SerialPortOutput) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1482] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1542] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176057,7 +182610,7 @@ func (x *SerialPortOutput) ProtoReflect() protoreflect.Message { // Deprecated: Use SerialPortOutput.ProtoReflect.Descriptor instead. func (*SerialPortOutput) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1482} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1542} } func (x *SerialPortOutput) GetContents() string { @@ -176105,7 +182658,7 @@ type ServerBinding struct { func (x *ServerBinding) Reset() { *x = ServerBinding{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1483] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1543] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -176117,7 +182670,7 @@ func (x *ServerBinding) String() string { func (*ServerBinding) ProtoMessage() {} func (x *ServerBinding) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1483] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1543] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176130,7 +182683,7 @@ func (x *ServerBinding) ProtoReflect() protoreflect.Message { // Deprecated: Use ServerBinding.ProtoReflect.Descriptor instead. func (*ServerBinding) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1483} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1543} } func (x *ServerBinding) GetType() string { @@ -176153,7 +182706,7 @@ type ServiceAccount struct { func (x *ServiceAccount) Reset() { *x = ServiceAccount{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1484] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1544] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -176165,7 +182718,7 @@ func (x *ServiceAccount) String() string { func (*ServiceAccount) ProtoMessage() {} func (x *ServiceAccount) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1484] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1544] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176178,7 +182731,7 @@ func (x *ServiceAccount) ProtoReflect() protoreflect.Message { // Deprecated: Use ServiceAccount.ProtoReflect.Descriptor instead. func (*ServiceAccount) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1484} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1544} } func (x *ServiceAccount) GetEmail() string { @@ -176315,7 +182868,7 @@ type ServiceAttachment struct { func (x *ServiceAttachment) Reset() { *x = ServiceAttachment{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1485] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1545] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -176327,7 +182880,7 @@ func (x *ServiceAttachment) String() string { func (*ServiceAttachment) ProtoMessage() {} func (x *ServiceAttachment) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1485] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1545] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176340,7 +182893,7 @@ func (x *ServiceAttachment) ProtoReflect() protoreflect.Message { // Deprecated: Use ServiceAttachment.ProtoReflect.Descriptor instead. func (*ServiceAttachment) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1485} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1545} } func (x *ServiceAttachment) GetConnectedEndpoints() []*ServiceAttachmentConnectedEndpoint { @@ -176517,7 +183070,7 @@ type ServiceAttachmentAggregatedList struct { func (x *ServiceAttachmentAggregatedList) Reset() { *x = ServiceAttachmentAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1486] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1546] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -176529,7 +183082,7 @@ func (x *ServiceAttachmentAggregatedList) String() string { func (*ServiceAttachmentAggregatedList) ProtoMessage() {} func (x *ServiceAttachmentAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1486] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1546] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176542,7 +183095,7 @@ func (x *ServiceAttachmentAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use ServiceAttachmentAggregatedList.ProtoReflect.Descriptor instead. func (*ServiceAttachmentAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1486} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1546} } func (x *ServiceAttachmentAggregatedList) GetId() string { @@ -176620,7 +183173,7 @@ type ServiceAttachmentConnectedEndpoint struct { func (x *ServiceAttachmentConnectedEndpoint) Reset() { *x = ServiceAttachmentConnectedEndpoint{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1487] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1547] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -176632,7 +183185,7 @@ func (x *ServiceAttachmentConnectedEndpoint) String() string { func (*ServiceAttachmentConnectedEndpoint) ProtoMessage() {} func (x *ServiceAttachmentConnectedEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1487] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1547] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176645,7 +183198,7 @@ func (x *ServiceAttachmentConnectedEndpoint) ProtoReflect() protoreflect.Message // Deprecated: Use ServiceAttachmentConnectedEndpoint.ProtoReflect.Descriptor instead. func (*ServiceAttachmentConnectedEndpoint) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1487} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1547} } func (x *ServiceAttachmentConnectedEndpoint) GetConsumerNetwork() string { @@ -176714,7 +183267,7 @@ type ServiceAttachmentConsumerProjectLimit struct { func (x *ServiceAttachmentConsumerProjectLimit) Reset() { *x = ServiceAttachmentConsumerProjectLimit{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1488] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1548] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -176726,7 +183279,7 @@ func (x *ServiceAttachmentConsumerProjectLimit) String() string { func (*ServiceAttachmentConsumerProjectLimit) ProtoMessage() {} func (x *ServiceAttachmentConsumerProjectLimit) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1488] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1548] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176739,7 +183292,7 @@ func (x *ServiceAttachmentConsumerProjectLimit) ProtoReflect() protoreflect.Mess // Deprecated: Use ServiceAttachmentConsumerProjectLimit.ProtoReflect.Descriptor instead. func (*ServiceAttachmentConsumerProjectLimit) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1488} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1548} } func (x *ServiceAttachmentConsumerProjectLimit) GetConnectionLimit() uint32 { @@ -176794,7 +183347,7 @@ type ServiceAttachmentList struct { func (x *ServiceAttachmentList) Reset() { *x = ServiceAttachmentList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1489] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1549] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -176806,7 +183359,7 @@ func (x *ServiceAttachmentList) String() string { func (*ServiceAttachmentList) ProtoMessage() {} func (x *ServiceAttachmentList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1489] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1549] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176819,7 +183372,7 @@ func (x *ServiceAttachmentList) ProtoReflect() protoreflect.Message { // Deprecated: Use ServiceAttachmentList.ProtoReflect.Descriptor instead. func (*ServiceAttachmentList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1489} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1549} } func (x *ServiceAttachmentList) GetId() string { @@ -176877,7 +183430,7 @@ type ServiceAttachmentsScopedList struct { func (x *ServiceAttachmentsScopedList) Reset() { *x = ServiceAttachmentsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1490] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1550] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -176889,7 +183442,7 @@ func (x *ServiceAttachmentsScopedList) String() string { func (*ServiceAttachmentsScopedList) ProtoMessage() {} func (x *ServiceAttachmentsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1490] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1550] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176902,7 +183455,7 @@ func (x *ServiceAttachmentsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use ServiceAttachmentsScopedList.ProtoReflect.Descriptor instead. func (*ServiceAttachmentsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1490} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1550} } func (x *ServiceAttachmentsScopedList) GetServiceAttachments() []*ServiceAttachment { @@ -176949,7 +183502,7 @@ type SetBackendServiceTargetSslProxyRequest struct { func (x *SetBackendServiceTargetSslProxyRequest) Reset() { *x = SetBackendServiceTargetSslProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1491] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1551] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -176961,7 +183514,7 @@ func (x *SetBackendServiceTargetSslProxyRequest) String() string { func (*SetBackendServiceTargetSslProxyRequest) ProtoMessage() {} func (x *SetBackendServiceTargetSslProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1491] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1551] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176974,7 +183527,7 @@ func (x *SetBackendServiceTargetSslProxyRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use SetBackendServiceTargetSslProxyRequest.ProtoReflect.Descriptor instead. func (*SetBackendServiceTargetSslProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1491} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1551} } func (x *SetBackendServiceTargetSslProxyRequest) GetProject() string { @@ -177035,7 +183588,7 @@ type SetBackendServiceTargetTcpProxyRequest struct { func (x *SetBackendServiceTargetTcpProxyRequest) Reset() { *x = SetBackendServiceTargetTcpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1492] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1552] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177047,7 +183600,7 @@ func (x *SetBackendServiceTargetTcpProxyRequest) String() string { func (*SetBackendServiceTargetTcpProxyRequest) ProtoMessage() {} func (x *SetBackendServiceTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1492] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1552] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177060,7 +183613,7 @@ func (x *SetBackendServiceTargetTcpProxyRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use SetBackendServiceTargetTcpProxyRequest.ProtoReflect.Descriptor instead. func (*SetBackendServiceTargetTcpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1492} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1552} } func (x *SetBackendServiceTargetTcpProxyRequest) GetProject() string { @@ -177124,7 +183677,7 @@ type SetBackupTargetPoolRequest struct { func (x *SetBackupTargetPoolRequest) Reset() { *x = SetBackupTargetPoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1493] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1553] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177136,7 +183689,7 @@ func (x *SetBackupTargetPoolRequest) String() string { func (*SetBackupTargetPoolRequest) ProtoMessage() {} func (x *SetBackupTargetPoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1493] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1553] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177149,7 +183702,7 @@ func (x *SetBackupTargetPoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetBackupTargetPoolRequest.ProtoReflect.Descriptor instead. func (*SetBackupTargetPoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1493} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1553} } func (x *SetBackupTargetPoolRequest) GetFailoverRatio() float32 { @@ -177224,7 +183777,7 @@ type SetCertificateMapTargetHttpsProxyRequest struct { func (x *SetCertificateMapTargetHttpsProxyRequest) Reset() { *x = SetCertificateMapTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1494] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1554] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177236,7 +183789,7 @@ func (x *SetCertificateMapTargetHttpsProxyRequest) String() string { func (*SetCertificateMapTargetHttpsProxyRequest) ProtoMessage() {} func (x *SetCertificateMapTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1494] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1554] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177249,7 +183802,7 @@ func (x *SetCertificateMapTargetHttpsProxyRequest) ProtoReflect() protoreflect.M // Deprecated: Use SetCertificateMapTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*SetCertificateMapTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1494} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1554} } func (x *SetCertificateMapTargetHttpsProxyRequest) GetProject() string { @@ -177310,7 +183863,7 @@ type SetCertificateMapTargetSslProxyRequest struct { func (x *SetCertificateMapTargetSslProxyRequest) Reset() { *x = SetCertificateMapTargetSslProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1495] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1555] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177322,7 +183875,7 @@ func (x *SetCertificateMapTargetSslProxyRequest) String() string { func (*SetCertificateMapTargetSslProxyRequest) ProtoMessage() {} func (x *SetCertificateMapTargetSslProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1495] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1555] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177335,7 +183888,7 @@ func (x *SetCertificateMapTargetSslProxyRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use SetCertificateMapTargetSslProxyRequest.ProtoReflect.Descriptor instead. func (*SetCertificateMapTargetSslProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1495} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1555} } func (x *SetCertificateMapTargetSslProxyRequest) GetProject() string { @@ -177393,7 +183946,7 @@ type SetCloudArmorTierProjectRequest struct { func (x *SetCloudArmorTierProjectRequest) Reset() { *x = SetCloudArmorTierProjectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1496] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1556] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177405,7 +183958,7 @@ func (x *SetCloudArmorTierProjectRequest) String() string { func (*SetCloudArmorTierProjectRequest) ProtoMessage() {} func (x *SetCloudArmorTierProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1496] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1556] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177418,7 +183971,7 @@ func (x *SetCloudArmorTierProjectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetCloudArmorTierProjectRequest.ProtoReflect.Descriptor instead. func (*SetCloudArmorTierProjectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1496} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1556} } func (x *SetCloudArmorTierProjectRequest) GetProject() string { @@ -177455,7 +184008,7 @@ type SetCommonInstanceMetadataOperationMetadata struct { func (x *SetCommonInstanceMetadataOperationMetadata) Reset() { *x = SetCommonInstanceMetadataOperationMetadata{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1497] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1557] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177467,7 +184020,7 @@ func (x *SetCommonInstanceMetadataOperationMetadata) String() string { func (*SetCommonInstanceMetadataOperationMetadata) ProtoMessage() {} func (x *SetCommonInstanceMetadataOperationMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1497] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1557] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177480,7 +184033,7 @@ func (x *SetCommonInstanceMetadataOperationMetadata) ProtoReflect() protoreflect // Deprecated: Use SetCommonInstanceMetadataOperationMetadata.ProtoReflect.Descriptor instead. func (*SetCommonInstanceMetadataOperationMetadata) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1497} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1557} } func (x *SetCommonInstanceMetadataOperationMetadata) GetClientOperationId() string { @@ -177512,7 +184065,7 @@ type SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo struct { func (x *SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo) Reset() { *x = SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1498] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1558] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177524,7 +184077,7 @@ func (x *SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo) Str func (*SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo) ProtoMessage() {} func (x *SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1498] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1558] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177537,7 +184090,7 @@ func (x *SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo) Pro // Deprecated: Use SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo.ProtoReflect.Descriptor instead. func (*SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1498} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1558} } func (x *SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo) GetError() *Status { @@ -177581,7 +184134,7 @@ type SetCommonInstanceMetadataProjectRequest struct { func (x *SetCommonInstanceMetadataProjectRequest) Reset() { *x = SetCommonInstanceMetadataProjectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1499] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1559] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177593,7 +184146,7 @@ func (x *SetCommonInstanceMetadataProjectRequest) String() string { func (*SetCommonInstanceMetadataProjectRequest) ProtoMessage() {} func (x *SetCommonInstanceMetadataProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1499] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1559] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177606,7 +184159,7 @@ func (x *SetCommonInstanceMetadataProjectRequest) ProtoReflect() protoreflect.Me // Deprecated: Use SetCommonInstanceMetadataProjectRequest.ProtoReflect.Descriptor instead. func (*SetCommonInstanceMetadataProjectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1499} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1559} } func (x *SetCommonInstanceMetadataProjectRequest) GetMetadataResource() *Metadata { @@ -177657,7 +184210,7 @@ type SetDefaultNetworkTierProjectRequest struct { func (x *SetDefaultNetworkTierProjectRequest) Reset() { *x = SetDefaultNetworkTierProjectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1500] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1560] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177669,7 +184222,7 @@ func (x *SetDefaultNetworkTierProjectRequest) String() string { func (*SetDefaultNetworkTierProjectRequest) ProtoMessage() {} func (x *SetDefaultNetworkTierProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1500] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1560] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177682,7 +184235,7 @@ func (x *SetDefaultNetworkTierProjectRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use SetDefaultNetworkTierProjectRequest.ProtoReflect.Descriptor instead. func (*SetDefaultNetworkTierProjectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1500} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1560} } func (x *SetDefaultNetworkTierProjectRequest) GetProject() string { @@ -177737,7 +184290,7 @@ type SetDeletionProtectionInstanceRequest struct { func (x *SetDeletionProtectionInstanceRequest) Reset() { *x = SetDeletionProtectionInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1501] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1561] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177749,7 +184302,7 @@ func (x *SetDeletionProtectionInstanceRequest) String() string { func (*SetDeletionProtectionInstanceRequest) ProtoMessage() {} func (x *SetDeletionProtectionInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1501] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1561] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177762,7 +184315,7 @@ func (x *SetDeletionProtectionInstanceRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use SetDeletionProtectionInstanceRequest.ProtoReflect.Descriptor instead. func (*SetDeletionProtectionInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1501} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1561} } func (x *SetDeletionProtectionInstanceRequest) GetDeletionProtection() bool { @@ -177834,7 +184387,7 @@ type SetDiskAutoDeleteInstanceRequest struct { func (x *SetDiskAutoDeleteInstanceRequest) Reset() { *x = SetDiskAutoDeleteInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1502] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1562] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177846,7 +184399,7 @@ func (x *SetDiskAutoDeleteInstanceRequest) String() string { func (*SetDiskAutoDeleteInstanceRequest) ProtoMessage() {} func (x *SetDiskAutoDeleteInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1502] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1562] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177859,7 +184412,7 @@ func (x *SetDiskAutoDeleteInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetDiskAutoDeleteInstanceRequest.ProtoReflect.Descriptor instead. func (*SetDiskAutoDeleteInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1502} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1562} } func (x *SetDiskAutoDeleteInstanceRequest) GetAutoDelete() bool { @@ -177934,7 +184487,7 @@ type SetEdgeSecurityPolicyBackendBucketRequest struct { func (x *SetEdgeSecurityPolicyBackendBucketRequest) Reset() { *x = SetEdgeSecurityPolicyBackendBucketRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1503] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1563] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177946,7 +184499,7 @@ func (x *SetEdgeSecurityPolicyBackendBucketRequest) String() string { func (*SetEdgeSecurityPolicyBackendBucketRequest) ProtoMessage() {} func (x *SetEdgeSecurityPolicyBackendBucketRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1503] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1563] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177959,7 +184512,7 @@ func (x *SetEdgeSecurityPolicyBackendBucketRequest) ProtoReflect() protoreflect. // Deprecated: Use SetEdgeSecurityPolicyBackendBucketRequest.ProtoReflect.Descriptor instead. func (*SetEdgeSecurityPolicyBackendBucketRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1503} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1563} } func (x *SetEdgeSecurityPolicyBackendBucketRequest) GetBackendBucket() string { @@ -178020,7 +184573,7 @@ type SetEdgeSecurityPolicyBackendServiceRequest struct { func (x *SetEdgeSecurityPolicyBackendServiceRequest) Reset() { *x = SetEdgeSecurityPolicyBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1504] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1564] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178032,7 +184585,7 @@ func (x *SetEdgeSecurityPolicyBackendServiceRequest) String() string { func (*SetEdgeSecurityPolicyBackendServiceRequest) ProtoMessage() {} func (x *SetEdgeSecurityPolicyBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1504] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1564] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178045,7 +184598,7 @@ func (x *SetEdgeSecurityPolicyBackendServiceRequest) ProtoReflect() protoreflect // Deprecated: Use SetEdgeSecurityPolicyBackendServiceRequest.ProtoReflect.Descriptor instead. func (*SetEdgeSecurityPolicyBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1504} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1564} } func (x *SetEdgeSecurityPolicyBackendServiceRequest) GetBackendService() string { @@ -178091,7 +184644,7 @@ type SetIamPolicyBackendBucketRequest struct { func (x *SetIamPolicyBackendBucketRequest) Reset() { *x = SetIamPolicyBackendBucketRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1505] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1565] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178103,7 +184656,7 @@ func (x *SetIamPolicyBackendBucketRequest) String() string { func (*SetIamPolicyBackendBucketRequest) ProtoMessage() {} func (x *SetIamPolicyBackendBucketRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1505] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1565] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178116,7 +184669,7 @@ func (x *SetIamPolicyBackendBucketRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicyBackendBucketRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyBackendBucketRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1505} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1565} } func (x *SetIamPolicyBackendBucketRequest) GetGlobalSetPolicyRequestResource() *GlobalSetPolicyRequest { @@ -178155,7 +184708,7 @@ type SetIamPolicyBackendServiceRequest struct { func (x *SetIamPolicyBackendServiceRequest) Reset() { *x = SetIamPolicyBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1506] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1566] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178167,7 +184720,7 @@ func (x *SetIamPolicyBackendServiceRequest) String() string { func (*SetIamPolicyBackendServiceRequest) ProtoMessage() {} func (x *SetIamPolicyBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1506] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1566] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178180,7 +184733,7 @@ func (x *SetIamPolicyBackendServiceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SetIamPolicyBackendServiceRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1506} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1566} } func (x *SetIamPolicyBackendServiceRequest) GetGlobalSetPolicyRequestResource() *GlobalSetPolicyRequest { @@ -178221,7 +184774,7 @@ type SetIamPolicyDiskRequest struct { func (x *SetIamPolicyDiskRequest) Reset() { *x = SetIamPolicyDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1507] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1567] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178233,7 +184786,7 @@ func (x *SetIamPolicyDiskRequest) String() string { func (*SetIamPolicyDiskRequest) ProtoMessage() {} func (x *SetIamPolicyDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1507] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1567] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178246,7 +184799,7 @@ func (x *SetIamPolicyDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicyDiskRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1507} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1567} } func (x *SetIamPolicyDiskRequest) GetProject() string { @@ -178290,7 +184843,7 @@ type SetIamPolicyFirewallPolicyRequest struct { func (x *SetIamPolicyFirewallPolicyRequest) Reset() { *x = SetIamPolicyFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1508] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1568] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178302,7 +184855,7 @@ func (x *SetIamPolicyFirewallPolicyRequest) String() string { func (*SetIamPolicyFirewallPolicyRequest) ProtoMessage() {} func (x *SetIamPolicyFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1508] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1568] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178315,7 +184868,7 @@ func (x *SetIamPolicyFirewallPolicyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SetIamPolicyFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1508} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1568} } func (x *SetIamPolicyFirewallPolicyRequest) GetGlobalOrganizationSetPolicyRequestResource() *GlobalOrganizationSetPolicyRequest { @@ -178347,7 +184900,7 @@ type SetIamPolicyImageRequest struct { func (x *SetIamPolicyImageRequest) Reset() { *x = SetIamPolicyImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1509] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1569] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178359,7 +184912,7 @@ func (x *SetIamPolicyImageRequest) String() string { func (*SetIamPolicyImageRequest) ProtoMessage() {} func (x *SetIamPolicyImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1509] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1569] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178372,7 +184925,7 @@ func (x *SetIamPolicyImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicyImageRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1509} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1569} } func (x *SetIamPolicyImageRequest) GetGlobalSetPolicyRequestResource() *GlobalSetPolicyRequest { @@ -178413,7 +184966,7 @@ type SetIamPolicyInstanceRequest struct { func (x *SetIamPolicyInstanceRequest) Reset() { *x = SetIamPolicyInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1510] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1570] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178425,7 +184978,7 @@ func (x *SetIamPolicyInstanceRequest) String() string { func (*SetIamPolicyInstanceRequest) ProtoMessage() {} func (x *SetIamPolicyInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1510] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1570] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178438,7 +184991,7 @@ func (x *SetIamPolicyInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicyInstanceRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1510} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1570} } func (x *SetIamPolicyInstanceRequest) GetProject() string { @@ -178484,7 +185037,7 @@ type SetIamPolicyInstanceTemplateRequest struct { func (x *SetIamPolicyInstanceTemplateRequest) Reset() { *x = SetIamPolicyInstanceTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1511] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1571] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178496,7 +185049,7 @@ func (x *SetIamPolicyInstanceTemplateRequest) String() string { func (*SetIamPolicyInstanceTemplateRequest) ProtoMessage() {} func (x *SetIamPolicyInstanceTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1511] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1571] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178509,7 +185062,7 @@ func (x *SetIamPolicyInstanceTemplateRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use SetIamPolicyInstanceTemplateRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyInstanceTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1511} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1571} } func (x *SetIamPolicyInstanceTemplateRequest) GetGlobalSetPolicyRequestResource() *GlobalSetPolicyRequest { @@ -178533,6 +185086,79 @@ func (x *SetIamPolicyInstanceTemplateRequest) GetResource() string { return "" } +// A request message for InstantSnapshotGroups.SetIamPolicy. See the method description for details. +type SetIamPolicyInstantSnapshotGroupRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + // The name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + // The body resource for this request + ZoneSetPolicyRequestResource *ZoneSetPolicyRequest `protobuf:"bytes,382082107,opt,name=zone_set_policy_request_resource,json=zoneSetPolicyRequestResource,proto3" json:"zone_set_policy_request_resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SetIamPolicyInstantSnapshotGroupRequest) Reset() { + *x = SetIamPolicyInstantSnapshotGroupRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1572] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SetIamPolicyInstantSnapshotGroupRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SetIamPolicyInstantSnapshotGroupRequest) ProtoMessage() {} + +func (x *SetIamPolicyInstantSnapshotGroupRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1572] + 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 SetIamPolicyInstantSnapshotGroupRequest.ProtoReflect.Descriptor instead. +func (*SetIamPolicyInstantSnapshotGroupRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1572} +} + +func (x *SetIamPolicyInstantSnapshotGroupRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *SetIamPolicyInstantSnapshotGroupRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + +func (x *SetIamPolicyInstantSnapshotGroupRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + +func (x *SetIamPolicyInstantSnapshotGroupRequest) GetZoneSetPolicyRequestResource() *ZoneSetPolicyRequest { + if x != nil { + return x.ZoneSetPolicyRequestResource + } + return nil +} + // A request message for InstantSnapshots.SetIamPolicy. See the method description for details. type SetIamPolicyInstantSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -178550,7 +185176,7 @@ type SetIamPolicyInstantSnapshotRequest struct { func (x *SetIamPolicyInstantSnapshotRequest) Reset() { *x = SetIamPolicyInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1512] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1573] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178562,7 +185188,7 @@ func (x *SetIamPolicyInstantSnapshotRequest) String() string { func (*SetIamPolicyInstantSnapshotRequest) ProtoMessage() {} func (x *SetIamPolicyInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1512] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1573] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178575,7 +185201,7 @@ func (x *SetIamPolicyInstantSnapshotRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SetIamPolicyInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1512} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1573} } func (x *SetIamPolicyInstantSnapshotRequest) GetProject() string { @@ -178621,7 +185247,7 @@ type SetIamPolicyInterconnectAttachmentGroupRequest struct { func (x *SetIamPolicyInterconnectAttachmentGroupRequest) Reset() { *x = SetIamPolicyInterconnectAttachmentGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1513] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1574] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178633,7 +185259,7 @@ func (x *SetIamPolicyInterconnectAttachmentGroupRequest) String() string { func (*SetIamPolicyInterconnectAttachmentGroupRequest) ProtoMessage() {} func (x *SetIamPolicyInterconnectAttachmentGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1513] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1574] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178646,7 +185272,7 @@ func (x *SetIamPolicyInterconnectAttachmentGroupRequest) ProtoReflect() protoref // Deprecated: Use SetIamPolicyInterconnectAttachmentGroupRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyInterconnectAttachmentGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1513} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1574} } func (x *SetIamPolicyInterconnectAttachmentGroupRequest) GetGlobalSetPolicyRequestResource() *GlobalSetPolicyRequest { @@ -178685,7 +185311,7 @@ type SetIamPolicyInterconnectGroupRequest struct { func (x *SetIamPolicyInterconnectGroupRequest) Reset() { *x = SetIamPolicyInterconnectGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1514] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1575] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178697,7 +185323,7 @@ func (x *SetIamPolicyInterconnectGroupRequest) String() string { func (*SetIamPolicyInterconnectGroupRequest) ProtoMessage() {} func (x *SetIamPolicyInterconnectGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1514] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1575] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178710,7 +185336,7 @@ func (x *SetIamPolicyInterconnectGroupRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use SetIamPolicyInterconnectGroupRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyInterconnectGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1514} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1575} } func (x *SetIamPolicyInterconnectGroupRequest) GetGlobalSetPolicyRequestResource() *GlobalSetPolicyRequest { @@ -178749,7 +185375,7 @@ type SetIamPolicyLicenseRequest struct { func (x *SetIamPolicyLicenseRequest) Reset() { *x = SetIamPolicyLicenseRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1515] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1576] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178761,7 +185387,7 @@ func (x *SetIamPolicyLicenseRequest) String() string { func (*SetIamPolicyLicenseRequest) ProtoMessage() {} func (x *SetIamPolicyLicenseRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1515] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1576] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178774,7 +185400,7 @@ func (x *SetIamPolicyLicenseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicyLicenseRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyLicenseRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1515} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1576} } func (x *SetIamPolicyLicenseRequest) GetGlobalSetPolicyRequestResource() *GlobalSetPolicyRequest { @@ -178813,7 +185439,7 @@ type SetIamPolicyMachineImageRequest struct { func (x *SetIamPolicyMachineImageRequest) Reset() { *x = SetIamPolicyMachineImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1516] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1577] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178825,7 +185451,7 @@ func (x *SetIamPolicyMachineImageRequest) String() string { func (*SetIamPolicyMachineImageRequest) ProtoMessage() {} func (x *SetIamPolicyMachineImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1516] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1577] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178838,7 +185464,7 @@ func (x *SetIamPolicyMachineImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicyMachineImageRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyMachineImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1516} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1577} } func (x *SetIamPolicyMachineImageRequest) GetGlobalSetPolicyRequestResource() *GlobalSetPolicyRequest { @@ -178879,7 +185505,7 @@ type SetIamPolicyNetworkAttachmentRequest struct { func (x *SetIamPolicyNetworkAttachmentRequest) Reset() { *x = SetIamPolicyNetworkAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1517] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1578] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178891,7 +185517,7 @@ func (x *SetIamPolicyNetworkAttachmentRequest) String() string { func (*SetIamPolicyNetworkAttachmentRequest) ProtoMessage() {} func (x *SetIamPolicyNetworkAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1517] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1578] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178904,7 +185530,7 @@ func (x *SetIamPolicyNetworkAttachmentRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use SetIamPolicyNetworkAttachmentRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyNetworkAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1517} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1578} } func (x *SetIamPolicyNetworkAttachmentRequest) GetProject() string { @@ -178950,7 +185576,7 @@ type SetIamPolicyNetworkFirewallPolicyRequest struct { func (x *SetIamPolicyNetworkFirewallPolicyRequest) Reset() { *x = SetIamPolicyNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1518] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1579] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -178962,7 +185588,7 @@ func (x *SetIamPolicyNetworkFirewallPolicyRequest) String() string { func (*SetIamPolicyNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *SetIamPolicyNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1518] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1579] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178975,7 +185601,7 @@ func (x *SetIamPolicyNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.M // Deprecated: Use SetIamPolicyNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1518} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1579} } func (x *SetIamPolicyNetworkFirewallPolicyRequest) GetGlobalSetPolicyRequestResource() *GlobalSetPolicyRequest { @@ -179016,7 +185642,7 @@ type SetIamPolicyNodeGroupRequest struct { func (x *SetIamPolicyNodeGroupRequest) Reset() { *x = SetIamPolicyNodeGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1519] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1580] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179028,7 +185654,7 @@ func (x *SetIamPolicyNodeGroupRequest) String() string { func (*SetIamPolicyNodeGroupRequest) ProtoMessage() {} func (x *SetIamPolicyNodeGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1519] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1580] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179041,7 +185667,7 @@ func (x *SetIamPolicyNodeGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicyNodeGroupRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyNodeGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1519} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1580} } func (x *SetIamPolicyNodeGroupRequest) GetProject() string { @@ -179089,7 +185715,7 @@ type SetIamPolicyNodeTemplateRequest struct { func (x *SetIamPolicyNodeTemplateRequest) Reset() { *x = SetIamPolicyNodeTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1520] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1581] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179101,7 +185727,7 @@ func (x *SetIamPolicyNodeTemplateRequest) String() string { func (*SetIamPolicyNodeTemplateRequest) ProtoMessage() {} func (x *SetIamPolicyNodeTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1520] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1581] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179114,7 +185740,7 @@ func (x *SetIamPolicyNodeTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicyNodeTemplateRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyNodeTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1520} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1581} } func (x *SetIamPolicyNodeTemplateRequest) GetProject() string { @@ -179145,6 +185771,79 @@ func (x *SetIamPolicyNodeTemplateRequest) GetResource() string { return "" } +// A request message for RegionBackendBuckets.SetIamPolicy. See the method description for details. +type SetIamPolicyRegionBackendBucketRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // The body resource for this request + RegionSetPolicyRequestResource *RegionSetPolicyRequest `protobuf:"bytes,276489091,opt,name=region_set_policy_request_resource,json=regionSetPolicyRequestResource,proto3" json:"region_set_policy_request_resource,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SetIamPolicyRegionBackendBucketRequest) Reset() { + *x = SetIamPolicyRegionBackendBucketRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1582] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SetIamPolicyRegionBackendBucketRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SetIamPolicyRegionBackendBucketRequest) ProtoMessage() {} + +func (x *SetIamPolicyRegionBackendBucketRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1582] + 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 SetIamPolicyRegionBackendBucketRequest.ProtoReflect.Descriptor instead. +func (*SetIamPolicyRegionBackendBucketRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1582} +} + +func (x *SetIamPolicyRegionBackendBucketRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *SetIamPolicyRegionBackendBucketRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *SetIamPolicyRegionBackendBucketRequest) GetRegionSetPolicyRequestResource() *RegionSetPolicyRequest { + if x != nil { + return x.RegionSetPolicyRequestResource + } + return nil +} + +func (x *SetIamPolicyRegionBackendBucketRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + // A request message for RegionBackendServices.SetIamPolicy. See the method description for details. type SetIamPolicyRegionBackendServiceRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -179162,7 +185861,7 @@ type SetIamPolicyRegionBackendServiceRequest struct { func (x *SetIamPolicyRegionBackendServiceRequest) Reset() { *x = SetIamPolicyRegionBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1521] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1583] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179174,7 +185873,7 @@ func (x *SetIamPolicyRegionBackendServiceRequest) String() string { func (*SetIamPolicyRegionBackendServiceRequest) ProtoMessage() {} func (x *SetIamPolicyRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1521] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1583] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179187,7 +185886,7 @@ func (x *SetIamPolicyRegionBackendServiceRequest) ProtoReflect() protoreflect.Me // Deprecated: Use SetIamPolicyRegionBackendServiceRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyRegionBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1521} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1583} } func (x *SetIamPolicyRegionBackendServiceRequest) GetProject() string { @@ -179235,7 +185934,7 @@ type SetIamPolicyRegionDiskRequest struct { func (x *SetIamPolicyRegionDiskRequest) Reset() { *x = SetIamPolicyRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1522] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1584] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179247,7 +185946,7 @@ func (x *SetIamPolicyRegionDiskRequest) String() string { func (*SetIamPolicyRegionDiskRequest) ProtoMessage() {} func (x *SetIamPolicyRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1522] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1584] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179260,7 +185959,7 @@ func (x *SetIamPolicyRegionDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicyRegionDiskRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1522} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1584} } func (x *SetIamPolicyRegionDiskRequest) GetProject() string { @@ -179291,6 +185990,79 @@ func (x *SetIamPolicyRegionDiskRequest) GetResource() string { return "" } +// A request message for RegionInstantSnapshotGroups.SetIamPolicy. See the method description for details. +type SetIamPolicyRegionInstantSnapshotGroupRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // The body resource for this request + RegionSetPolicyRequestResource *RegionSetPolicyRequest `protobuf:"bytes,276489091,opt,name=region_set_policy_request_resource,json=regionSetPolicyRequestResource,proto3" json:"region_set_policy_request_resource,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SetIamPolicyRegionInstantSnapshotGroupRequest) Reset() { + *x = SetIamPolicyRegionInstantSnapshotGroupRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1585] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SetIamPolicyRegionInstantSnapshotGroupRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SetIamPolicyRegionInstantSnapshotGroupRequest) ProtoMessage() {} + +func (x *SetIamPolicyRegionInstantSnapshotGroupRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1585] + 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 SetIamPolicyRegionInstantSnapshotGroupRequest.ProtoReflect.Descriptor instead. +func (*SetIamPolicyRegionInstantSnapshotGroupRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1585} +} + +func (x *SetIamPolicyRegionInstantSnapshotGroupRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *SetIamPolicyRegionInstantSnapshotGroupRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *SetIamPolicyRegionInstantSnapshotGroupRequest) GetRegionSetPolicyRequestResource() *RegionSetPolicyRequest { + if x != nil { + return x.RegionSetPolicyRequestResource + } + return nil +} + +func (x *SetIamPolicyRegionInstantSnapshotGroupRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + // A request message for RegionInstantSnapshots.SetIamPolicy. See the method description for details. type SetIamPolicyRegionInstantSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -179308,7 +186080,7 @@ type SetIamPolicyRegionInstantSnapshotRequest struct { func (x *SetIamPolicyRegionInstantSnapshotRequest) Reset() { *x = SetIamPolicyRegionInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1523] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1586] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179320,7 +186092,7 @@ func (x *SetIamPolicyRegionInstantSnapshotRequest) String() string { func (*SetIamPolicyRegionInstantSnapshotRequest) ProtoMessage() {} func (x *SetIamPolicyRegionInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1523] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1586] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179333,7 +186105,7 @@ func (x *SetIamPolicyRegionInstantSnapshotRequest) ProtoReflect() protoreflect.M // Deprecated: Use SetIamPolicyRegionInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyRegionInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1523} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1586} } func (x *SetIamPolicyRegionInstantSnapshotRequest) GetProject() string { @@ -179381,7 +186153,7 @@ type SetIamPolicyRegionNetworkFirewallPolicyRequest struct { func (x *SetIamPolicyRegionNetworkFirewallPolicyRequest) Reset() { *x = SetIamPolicyRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1524] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1587] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179393,7 +186165,7 @@ func (x *SetIamPolicyRegionNetworkFirewallPolicyRequest) String() string { func (*SetIamPolicyRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *SetIamPolicyRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1524] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1587] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179406,7 +186178,7 @@ func (x *SetIamPolicyRegionNetworkFirewallPolicyRequest) ProtoReflect() protoref // Deprecated: Use SetIamPolicyRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1524} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1587} } func (x *SetIamPolicyRegionNetworkFirewallPolicyRequest) GetProject() string { @@ -179437,6 +186209,79 @@ func (x *SetIamPolicyRegionNetworkFirewallPolicyRequest) GetResource() string { return "" } +// A request message for RegionSnapshots.SetIamPolicy. See the method description for details. +type SetIamPolicyRegionSnapshotRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // The body resource for this request + RegionSetPolicyRequestResource *RegionSetPolicyRequest `protobuf:"bytes,276489091,opt,name=region_set_policy_request_resource,json=regionSetPolicyRequestResource,proto3" json:"region_set_policy_request_resource,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SetIamPolicyRegionSnapshotRequest) Reset() { + *x = SetIamPolicyRegionSnapshotRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1588] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SetIamPolicyRegionSnapshotRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SetIamPolicyRegionSnapshotRequest) ProtoMessage() {} + +func (x *SetIamPolicyRegionSnapshotRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1588] + 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 SetIamPolicyRegionSnapshotRequest.ProtoReflect.Descriptor instead. +func (*SetIamPolicyRegionSnapshotRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1588} +} + +func (x *SetIamPolicyRegionSnapshotRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *SetIamPolicyRegionSnapshotRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *SetIamPolicyRegionSnapshotRequest) GetRegionSetPolicyRequestResource() *RegionSetPolicyRequest { + if x != nil { + return x.RegionSetPolicyRequestResource + } + return nil +} + +func (x *SetIamPolicyRegionSnapshotRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + // A request message for ReservationBlocks.SetIamPolicy. See the method description for details. type SetIamPolicyReservationBlockRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -179456,7 +186301,7 @@ type SetIamPolicyReservationBlockRequest struct { func (x *SetIamPolicyReservationBlockRequest) Reset() { *x = SetIamPolicyReservationBlockRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1525] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1589] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179468,7 +186313,7 @@ func (x *SetIamPolicyReservationBlockRequest) String() string { func (*SetIamPolicyReservationBlockRequest) ProtoMessage() {} func (x *SetIamPolicyReservationBlockRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1525] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1589] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179481,7 +186326,7 @@ func (x *SetIamPolicyReservationBlockRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use SetIamPolicyReservationBlockRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyReservationBlockRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1525} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1589} } func (x *SetIamPolicyReservationBlockRequest) GetParentResource() string { @@ -179536,7 +186381,7 @@ type SetIamPolicyReservationRequest struct { func (x *SetIamPolicyReservationRequest) Reset() { *x = SetIamPolicyReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1526] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1590] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179548,7 +186393,7 @@ func (x *SetIamPolicyReservationRequest) String() string { func (*SetIamPolicyReservationRequest) ProtoMessage() {} func (x *SetIamPolicyReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1526] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1590] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179561,7 +186406,7 @@ func (x *SetIamPolicyReservationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicyReservationRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1526} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1590} } func (x *SetIamPolicyReservationRequest) GetProject() string { @@ -179611,7 +186456,7 @@ type SetIamPolicyReservationSubBlockRequest struct { func (x *SetIamPolicyReservationSubBlockRequest) Reset() { *x = SetIamPolicyReservationSubBlockRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1527] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1591] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179623,7 +186468,7 @@ func (x *SetIamPolicyReservationSubBlockRequest) String() string { func (*SetIamPolicyReservationSubBlockRequest) ProtoMessage() {} func (x *SetIamPolicyReservationSubBlockRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1527] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1591] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179636,7 +186481,7 @@ func (x *SetIamPolicyReservationSubBlockRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use SetIamPolicyReservationSubBlockRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyReservationSubBlockRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1527} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1591} } func (x *SetIamPolicyReservationSubBlockRequest) GetParentResource() string { @@ -179691,7 +186536,7 @@ type SetIamPolicyResourcePolicyRequest struct { func (x *SetIamPolicyResourcePolicyRequest) Reset() { *x = SetIamPolicyResourcePolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1528] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1592] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179703,7 +186548,7 @@ func (x *SetIamPolicyResourcePolicyRequest) String() string { func (*SetIamPolicyResourcePolicyRequest) ProtoMessage() {} func (x *SetIamPolicyResourcePolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1528] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1592] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179716,7 +186561,7 @@ func (x *SetIamPolicyResourcePolicyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SetIamPolicyResourcePolicyRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyResourcePolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1528} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1592} } func (x *SetIamPolicyResourcePolicyRequest) GetProject() string { @@ -179764,7 +186609,7 @@ type SetIamPolicyServiceAttachmentRequest struct { func (x *SetIamPolicyServiceAttachmentRequest) Reset() { *x = SetIamPolicyServiceAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1529] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1593] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179776,7 +186621,7 @@ func (x *SetIamPolicyServiceAttachmentRequest) String() string { func (*SetIamPolicyServiceAttachmentRequest) ProtoMessage() {} func (x *SetIamPolicyServiceAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1529] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1593] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179789,7 +186634,7 @@ func (x *SetIamPolicyServiceAttachmentRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use SetIamPolicyServiceAttachmentRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyServiceAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1529} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1593} } func (x *SetIamPolicyServiceAttachmentRequest) GetProject() string { @@ -179835,7 +186680,7 @@ type SetIamPolicySnapshotRequest struct { func (x *SetIamPolicySnapshotRequest) Reset() { *x = SetIamPolicySnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1530] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1594] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179847,7 +186692,7 @@ func (x *SetIamPolicySnapshotRequest) String() string { func (*SetIamPolicySnapshotRequest) ProtoMessage() {} func (x *SetIamPolicySnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1530] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1594] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179860,7 +186705,7 @@ func (x *SetIamPolicySnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicySnapshotRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicySnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1530} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1594} } func (x *SetIamPolicySnapshotRequest) GetGlobalSetPolicyRequestResource() *GlobalSetPolicyRequest { @@ -179901,7 +186746,7 @@ type SetIamPolicyStoragePoolRequest struct { func (x *SetIamPolicyStoragePoolRequest) Reset() { *x = SetIamPolicyStoragePoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1531] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1595] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179913,7 +186758,7 @@ func (x *SetIamPolicyStoragePoolRequest) String() string { func (*SetIamPolicyStoragePoolRequest) ProtoMessage() {} func (x *SetIamPolicyStoragePoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1531] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1595] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179926,7 +186771,7 @@ func (x *SetIamPolicyStoragePoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicyStoragePoolRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicyStoragePoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1531} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1595} } func (x *SetIamPolicyStoragePoolRequest) GetProject() string { @@ -179974,7 +186819,7 @@ type SetIamPolicySubnetworkRequest struct { func (x *SetIamPolicySubnetworkRequest) Reset() { *x = SetIamPolicySubnetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1532] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1596] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179986,7 +186831,7 @@ func (x *SetIamPolicySubnetworkRequest) String() string { func (*SetIamPolicySubnetworkRequest) ProtoMessage() {} func (x *SetIamPolicySubnetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1532] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1596] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179999,7 +186844,7 @@ func (x *SetIamPolicySubnetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetIamPolicySubnetworkRequest.ProtoReflect.Descriptor instead. func (*SetIamPolicySubnetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1532} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1596} } func (x *SetIamPolicySubnetworkRequest) GetProject() string { @@ -180062,7 +186907,7 @@ type SetInstanceTemplateInstanceGroupManagerRequest struct { func (x *SetInstanceTemplateInstanceGroupManagerRequest) Reset() { *x = SetInstanceTemplateInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1533] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1597] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180074,7 +186919,7 @@ func (x *SetInstanceTemplateInstanceGroupManagerRequest) String() string { func (*SetInstanceTemplateInstanceGroupManagerRequest) ProtoMessage() {} func (x *SetInstanceTemplateInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1533] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1597] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180087,7 +186932,7 @@ func (x *SetInstanceTemplateInstanceGroupManagerRequest) ProtoReflect() protoref // Deprecated: Use SetInstanceTemplateInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*SetInstanceTemplateInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1533} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1597} } func (x *SetInstanceTemplateInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -180156,7 +187001,7 @@ type SetInstanceTemplateRegionInstanceGroupManagerRequest struct { func (x *SetInstanceTemplateRegionInstanceGroupManagerRequest) Reset() { *x = SetInstanceTemplateRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1534] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1598] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180168,7 +187013,7 @@ func (x *SetInstanceTemplateRegionInstanceGroupManagerRequest) String() string { func (*SetInstanceTemplateRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *SetInstanceTemplateRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1534] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1598] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180181,7 +187026,7 @@ func (x *SetInstanceTemplateRegionInstanceGroupManagerRequest) ProtoReflect() pr // Deprecated: Use SetInstanceTemplateRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*SetInstanceTemplateRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1534} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1598} } func (x *SetInstanceTemplateRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -180250,7 +187095,7 @@ type SetLabelsAddressRequest struct { func (x *SetLabelsAddressRequest) Reset() { *x = SetLabelsAddressRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1535] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1599] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180262,7 +187107,7 @@ func (x *SetLabelsAddressRequest) String() string { func (*SetLabelsAddressRequest) ProtoMessage() {} func (x *SetLabelsAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1535] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1599] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180275,7 +187120,7 @@ func (x *SetLabelsAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsAddressRequest.ProtoReflect.Descriptor instead. func (*SetLabelsAddressRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1535} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1599} } func (x *SetLabelsAddressRequest) GetProject() string { @@ -180344,7 +187189,7 @@ type SetLabelsDiskRequest struct { func (x *SetLabelsDiskRequest) Reset() { *x = SetLabelsDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1536] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1600] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180356,7 +187201,7 @@ func (x *SetLabelsDiskRequest) String() string { func (*SetLabelsDiskRequest) ProtoMessage() {} func (x *SetLabelsDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1536] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1600] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180369,7 +187214,7 @@ func (x *SetLabelsDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsDiskRequest.ProtoReflect.Descriptor instead. func (*SetLabelsDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1536} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1600} } func (x *SetLabelsDiskRequest) GetProject() string { @@ -180422,7 +187267,7 @@ type SetLabelsExternalVpnGatewayRequest struct { func (x *SetLabelsExternalVpnGatewayRequest) Reset() { *x = SetLabelsExternalVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1537] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1601] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180434,7 +187279,7 @@ func (x *SetLabelsExternalVpnGatewayRequest) String() string { func (*SetLabelsExternalVpnGatewayRequest) ProtoMessage() {} func (x *SetLabelsExternalVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1537] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1601] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180447,7 +187292,7 @@ func (x *SetLabelsExternalVpnGatewayRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SetLabelsExternalVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*SetLabelsExternalVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1537} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1601} } func (x *SetLabelsExternalVpnGatewayRequest) GetGlobalSetLabelsRequestResource() *GlobalSetLabelsRequest { @@ -180502,7 +187347,7 @@ type SetLabelsForwardingRuleRequest struct { func (x *SetLabelsForwardingRuleRequest) Reset() { *x = SetLabelsForwardingRuleRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1538] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1602] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180514,7 +187359,7 @@ func (x *SetLabelsForwardingRuleRequest) String() string { func (*SetLabelsForwardingRuleRequest) ProtoMessage() {} func (x *SetLabelsForwardingRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1538] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1602] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180527,7 +187372,7 @@ func (x *SetLabelsForwardingRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsForwardingRuleRequest.ProtoReflect.Descriptor instead. func (*SetLabelsForwardingRuleRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1538} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1602} } func (x *SetLabelsForwardingRuleRequest) GetProject() string { @@ -180580,7 +187425,7 @@ type SetLabelsGlobalAddressRequest struct { func (x *SetLabelsGlobalAddressRequest) Reset() { *x = SetLabelsGlobalAddressRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1539] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1603] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180592,7 +187437,7 @@ func (x *SetLabelsGlobalAddressRequest) String() string { func (*SetLabelsGlobalAddressRequest) ProtoMessage() {} func (x *SetLabelsGlobalAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1539] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1603] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180605,7 +187450,7 @@ func (x *SetLabelsGlobalAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsGlobalAddressRequest.ProtoReflect.Descriptor instead. func (*SetLabelsGlobalAddressRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1539} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1603} } func (x *SetLabelsGlobalAddressRequest) GetGlobalSetLabelsRequestResource() *GlobalSetLabelsRequest { @@ -180644,7 +187489,7 @@ type SetLabelsGlobalForwardingRuleRequest struct { func (x *SetLabelsGlobalForwardingRuleRequest) Reset() { *x = SetLabelsGlobalForwardingRuleRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1540] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1604] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180656,7 +187501,7 @@ func (x *SetLabelsGlobalForwardingRuleRequest) String() string { func (*SetLabelsGlobalForwardingRuleRequest) ProtoMessage() {} func (x *SetLabelsGlobalForwardingRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1540] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1604] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180669,7 +187514,7 @@ func (x *SetLabelsGlobalForwardingRuleRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use SetLabelsGlobalForwardingRuleRequest.ProtoReflect.Descriptor instead. func (*SetLabelsGlobalForwardingRuleRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1540} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1604} } func (x *SetLabelsGlobalForwardingRuleRequest) GetGlobalSetLabelsRequestResource() *GlobalSetLabelsRequest { @@ -180708,7 +187553,7 @@ type SetLabelsImageRequest struct { func (x *SetLabelsImageRequest) Reset() { *x = SetLabelsImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1541] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1605] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180720,7 +187565,7 @@ func (x *SetLabelsImageRequest) String() string { func (*SetLabelsImageRequest) ProtoMessage() {} func (x *SetLabelsImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1541] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1605] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180733,7 +187578,7 @@ func (x *SetLabelsImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsImageRequest.ProtoReflect.Descriptor instead. func (*SetLabelsImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1541} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1605} } func (x *SetLabelsImageRequest) GetGlobalSetLabelsRequestResource() *GlobalSetLabelsRequest { @@ -180788,7 +187633,7 @@ type SetLabelsInstanceRequest struct { func (x *SetLabelsInstanceRequest) Reset() { *x = SetLabelsInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1542] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1606] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180800,7 +187645,7 @@ func (x *SetLabelsInstanceRequest) String() string { func (*SetLabelsInstanceRequest) ProtoMessage() {} func (x *SetLabelsInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1542] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1606] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180813,7 +187658,7 @@ func (x *SetLabelsInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsInstanceRequest.ProtoReflect.Descriptor instead. func (*SetLabelsInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1542} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1606} } func (x *SetLabelsInstanceRequest) GetInstance() string { @@ -180882,7 +187727,7 @@ type SetLabelsInstantSnapshotRequest struct { func (x *SetLabelsInstantSnapshotRequest) Reset() { *x = SetLabelsInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1543] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1607] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180894,7 +187739,7 @@ func (x *SetLabelsInstantSnapshotRequest) String() string { func (*SetLabelsInstantSnapshotRequest) ProtoMessage() {} func (x *SetLabelsInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1543] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1607] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180907,7 +187752,7 @@ func (x *SetLabelsInstantSnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*SetLabelsInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1543} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1607} } func (x *SetLabelsInstantSnapshotRequest) GetProject() string { @@ -180976,7 +187821,7 @@ type SetLabelsInterconnectAttachmentRequest struct { func (x *SetLabelsInterconnectAttachmentRequest) Reset() { *x = SetLabelsInterconnectAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1544] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1608] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180988,7 +187833,7 @@ func (x *SetLabelsInterconnectAttachmentRequest) String() string { func (*SetLabelsInterconnectAttachmentRequest) ProtoMessage() {} func (x *SetLabelsInterconnectAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1544] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1608] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181001,7 +187846,7 @@ func (x *SetLabelsInterconnectAttachmentRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use SetLabelsInterconnectAttachmentRequest.ProtoReflect.Descriptor instead. func (*SetLabelsInterconnectAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1544} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1608} } func (x *SetLabelsInterconnectAttachmentRequest) GetProject() string { @@ -181054,7 +187899,7 @@ type SetLabelsInterconnectRequest struct { func (x *SetLabelsInterconnectRequest) Reset() { *x = SetLabelsInterconnectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1545] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1609] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181066,7 +187911,7 @@ func (x *SetLabelsInterconnectRequest) String() string { func (*SetLabelsInterconnectRequest) ProtoMessage() {} func (x *SetLabelsInterconnectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1545] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1609] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181079,7 +187924,7 @@ func (x *SetLabelsInterconnectRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsInterconnectRequest.ProtoReflect.Descriptor instead. func (*SetLabelsInterconnectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1545} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1609} } func (x *SetLabelsInterconnectRequest) GetGlobalSetLabelsRequestResource() *GlobalSetLabelsRequest { @@ -181118,7 +187963,7 @@ type SetLabelsMachineImageRequest struct { func (x *SetLabelsMachineImageRequest) Reset() { *x = SetLabelsMachineImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1546] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1610] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181130,7 +187975,7 @@ func (x *SetLabelsMachineImageRequest) String() string { func (*SetLabelsMachineImageRequest) ProtoMessage() {} func (x *SetLabelsMachineImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1546] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1610] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181143,7 +187988,7 @@ func (x *SetLabelsMachineImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsMachineImageRequest.ProtoReflect.Descriptor instead. func (*SetLabelsMachineImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1546} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1610} } func (x *SetLabelsMachineImageRequest) GetGlobalSetLabelsRequestResource() *GlobalSetLabelsRequest { @@ -181198,7 +188043,7 @@ type SetLabelsRegionDiskRequest struct { func (x *SetLabelsRegionDiskRequest) Reset() { *x = SetLabelsRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1547] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1611] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181210,7 +188055,7 @@ func (x *SetLabelsRegionDiskRequest) String() string { func (*SetLabelsRegionDiskRequest) ProtoMessage() {} func (x *SetLabelsRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1547] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1611] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181223,7 +188068,7 @@ func (x *SetLabelsRegionDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsRegionDiskRequest.ProtoReflect.Descriptor instead. func (*SetLabelsRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1547} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1611} } func (x *SetLabelsRegionDiskRequest) GetProject() string { @@ -181292,7 +188137,7 @@ type SetLabelsRegionInstantSnapshotRequest struct { func (x *SetLabelsRegionInstantSnapshotRequest) Reset() { *x = SetLabelsRegionInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1548] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1612] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181304,7 +188149,7 @@ func (x *SetLabelsRegionInstantSnapshotRequest) String() string { func (*SetLabelsRegionInstantSnapshotRequest) ProtoMessage() {} func (x *SetLabelsRegionInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1548] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1612] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181317,7 +188162,7 @@ func (x *SetLabelsRegionInstantSnapshotRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use SetLabelsRegionInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*SetLabelsRegionInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1548} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1612} } func (x *SetLabelsRegionInstantSnapshotRequest) GetProject() string { @@ -181386,7 +188231,7 @@ type SetLabelsRegionSecurityPolicyRequest struct { func (x *SetLabelsRegionSecurityPolicyRequest) Reset() { *x = SetLabelsRegionSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1549] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1613] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181398,7 +188243,7 @@ func (x *SetLabelsRegionSecurityPolicyRequest) String() string { func (*SetLabelsRegionSecurityPolicyRequest) ProtoMessage() {} func (x *SetLabelsRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1549] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1613] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181411,7 +188256,7 @@ func (x *SetLabelsRegionSecurityPolicyRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use SetLabelsRegionSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*SetLabelsRegionSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1549} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1613} } func (x *SetLabelsRegionSecurityPolicyRequest) GetProject() string { @@ -181449,6 +188294,100 @@ func (x *SetLabelsRegionSecurityPolicyRequest) GetResource() string { return "" } +// A request message for RegionSnapshots.SetLabels. See the method description for details. +type SetLabelsRegionSnapshotRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // The body resource for this request + RegionSetLabelsRequestResource *RegionSetLabelsRequest `protobuf:"bytes,259357782,opt,name=region_set_labels_request_resource,json=regionSetLabelsRequestResource,proto3" json:"region_set_labels_request_resource,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SetLabelsRegionSnapshotRequest) Reset() { + *x = SetLabelsRegionSnapshotRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1614] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SetLabelsRegionSnapshotRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SetLabelsRegionSnapshotRequest) ProtoMessage() {} + +func (x *SetLabelsRegionSnapshotRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1614] + 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 SetLabelsRegionSnapshotRequest.ProtoReflect.Descriptor instead. +func (*SetLabelsRegionSnapshotRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1614} +} + +func (x *SetLabelsRegionSnapshotRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *SetLabelsRegionSnapshotRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *SetLabelsRegionSnapshotRequest) GetRegionSetLabelsRequestResource() *RegionSetLabelsRequest { + if x != nil { + return x.RegionSetLabelsRequestResource + } + return nil +} + +func (x *SetLabelsRegionSnapshotRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *SetLabelsRegionSnapshotRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + // A request message for SecurityPolicies.SetLabels. See the method description for details. type SetLabelsSecurityPolicyRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -181464,7 +188403,7 @@ type SetLabelsSecurityPolicyRequest struct { func (x *SetLabelsSecurityPolicyRequest) Reset() { *x = SetLabelsSecurityPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1550] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1615] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181476,7 +188415,7 @@ func (x *SetLabelsSecurityPolicyRequest) String() string { func (*SetLabelsSecurityPolicyRequest) ProtoMessage() {} func (x *SetLabelsSecurityPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1550] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1615] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181489,7 +188428,7 @@ func (x *SetLabelsSecurityPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsSecurityPolicyRequest.ProtoReflect.Descriptor instead. func (*SetLabelsSecurityPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1550} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1615} } func (x *SetLabelsSecurityPolicyRequest) GetGlobalSetLabelsRequestResource() *GlobalSetLabelsRequest { @@ -181528,7 +188467,7 @@ type SetLabelsSnapshotRequest struct { func (x *SetLabelsSnapshotRequest) Reset() { *x = SetLabelsSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1551] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1616] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181540,7 +188479,7 @@ func (x *SetLabelsSnapshotRequest) String() string { func (*SetLabelsSnapshotRequest) ProtoMessage() {} func (x *SetLabelsSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1551] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1616] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181553,7 +188492,7 @@ func (x *SetLabelsSnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsSnapshotRequest.ProtoReflect.Descriptor instead. func (*SetLabelsSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1551} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1616} } func (x *SetLabelsSnapshotRequest) GetGlobalSetLabelsRequestResource() *GlobalSetLabelsRequest { @@ -181608,7 +188547,7 @@ type SetLabelsTargetVpnGatewayRequest struct { func (x *SetLabelsTargetVpnGatewayRequest) Reset() { *x = SetLabelsTargetVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1552] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1617] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181620,7 +188559,7 @@ func (x *SetLabelsTargetVpnGatewayRequest) String() string { func (*SetLabelsTargetVpnGatewayRequest) ProtoMessage() {} func (x *SetLabelsTargetVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1552] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1617] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181633,7 +188572,7 @@ func (x *SetLabelsTargetVpnGatewayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsTargetVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*SetLabelsTargetVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1552} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1617} } func (x *SetLabelsTargetVpnGatewayRequest) GetProject() string { @@ -181702,7 +188641,7 @@ type SetLabelsVpnGatewayRequest struct { func (x *SetLabelsVpnGatewayRequest) Reset() { *x = SetLabelsVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1553] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1618] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181714,7 +188653,7 @@ func (x *SetLabelsVpnGatewayRequest) String() string { func (*SetLabelsVpnGatewayRequest) ProtoMessage() {} func (x *SetLabelsVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1553] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1618] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181727,7 +188666,7 @@ func (x *SetLabelsVpnGatewayRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*SetLabelsVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1553} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1618} } func (x *SetLabelsVpnGatewayRequest) GetProject() string { @@ -181796,7 +188735,7 @@ type SetLabelsVpnTunnelRequest struct { func (x *SetLabelsVpnTunnelRequest) Reset() { *x = SetLabelsVpnTunnelRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1554] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1619] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181808,7 +188747,7 @@ func (x *SetLabelsVpnTunnelRequest) String() string { func (*SetLabelsVpnTunnelRequest) ProtoMessage() {} func (x *SetLabelsVpnTunnelRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1554] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1619] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181821,7 +188760,7 @@ func (x *SetLabelsVpnTunnelRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetLabelsVpnTunnelRequest.ProtoReflect.Descriptor instead. func (*SetLabelsVpnTunnelRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1554} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1619} } func (x *SetLabelsVpnTunnelRequest) GetProject() string { @@ -181890,7 +188829,7 @@ type SetMachineResourcesInstanceRequest struct { func (x *SetMachineResourcesInstanceRequest) Reset() { *x = SetMachineResourcesInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1555] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1620] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181902,7 +188841,7 @@ func (x *SetMachineResourcesInstanceRequest) String() string { func (*SetMachineResourcesInstanceRequest) ProtoMessage() {} func (x *SetMachineResourcesInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1555] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1620] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181915,7 +188854,7 @@ func (x *SetMachineResourcesInstanceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SetMachineResourcesInstanceRequest.ProtoReflect.Descriptor instead. func (*SetMachineResourcesInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1555} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1620} } func (x *SetMachineResourcesInstanceRequest) GetInstance() string { @@ -181984,7 +188923,7 @@ type SetMachineTypeInstanceRequest struct { func (x *SetMachineTypeInstanceRequest) Reset() { *x = SetMachineTypeInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1556] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1621] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181996,7 +188935,7 @@ func (x *SetMachineTypeInstanceRequest) String() string { func (*SetMachineTypeInstanceRequest) ProtoMessage() {} func (x *SetMachineTypeInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1556] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1621] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182009,7 +188948,7 @@ func (x *SetMachineTypeInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetMachineTypeInstanceRequest.ProtoReflect.Descriptor instead. func (*SetMachineTypeInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1556} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1621} } func (x *SetMachineTypeInstanceRequest) GetInstance() string { @@ -182078,7 +189017,7 @@ type SetMetadataInstanceRequest struct { func (x *SetMetadataInstanceRequest) Reset() { *x = SetMetadataInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1557] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1622] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182090,7 +189029,7 @@ func (x *SetMetadataInstanceRequest) String() string { func (*SetMetadataInstanceRequest) ProtoMessage() {} func (x *SetMetadataInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1557] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1622] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182103,7 +189042,7 @@ func (x *SetMetadataInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetMetadataInstanceRequest.ProtoReflect.Descriptor instead. func (*SetMetadataInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1557} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1622} } func (x *SetMetadataInstanceRequest) GetInstance() string { @@ -182172,7 +189111,7 @@ type SetMinCpuPlatformInstanceRequest struct { func (x *SetMinCpuPlatformInstanceRequest) Reset() { *x = SetMinCpuPlatformInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1558] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1623] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182184,7 +189123,7 @@ func (x *SetMinCpuPlatformInstanceRequest) String() string { func (*SetMinCpuPlatformInstanceRequest) ProtoMessage() {} func (x *SetMinCpuPlatformInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1558] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1623] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182197,7 +189136,7 @@ func (x *SetMinCpuPlatformInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetMinCpuPlatformInstanceRequest.ProtoReflect.Descriptor instead. func (*SetMinCpuPlatformInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1558} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1623} } func (x *SetMinCpuPlatformInstanceRequest) GetInstance() string { @@ -182266,7 +189205,7 @@ type SetNameInstanceRequest struct { func (x *SetNameInstanceRequest) Reset() { *x = SetNameInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1559] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1624] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182278,7 +189217,7 @@ func (x *SetNameInstanceRequest) String() string { func (*SetNameInstanceRequest) ProtoMessage() {} func (x *SetNameInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1559] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1624] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182291,7 +189230,7 @@ func (x *SetNameInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetNameInstanceRequest.ProtoReflect.Descriptor instead. func (*SetNameInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1559} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1624} } func (x *SetNameInstanceRequest) GetInstance() string { @@ -182361,7 +189300,7 @@ type SetNamedPortsInstanceGroupRequest struct { func (x *SetNamedPortsInstanceGroupRequest) Reset() { *x = SetNamedPortsInstanceGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1560] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1625] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182373,7 +189312,7 @@ func (x *SetNamedPortsInstanceGroupRequest) String() string { func (*SetNamedPortsInstanceGroupRequest) ProtoMessage() {} func (x *SetNamedPortsInstanceGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1560] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1625] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182386,7 +189325,7 @@ func (x *SetNamedPortsInstanceGroupRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SetNamedPortsInstanceGroupRequest.ProtoReflect.Descriptor instead. func (*SetNamedPortsInstanceGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1560} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1625} } func (x *SetNamedPortsInstanceGroupRequest) GetInstanceGroup() string { @@ -182455,7 +189394,7 @@ type SetNamedPortsRegionInstanceGroupRequest struct { func (x *SetNamedPortsRegionInstanceGroupRequest) Reset() { *x = SetNamedPortsRegionInstanceGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1561] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1626] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182467,7 +189406,7 @@ func (x *SetNamedPortsRegionInstanceGroupRequest) String() string { func (*SetNamedPortsRegionInstanceGroupRequest) ProtoMessage() {} func (x *SetNamedPortsRegionInstanceGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1561] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1626] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182480,7 +189419,7 @@ func (x *SetNamedPortsRegionInstanceGroupRequest) ProtoReflect() protoreflect.Me // Deprecated: Use SetNamedPortsRegionInstanceGroupRequest.ProtoReflect.Descriptor instead. func (*SetNamedPortsRegionInstanceGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1561} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1626} } func (x *SetNamedPortsRegionInstanceGroupRequest) GetInstanceGroup() string { @@ -182549,7 +189488,7 @@ type SetNodeTemplateNodeGroupRequest struct { func (x *SetNodeTemplateNodeGroupRequest) Reset() { *x = SetNodeTemplateNodeGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1562] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1627] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182561,7 +189500,7 @@ func (x *SetNodeTemplateNodeGroupRequest) String() string { func (*SetNodeTemplateNodeGroupRequest) ProtoMessage() {} func (x *SetNodeTemplateNodeGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1562] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1627] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182574,7 +189513,7 @@ func (x *SetNodeTemplateNodeGroupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetNodeTemplateNodeGroupRequest.ProtoReflect.Descriptor instead. func (*SetNodeTemplateNodeGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1562} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1627} } func (x *SetNodeTemplateNodeGroupRequest) GetNodeGroup() string { @@ -182643,7 +189582,7 @@ type SetPrivateIpGoogleAccessSubnetworkRequest struct { func (x *SetPrivateIpGoogleAccessSubnetworkRequest) Reset() { *x = SetPrivateIpGoogleAccessSubnetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1563] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1628] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182655,7 +189594,7 @@ func (x *SetPrivateIpGoogleAccessSubnetworkRequest) String() string { func (*SetPrivateIpGoogleAccessSubnetworkRequest) ProtoMessage() {} func (x *SetPrivateIpGoogleAccessSubnetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1563] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1628] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182668,7 +189607,7 @@ func (x *SetPrivateIpGoogleAccessSubnetworkRequest) ProtoReflect() protoreflect. // Deprecated: Use SetPrivateIpGoogleAccessSubnetworkRequest.ProtoReflect.Descriptor instead. func (*SetPrivateIpGoogleAccessSubnetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1563} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1628} } func (x *SetPrivateIpGoogleAccessSubnetworkRequest) GetProject() string { @@ -182735,7 +189674,7 @@ type SetProxyHeaderTargetSslProxyRequest struct { func (x *SetProxyHeaderTargetSslProxyRequest) Reset() { *x = SetProxyHeaderTargetSslProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1564] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1629] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182747,7 +189686,7 @@ func (x *SetProxyHeaderTargetSslProxyRequest) String() string { func (*SetProxyHeaderTargetSslProxyRequest) ProtoMessage() {} func (x *SetProxyHeaderTargetSslProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1564] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1629] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182760,7 +189699,7 @@ func (x *SetProxyHeaderTargetSslProxyRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use SetProxyHeaderTargetSslProxyRequest.ProtoReflect.Descriptor instead. func (*SetProxyHeaderTargetSslProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1564} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1629} } func (x *SetProxyHeaderTargetSslProxyRequest) GetProject() string { @@ -182820,7 +189759,7 @@ type SetProxyHeaderTargetTcpProxyRequest struct { func (x *SetProxyHeaderTargetTcpProxyRequest) Reset() { *x = SetProxyHeaderTargetTcpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1565] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1630] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182832,7 +189771,7 @@ func (x *SetProxyHeaderTargetTcpProxyRequest) String() string { func (*SetProxyHeaderTargetTcpProxyRequest) ProtoMessage() {} func (x *SetProxyHeaderTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1565] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1630] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182845,7 +189784,7 @@ func (x *SetProxyHeaderTargetTcpProxyRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use SetProxyHeaderTargetTcpProxyRequest.ProtoReflect.Descriptor instead. func (*SetProxyHeaderTargetTcpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1565} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1630} } func (x *SetProxyHeaderTargetTcpProxyRequest) GetProject() string { @@ -182906,7 +189845,7 @@ type SetQuicOverrideTargetHttpsProxyRequest struct { func (x *SetQuicOverrideTargetHttpsProxyRequest) Reset() { *x = SetQuicOverrideTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1566] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1631] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182918,7 +189857,7 @@ func (x *SetQuicOverrideTargetHttpsProxyRequest) String() string { func (*SetQuicOverrideTargetHttpsProxyRequest) ProtoMessage() {} func (x *SetQuicOverrideTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1566] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1631] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182931,7 +189870,7 @@ func (x *SetQuicOverrideTargetHttpsProxyRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use SetQuicOverrideTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*SetQuicOverrideTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1566} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1631} } func (x *SetQuicOverrideTargetHttpsProxyRequest) GetProject() string { @@ -182993,7 +189932,7 @@ type SetSchedulingInstanceRequest struct { func (x *SetSchedulingInstanceRequest) Reset() { *x = SetSchedulingInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1567] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1632] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183005,7 +189944,7 @@ func (x *SetSchedulingInstanceRequest) String() string { func (*SetSchedulingInstanceRequest) ProtoMessage() {} func (x *SetSchedulingInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1567] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1632] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183018,7 +189957,7 @@ func (x *SetSchedulingInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetSchedulingInstanceRequest.ProtoReflect.Descriptor instead. func (*SetSchedulingInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1567} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1632} } func (x *SetSchedulingInstanceRequest) GetInstance() string { @@ -183086,7 +190025,7 @@ type SetSecurityPolicyBackendServiceRequest struct { func (x *SetSecurityPolicyBackendServiceRequest) Reset() { *x = SetSecurityPolicyBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1568] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1633] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183098,7 +190037,7 @@ func (x *SetSecurityPolicyBackendServiceRequest) String() string { func (*SetSecurityPolicyBackendServiceRequest) ProtoMessage() {} func (x *SetSecurityPolicyBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1568] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1633] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183111,7 +190050,7 @@ func (x *SetSecurityPolicyBackendServiceRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use SetSecurityPolicyBackendServiceRequest.ProtoReflect.Descriptor instead. func (*SetSecurityPolicyBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1568} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1633} } func (x *SetSecurityPolicyBackendServiceRequest) GetBackendService() string { @@ -183174,7 +190113,7 @@ type SetSecurityPolicyInstanceRequest struct { func (x *SetSecurityPolicyInstanceRequest) Reset() { *x = SetSecurityPolicyInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1569] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1634] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183186,7 +190125,7 @@ func (x *SetSecurityPolicyInstanceRequest) String() string { func (*SetSecurityPolicyInstanceRequest) ProtoMessage() {} func (x *SetSecurityPolicyInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1569] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1634] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183199,7 +190138,7 @@ func (x *SetSecurityPolicyInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetSecurityPolicyInstanceRequest.ProtoReflect.Descriptor instead. func (*SetSecurityPolicyInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1569} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1634} } func (x *SetSecurityPolicyInstanceRequest) GetInstance() string { @@ -183269,7 +190208,7 @@ type SetSecurityPolicyRegionBackendServiceRequest struct { func (x *SetSecurityPolicyRegionBackendServiceRequest) Reset() { *x = SetSecurityPolicyRegionBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1570] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1635] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183281,7 +190220,7 @@ func (x *SetSecurityPolicyRegionBackendServiceRequest) String() string { func (*SetSecurityPolicyRegionBackendServiceRequest) ProtoMessage() {} func (x *SetSecurityPolicyRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1570] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1635] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183294,7 +190233,7 @@ func (x *SetSecurityPolicyRegionBackendServiceRequest) ProtoReflect() protorefle // Deprecated: Use SetSecurityPolicyRegionBackendServiceRequest.ProtoReflect.Descriptor instead. func (*SetSecurityPolicyRegionBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1570} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1635} } func (x *SetSecurityPolicyRegionBackendServiceRequest) GetBackendService() string { @@ -183364,7 +190303,7 @@ type SetSecurityPolicyTargetInstanceRequest struct { func (x *SetSecurityPolicyTargetInstanceRequest) Reset() { *x = SetSecurityPolicyTargetInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1571] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1636] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183376,7 +190315,7 @@ func (x *SetSecurityPolicyTargetInstanceRequest) String() string { func (*SetSecurityPolicyTargetInstanceRequest) ProtoMessage() {} func (x *SetSecurityPolicyTargetInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1571] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1636] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183389,7 +190328,7 @@ func (x *SetSecurityPolicyTargetInstanceRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use SetSecurityPolicyTargetInstanceRequest.ProtoReflect.Descriptor instead. func (*SetSecurityPolicyTargetInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1571} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1636} } func (x *SetSecurityPolicyTargetInstanceRequest) GetProject() string { @@ -183459,7 +190398,7 @@ type SetSecurityPolicyTargetPoolRequest struct { func (x *SetSecurityPolicyTargetPoolRequest) Reset() { *x = SetSecurityPolicyTargetPoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1572] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1637] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183471,7 +190410,7 @@ func (x *SetSecurityPolicyTargetPoolRequest) String() string { func (*SetSecurityPolicyTargetPoolRequest) ProtoMessage() {} func (x *SetSecurityPolicyTargetPoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1572] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1637] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183484,7 +190423,7 @@ func (x *SetSecurityPolicyTargetPoolRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SetSecurityPolicyTargetPoolRequest.ProtoReflect.Descriptor instead. func (*SetSecurityPolicyTargetPoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1572} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1637} } func (x *SetSecurityPolicyTargetPoolRequest) GetProject() string { @@ -183553,7 +190492,7 @@ type SetServiceAccountInstanceRequest struct { func (x *SetServiceAccountInstanceRequest) Reset() { *x = SetServiceAccountInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1573] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1638] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183565,7 +190504,7 @@ func (x *SetServiceAccountInstanceRequest) String() string { func (*SetServiceAccountInstanceRequest) ProtoMessage() {} func (x *SetServiceAccountInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1573] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1638] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183578,7 +190517,7 @@ func (x *SetServiceAccountInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetServiceAccountInstanceRequest.ProtoReflect.Descriptor instead. func (*SetServiceAccountInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1573} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1638} } func (x *SetServiceAccountInstanceRequest) GetInstance() string { @@ -183647,7 +190586,7 @@ type SetShieldedInstanceIntegrityPolicyInstanceRequest struct { func (x *SetShieldedInstanceIntegrityPolicyInstanceRequest) Reset() { *x = SetShieldedInstanceIntegrityPolicyInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1574] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1639] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183659,7 +190598,7 @@ func (x *SetShieldedInstanceIntegrityPolicyInstanceRequest) String() string { func (*SetShieldedInstanceIntegrityPolicyInstanceRequest) ProtoMessage() {} func (x *SetShieldedInstanceIntegrityPolicyInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1574] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1639] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183672,7 +190611,7 @@ func (x *SetShieldedInstanceIntegrityPolicyInstanceRequest) ProtoReflect() proto // Deprecated: Use SetShieldedInstanceIntegrityPolicyInstanceRequest.ProtoReflect.Descriptor instead. func (*SetShieldedInstanceIntegrityPolicyInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1574} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1639} } func (x *SetShieldedInstanceIntegrityPolicyInstanceRequest) GetInstance() string { @@ -183742,7 +190681,7 @@ type SetSslCertificatesRegionTargetHttpsProxyRequest struct { func (x *SetSslCertificatesRegionTargetHttpsProxyRequest) Reset() { *x = SetSslCertificatesRegionTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1575] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1640] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183754,7 +190693,7 @@ func (x *SetSslCertificatesRegionTargetHttpsProxyRequest) String() string { func (*SetSslCertificatesRegionTargetHttpsProxyRequest) ProtoMessage() {} func (x *SetSslCertificatesRegionTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1575] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1640] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183767,7 +190706,7 @@ func (x *SetSslCertificatesRegionTargetHttpsProxyRequest) ProtoReflect() protore // Deprecated: Use SetSslCertificatesRegionTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*SetSslCertificatesRegionTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1575} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1640} } func (x *SetSslCertificatesRegionTargetHttpsProxyRequest) GetProject() string { @@ -183835,7 +190774,7 @@ type SetSslCertificatesTargetHttpsProxyRequest struct { func (x *SetSslCertificatesTargetHttpsProxyRequest) Reset() { *x = SetSslCertificatesTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1576] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1641] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183847,7 +190786,7 @@ func (x *SetSslCertificatesTargetHttpsProxyRequest) String() string { func (*SetSslCertificatesTargetHttpsProxyRequest) ProtoMessage() {} func (x *SetSslCertificatesTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1576] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1641] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183860,7 +190799,7 @@ func (x *SetSslCertificatesTargetHttpsProxyRequest) ProtoReflect() protoreflect. // Deprecated: Use SetSslCertificatesTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*SetSslCertificatesTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1576} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1641} } func (x *SetSslCertificatesTargetHttpsProxyRequest) GetProject() string { @@ -183921,7 +190860,7 @@ type SetSslCertificatesTargetSslProxyRequest struct { func (x *SetSslCertificatesTargetSslProxyRequest) Reset() { *x = SetSslCertificatesTargetSslProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1577] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1642] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183933,7 +190872,7 @@ func (x *SetSslCertificatesTargetSslProxyRequest) String() string { func (*SetSslCertificatesTargetSslProxyRequest) ProtoMessage() {} func (x *SetSslCertificatesTargetSslProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1577] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1642] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183946,7 +190885,7 @@ func (x *SetSslCertificatesTargetSslProxyRequest) ProtoReflect() protoreflect.Me // Deprecated: Use SetSslCertificatesTargetSslProxyRequest.ProtoReflect.Descriptor instead. func (*SetSslCertificatesTargetSslProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1577} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1642} } func (x *SetSslCertificatesTargetSslProxyRequest) GetProject() string { @@ -184007,7 +190946,7 @@ type SetSslPolicyTargetHttpsProxyRequest struct { func (x *SetSslPolicyTargetHttpsProxyRequest) Reset() { *x = SetSslPolicyTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1578] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1643] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184019,7 +190958,7 @@ func (x *SetSslPolicyTargetHttpsProxyRequest) String() string { func (*SetSslPolicyTargetHttpsProxyRequest) ProtoMessage() {} func (x *SetSslPolicyTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1578] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1643] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184032,7 +190971,7 @@ func (x *SetSslPolicyTargetHttpsProxyRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use SetSslPolicyTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*SetSslPolicyTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1578} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1643} } func (x *SetSslPolicyTargetHttpsProxyRequest) GetProject() string { @@ -184093,7 +191032,7 @@ type SetSslPolicyTargetSslProxyRequest struct { func (x *SetSslPolicyTargetSslProxyRequest) Reset() { *x = SetSslPolicyTargetSslProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1579] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1644] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184105,7 +191044,7 @@ func (x *SetSslPolicyTargetSslProxyRequest) String() string { func (*SetSslPolicyTargetSslProxyRequest) ProtoMessage() {} func (x *SetSslPolicyTargetSslProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1579] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1644] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184118,7 +191057,7 @@ func (x *SetSslPolicyTargetSslProxyRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SetSslPolicyTargetSslProxyRequest.ProtoReflect.Descriptor instead. func (*SetSslPolicyTargetSslProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1579} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1644} } func (x *SetSslPolicyTargetSslProxyRequest) GetProject() string { @@ -184180,7 +191119,7 @@ type SetTagsInstanceRequest struct { func (x *SetTagsInstanceRequest) Reset() { *x = SetTagsInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1580] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1645] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184192,7 +191131,7 @@ func (x *SetTagsInstanceRequest) String() string { func (*SetTagsInstanceRequest) ProtoMessage() {} func (x *SetTagsInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1580] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1645] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184205,7 +191144,7 @@ func (x *SetTagsInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetTagsInstanceRequest.ProtoReflect.Descriptor instead. func (*SetTagsInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1580} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1645} } func (x *SetTagsInstanceRequest) GetInstance() string { @@ -184274,7 +191213,7 @@ type SetTargetForwardingRuleRequest struct { func (x *SetTargetForwardingRuleRequest) Reset() { *x = SetTargetForwardingRuleRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1581] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1646] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184286,7 +191225,7 @@ func (x *SetTargetForwardingRuleRequest) String() string { func (*SetTargetForwardingRuleRequest) ProtoMessage() {} func (x *SetTargetForwardingRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1581] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1646] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184299,7 +191238,7 @@ func (x *SetTargetForwardingRuleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetTargetForwardingRuleRequest.ProtoReflect.Descriptor instead. func (*SetTargetForwardingRuleRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1581} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1646} } func (x *SetTargetForwardingRuleRequest) GetForwardingRule() string { @@ -184366,7 +191305,7 @@ type SetTargetGlobalForwardingRuleRequest struct { func (x *SetTargetGlobalForwardingRuleRequest) Reset() { *x = SetTargetGlobalForwardingRuleRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1582] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1647] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184378,7 +191317,7 @@ func (x *SetTargetGlobalForwardingRuleRequest) String() string { func (*SetTargetGlobalForwardingRuleRequest) ProtoMessage() {} func (x *SetTargetGlobalForwardingRuleRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1582] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1647] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184391,7 +191330,7 @@ func (x *SetTargetGlobalForwardingRuleRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use SetTargetGlobalForwardingRuleRequest.ProtoReflect.Descriptor instead. func (*SetTargetGlobalForwardingRuleRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1582} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1647} } func (x *SetTargetGlobalForwardingRuleRequest) GetForwardingRule() string { @@ -184454,7 +191393,7 @@ type SetTargetPoolsInstanceGroupManagerRequest struct { func (x *SetTargetPoolsInstanceGroupManagerRequest) Reset() { *x = SetTargetPoolsInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1583] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1648] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184466,7 +191405,7 @@ func (x *SetTargetPoolsInstanceGroupManagerRequest) String() string { func (*SetTargetPoolsInstanceGroupManagerRequest) ProtoMessage() {} func (x *SetTargetPoolsInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1583] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1648] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184479,7 +191418,7 @@ func (x *SetTargetPoolsInstanceGroupManagerRequest) ProtoReflect() protoreflect. // Deprecated: Use SetTargetPoolsInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*SetTargetPoolsInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1583} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1648} } func (x *SetTargetPoolsInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -184548,7 +191487,7 @@ type SetTargetPoolsRegionInstanceGroupManagerRequest struct { func (x *SetTargetPoolsRegionInstanceGroupManagerRequest) Reset() { *x = SetTargetPoolsRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1584] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1649] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184560,7 +191499,7 @@ func (x *SetTargetPoolsRegionInstanceGroupManagerRequest) String() string { func (*SetTargetPoolsRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *SetTargetPoolsRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1584] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1649] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184573,7 +191512,7 @@ func (x *SetTargetPoolsRegionInstanceGroupManagerRequest) ProtoReflect() protore // Deprecated: Use SetTargetPoolsRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*SetTargetPoolsRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1584} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1649} } func (x *SetTargetPoolsRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -184642,7 +191581,7 @@ type SetUrlMapRegionTargetHttpProxyRequest struct { func (x *SetUrlMapRegionTargetHttpProxyRequest) Reset() { *x = SetUrlMapRegionTargetHttpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1585] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1650] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184654,7 +191593,7 @@ func (x *SetUrlMapRegionTargetHttpProxyRequest) String() string { func (*SetUrlMapRegionTargetHttpProxyRequest) ProtoMessage() {} func (x *SetUrlMapRegionTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1585] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1650] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184667,7 +191606,7 @@ func (x *SetUrlMapRegionTargetHttpProxyRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use SetUrlMapRegionTargetHttpProxyRequest.ProtoReflect.Descriptor instead. func (*SetUrlMapRegionTargetHttpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1585} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1650} } func (x *SetUrlMapRegionTargetHttpProxyRequest) GetProject() string { @@ -184736,7 +191675,7 @@ type SetUrlMapRegionTargetHttpsProxyRequest struct { func (x *SetUrlMapRegionTargetHttpsProxyRequest) Reset() { *x = SetUrlMapRegionTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1586] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1651] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184748,7 +191687,7 @@ func (x *SetUrlMapRegionTargetHttpsProxyRequest) String() string { func (*SetUrlMapRegionTargetHttpsProxyRequest) ProtoMessage() {} func (x *SetUrlMapRegionTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1586] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1651] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184761,7 +191700,7 @@ func (x *SetUrlMapRegionTargetHttpsProxyRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use SetUrlMapRegionTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*SetUrlMapRegionTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1586} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1651} } func (x *SetUrlMapRegionTargetHttpsProxyRequest) GetProject() string { @@ -184828,7 +191767,7 @@ type SetUrlMapTargetHttpProxyRequest struct { func (x *SetUrlMapTargetHttpProxyRequest) Reset() { *x = SetUrlMapTargetHttpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1587] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1652] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184840,7 +191779,7 @@ func (x *SetUrlMapTargetHttpProxyRequest) String() string { func (*SetUrlMapTargetHttpProxyRequest) ProtoMessage() {} func (x *SetUrlMapTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1587] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1652] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184853,7 +191792,7 @@ func (x *SetUrlMapTargetHttpProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetUrlMapTargetHttpProxyRequest.ProtoReflect.Descriptor instead. func (*SetUrlMapTargetHttpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1587} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1652} } func (x *SetUrlMapTargetHttpProxyRequest) GetProject() string { @@ -184914,7 +191853,7 @@ type SetUrlMapTargetHttpsProxyRequest struct { func (x *SetUrlMapTargetHttpsProxyRequest) Reset() { *x = SetUrlMapTargetHttpsProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1588] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1653] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184926,7 +191865,7 @@ func (x *SetUrlMapTargetHttpsProxyRequest) String() string { func (*SetUrlMapTargetHttpsProxyRequest) ProtoMessage() {} func (x *SetUrlMapTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1588] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1653] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184939,7 +191878,7 @@ func (x *SetUrlMapTargetHttpsProxyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetUrlMapTargetHttpsProxyRequest.ProtoReflect.Descriptor instead. func (*SetUrlMapTargetHttpsProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1588} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1653} } func (x *SetUrlMapTargetHttpsProxyRequest) GetProject() string { @@ -184997,7 +191936,7 @@ type SetUsageExportBucketProjectRequest struct { func (x *SetUsageExportBucketProjectRequest) Reset() { *x = SetUsageExportBucketProjectRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1589] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1654] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185009,7 +191948,7 @@ func (x *SetUsageExportBucketProjectRequest) String() string { func (*SetUsageExportBucketProjectRequest) ProtoMessage() {} func (x *SetUsageExportBucketProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1589] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1654] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185022,7 +191961,7 @@ func (x *SetUsageExportBucketProjectRequest) ProtoReflect() protoreflect.Message // Deprecated: Use SetUsageExportBucketProjectRequest.ProtoReflect.Descriptor instead. func (*SetUsageExportBucketProjectRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1589} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1654} } func (x *SetUsageExportBucketProjectRequest) GetProject() string { @@ -185061,7 +192000,7 @@ type ShareSettings struct { func (x *ShareSettings) Reset() { *x = ShareSettings{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1590] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1655] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185073,7 +192012,7 @@ func (x *ShareSettings) String() string { func (*ShareSettings) ProtoMessage() {} func (x *ShareSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1590] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1655] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185086,7 +192025,7 @@ func (x *ShareSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use ShareSettings.ProtoReflect.Descriptor instead. func (*ShareSettings) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1590} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1655} } func (x *ShareSettings) GetProjectMap() map[string]*ShareSettingsProjectConfig { @@ -185115,7 +192054,7 @@ type ShareSettingsProjectConfig struct { func (x *ShareSettingsProjectConfig) Reset() { *x = ShareSettingsProjectConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1591] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1656] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185127,7 +192066,7 @@ func (x *ShareSettingsProjectConfig) String() string { func (*ShareSettingsProjectConfig) ProtoMessage() {} func (x *ShareSettingsProjectConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1591] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1656] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185140,7 +192079,7 @@ func (x *ShareSettingsProjectConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use ShareSettingsProjectConfig.ProtoReflect.Descriptor instead. func (*ShareSettingsProjectConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1591} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1656} } func (x *ShareSettingsProjectConfig) GetProjectId() string { @@ -185168,7 +192107,7 @@ type ShieldedInstanceConfig struct { func (x *ShieldedInstanceConfig) Reset() { *x = ShieldedInstanceConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1592] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1657] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185180,7 +192119,7 @@ func (x *ShieldedInstanceConfig) String() string { func (*ShieldedInstanceConfig) ProtoMessage() {} func (x *ShieldedInstanceConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1592] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1657] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185193,7 +192132,7 @@ func (x *ShieldedInstanceConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use ShieldedInstanceConfig.ProtoReflect.Descriptor instead. func (*ShieldedInstanceConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1592} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1657} } func (x *ShieldedInstanceConfig) GetEnableIntegrityMonitoring() bool { @@ -185241,7 +192180,7 @@ type ShieldedInstanceIdentity struct { func (x *ShieldedInstanceIdentity) Reset() { *x = ShieldedInstanceIdentity{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1593] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1658] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185253,7 +192192,7 @@ func (x *ShieldedInstanceIdentity) String() string { func (*ShieldedInstanceIdentity) ProtoMessage() {} func (x *ShieldedInstanceIdentity) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1593] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1658] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185266,7 +192205,7 @@ func (x *ShieldedInstanceIdentity) ProtoReflect() protoreflect.Message { // Deprecated: Use ShieldedInstanceIdentity.ProtoReflect.Descriptor instead. func (*ShieldedInstanceIdentity) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1593} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1658} } func (x *ShieldedInstanceIdentity) GetEccP256EncryptionKey() *ShieldedInstanceIdentityEntry { @@ -185317,7 +192256,7 @@ type ShieldedInstanceIdentityEntry struct { func (x *ShieldedInstanceIdentityEntry) Reset() { *x = ShieldedInstanceIdentityEntry{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1594] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1659] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185329,7 +192268,7 @@ func (x *ShieldedInstanceIdentityEntry) String() string { func (*ShieldedInstanceIdentityEntry) ProtoMessage() {} func (x *ShieldedInstanceIdentityEntry) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1594] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1659] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185342,7 +192281,7 @@ func (x *ShieldedInstanceIdentityEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use ShieldedInstanceIdentityEntry.ProtoReflect.Descriptor instead. func (*ShieldedInstanceIdentityEntry) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1594} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1659} } func (x *ShieldedInstanceIdentityEntry) GetEkCert() string { @@ -185372,7 +192311,7 @@ type ShieldedInstanceIntegrityPolicy struct { func (x *ShieldedInstanceIntegrityPolicy) Reset() { *x = ShieldedInstanceIntegrityPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1595] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1660] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185384,7 +192323,7 @@ func (x *ShieldedInstanceIntegrityPolicy) String() string { func (*ShieldedInstanceIntegrityPolicy) ProtoMessage() {} func (x *ShieldedInstanceIntegrityPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1595] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1660] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185397,7 +192336,7 @@ func (x *ShieldedInstanceIntegrityPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use ShieldedInstanceIntegrityPolicy.ProtoReflect.Descriptor instead. func (*ShieldedInstanceIntegrityPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1595} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1660} } func (x *ShieldedInstanceIntegrityPolicy) GetUpdateAutoLearnPolicy() bool { @@ -185426,7 +192365,7 @@ type SignedUrlKey struct { func (x *SignedUrlKey) Reset() { *x = SignedUrlKey{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1596] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1661] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185438,7 +192377,7 @@ func (x *SignedUrlKey) String() string { func (*SignedUrlKey) ProtoMessage() {} func (x *SignedUrlKey) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1596] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1661] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185451,7 +192390,7 @@ func (x *SignedUrlKey) ProtoReflect() protoreflect.Message { // Deprecated: Use SignedUrlKey.ProtoReflect.Descriptor instead. func (*SignedUrlKey) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1596} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1661} } func (x *SignedUrlKey) GetKeyName() string { @@ -185500,7 +192439,7 @@ type SimulateMaintenanceEventInstanceRequest struct { func (x *SimulateMaintenanceEventInstanceRequest) Reset() { *x = SimulateMaintenanceEventInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1597] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1662] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185512,7 +192451,7 @@ func (x *SimulateMaintenanceEventInstanceRequest) String() string { func (*SimulateMaintenanceEventInstanceRequest) ProtoMessage() {} func (x *SimulateMaintenanceEventInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1597] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1662] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185525,7 +192464,7 @@ func (x *SimulateMaintenanceEventInstanceRequest) ProtoReflect() protoreflect.Me // Deprecated: Use SimulateMaintenanceEventInstanceRequest.ProtoReflect.Descriptor instead. func (*SimulateMaintenanceEventInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1597} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1662} } func (x *SimulateMaintenanceEventInstanceRequest) GetInstance() string { @@ -185595,7 +192534,7 @@ type SimulateMaintenanceEventNodeGroupRequest struct { func (x *SimulateMaintenanceEventNodeGroupRequest) Reset() { *x = SimulateMaintenanceEventNodeGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1598] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1663] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185607,7 +192546,7 @@ func (x *SimulateMaintenanceEventNodeGroupRequest) String() string { func (*SimulateMaintenanceEventNodeGroupRequest) ProtoMessage() {} func (x *SimulateMaintenanceEventNodeGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1598] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1663] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185620,7 +192559,7 @@ func (x *SimulateMaintenanceEventNodeGroupRequest) ProtoReflect() protoreflect.M // Deprecated: Use SimulateMaintenanceEventNodeGroupRequest.ProtoReflect.Descriptor instead. func (*SimulateMaintenanceEventNodeGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1598} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1663} } func (x *SimulateMaintenanceEventNodeGroupRequest) GetNodeGroup() string { @@ -185744,6 +192683,9 @@ type Snapshot struct { // Input only. [Input Only] Additional params passed with the request, but not persisted // as part of resource payload. Params *SnapshotParams `protobuf:"bytes,78313862,opt,name=params,proto3,oneof" json:"params,omitempty"` + // Output only. [Output Only] URL of the region where the snapshot resides. Only applicable + // for regional snapshots. + Region *string `protobuf:"bytes,138946292,opt,name=region,proto3,oneof" json:"region,omitempty"` // Output only. Reserved for future use. SatisfiesPzi *bool `protobuf:"varint,480964257,opt,name=satisfies_pzi,json=satisfiesPzi,proto3,oneof" json:"satisfies_pzi,omitempty"` // Output only. [Output Only] Reserved for future use. @@ -185765,6 +192707,12 @@ type Snapshot struct { // the snapshot will be encrypted using an automatically generated key and you // do not need to provide a key to use the snapshot later. SnapshotEncryptionKey *CustomerEncryptionKey `protobuf:"bytes,43334526,opt,name=snapshot_encryption_key,json=snapshotEncryptionKey,proto3,oneof" json:"snapshot_encryption_key,omitempty"` + // Output only. [Output Only] The unique ID of the snapshot group that this snapshot + // belongs to. The usage of snapshot group feature is restricted. + SnapshotGroupId *string `protobuf:"bytes,255004406,opt,name=snapshot_group_id,json=snapshotGroupId,proto3,oneof" json:"snapshot_group_id,omitempty"` + // Output only. [Output only] The snapshot group that this snapshot belongs to. The usage + // of snapshot group feature is restricted. + SnapshotGroupName *string `protobuf:"bytes,246247846,opt,name=snapshot_group_name,json=snapshotGroupName,proto3,oneof" json:"snapshot_group_name,omitempty"` // Indicates the type of the snapshot. // Check the SnapshotType enum for the list of possible values. SnapshotType *string `protobuf:"bytes,124349653,opt,name=snapshot_type,json=snapshotType,proto3,oneof" json:"snapshot_type,omitempty"` @@ -185828,7 +192776,7 @@ type Snapshot struct { func (x *Snapshot) Reset() { *x = Snapshot{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1599] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1664] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185840,7 +192788,7 @@ func (x *Snapshot) String() string { func (*Snapshot) ProtoMessage() {} func (x *Snapshot) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1599] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1664] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185853,7 +192801,7 @@ func (x *Snapshot) ProtoReflect() protoreflect.Message { // Deprecated: Use Snapshot.ProtoReflect.Descriptor instead. func (*Snapshot) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1599} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1664} } func (x *Snapshot) GetArchitecture() string { @@ -185996,6 +192944,13 @@ func (x *Snapshot) GetParams() *SnapshotParams { return nil } +func (x *Snapshot) GetRegion() string { + if x != nil && x.Region != nil { + return *x.Region + } + return "" +} + func (x *Snapshot) GetSatisfiesPzi() bool { if x != nil && x.SatisfiesPzi != nil { return *x.SatisfiesPzi @@ -186024,6 +192979,20 @@ func (x *Snapshot) GetSnapshotEncryptionKey() *CustomerEncryptionKey { return nil } +func (x *Snapshot) GetSnapshotGroupId() string { + if x != nil && x.SnapshotGroupId != nil { + return *x.SnapshotGroupId + } + return "" +} + +func (x *Snapshot) GetSnapshotGroupName() string { + if x != nil && x.SnapshotGroupName != nil { + return *x.SnapshotGroupName + } + return "" +} + func (x *Snapshot) GetSnapshotType() string { if x != nil && x.SnapshotType != nil { return *x.SnapshotType @@ -186122,6 +193091,78 @@ func (x *Snapshot) GetStorageLocations() []string { return nil } +type SnapshotGroupParameters struct { + state protoimpl.MessageState `protogen:"open.v1"` + // URLs of the zones where disks should be replicated to. Only applicable + // for regional resources. + ReplicaZones []string `protobuf:"bytes,48438272,rep,name=replica_zones,json=replicaZones,proto3" json:"replica_zones,omitempty"` + // The source snapshot group used to create disks. You can provide this as a + // partial or full URL to the resource. For example, the following are valid + // values: + // + // - https://www.googleapis.com/compute/v1/projects/project/global/snapshotGroups/snapshotGroup + // - projects/project/global/snapshotGroups/snapshotGroup + // - global/snapshotGroups/snapshotGroup + SourceSnapshotGroup *string `protobuf:"bytes,225130728,opt,name=source_snapshot_group,json=sourceSnapshotGroup,proto3,oneof" json:"source_snapshot_group,omitempty"` + // URL of the disk type resource describing which disk type to use to create + // disks. Provide this when creating the disk. For example:projects/project/zones/zone/diskTypes/pd-ssd. See Persistent disk + // types. + Type *string `protobuf:"bytes,3575610,opt,name=type,proto3,oneof" json:"type,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SnapshotGroupParameters) Reset() { + *x = SnapshotGroupParameters{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1665] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SnapshotGroupParameters) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SnapshotGroupParameters) ProtoMessage() {} + +func (x *SnapshotGroupParameters) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1665] + 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 SnapshotGroupParameters.ProtoReflect.Descriptor instead. +func (*SnapshotGroupParameters) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1665} +} + +func (x *SnapshotGroupParameters) GetReplicaZones() []string { + if x != nil { + return x.ReplicaZones + } + return nil +} + +func (x *SnapshotGroupParameters) GetSourceSnapshotGroup() string { + if x != nil && x.SourceSnapshotGroup != nil { + return *x.SourceSnapshotGroup + } + return "" +} + +func (x *SnapshotGroupParameters) GetType() string { + if x != nil && x.Type != nil { + return *x.Type + } + return "" +} + // Contains a list of Snapshot resources. type SnapshotList struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -186147,7 +193188,7 @@ type SnapshotList struct { func (x *SnapshotList) Reset() { *x = SnapshotList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1600] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1666] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186159,7 +193200,7 @@ func (x *SnapshotList) String() string { func (*SnapshotList) ProtoMessage() {} func (x *SnapshotList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1600] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1666] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186172,7 +193213,7 @@ func (x *SnapshotList) ProtoReflect() protoreflect.Message { // Deprecated: Use SnapshotList.ProtoReflect.Descriptor instead. func (*SnapshotList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1600} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1666} } func (x *SnapshotList) GetId() string { @@ -186234,7 +193275,7 @@ type SnapshotParams struct { func (x *SnapshotParams) Reset() { *x = SnapshotParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1601] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1667] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186246,7 +193287,7 @@ func (x *SnapshotParams) String() string { func (*SnapshotParams) ProtoMessage() {} func (x *SnapshotParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1601] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1667] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186259,7 +193300,7 @@ func (x *SnapshotParams) ProtoReflect() protoreflect.Message { // Deprecated: Use SnapshotParams.ProtoReflect.Descriptor instead. func (*SnapshotParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1601} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1667} } func (x *SnapshotParams) GetResourceManagerTags() map[string]string { @@ -186271,6 +193312,9 @@ func (x *SnapshotParams) GetResourceManagerTags() map[string]string { type SnapshotSettings struct { state protoimpl.MessageState `protogen:"open.v1"` + // (Regional snapshots use only)Policy of which location is allowed to access + // snapshot. + AccessLocation *SnapshotSettingsAccessLocation `protobuf:"bytes,18410544,opt,name=access_location,json=accessLocation,proto3,oneof" json:"access_location,omitempty"` // Policy of which storage location is going to be resolved, and additional // data that particularizes how the policy is going to be carried out. StorageLocation *SnapshotSettingsStorageLocationSettings `protobuf:"bytes,460859641,opt,name=storage_location,json=storageLocation,proto3,oneof" json:"storage_location,omitempty"` @@ -186280,7 +193324,7 @@ type SnapshotSettings struct { func (x *SnapshotSettings) Reset() { *x = SnapshotSettings{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1602] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1668] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186292,7 +193336,7 @@ func (x *SnapshotSettings) String() string { func (*SnapshotSettings) ProtoMessage() {} func (x *SnapshotSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1602] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1668] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186305,7 +193349,14 @@ func (x *SnapshotSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use SnapshotSettings.ProtoReflect.Descriptor instead. func (*SnapshotSettings) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1602} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1668} +} + +func (x *SnapshotSettings) GetAccessLocation() *SnapshotSettingsAccessLocation { + if x != nil { + return x.AccessLocation + } + return nil } func (x *SnapshotSettings) GetStorageLocation() *SnapshotSettingsStorageLocationSettings { @@ -186315,6 +193366,109 @@ func (x *SnapshotSettings) GetStorageLocation() *SnapshotSettingsStorageLocation return nil } +type SnapshotSettingsAccessLocation struct { + state protoimpl.MessageState `protogen:"open.v1"` + // List of regions that can restore a regional + // + // snapshot from the current region + Locations map[string]*SnapshotSettingsAccessLocationAccessLocationPreference `protobuf:"bytes,413423454,rep,name=locations,proto3" json:"locations,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + // Policy of which location is allowed to access snapshot. + // Check the Policy enum for the list of possible values. + Policy *string `protobuf:"bytes,91071794,opt,name=policy,proto3,oneof" json:"policy,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SnapshotSettingsAccessLocation) Reset() { + *x = SnapshotSettingsAccessLocation{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1669] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SnapshotSettingsAccessLocation) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SnapshotSettingsAccessLocation) ProtoMessage() {} + +func (x *SnapshotSettingsAccessLocation) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1669] + 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 SnapshotSettingsAccessLocation.ProtoReflect.Descriptor instead. +func (*SnapshotSettingsAccessLocation) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1669} +} + +func (x *SnapshotSettingsAccessLocation) GetLocations() map[string]*SnapshotSettingsAccessLocationAccessLocationPreference { + if x != nil { + return x.Locations + } + return nil +} + +func (x *SnapshotSettingsAccessLocation) GetPolicy() string { + if x != nil && x.Policy != nil { + return *x.Policy + } + return "" +} + +// A structure for specifying an allowed target region. +type SnapshotSettingsAccessLocationAccessLocationPreference struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Accessible region name + Region *string `protobuf:"bytes,138946292,opt,name=region,proto3,oneof" json:"region,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SnapshotSettingsAccessLocationAccessLocationPreference) Reset() { + *x = SnapshotSettingsAccessLocationAccessLocationPreference{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1670] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SnapshotSettingsAccessLocationAccessLocationPreference) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SnapshotSettingsAccessLocationAccessLocationPreference) ProtoMessage() {} + +func (x *SnapshotSettingsAccessLocationAccessLocationPreference) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1670] + 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 SnapshotSettingsAccessLocationAccessLocationPreference.ProtoReflect.Descriptor instead. +func (*SnapshotSettingsAccessLocationAccessLocationPreference) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1670} +} + +func (x *SnapshotSettingsAccessLocationAccessLocationPreference) GetRegion() string { + if x != nil && x.Region != nil { + return *x.Region + } + return "" +} + type SnapshotSettingsStorageLocationSettings struct { state protoimpl.MessageState `protogen:"open.v1"` // When the policy is SPECIFIC_LOCATIONS, snapshots will be stored @@ -186330,7 +193484,7 @@ type SnapshotSettingsStorageLocationSettings struct { func (x *SnapshotSettingsStorageLocationSettings) Reset() { *x = SnapshotSettingsStorageLocationSettings{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1603] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1671] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186342,7 +193496,7 @@ func (x *SnapshotSettingsStorageLocationSettings) String() string { func (*SnapshotSettingsStorageLocationSettings) ProtoMessage() {} func (x *SnapshotSettingsStorageLocationSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1603] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1671] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186355,7 +193509,7 @@ func (x *SnapshotSettingsStorageLocationSettings) ProtoReflect() protoreflect.Me // Deprecated: Use SnapshotSettingsStorageLocationSettings.ProtoReflect.Descriptor instead. func (*SnapshotSettingsStorageLocationSettings) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1603} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1671} } func (x *SnapshotSettingsStorageLocationSettings) GetLocations() map[string]*SnapshotSettingsStorageLocationSettingsStorageLocationPreference { @@ -186384,7 +193538,7 @@ type SnapshotSettingsStorageLocationSettingsStorageLocationPreference struct { func (x *SnapshotSettingsStorageLocationSettingsStorageLocationPreference) Reset() { *x = SnapshotSettingsStorageLocationSettingsStorageLocationPreference{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1604] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1672] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186396,7 +193550,7 @@ func (x *SnapshotSettingsStorageLocationSettingsStorageLocationPreference) Strin func (*SnapshotSettingsStorageLocationSettingsStorageLocationPreference) ProtoMessage() {} func (x *SnapshotSettingsStorageLocationSettingsStorageLocationPreference) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1604] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1672] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186409,7 +193563,7 @@ func (x *SnapshotSettingsStorageLocationSettingsStorageLocationPreference) Proto // Deprecated: Use SnapshotSettingsStorageLocationSettingsStorageLocationPreference.ProtoReflect.Descriptor instead. func (*SnapshotSettingsStorageLocationSettingsStorageLocationPreference) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1604} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1672} } func (x *SnapshotSettingsStorageLocationSettingsStorageLocationPreference) GetName() string { @@ -186419,6 +193573,57 @@ func (x *SnapshotSettingsStorageLocationSettingsStorageLocationPreference) GetNa return "" } +type SnapshotUpdateKmsKeyRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional. The new KMS key to replace the current one on the snapshot. If empty, the + // snapshot will be re-encrypted using the primary version of the snapshot's + // current KMS key. + // + // The KMS key can be provided in the following formats: + // + // - projects/project_id/locations/region/keyRings/key_ring/cryptoKeys/key + KmsKeyName *string `protobuf:"bytes,484373913,opt,name=kms_key_name,json=kmsKeyName,proto3,oneof" json:"kms_key_name,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SnapshotUpdateKmsKeyRequest) Reset() { + *x = SnapshotUpdateKmsKeyRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1673] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SnapshotUpdateKmsKeyRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SnapshotUpdateKmsKeyRequest) ProtoMessage() {} + +func (x *SnapshotUpdateKmsKeyRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1673] + 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 SnapshotUpdateKmsKeyRequest.ProtoReflect.Descriptor instead. +func (*SnapshotUpdateKmsKeyRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1673} +} + +func (x *SnapshotUpdateKmsKeyRequest) GetKmsKeyName() string { + if x != nil && x.KmsKeyName != nil { + return *x.KmsKeyName + } + return "" +} + type SourceDiskEncryptionKey struct { state protoimpl.MessageState `protogen:"open.v1"` // Thecustomer-supplied @@ -186438,7 +193643,7 @@ type SourceDiskEncryptionKey struct { func (x *SourceDiskEncryptionKey) Reset() { *x = SourceDiskEncryptionKey{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1605] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1674] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186450,7 +193655,7 @@ func (x *SourceDiskEncryptionKey) String() string { func (*SourceDiskEncryptionKey) ProtoMessage() {} func (x *SourceDiskEncryptionKey) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1605] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1674] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186463,7 +193668,7 @@ func (x *SourceDiskEncryptionKey) ProtoReflect() protoreflect.Message { // Deprecated: Use SourceDiskEncryptionKey.ProtoReflect.Descriptor instead. func (*SourceDiskEncryptionKey) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1605} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1674} } func (x *SourceDiskEncryptionKey) GetDiskEncryptionKey() *CustomerEncryptionKey { @@ -186495,7 +193700,7 @@ type SourceInstanceParams struct { func (x *SourceInstanceParams) Reset() { *x = SourceInstanceParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1606] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1675] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186507,7 +193712,7 @@ func (x *SourceInstanceParams) String() string { func (*SourceInstanceParams) ProtoMessage() {} func (x *SourceInstanceParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1606] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1675] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186520,7 +193725,7 @@ func (x *SourceInstanceParams) ProtoReflect() protoreflect.Message { // Deprecated: Use SourceInstanceParams.ProtoReflect.Descriptor instead. func (*SourceInstanceParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1606} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1675} } func (x *SourceInstanceParams) GetDiskConfigs() []*DiskInstantiationConfig { @@ -186598,7 +193803,7 @@ type SourceInstanceProperties struct { func (x *SourceInstanceProperties) Reset() { *x = SourceInstanceProperties{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1607] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1676] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186610,7 +193815,7 @@ func (x *SourceInstanceProperties) String() string { func (*SourceInstanceProperties) ProtoMessage() {} func (x *SourceInstanceProperties) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1607] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1676] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186623,7 +193828,7 @@ func (x *SourceInstanceProperties) ProtoReflect() protoreflect.Message { // Deprecated: Use SourceInstanceProperties.ProtoReflect.Descriptor instead. func (*SourceInstanceProperties) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1607} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1676} } func (x *SourceInstanceProperties) GetCanIpForward() bool { @@ -186812,7 +194017,7 @@ type SslCertificate struct { func (x *SslCertificate) Reset() { *x = SslCertificate{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1608] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1677] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186824,7 +194029,7 @@ func (x *SslCertificate) String() string { func (*SslCertificate) ProtoMessage() {} func (x *SslCertificate) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1608] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1677] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186837,7 +194042,7 @@ func (x *SslCertificate) ProtoReflect() protoreflect.Message { // Deprecated: Use SslCertificate.ProtoReflect.Descriptor instead. func (*SslCertificate) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1608} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1677} } func (x *SslCertificate) GetCertificate() string { @@ -186965,7 +194170,7 @@ type SslCertificateAggregatedList struct { func (x *SslCertificateAggregatedList) Reset() { *x = SslCertificateAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1609] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1678] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186977,7 +194182,7 @@ func (x *SslCertificateAggregatedList) String() string { func (*SslCertificateAggregatedList) ProtoMessage() {} func (x *SslCertificateAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1609] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1678] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186990,7 +194195,7 @@ func (x *SslCertificateAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use SslCertificateAggregatedList.ProtoReflect.Descriptor instead. func (*SslCertificateAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1609} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1678} } func (x *SslCertificateAggregatedList) GetId() string { @@ -187067,7 +194272,7 @@ type SslCertificateList struct { func (x *SslCertificateList) Reset() { *x = SslCertificateList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1610] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1679] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187079,7 +194284,7 @@ func (x *SslCertificateList) String() string { func (*SslCertificateList) ProtoMessage() {} func (x *SslCertificateList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1610] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1679] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187092,7 +194297,7 @@ func (x *SslCertificateList) ProtoReflect() protoreflect.Message { // Deprecated: Use SslCertificateList.ProtoReflect.Descriptor instead. func (*SslCertificateList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1610} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1679} } func (x *SslCertificateList) GetId() string { @@ -187157,7 +194362,7 @@ type SslCertificateManagedSslCertificate struct { func (x *SslCertificateManagedSslCertificate) Reset() { *x = SslCertificateManagedSslCertificate{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1611] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1680] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187169,7 +194374,7 @@ func (x *SslCertificateManagedSslCertificate) String() string { func (*SslCertificateManagedSslCertificate) ProtoMessage() {} func (x *SslCertificateManagedSslCertificate) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1611] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1680] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187182,7 +194387,7 @@ func (x *SslCertificateManagedSslCertificate) ProtoReflect() protoreflect.Messag // Deprecated: Use SslCertificateManagedSslCertificate.ProtoReflect.Descriptor instead. func (*SslCertificateManagedSslCertificate) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1611} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1680} } func (x *SslCertificateManagedSslCertificate) GetDomainStatus() map[string]string { @@ -187222,7 +194427,7 @@ type SslCertificateSelfManagedSslCertificate struct { func (x *SslCertificateSelfManagedSslCertificate) Reset() { *x = SslCertificateSelfManagedSslCertificate{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1612] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1681] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187234,7 +194439,7 @@ func (x *SslCertificateSelfManagedSslCertificate) String() string { func (*SslCertificateSelfManagedSslCertificate) ProtoMessage() {} func (x *SslCertificateSelfManagedSslCertificate) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1612] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1681] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187247,7 +194452,7 @@ func (x *SslCertificateSelfManagedSslCertificate) ProtoReflect() protoreflect.Me // Deprecated: Use SslCertificateSelfManagedSslCertificate.ProtoReflect.Descriptor instead. func (*SslCertificateSelfManagedSslCertificate) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1612} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1681} } func (x *SslCertificateSelfManagedSslCertificate) GetCertificate() string { @@ -187277,7 +194482,7 @@ type SslCertificatesScopedList struct { func (x *SslCertificatesScopedList) Reset() { *x = SslCertificatesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1613] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1682] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187289,7 +194494,7 @@ func (x *SslCertificatesScopedList) String() string { func (*SslCertificatesScopedList) ProtoMessage() {} func (x *SslCertificatesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1613] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1682] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187302,7 +194507,7 @@ func (x *SslCertificatesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use SslCertificatesScopedList.ProtoReflect.Descriptor instead. func (*SslCertificatesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1613} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1682} } func (x *SslCertificatesScopedList) GetSslCertificates() []*SslCertificate { @@ -187346,7 +194551,7 @@ type SslPoliciesAggregatedList struct { func (x *SslPoliciesAggregatedList) Reset() { *x = SslPoliciesAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1614] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1683] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187358,7 +194563,7 @@ func (x *SslPoliciesAggregatedList) String() string { func (*SslPoliciesAggregatedList) ProtoMessage() {} func (x *SslPoliciesAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1614] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1683] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187371,7 +194576,7 @@ func (x *SslPoliciesAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use SslPoliciesAggregatedList.ProtoReflect.Descriptor instead. func (*SslPoliciesAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1614} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1683} } func (x *SslPoliciesAggregatedList) GetEtag() string { @@ -187454,7 +194659,7 @@ type SslPoliciesList struct { func (x *SslPoliciesList) Reset() { *x = SslPoliciesList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1615] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1684] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187466,7 +194671,7 @@ func (x *SslPoliciesList) String() string { func (*SslPoliciesList) ProtoMessage() {} func (x *SslPoliciesList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1615] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1684] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187479,7 +194684,7 @@ func (x *SslPoliciesList) ProtoReflect() protoreflect.Message { // Deprecated: Use SslPoliciesList.ProtoReflect.Descriptor instead. func (*SslPoliciesList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1615} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1684} } func (x *SslPoliciesList) GetId() string { @@ -187533,7 +194738,7 @@ type SslPoliciesListAvailableFeaturesResponse struct { func (x *SslPoliciesListAvailableFeaturesResponse) Reset() { *x = SslPoliciesListAvailableFeaturesResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1616] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1685] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187545,7 +194750,7 @@ func (x *SslPoliciesListAvailableFeaturesResponse) String() string { func (*SslPoliciesListAvailableFeaturesResponse) ProtoMessage() {} func (x *SslPoliciesListAvailableFeaturesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1616] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1685] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187558,7 +194763,7 @@ func (x *SslPoliciesListAvailableFeaturesResponse) ProtoReflect() protoreflect.M // Deprecated: Use SslPoliciesListAvailableFeaturesResponse.ProtoReflect.Descriptor instead. func (*SslPoliciesListAvailableFeaturesResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1616} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1685} } func (x *SslPoliciesListAvailableFeaturesResponse) GetFeatures() []string { @@ -187581,7 +194786,7 @@ type SslPoliciesScopedList struct { func (x *SslPoliciesScopedList) Reset() { *x = SslPoliciesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1617] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1686] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187593,7 +194798,7 @@ func (x *SslPoliciesScopedList) String() string { func (*SslPoliciesScopedList) ProtoMessage() {} func (x *SslPoliciesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1617] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1686] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187606,7 +194811,7 @@ func (x *SslPoliciesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use SslPoliciesScopedList.ProtoReflect.Descriptor instead. func (*SslPoliciesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1617} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1686} } func (x *SslPoliciesScopedList) GetSslPolicies() []*SslPolicy { @@ -187692,7 +194897,7 @@ type SslPolicy struct { func (x *SslPolicy) Reset() { *x = SslPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1618] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1687] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187704,7 +194909,7 @@ func (x *SslPolicy) String() string { func (*SslPolicy) ProtoMessage() {} func (x *SslPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1618] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1687] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187717,7 +194922,7 @@ func (x *SslPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use SslPolicy.ProtoReflect.Descriptor instead. func (*SslPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1618} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1687} } func (x *SslPolicy) GetCreationTimestamp() string { @@ -187822,7 +195027,7 @@ type SslPolicyReference struct { func (x *SslPolicyReference) Reset() { *x = SslPolicyReference{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1619] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1688] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187834,7 +195039,7 @@ func (x *SslPolicyReference) String() string { func (*SslPolicyReference) ProtoMessage() {} func (x *SslPolicyReference) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1619] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1688] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187847,7 +195052,7 @@ func (x *SslPolicyReference) ProtoReflect() protoreflect.Message { // Deprecated: Use SslPolicyReference.ProtoReflect.Descriptor instead. func (*SslPolicyReference) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1619} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1688} } func (x *SslPolicyReference) GetSslPolicy() string { @@ -187888,7 +195093,7 @@ type StartAsyncReplicationDiskRequest struct { func (x *StartAsyncReplicationDiskRequest) Reset() { *x = StartAsyncReplicationDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1620] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1689] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187900,7 +195105,7 @@ func (x *StartAsyncReplicationDiskRequest) String() string { func (*StartAsyncReplicationDiskRequest) ProtoMessage() {} func (x *StartAsyncReplicationDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1620] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1689] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187913,7 +195118,7 @@ func (x *StartAsyncReplicationDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use StartAsyncReplicationDiskRequest.ProtoReflect.Descriptor instead. func (*StartAsyncReplicationDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1620} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1689} } func (x *StartAsyncReplicationDiskRequest) GetDisk() string { @@ -187982,7 +195187,7 @@ type StartAsyncReplicationRegionDiskRequest struct { func (x *StartAsyncReplicationRegionDiskRequest) Reset() { *x = StartAsyncReplicationRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1621] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1690] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187994,7 +195199,7 @@ func (x *StartAsyncReplicationRegionDiskRequest) String() string { func (*StartAsyncReplicationRegionDiskRequest) ProtoMessage() {} func (x *StartAsyncReplicationRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1621] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1690] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188007,7 +195212,7 @@ func (x *StartAsyncReplicationRegionDiskRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use StartAsyncReplicationRegionDiskRequest.ProtoReflect.Descriptor instead. func (*StartAsyncReplicationRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1621} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1690} } func (x *StartAsyncReplicationRegionDiskRequest) GetDisk() string { @@ -188074,7 +195279,7 @@ type StartInstanceRequest struct { func (x *StartInstanceRequest) Reset() { *x = StartInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1622] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1691] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188086,7 +195291,7 @@ func (x *StartInstanceRequest) String() string { func (*StartInstanceRequest) ProtoMessage() {} func (x *StartInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1622] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1691] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188099,7 +195304,7 @@ func (x *StartInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use StartInstanceRequest.ProtoReflect.Descriptor instead. func (*StartInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1622} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1691} } func (x *StartInstanceRequest) GetInstance() string { @@ -188162,7 +195367,7 @@ type StartInstancesInstanceGroupManagerRequest struct { func (x *StartInstancesInstanceGroupManagerRequest) Reset() { *x = StartInstancesInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1623] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1692] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188174,7 +195379,7 @@ func (x *StartInstancesInstanceGroupManagerRequest) String() string { func (*StartInstancesInstanceGroupManagerRequest) ProtoMessage() {} func (x *StartInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1623] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1692] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188187,7 +195392,7 @@ func (x *StartInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect. // Deprecated: Use StartInstancesInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*StartInstancesInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1623} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1692} } func (x *StartInstancesInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -188256,7 +195461,7 @@ type StartInstancesRegionInstanceGroupManagerRequest struct { func (x *StartInstancesRegionInstanceGroupManagerRequest) Reset() { *x = StartInstancesRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1624] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1693] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188268,7 +195473,7 @@ func (x *StartInstancesRegionInstanceGroupManagerRequest) String() string { func (*StartInstancesRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *StartInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1624] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1693] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188281,7 +195486,7 @@ func (x *StartInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protore // Deprecated: Use StartInstancesRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*StartInstancesRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1624} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1693} } func (x *StartInstancesRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -188350,7 +195555,7 @@ type StartWithEncryptionKeyInstanceRequest struct { func (x *StartWithEncryptionKeyInstanceRequest) Reset() { *x = StartWithEncryptionKeyInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1625] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1694] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188362,7 +195567,7 @@ func (x *StartWithEncryptionKeyInstanceRequest) String() string { func (*StartWithEncryptionKeyInstanceRequest) ProtoMessage() {} func (x *StartWithEncryptionKeyInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1625] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1694] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188375,7 +195580,7 @@ func (x *StartWithEncryptionKeyInstanceRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use StartWithEncryptionKeyInstanceRequest.ProtoReflect.Descriptor instead. func (*StartWithEncryptionKeyInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1625} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1694} } func (x *StartWithEncryptionKeyInstanceRequest) GetInstance() string { @@ -188422,7 +195627,7 @@ type StatefulPolicy struct { func (x *StatefulPolicy) Reset() { *x = StatefulPolicy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1626] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1695] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188434,7 +195639,7 @@ func (x *StatefulPolicy) String() string { func (*StatefulPolicy) ProtoMessage() {} func (x *StatefulPolicy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1626] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1695] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188447,7 +195652,7 @@ func (x *StatefulPolicy) ProtoReflect() protoreflect.Message { // Deprecated: Use StatefulPolicy.ProtoReflect.Descriptor instead. func (*StatefulPolicy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1626} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1695} } func (x *StatefulPolicy) GetPreservedState() *StatefulPolicyPreservedState { @@ -188478,7 +195683,7 @@ type StatefulPolicyPreservedState struct { func (x *StatefulPolicyPreservedState) Reset() { *x = StatefulPolicyPreservedState{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1627] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1696] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188490,7 +195695,7 @@ func (x *StatefulPolicyPreservedState) String() string { func (*StatefulPolicyPreservedState) ProtoMessage() {} func (x *StatefulPolicyPreservedState) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1627] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1696] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188503,7 +195708,7 @@ func (x *StatefulPolicyPreservedState) ProtoReflect() protoreflect.Message { // Deprecated: Use StatefulPolicyPreservedState.ProtoReflect.Descriptor instead. func (*StatefulPolicyPreservedState) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1627} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1696} } func (x *StatefulPolicyPreservedState) GetDisks() map[string]*StatefulPolicyPreservedStateDiskDevice { @@ -188542,7 +195747,7 @@ type StatefulPolicyPreservedStateDiskDevice struct { func (x *StatefulPolicyPreservedStateDiskDevice) Reset() { *x = StatefulPolicyPreservedStateDiskDevice{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1628] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1697] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188554,7 +195759,7 @@ func (x *StatefulPolicyPreservedStateDiskDevice) String() string { func (*StatefulPolicyPreservedStateDiskDevice) ProtoMessage() {} func (x *StatefulPolicyPreservedStateDiskDevice) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1628] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1697] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188567,7 +195772,7 @@ func (x *StatefulPolicyPreservedStateDiskDevice) ProtoReflect() protoreflect.Mes // Deprecated: Use StatefulPolicyPreservedStateDiskDevice.ProtoReflect.Descriptor instead. func (*StatefulPolicyPreservedStateDiskDevice) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1628} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1697} } func (x *StatefulPolicyPreservedStateDiskDevice) GetAutoDelete() string { @@ -188592,7 +195797,7 @@ type StatefulPolicyPreservedStateNetworkIp struct { func (x *StatefulPolicyPreservedStateNetworkIp) Reset() { *x = StatefulPolicyPreservedStateNetworkIp{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1629] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1698] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188604,7 +195809,7 @@ func (x *StatefulPolicyPreservedStateNetworkIp) String() string { func (*StatefulPolicyPreservedStateNetworkIp) ProtoMessage() {} func (x *StatefulPolicyPreservedStateNetworkIp) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1629] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1698] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188617,7 +195822,7 @@ func (x *StatefulPolicyPreservedStateNetworkIp) ProtoReflect() protoreflect.Mess // Deprecated: Use StatefulPolicyPreservedStateNetworkIp.ProtoReflect.Descriptor instead. func (*StatefulPolicyPreservedStateNetworkIp) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1629} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1698} } func (x *StatefulPolicyPreservedStateNetworkIp) GetAutoDelete() string { @@ -188651,7 +195856,7 @@ type Status struct { func (x *Status) Reset() { *x = Status{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1630] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1699] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188663,7 +195868,7 @@ func (x *Status) String() string { func (*Status) ProtoMessage() {} func (x *Status) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1630] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1699] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188676,7 +195881,7 @@ func (x *Status) ProtoReflect() protoreflect.Message { // Deprecated: Use Status.ProtoReflect.Descriptor instead. func (*Status) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1630} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1699} } func (x *Status) GetCode() int32 { @@ -188729,7 +195934,7 @@ type StopAsyncReplicationDiskRequest struct { func (x *StopAsyncReplicationDiskRequest) Reset() { *x = StopAsyncReplicationDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1631] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1700] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188741,7 +195946,7 @@ func (x *StopAsyncReplicationDiskRequest) String() string { func (*StopAsyncReplicationDiskRequest) ProtoMessage() {} func (x *StopAsyncReplicationDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1631] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1700] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188754,7 +195959,7 @@ func (x *StopAsyncReplicationDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use StopAsyncReplicationDiskRequest.ProtoReflect.Descriptor instead. func (*StopAsyncReplicationDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1631} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1700} } func (x *StopAsyncReplicationDiskRequest) GetDisk() string { @@ -188814,7 +196019,7 @@ type StopAsyncReplicationRegionDiskRequest struct { func (x *StopAsyncReplicationRegionDiskRequest) Reset() { *x = StopAsyncReplicationRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1632] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1701] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188826,7 +196031,7 @@ func (x *StopAsyncReplicationRegionDiskRequest) String() string { func (*StopAsyncReplicationRegionDiskRequest) ProtoMessage() {} func (x *StopAsyncReplicationRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1632] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1701] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188839,7 +196044,7 @@ func (x *StopAsyncReplicationRegionDiskRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use StopAsyncReplicationRegionDiskRequest.ProtoReflect.Descriptor instead. func (*StopAsyncReplicationRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1632} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1701} } func (x *StopAsyncReplicationRegionDiskRequest) GetDisk() string { @@ -188900,7 +196105,7 @@ type StopGroupAsyncReplicationDiskRequest struct { func (x *StopGroupAsyncReplicationDiskRequest) Reset() { *x = StopGroupAsyncReplicationDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1633] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1702] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188912,7 +196117,7 @@ func (x *StopGroupAsyncReplicationDiskRequest) String() string { func (*StopGroupAsyncReplicationDiskRequest) ProtoMessage() {} func (x *StopGroupAsyncReplicationDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1633] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1702] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -188925,7 +196130,7 @@ func (x *StopGroupAsyncReplicationDiskRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use StopGroupAsyncReplicationDiskRequest.ProtoReflect.Descriptor instead. func (*StopGroupAsyncReplicationDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1633} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1702} } func (x *StopGroupAsyncReplicationDiskRequest) GetDisksStopGroupAsyncReplicationResourceResource() *DisksStopGroupAsyncReplicationResource { @@ -188986,7 +196191,7 @@ type StopGroupAsyncReplicationRegionDiskRequest struct { func (x *StopGroupAsyncReplicationRegionDiskRequest) Reset() { *x = StopGroupAsyncReplicationRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1634] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1703] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188998,7 +196203,7 @@ func (x *StopGroupAsyncReplicationRegionDiskRequest) String() string { func (*StopGroupAsyncReplicationRegionDiskRequest) ProtoMessage() {} func (x *StopGroupAsyncReplicationRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1634] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1703] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -189011,7 +196216,7 @@ func (x *StopGroupAsyncReplicationRegionDiskRequest) ProtoReflect() protoreflect // Deprecated: Use StopGroupAsyncReplicationRegionDiskRequest.ProtoReflect.Descriptor instead. func (*StopGroupAsyncReplicationRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1634} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1703} } func (x *StopGroupAsyncReplicationRegionDiskRequest) GetDisksStopGroupAsyncReplicationResourceResource() *DisksStopGroupAsyncReplicationResource { @@ -189075,7 +196280,7 @@ type StopInstanceRequest struct { func (x *StopInstanceRequest) Reset() { *x = StopInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1635] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1704] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189087,7 +196292,7 @@ func (x *StopInstanceRequest) String() string { func (*StopInstanceRequest) ProtoMessage() {} func (x *StopInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1635] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1704] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -189100,7 +196305,7 @@ func (x *StopInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use StopInstanceRequest.ProtoReflect.Descriptor instead. func (*StopInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1635} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1704} } func (x *StopInstanceRequest) GetDiscardLocalSsd() bool { @@ -189170,7 +196375,7 @@ type StopInstancesInstanceGroupManagerRequest struct { func (x *StopInstancesInstanceGroupManagerRequest) Reset() { *x = StopInstancesInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1636] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1705] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189182,7 +196387,7 @@ func (x *StopInstancesInstanceGroupManagerRequest) String() string { func (*StopInstancesInstanceGroupManagerRequest) ProtoMessage() {} func (x *StopInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1636] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1705] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -189195,7 +196400,7 @@ func (x *StopInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect.M // Deprecated: Use StopInstancesInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*StopInstancesInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1636} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1705} } func (x *StopInstancesInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -189264,7 +196469,7 @@ type StopInstancesRegionInstanceGroupManagerRequest struct { func (x *StopInstancesRegionInstanceGroupManagerRequest) Reset() { *x = StopInstancesRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1637] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1706] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189276,7 +196481,7 @@ func (x *StopInstancesRegionInstanceGroupManagerRequest) String() string { func (*StopInstancesRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *StopInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1637] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1706] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -189289,7 +196494,7 @@ func (x *StopInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protoref // Deprecated: Use StopInstancesRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*StopInstancesRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1637} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1706} } func (x *StopInstancesRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -189414,7 +196619,7 @@ type StoragePool struct { func (x *StoragePool) Reset() { *x = StoragePool{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1638] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1707] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189426,7 +196631,7 @@ func (x *StoragePool) String() string { func (*StoragePool) ProtoMessage() {} func (x *StoragePool) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1638] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1707] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -189439,7 +196644,7 @@ func (x *StoragePool) ProtoReflect() protoreflect.Message { // Deprecated: Use StoragePool.ProtoReflect.Descriptor instead. func (*StoragePool) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1638} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1707} } func (x *StoragePool) GetCapacityProvisioningType() string { @@ -189617,7 +196822,7 @@ type StoragePoolAggregatedList struct { func (x *StoragePoolAggregatedList) Reset() { *x = StoragePoolAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1639] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1708] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189629,7 +196834,7 @@ func (x *StoragePoolAggregatedList) String() string { func (*StoragePoolAggregatedList) ProtoMessage() {} func (x *StoragePoolAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1639] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1708] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -189642,7 +196847,7 @@ func (x *StoragePoolAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use StoragePoolAggregatedList.ProtoReflect.Descriptor instead. func (*StoragePoolAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1639} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1708} } func (x *StoragePoolAggregatedList) GetEtag() string { @@ -189734,7 +196939,7 @@ type StoragePoolDisk struct { func (x *StoragePoolDisk) Reset() { *x = StoragePoolDisk{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1640] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1709] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189746,7 +196951,7 @@ func (x *StoragePoolDisk) String() string { func (*StoragePoolDisk) ProtoMessage() {} func (x *StoragePoolDisk) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1640] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1709] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -189759,7 +196964,7 @@ func (x *StoragePoolDisk) ProtoReflect() protoreflect.Message { // Deprecated: Use StoragePoolDisk.ProtoReflect.Descriptor instead. func (*StoragePoolDisk) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1640} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1709} } func (x *StoragePoolDisk) GetAttachedInstances() []string { @@ -189854,7 +197059,7 @@ type StoragePoolExapoolProvisionedCapacityGb struct { func (x *StoragePoolExapoolProvisionedCapacityGb) Reset() { *x = StoragePoolExapoolProvisionedCapacityGb{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1641] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1710] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189866,7 +197071,7 @@ func (x *StoragePoolExapoolProvisionedCapacityGb) String() string { func (*StoragePoolExapoolProvisionedCapacityGb) ProtoMessage() {} func (x *StoragePoolExapoolProvisionedCapacityGb) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1641] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1710] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -189879,7 +197084,7 @@ func (x *StoragePoolExapoolProvisionedCapacityGb) ProtoReflect() protoreflect.Me // Deprecated: Use StoragePoolExapoolProvisionedCapacityGb.ProtoReflect.Descriptor instead. func (*StoragePoolExapoolProvisionedCapacityGb) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1641} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1710} } func (x *StoragePoolExapoolProvisionedCapacityGb) GetCapacityOptimized() int64 { @@ -189933,7 +197138,7 @@ type StoragePoolList struct { func (x *StoragePoolList) Reset() { *x = StoragePoolList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1642] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1711] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189945,7 +197150,7 @@ func (x *StoragePoolList) String() string { func (*StoragePoolList) ProtoMessage() {} func (x *StoragePoolList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1642] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1711] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -189958,7 +197163,7 @@ func (x *StoragePoolList) ProtoReflect() protoreflect.Message { // Deprecated: Use StoragePoolList.ProtoReflect.Descriptor instead. func (*StoragePoolList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1642} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1711} } func (x *StoragePoolList) GetEtag() string { @@ -190046,7 +197251,7 @@ type StoragePoolListDisks struct { func (x *StoragePoolListDisks) Reset() { *x = StoragePoolListDisks{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1643] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1712] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -190058,7 +197263,7 @@ func (x *StoragePoolListDisks) String() string { func (*StoragePoolListDisks) ProtoMessage() {} func (x *StoragePoolListDisks) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1643] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1712] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -190071,7 +197276,7 @@ func (x *StoragePoolListDisks) ProtoReflect() protoreflect.Message { // Deprecated: Use StoragePoolListDisks.ProtoReflect.Descriptor instead. func (*StoragePoolListDisks) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1643} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1712} } func (x *StoragePoolListDisks) GetEtag() string { @@ -190147,7 +197352,7 @@ type StoragePoolParams struct { func (x *StoragePoolParams) Reset() { *x = StoragePoolParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1644] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1713] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -190159,7 +197364,7 @@ func (x *StoragePoolParams) String() string { func (*StoragePoolParams) ProtoMessage() {} func (x *StoragePoolParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1644] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1713] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -190172,7 +197377,7 @@ func (x *StoragePoolParams) ProtoReflect() protoreflect.Message { // Deprecated: Use StoragePoolParams.ProtoReflect.Descriptor instead. func (*StoragePoolParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1644} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1713} } func (x *StoragePoolParams) GetResourceManagerTags() map[string]string { @@ -190231,7 +197436,7 @@ type StoragePoolResourceStatus struct { func (x *StoragePoolResourceStatus) Reset() { *x = StoragePoolResourceStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1645] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1714] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -190243,7 +197448,7 @@ func (x *StoragePoolResourceStatus) String() string { func (*StoragePoolResourceStatus) ProtoMessage() {} func (x *StoragePoolResourceStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1645] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1714] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -190256,7 +197461,7 @@ func (x *StoragePoolResourceStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use StoragePoolResourceStatus.ProtoReflect.Descriptor instead. func (*StoragePoolResourceStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1645} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1714} } func (x *StoragePoolResourceStatus) GetDiskCount() int64 { @@ -190405,7 +197610,7 @@ type StoragePoolType struct { func (x *StoragePoolType) Reset() { *x = StoragePoolType{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1646] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1715] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -190417,7 +197622,7 @@ func (x *StoragePoolType) String() string { func (*StoragePoolType) ProtoMessage() {} func (x *StoragePoolType) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1646] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1715] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -190430,7 +197635,7 @@ func (x *StoragePoolType) ProtoReflect() protoreflect.Message { // Deprecated: Use StoragePoolType.ProtoReflect.Descriptor instead. func (*StoragePoolType) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1646} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1715} } func (x *StoragePoolType) GetCreationTimestamp() string { @@ -190576,7 +197781,7 @@ type StoragePoolTypeAggregatedList struct { func (x *StoragePoolTypeAggregatedList) Reset() { *x = StoragePoolTypeAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1647] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1716] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -190588,7 +197793,7 @@ func (x *StoragePoolTypeAggregatedList) String() string { func (*StoragePoolTypeAggregatedList) ProtoMessage() {} func (x *StoragePoolTypeAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1647] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1716] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -190601,7 +197806,7 @@ func (x *StoragePoolTypeAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use StoragePoolTypeAggregatedList.ProtoReflect.Descriptor instead. func (*StoragePoolTypeAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1647} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1716} } func (x *StoragePoolTypeAggregatedList) GetId() string { @@ -190671,7 +197876,7 @@ type StoragePoolTypeList struct { func (x *StoragePoolTypeList) Reset() { *x = StoragePoolTypeList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1648] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1717] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -190683,7 +197888,7 @@ func (x *StoragePoolTypeList) String() string { func (*StoragePoolTypeList) ProtoMessage() {} func (x *StoragePoolTypeList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1648] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1717] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -190696,7 +197901,7 @@ func (x *StoragePoolTypeList) ProtoReflect() protoreflect.Message { // Deprecated: Use StoragePoolTypeList.ProtoReflect.Descriptor instead. func (*StoragePoolTypeList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1648} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1717} } func (x *StoragePoolTypeList) GetId() string { @@ -190754,7 +197959,7 @@ type StoragePoolTypesScopedList struct { func (x *StoragePoolTypesScopedList) Reset() { *x = StoragePoolTypesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1649] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1718] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -190766,7 +197971,7 @@ func (x *StoragePoolTypesScopedList) String() string { func (*StoragePoolTypesScopedList) ProtoMessage() {} func (x *StoragePoolTypesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1649] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1718] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -190779,7 +197984,7 @@ func (x *StoragePoolTypesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use StoragePoolTypesScopedList.ProtoReflect.Descriptor instead. func (*StoragePoolTypesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1649} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1718} } func (x *StoragePoolTypesScopedList) GetStoragePoolTypes() []*StoragePoolType { @@ -190809,7 +198014,7 @@ type StoragePoolsScopedList struct { func (x *StoragePoolsScopedList) Reset() { *x = StoragePoolsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1650] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1719] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -190821,7 +198026,7 @@ func (x *StoragePoolsScopedList) String() string { func (*StoragePoolsScopedList) ProtoMessage() {} func (x *StoragePoolsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1650] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1719] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -190834,7 +198039,7 @@ func (x *StoragePoolsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use StoragePoolsScopedList.ProtoReflect.Descriptor instead. func (*StoragePoolsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1650} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1719} } func (x *StoragePoolsScopedList) GetStoragePools() []*StoragePool { @@ -191039,7 +198244,7 @@ type Subnetwork struct { func (x *Subnetwork) Reset() { *x = Subnetwork{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1651] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1720] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -191051,7 +198256,7 @@ func (x *Subnetwork) String() string { func (*Subnetwork) ProtoMessage() {} func (x *Subnetwork) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1651] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1720] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -191064,7 +198269,7 @@ func (x *Subnetwork) ProtoReflect() protoreflect.Message { // Deprecated: Use Subnetwork.ProtoReflect.Descriptor instead. func (*Subnetwork) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1651} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1720} } func (x *Subnetwork) GetAllowSubnetCidrRoutesOverlap() bool { @@ -191325,7 +198530,7 @@ type SubnetworkAggregatedList struct { func (x *SubnetworkAggregatedList) Reset() { *x = SubnetworkAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1652] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1721] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -191337,7 +198542,7 @@ func (x *SubnetworkAggregatedList) String() string { func (*SubnetworkAggregatedList) ProtoMessage() {} func (x *SubnetworkAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1652] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1721] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -191350,7 +198555,7 @@ func (x *SubnetworkAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use SubnetworkAggregatedList.ProtoReflect.Descriptor instead. func (*SubnetworkAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1652} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1721} } func (x *SubnetworkAggregatedList) GetId() string { @@ -191428,7 +198633,7 @@ type SubnetworkList struct { func (x *SubnetworkList) Reset() { *x = SubnetworkList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1653] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1722] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -191440,7 +198645,7 @@ func (x *SubnetworkList) String() string { func (*SubnetworkList) ProtoMessage() {} func (x *SubnetworkList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1653] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1722] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -191453,7 +198658,7 @@ func (x *SubnetworkList) ProtoReflect() protoreflect.Message { // Deprecated: Use SubnetworkList.ProtoReflect.Descriptor instead. func (*SubnetworkList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1653} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1722} } func (x *SubnetworkList) GetId() string { @@ -191539,7 +198744,7 @@ type SubnetworkLogConfig struct { func (x *SubnetworkLogConfig) Reset() { *x = SubnetworkLogConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1654] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1723] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -191551,7 +198756,7 @@ func (x *SubnetworkLogConfig) String() string { func (*SubnetworkLogConfig) ProtoMessage() {} func (x *SubnetworkLogConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1654] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1723] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -191564,7 +198769,7 @@ func (x *SubnetworkLogConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use SubnetworkLogConfig.ProtoReflect.Descriptor instead. func (*SubnetworkLogConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1654} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1723} } func (x *SubnetworkLogConfig) GetAggregationInterval() string { @@ -191631,7 +198836,7 @@ type SubnetworkParams struct { func (x *SubnetworkParams) Reset() { *x = SubnetworkParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1655] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1724] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -191643,7 +198848,7 @@ func (x *SubnetworkParams) String() string { func (*SubnetworkParams) ProtoMessage() {} func (x *SubnetworkParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1655] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1724] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -191656,7 +198861,7 @@ func (x *SubnetworkParams) ProtoReflect() protoreflect.Message { // Deprecated: Use SubnetworkParams.ProtoReflect.Descriptor instead. func (*SubnetworkParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1655} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1724} } func (x *SubnetworkParams) GetResourceManagerTags() map[string]string { @@ -191702,7 +198907,7 @@ type SubnetworkSecondaryRange struct { func (x *SubnetworkSecondaryRange) Reset() { *x = SubnetworkSecondaryRange{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1656] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1725] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -191714,7 +198919,7 @@ func (x *SubnetworkSecondaryRange) String() string { func (*SubnetworkSecondaryRange) ProtoMessage() {} func (x *SubnetworkSecondaryRange) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1656] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1725] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -191727,7 +198932,7 @@ func (x *SubnetworkSecondaryRange) ProtoReflect() protoreflect.Message { // Deprecated: Use SubnetworkSecondaryRange.ProtoReflect.Descriptor instead. func (*SubnetworkSecondaryRange) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1656} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1725} } func (x *SubnetworkSecondaryRange) GetIpCidrRange() string { @@ -191770,7 +198975,7 @@ type SubnetworkUtilizationDetails struct { func (x *SubnetworkUtilizationDetails) Reset() { *x = SubnetworkUtilizationDetails{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1657] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1726] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -191782,7 +198987,7 @@ func (x *SubnetworkUtilizationDetails) String() string { func (*SubnetworkUtilizationDetails) ProtoMessage() {} func (x *SubnetworkUtilizationDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1657] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1726] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -191795,7 +199000,7 @@ func (x *SubnetworkUtilizationDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use SubnetworkUtilizationDetails.ProtoReflect.Descriptor instead. func (*SubnetworkUtilizationDetails) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1657} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1726} } func (x *SubnetworkUtilizationDetails) GetExternalIpv6InstanceUtilization() *SubnetworkUtilizationDetailsIPV6Utilization { @@ -191839,7 +199044,7 @@ type SubnetworkUtilizationDetailsIPV4Utilization struct { func (x *SubnetworkUtilizationDetailsIPV4Utilization) Reset() { *x = SubnetworkUtilizationDetailsIPV4Utilization{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1658] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1727] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -191851,7 +199056,7 @@ func (x *SubnetworkUtilizationDetailsIPV4Utilization) String() string { func (*SubnetworkUtilizationDetailsIPV4Utilization) ProtoMessage() {} func (x *SubnetworkUtilizationDetailsIPV4Utilization) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1658] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1727] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -191864,7 +199069,7 @@ func (x *SubnetworkUtilizationDetailsIPV4Utilization) ProtoReflect() protoreflec // Deprecated: Use SubnetworkUtilizationDetailsIPV4Utilization.ProtoReflect.Descriptor instead. func (*SubnetworkUtilizationDetailsIPV4Utilization) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1658} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1727} } func (x *SubnetworkUtilizationDetailsIPV4Utilization) GetRangeName() string { @@ -191899,7 +199104,7 @@ type SubnetworkUtilizationDetailsIPV6Utilization struct { func (x *SubnetworkUtilizationDetailsIPV6Utilization) Reset() { *x = SubnetworkUtilizationDetailsIPV6Utilization{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1659] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1728] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -191911,7 +199116,7 @@ func (x *SubnetworkUtilizationDetailsIPV6Utilization) String() string { func (*SubnetworkUtilizationDetailsIPV6Utilization) ProtoMessage() {} func (x *SubnetworkUtilizationDetailsIPV6Utilization) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1659] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1728] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -191924,7 +199129,7 @@ func (x *SubnetworkUtilizationDetailsIPV6Utilization) ProtoReflect() protoreflec // Deprecated: Use SubnetworkUtilizationDetailsIPV6Utilization.ProtoReflect.Descriptor instead. func (*SubnetworkUtilizationDetailsIPV6Utilization) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1659} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1728} } func (x *SubnetworkUtilizationDetailsIPV6Utilization) GetTotalAllocatedIp() *Uint128 { @@ -191954,7 +199159,7 @@ type SubnetworksExpandIpCidrRangeRequest struct { func (x *SubnetworksExpandIpCidrRangeRequest) Reset() { *x = SubnetworksExpandIpCidrRangeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1660] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1729] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -191966,7 +199171,7 @@ func (x *SubnetworksExpandIpCidrRangeRequest) String() string { func (*SubnetworksExpandIpCidrRangeRequest) ProtoMessage() {} func (x *SubnetworksExpandIpCidrRangeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1660] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1729] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -191979,7 +199184,7 @@ func (x *SubnetworksExpandIpCidrRangeRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use SubnetworksExpandIpCidrRangeRequest.ProtoReflect.Descriptor instead. func (*SubnetworksExpandIpCidrRangeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1660} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1729} } func (x *SubnetworksExpandIpCidrRangeRequest) GetIpCidrRange() string { @@ -192002,7 +199207,7 @@ type SubnetworksScopedList struct { func (x *SubnetworksScopedList) Reset() { *x = SubnetworksScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1661] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1730] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192014,7 +199219,7 @@ func (x *SubnetworksScopedList) String() string { func (*SubnetworksScopedList) ProtoMessage() {} func (x *SubnetworksScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1661] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1730] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192027,7 +199232,7 @@ func (x *SubnetworksScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use SubnetworksScopedList.ProtoReflect.Descriptor instead. func (*SubnetworksScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1661} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1730} } func (x *SubnetworksScopedList) GetSubnetworks() []*Subnetwork { @@ -192056,7 +199261,7 @@ type SubnetworksScopedWarning struct { func (x *SubnetworksScopedWarning) Reset() { *x = SubnetworksScopedWarning{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1662] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1731] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192068,7 +199273,7 @@ func (x *SubnetworksScopedWarning) String() string { func (*SubnetworksScopedWarning) ProtoMessage() {} func (x *SubnetworksScopedWarning) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1662] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1731] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192081,7 +199286,7 @@ func (x *SubnetworksScopedWarning) ProtoReflect() protoreflect.Message { // Deprecated: Use SubnetworksScopedWarning.ProtoReflect.Descriptor instead. func (*SubnetworksScopedWarning) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1662} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1731} } func (x *SubnetworksScopedWarning) GetScopeName() string { @@ -192107,7 +199312,7 @@ type SubnetworksSetPrivateIpGoogleAccessRequest struct { func (x *SubnetworksSetPrivateIpGoogleAccessRequest) Reset() { *x = SubnetworksSetPrivateIpGoogleAccessRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1663] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1732] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192119,7 +199324,7 @@ func (x *SubnetworksSetPrivateIpGoogleAccessRequest) String() string { func (*SubnetworksSetPrivateIpGoogleAccessRequest) ProtoMessage() {} func (x *SubnetworksSetPrivateIpGoogleAccessRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1663] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1732] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192132,7 +199337,7 @@ func (x *SubnetworksSetPrivateIpGoogleAccessRequest) ProtoReflect() protoreflect // Deprecated: Use SubnetworksSetPrivateIpGoogleAccessRequest.ProtoReflect.Descriptor instead. func (*SubnetworksSetPrivateIpGoogleAccessRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1663} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1732} } func (x *SubnetworksSetPrivateIpGoogleAccessRequest) GetPrivateIpGoogleAccess() bool { @@ -192155,7 +199360,7 @@ type Subsetting struct { func (x *Subsetting) Reset() { *x = Subsetting{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1664] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1733] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192167,7 +199372,7 @@ func (x *Subsetting) String() string { func (*Subsetting) ProtoMessage() {} func (x *Subsetting) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1664] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1733] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192180,7 +199385,7 @@ func (x *Subsetting) ProtoReflect() protoreflect.Message { // Deprecated: Use Subsetting.ProtoReflect.Descriptor instead. func (*Subsetting) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1664} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1733} } func (x *Subsetting) GetPolicy() string { @@ -192223,7 +199428,7 @@ type SuspendInstanceRequest struct { func (x *SuspendInstanceRequest) Reset() { *x = SuspendInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1665] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1734] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192235,7 +199440,7 @@ func (x *SuspendInstanceRequest) String() string { func (*SuspendInstanceRequest) ProtoMessage() {} func (x *SuspendInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1665] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1734] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192248,7 +199453,7 @@ func (x *SuspendInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SuspendInstanceRequest.ProtoReflect.Descriptor instead. func (*SuspendInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1665} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1734} } func (x *SuspendInstanceRequest) GetDiscardLocalSsd() bool { @@ -192318,7 +199523,7 @@ type SuspendInstancesInstanceGroupManagerRequest struct { func (x *SuspendInstancesInstanceGroupManagerRequest) Reset() { *x = SuspendInstancesInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1666] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1735] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192330,7 +199535,7 @@ func (x *SuspendInstancesInstanceGroupManagerRequest) String() string { func (*SuspendInstancesInstanceGroupManagerRequest) ProtoMessage() {} func (x *SuspendInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1666] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1735] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192343,7 +199548,7 @@ func (x *SuspendInstancesInstanceGroupManagerRequest) ProtoReflect() protoreflec // Deprecated: Use SuspendInstancesInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*SuspendInstancesInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1666} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1735} } func (x *SuspendInstancesInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -192412,7 +199617,7 @@ type SuspendInstancesRegionInstanceGroupManagerRequest struct { func (x *SuspendInstancesRegionInstanceGroupManagerRequest) Reset() { *x = SuspendInstancesRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1667] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1736] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192424,7 +199629,7 @@ func (x *SuspendInstancesRegionInstanceGroupManagerRequest) String() string { func (*SuspendInstancesRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *SuspendInstancesRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1667] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1736] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192437,7 +199642,7 @@ func (x *SuspendInstancesRegionInstanceGroupManagerRequest) ProtoReflect() proto // Deprecated: Use SuspendInstancesRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*SuspendInstancesRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1667} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1736} } func (x *SuspendInstancesRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -192502,7 +199707,7 @@ type SwitchToCustomModeNetworkRequest struct { func (x *SwitchToCustomModeNetworkRequest) Reset() { *x = SwitchToCustomModeNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1668] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1737] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192514,7 +199719,7 @@ func (x *SwitchToCustomModeNetworkRequest) String() string { func (*SwitchToCustomModeNetworkRequest) ProtoMessage() {} func (x *SwitchToCustomModeNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1668] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1737] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192527,7 +199732,7 @@ func (x *SwitchToCustomModeNetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SwitchToCustomModeNetworkRequest.ProtoReflect.Descriptor instead. func (*SwitchToCustomModeNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1668} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1737} } func (x *SwitchToCustomModeNetworkRequest) GetNetwork() string { @@ -192602,7 +199807,7 @@ type TCPHealthCheck struct { func (x *TCPHealthCheck) Reset() { *x = TCPHealthCheck{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1669] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1738] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192614,7 +199819,7 @@ func (x *TCPHealthCheck) String() string { func (*TCPHealthCheck) ProtoMessage() {} func (x *TCPHealthCheck) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1669] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1738] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192627,7 +199832,7 @@ func (x *TCPHealthCheck) ProtoReflect() protoreflect.Message { // Deprecated: Use TCPHealthCheck.ProtoReflect.Descriptor instead. func (*TCPHealthCheck) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1669} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1738} } func (x *TCPHealthCheck) GetPort() int32 { @@ -192693,7 +199898,7 @@ type Tags struct { func (x *Tags) Reset() { *x = Tags{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1670] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1739] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192705,7 +199910,7 @@ func (x *Tags) String() string { func (*Tags) ProtoMessage() {} func (x *Tags) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1670] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1739] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192718,7 +199923,7 @@ func (x *Tags) ProtoReflect() protoreflect.Message { // Deprecated: Use Tags.ProtoReflect.Descriptor instead. func (*Tags) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1670} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1739} } func (x *Tags) GetFingerprint() string { @@ -192796,7 +200001,7 @@ type TargetGrpcProxy struct { func (x *TargetGrpcProxy) Reset() { *x = TargetGrpcProxy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1671] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1740] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192808,7 +200013,7 @@ func (x *TargetGrpcProxy) String() string { func (*TargetGrpcProxy) ProtoMessage() {} func (x *TargetGrpcProxy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1671] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1740] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192821,7 +200026,7 @@ func (x *TargetGrpcProxy) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetGrpcProxy.ProtoReflect.Descriptor instead. func (*TargetGrpcProxy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1671} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1740} } func (x *TargetGrpcProxy) GetCreationTimestamp() string { @@ -192918,7 +200123,7 @@ type TargetGrpcProxyList struct { func (x *TargetGrpcProxyList) Reset() { *x = TargetGrpcProxyList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1672] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1741] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192930,7 +200135,7 @@ func (x *TargetGrpcProxyList) String() string { func (*TargetGrpcProxyList) ProtoMessage() {} func (x *TargetGrpcProxyList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1672] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1741] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192943,7 +200148,7 @@ func (x *TargetGrpcProxyList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetGrpcProxyList.ProtoReflect.Descriptor instead. func (*TargetGrpcProxyList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1672} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1741} } func (x *TargetGrpcProxyList) GetId() string { @@ -193001,7 +200206,7 @@ type TargetHttpProxiesScopedList struct { func (x *TargetHttpProxiesScopedList) Reset() { *x = TargetHttpProxiesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1673] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1742] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193013,7 +200218,7 @@ func (x *TargetHttpProxiesScopedList) String() string { func (*TargetHttpProxiesScopedList) ProtoMessage() {} func (x *TargetHttpProxiesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1673] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1742] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -193026,7 +200231,7 @@ func (x *TargetHttpProxiesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetHttpProxiesScopedList.ProtoReflect.Descriptor instead. func (*TargetHttpProxiesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1673} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1742} } func (x *TargetHttpProxiesScopedList) GetTargetHttpProxies() []*TargetHttpProxy { @@ -193127,7 +200332,7 @@ type TargetHttpProxy struct { func (x *TargetHttpProxy) Reset() { *x = TargetHttpProxy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1674] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1743] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193139,7 +200344,7 @@ func (x *TargetHttpProxy) String() string { func (*TargetHttpProxy) ProtoMessage() {} func (x *TargetHttpProxy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1674] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1743] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -193152,7 +200357,7 @@ func (x *TargetHttpProxy) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetHttpProxy.ProtoReflect.Descriptor instead. func (*TargetHttpProxy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1674} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1743} } func (x *TargetHttpProxy) GetCreationTimestamp() string { @@ -193257,7 +200462,7 @@ type TargetHttpProxyAggregatedList struct { func (x *TargetHttpProxyAggregatedList) Reset() { *x = TargetHttpProxyAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1675] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1744] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193269,7 +200474,7 @@ func (x *TargetHttpProxyAggregatedList) String() string { func (*TargetHttpProxyAggregatedList) ProtoMessage() {} func (x *TargetHttpProxyAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1675] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1744] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -193282,7 +200487,7 @@ func (x *TargetHttpProxyAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetHttpProxyAggregatedList.ProtoReflect.Descriptor instead. func (*TargetHttpProxyAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1675} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1744} } func (x *TargetHttpProxyAggregatedList) GetId() string { @@ -193353,7 +200558,7 @@ type TargetHttpProxyList struct { func (x *TargetHttpProxyList) Reset() { *x = TargetHttpProxyList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1676] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1745] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193365,7 +200570,7 @@ func (x *TargetHttpProxyList) String() string { func (*TargetHttpProxyList) ProtoMessage() {} func (x *TargetHttpProxyList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1676] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1745] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -193378,7 +200583,7 @@ func (x *TargetHttpProxyList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetHttpProxyList.ProtoReflect.Descriptor instead. func (*TargetHttpProxyList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1676} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1745} } func (x *TargetHttpProxyList) GetId() string { @@ -193436,7 +200641,7 @@ type TargetHttpsProxiesScopedList struct { func (x *TargetHttpsProxiesScopedList) Reset() { *x = TargetHttpsProxiesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1677] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1746] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193448,7 +200653,7 @@ func (x *TargetHttpsProxiesScopedList) String() string { func (*TargetHttpsProxiesScopedList) ProtoMessage() {} func (x *TargetHttpsProxiesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1677] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1746] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -193461,7 +200666,7 @@ func (x *TargetHttpsProxiesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetHttpsProxiesScopedList.ProtoReflect.Descriptor instead. func (*TargetHttpsProxiesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1677} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1746} } func (x *TargetHttpsProxiesScopedList) GetTargetHttpsProxies() []*TargetHttpsProxy { @@ -193490,7 +200695,7 @@ type TargetHttpsProxiesSetCertificateMapRequest struct { func (x *TargetHttpsProxiesSetCertificateMapRequest) Reset() { *x = TargetHttpsProxiesSetCertificateMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1678] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1747] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193502,7 +200707,7 @@ func (x *TargetHttpsProxiesSetCertificateMapRequest) String() string { func (*TargetHttpsProxiesSetCertificateMapRequest) ProtoMessage() {} func (x *TargetHttpsProxiesSetCertificateMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1678] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1747] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -193515,7 +200720,7 @@ func (x *TargetHttpsProxiesSetCertificateMapRequest) ProtoReflect() protoreflect // Deprecated: Use TargetHttpsProxiesSetCertificateMapRequest.ProtoReflect.Descriptor instead. func (*TargetHttpsProxiesSetCertificateMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1678} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1747} } func (x *TargetHttpsProxiesSetCertificateMapRequest) GetCertificateMap() string { @@ -193536,7 +200741,7 @@ type TargetHttpsProxiesSetQuicOverrideRequest struct { func (x *TargetHttpsProxiesSetQuicOverrideRequest) Reset() { *x = TargetHttpsProxiesSetQuicOverrideRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1679] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1748] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193548,7 +200753,7 @@ func (x *TargetHttpsProxiesSetQuicOverrideRequest) String() string { func (*TargetHttpsProxiesSetQuicOverrideRequest) ProtoMessage() {} func (x *TargetHttpsProxiesSetQuicOverrideRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1679] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1748] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -193561,7 +200766,7 @@ func (x *TargetHttpsProxiesSetQuicOverrideRequest) ProtoReflect() protoreflect.M // Deprecated: Use TargetHttpsProxiesSetQuicOverrideRequest.ProtoReflect.Descriptor instead. func (*TargetHttpsProxiesSetQuicOverrideRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1679} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1748} } func (x *TargetHttpsProxiesSetQuicOverrideRequest) GetQuicOverride() string { @@ -193584,7 +200789,7 @@ type TargetHttpsProxiesSetSslCertificatesRequest struct { func (x *TargetHttpsProxiesSetSslCertificatesRequest) Reset() { *x = TargetHttpsProxiesSetSslCertificatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1680] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1749] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193596,7 +200801,7 @@ func (x *TargetHttpsProxiesSetSslCertificatesRequest) String() string { func (*TargetHttpsProxiesSetSslCertificatesRequest) ProtoMessage() {} func (x *TargetHttpsProxiesSetSslCertificatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1680] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1749] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -193609,7 +200814,7 @@ func (x *TargetHttpsProxiesSetSslCertificatesRequest) ProtoReflect() protoreflec // Deprecated: Use TargetHttpsProxiesSetSslCertificatesRequest.ProtoReflect.Descriptor instead. func (*TargetHttpsProxiesSetSslCertificatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1680} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1749} } func (x *TargetHttpsProxiesSetSslCertificatesRequest) GetSslCertificates() []string { @@ -193805,7 +201010,7 @@ type TargetHttpsProxy struct { func (x *TargetHttpsProxy) Reset() { *x = TargetHttpsProxy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1681] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1750] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193817,7 +201022,7 @@ func (x *TargetHttpsProxy) String() string { func (*TargetHttpsProxy) ProtoMessage() {} func (x *TargetHttpsProxy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1681] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1750] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -193830,7 +201035,7 @@ func (x *TargetHttpsProxy) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetHttpsProxy.ProtoReflect.Descriptor instead. func (*TargetHttpsProxy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1681} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1750} } func (x *TargetHttpsProxy) GetAuthorizationPolicy() string { @@ -193986,7 +201191,7 @@ type TargetHttpsProxyAggregatedList struct { func (x *TargetHttpsProxyAggregatedList) Reset() { *x = TargetHttpsProxyAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1682] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1751] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193998,7 +201203,7 @@ func (x *TargetHttpsProxyAggregatedList) String() string { func (*TargetHttpsProxyAggregatedList) ProtoMessage() {} func (x *TargetHttpsProxyAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1682] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1751] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -194011,7 +201216,7 @@ func (x *TargetHttpsProxyAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetHttpsProxyAggregatedList.ProtoReflect.Descriptor instead. func (*TargetHttpsProxyAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1682} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1751} } func (x *TargetHttpsProxyAggregatedList) GetId() string { @@ -194089,7 +201294,7 @@ type TargetHttpsProxyList struct { func (x *TargetHttpsProxyList) Reset() { *x = TargetHttpsProxyList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1683] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1752] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -194101,7 +201306,7 @@ func (x *TargetHttpsProxyList) String() string { func (*TargetHttpsProxyList) ProtoMessage() {} func (x *TargetHttpsProxyList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1683] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1752] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -194114,7 +201319,7 @@ func (x *TargetHttpsProxyList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetHttpsProxyList.ProtoReflect.Descriptor instead. func (*TargetHttpsProxyList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1683} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1752} } func (x *TargetHttpsProxyList) GetId() string { @@ -194220,7 +201425,7 @@ type TargetInstance struct { func (x *TargetInstance) Reset() { *x = TargetInstance{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1684] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1753] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -194232,7 +201437,7 @@ func (x *TargetInstance) String() string { func (*TargetInstance) ProtoMessage() {} func (x *TargetInstance) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1684] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1753] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -194245,7 +201450,7 @@ func (x *TargetInstance) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetInstance.ProtoReflect.Descriptor instead. func (*TargetInstance) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1684} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1753} } func (x *TargetInstance) GetCreationTimestamp() string { @@ -194351,7 +201556,7 @@ type TargetInstanceAggregatedList struct { func (x *TargetInstanceAggregatedList) Reset() { *x = TargetInstanceAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1685] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1754] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -194363,7 +201568,7 @@ func (x *TargetInstanceAggregatedList) String() string { func (*TargetInstanceAggregatedList) ProtoMessage() {} func (x *TargetInstanceAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1685] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1754] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -194376,7 +201581,7 @@ func (x *TargetInstanceAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetInstanceAggregatedList.ProtoReflect.Descriptor instead. func (*TargetInstanceAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1685} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1754} } func (x *TargetInstanceAggregatedList) GetId() string { @@ -194453,7 +201658,7 @@ type TargetInstanceList struct { func (x *TargetInstanceList) Reset() { *x = TargetInstanceList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1686] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1755] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -194465,7 +201670,7 @@ func (x *TargetInstanceList) String() string { func (*TargetInstanceList) ProtoMessage() {} func (x *TargetInstanceList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1686] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1755] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -194478,7 +201683,7 @@ func (x *TargetInstanceList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetInstanceList.ProtoReflect.Descriptor instead. func (*TargetInstanceList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1686} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1755} } func (x *TargetInstanceList) GetId() string { @@ -194536,7 +201741,7 @@ type TargetInstancesScopedList struct { func (x *TargetInstancesScopedList) Reset() { *x = TargetInstancesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1687] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1756] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -194548,7 +201753,7 @@ func (x *TargetInstancesScopedList) String() string { func (*TargetInstancesScopedList) ProtoMessage() {} func (x *TargetInstancesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1687] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1756] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -194561,7 +201766,7 @@ func (x *TargetInstancesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetInstancesScopedList.ProtoReflect.Descriptor instead. func (*TargetInstancesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1687} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1756} } func (x *TargetInstancesScopedList) GetTargetInstances() []*TargetInstance { @@ -194674,7 +201879,7 @@ type TargetPool struct { func (x *TargetPool) Reset() { *x = TargetPool{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1688] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1757] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -194686,7 +201891,7 @@ func (x *TargetPool) String() string { func (*TargetPool) ProtoMessage() {} func (x *TargetPool) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1688] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1757] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -194699,7 +201904,7 @@ func (x *TargetPool) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetPool.ProtoReflect.Descriptor instead. func (*TargetPool) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1688} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1757} } func (x *TargetPool) GetBackupPool() string { @@ -194820,7 +202025,7 @@ type TargetPoolAggregatedList struct { func (x *TargetPoolAggregatedList) Reset() { *x = TargetPoolAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1689] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1758] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -194832,7 +202037,7 @@ func (x *TargetPoolAggregatedList) String() string { func (*TargetPoolAggregatedList) ProtoMessage() {} func (x *TargetPoolAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1689] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1758] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -194845,7 +202050,7 @@ func (x *TargetPoolAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetPoolAggregatedList.ProtoReflect.Descriptor instead. func (*TargetPoolAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1689} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1758} } func (x *TargetPoolAggregatedList) GetId() string { @@ -194909,7 +202114,7 @@ type TargetPoolInstanceHealth struct { func (x *TargetPoolInstanceHealth) Reset() { *x = TargetPoolInstanceHealth{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1690] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1759] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -194921,7 +202126,7 @@ func (x *TargetPoolInstanceHealth) String() string { func (*TargetPoolInstanceHealth) ProtoMessage() {} func (x *TargetPoolInstanceHealth) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1690] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1759] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -194934,7 +202139,7 @@ func (x *TargetPoolInstanceHealth) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetPoolInstanceHealth.ProtoReflect.Descriptor instead. func (*TargetPoolInstanceHealth) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1690} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1759} } func (x *TargetPoolInstanceHealth) GetHealthStatus() []*HealthStatus { @@ -194977,7 +202182,7 @@ type TargetPoolList struct { func (x *TargetPoolList) Reset() { *x = TargetPoolList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1691] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1760] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -194989,7 +202194,7 @@ func (x *TargetPoolList) String() string { func (*TargetPoolList) ProtoMessage() {} func (x *TargetPoolList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1691] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1760] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195002,7 +202207,7 @@ func (x *TargetPoolList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetPoolList.ProtoReflect.Descriptor instead. func (*TargetPoolList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1691} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1760} } func (x *TargetPoolList) GetId() string { @@ -195057,7 +202262,7 @@ type TargetPoolsAddHealthCheckRequest struct { func (x *TargetPoolsAddHealthCheckRequest) Reset() { *x = TargetPoolsAddHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1692] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1761] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195069,7 +202274,7 @@ func (x *TargetPoolsAddHealthCheckRequest) String() string { func (*TargetPoolsAddHealthCheckRequest) ProtoMessage() {} func (x *TargetPoolsAddHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1692] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1761] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195082,7 +202287,7 @@ func (x *TargetPoolsAddHealthCheckRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetPoolsAddHealthCheckRequest.ProtoReflect.Descriptor instead. func (*TargetPoolsAddHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1692} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1761} } func (x *TargetPoolsAddHealthCheckRequest) GetHealthChecks() []*HealthCheckReference { @@ -195107,7 +202312,7 @@ type TargetPoolsAddInstanceRequest struct { func (x *TargetPoolsAddInstanceRequest) Reset() { *x = TargetPoolsAddInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1693] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1762] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195119,7 +202324,7 @@ func (x *TargetPoolsAddInstanceRequest) String() string { func (*TargetPoolsAddInstanceRequest) ProtoMessage() {} func (x *TargetPoolsAddInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1693] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1762] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195132,7 +202337,7 @@ func (x *TargetPoolsAddInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetPoolsAddInstanceRequest.ProtoReflect.Descriptor instead. func (*TargetPoolsAddInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1693} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1762} } func (x *TargetPoolsAddInstanceRequest) GetInstances() []*InstanceReference { @@ -195157,7 +202362,7 @@ type TargetPoolsRemoveHealthCheckRequest struct { func (x *TargetPoolsRemoveHealthCheckRequest) Reset() { *x = TargetPoolsRemoveHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1694] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1763] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195169,7 +202374,7 @@ func (x *TargetPoolsRemoveHealthCheckRequest) String() string { func (*TargetPoolsRemoveHealthCheckRequest) ProtoMessage() {} func (x *TargetPoolsRemoveHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1694] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1763] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195182,7 +202387,7 @@ func (x *TargetPoolsRemoveHealthCheckRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use TargetPoolsRemoveHealthCheckRequest.ProtoReflect.Descriptor instead. func (*TargetPoolsRemoveHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1694} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1763} } func (x *TargetPoolsRemoveHealthCheckRequest) GetHealthChecks() []*HealthCheckReference { @@ -195202,7 +202407,7 @@ type TargetPoolsRemoveInstanceRequest struct { func (x *TargetPoolsRemoveInstanceRequest) Reset() { *x = TargetPoolsRemoveInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1695] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1764] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195214,7 +202419,7 @@ func (x *TargetPoolsRemoveInstanceRequest) String() string { func (*TargetPoolsRemoveInstanceRequest) ProtoMessage() {} func (x *TargetPoolsRemoveInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1695] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1764] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195227,7 +202432,7 @@ func (x *TargetPoolsRemoveInstanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetPoolsRemoveInstanceRequest.ProtoReflect.Descriptor instead. func (*TargetPoolsRemoveInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1695} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1764} } func (x *TargetPoolsRemoveInstanceRequest) GetInstances() []*InstanceReference { @@ -195250,7 +202455,7 @@ type TargetPoolsScopedList struct { func (x *TargetPoolsScopedList) Reset() { *x = TargetPoolsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1696] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1765] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195262,7 +202467,7 @@ func (x *TargetPoolsScopedList) String() string { func (*TargetPoolsScopedList) ProtoMessage() {} func (x *TargetPoolsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1696] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1765] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195275,7 +202480,7 @@ func (x *TargetPoolsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetPoolsScopedList.ProtoReflect.Descriptor instead. func (*TargetPoolsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1696} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1765} } func (x *TargetPoolsScopedList) GetTargetPools() []*TargetPool { @@ -195301,7 +202506,7 @@ type TargetReference struct { func (x *TargetReference) Reset() { *x = TargetReference{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1697] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1766] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195313,7 +202518,7 @@ func (x *TargetReference) String() string { func (*TargetReference) ProtoMessage() {} func (x *TargetReference) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1697] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1766] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195326,7 +202531,7 @@ func (x *TargetReference) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetReference.ProtoReflect.Descriptor instead. func (*TargetReference) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1697} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1766} } func (x *TargetReference) GetTarget() string { @@ -195346,7 +202551,7 @@ type TargetSslProxiesSetBackendServiceRequest struct { func (x *TargetSslProxiesSetBackendServiceRequest) Reset() { *x = TargetSslProxiesSetBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1698] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1767] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195358,7 +202563,7 @@ func (x *TargetSslProxiesSetBackendServiceRequest) String() string { func (*TargetSslProxiesSetBackendServiceRequest) ProtoMessage() {} func (x *TargetSslProxiesSetBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1698] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1767] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195371,7 +202576,7 @@ func (x *TargetSslProxiesSetBackendServiceRequest) ProtoReflect() protoreflect.M // Deprecated: Use TargetSslProxiesSetBackendServiceRequest.ProtoReflect.Descriptor instead. func (*TargetSslProxiesSetBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1698} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1767} } func (x *TargetSslProxiesSetBackendServiceRequest) GetService() string { @@ -195393,7 +202598,7 @@ type TargetSslProxiesSetCertificateMapRequest struct { func (x *TargetSslProxiesSetCertificateMapRequest) Reset() { *x = TargetSslProxiesSetCertificateMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1699] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1768] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195405,7 +202610,7 @@ func (x *TargetSslProxiesSetCertificateMapRequest) String() string { func (*TargetSslProxiesSetCertificateMapRequest) ProtoMessage() {} func (x *TargetSslProxiesSetCertificateMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1699] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1768] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195418,7 +202623,7 @@ func (x *TargetSslProxiesSetCertificateMapRequest) ProtoReflect() protoreflect.M // Deprecated: Use TargetSslProxiesSetCertificateMapRequest.ProtoReflect.Descriptor instead. func (*TargetSslProxiesSetCertificateMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1699} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1768} } func (x *TargetSslProxiesSetCertificateMapRequest) GetCertificateMap() string { @@ -195440,7 +202645,7 @@ type TargetSslProxiesSetProxyHeaderRequest struct { func (x *TargetSslProxiesSetProxyHeaderRequest) Reset() { *x = TargetSslProxiesSetProxyHeaderRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1700] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1769] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195452,7 +202657,7 @@ func (x *TargetSslProxiesSetProxyHeaderRequest) String() string { func (*TargetSslProxiesSetProxyHeaderRequest) ProtoMessage() {} func (x *TargetSslProxiesSetProxyHeaderRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1700] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1769] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195465,7 +202670,7 @@ func (x *TargetSslProxiesSetProxyHeaderRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use TargetSslProxiesSetProxyHeaderRequest.ProtoReflect.Descriptor instead. func (*TargetSslProxiesSetProxyHeaderRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1700} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1769} } func (x *TargetSslProxiesSetProxyHeaderRequest) GetProxyHeader() string { @@ -195487,7 +202692,7 @@ type TargetSslProxiesSetSslCertificatesRequest struct { func (x *TargetSslProxiesSetSslCertificatesRequest) Reset() { *x = TargetSslProxiesSetSslCertificatesRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1701] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1770] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195499,7 +202704,7 @@ func (x *TargetSslProxiesSetSslCertificatesRequest) String() string { func (*TargetSslProxiesSetSslCertificatesRequest) ProtoMessage() {} func (x *TargetSslProxiesSetSslCertificatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1701] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1770] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195512,7 +202717,7 @@ func (x *TargetSslProxiesSetSslCertificatesRequest) ProtoReflect() protoreflect. // Deprecated: Use TargetSslProxiesSetSslCertificatesRequest.ProtoReflect.Descriptor instead. func (*TargetSslProxiesSetSslCertificatesRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1701} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1770} } func (x *TargetSslProxiesSetSslCertificatesRequest) GetSslCertificates() []string { @@ -195581,7 +202786,7 @@ type TargetSslProxy struct { func (x *TargetSslProxy) Reset() { *x = TargetSslProxy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1702] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1771] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195593,7 +202798,7 @@ func (x *TargetSslProxy) String() string { func (*TargetSslProxy) ProtoMessage() {} func (x *TargetSslProxy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1702] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1771] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195606,7 +202811,7 @@ func (x *TargetSslProxy) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetSslProxy.ProtoReflect.Descriptor instead. func (*TargetSslProxy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1702} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1771} } func (x *TargetSslProxy) GetCertificateMap() string { @@ -195711,7 +202916,7 @@ type TargetSslProxyList struct { func (x *TargetSslProxyList) Reset() { *x = TargetSslProxyList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1703] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1772] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195723,7 +202928,7 @@ func (x *TargetSslProxyList) String() string { func (*TargetSslProxyList) ProtoMessage() {} func (x *TargetSslProxyList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1703] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1772] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195736,7 +202941,7 @@ func (x *TargetSslProxyList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetSslProxyList.ProtoReflect.Descriptor instead. func (*TargetSslProxyList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1703} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1772} } func (x *TargetSslProxyList) GetId() string { @@ -195794,7 +202999,7 @@ type TargetTcpProxiesScopedList struct { func (x *TargetTcpProxiesScopedList) Reset() { *x = TargetTcpProxiesScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1704] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1773] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195806,7 +203011,7 @@ func (x *TargetTcpProxiesScopedList) String() string { func (*TargetTcpProxiesScopedList) ProtoMessage() {} func (x *TargetTcpProxiesScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1704] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1773] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195819,7 +203024,7 @@ func (x *TargetTcpProxiesScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetTcpProxiesScopedList.ProtoReflect.Descriptor instead. func (*TargetTcpProxiesScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1704} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1773} } func (x *TargetTcpProxiesScopedList) GetTargetTcpProxies() []*TargetTcpProxy { @@ -195846,7 +203051,7 @@ type TargetTcpProxiesSetBackendServiceRequest struct { func (x *TargetTcpProxiesSetBackendServiceRequest) Reset() { *x = TargetTcpProxiesSetBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1705] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1774] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195858,7 +203063,7 @@ func (x *TargetTcpProxiesSetBackendServiceRequest) String() string { func (*TargetTcpProxiesSetBackendServiceRequest) ProtoMessage() {} func (x *TargetTcpProxiesSetBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1705] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1774] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195871,7 +203076,7 @@ func (x *TargetTcpProxiesSetBackendServiceRequest) ProtoReflect() protoreflect.M // Deprecated: Use TargetTcpProxiesSetBackendServiceRequest.ProtoReflect.Descriptor instead. func (*TargetTcpProxiesSetBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1705} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1774} } func (x *TargetTcpProxiesSetBackendServiceRequest) GetService() string { @@ -195893,7 +203098,7 @@ type TargetTcpProxiesSetProxyHeaderRequest struct { func (x *TargetTcpProxiesSetProxyHeaderRequest) Reset() { *x = TargetTcpProxiesSetProxyHeaderRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1706] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1775] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195905,7 +203110,7 @@ func (x *TargetTcpProxiesSetProxyHeaderRequest) String() string { func (*TargetTcpProxiesSetProxyHeaderRequest) ProtoMessage() {} func (x *TargetTcpProxiesSetProxyHeaderRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1706] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1775] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195918,7 +203123,7 @@ func (x *TargetTcpProxiesSetProxyHeaderRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use TargetTcpProxiesSetProxyHeaderRequest.ProtoReflect.Descriptor instead. func (*TargetTcpProxiesSetProxyHeaderRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1706} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1775} } func (x *TargetTcpProxiesSetProxyHeaderRequest) GetProxyHeader() string { @@ -195985,7 +203190,7 @@ type TargetTcpProxy struct { func (x *TargetTcpProxy) Reset() { *x = TargetTcpProxy{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1707] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1776] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195997,7 +203202,7 @@ func (x *TargetTcpProxy) String() string { func (*TargetTcpProxy) ProtoMessage() {} func (x *TargetTcpProxy) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1707] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1776] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196010,7 +203215,7 @@ func (x *TargetTcpProxy) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetTcpProxy.ProtoReflect.Descriptor instead. func (*TargetTcpProxy) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1707} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1776} } func (x *TargetTcpProxy) GetCreationTimestamp() string { @@ -196110,7 +203315,7 @@ type TargetTcpProxyAggregatedList struct { func (x *TargetTcpProxyAggregatedList) Reset() { *x = TargetTcpProxyAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1708] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1777] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -196122,7 +203327,7 @@ func (x *TargetTcpProxyAggregatedList) String() string { func (*TargetTcpProxyAggregatedList) ProtoMessage() {} func (x *TargetTcpProxyAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1708] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1777] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196135,7 +203340,7 @@ func (x *TargetTcpProxyAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetTcpProxyAggregatedList.ProtoReflect.Descriptor instead. func (*TargetTcpProxyAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1708} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1777} } func (x *TargetTcpProxyAggregatedList) GetId() string { @@ -196212,7 +203417,7 @@ type TargetTcpProxyList struct { func (x *TargetTcpProxyList) Reset() { *x = TargetTcpProxyList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1709] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1778] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -196224,7 +203429,7 @@ func (x *TargetTcpProxyList) String() string { func (*TargetTcpProxyList) ProtoMessage() {} func (x *TargetTcpProxyList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1709] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1778] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196237,7 +203442,7 @@ func (x *TargetTcpProxyList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetTcpProxyList.ProtoReflect.Descriptor instead. func (*TargetTcpProxyList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1709} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1778} } func (x *TargetTcpProxyList) GetId() string { @@ -196351,7 +203556,7 @@ type TargetVpnGateway struct { func (x *TargetVpnGateway) Reset() { *x = TargetVpnGateway{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1710] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1779] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -196363,7 +203568,7 @@ func (x *TargetVpnGateway) String() string { func (*TargetVpnGateway) ProtoMessage() {} func (x *TargetVpnGateway) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1710] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1779] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196376,7 +203581,7 @@ func (x *TargetVpnGateway) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetVpnGateway.ProtoReflect.Descriptor instead. func (*TargetVpnGateway) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1710} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1779} } func (x *TargetVpnGateway) GetCreationTimestamp() string { @@ -196503,7 +203708,7 @@ type TargetVpnGatewayAggregatedList struct { func (x *TargetVpnGatewayAggregatedList) Reset() { *x = TargetVpnGatewayAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1711] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1780] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -196515,7 +203720,7 @@ func (x *TargetVpnGatewayAggregatedList) String() string { func (*TargetVpnGatewayAggregatedList) ProtoMessage() {} func (x *TargetVpnGatewayAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1711] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1780] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196528,7 +203733,7 @@ func (x *TargetVpnGatewayAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetVpnGatewayAggregatedList.ProtoReflect.Descriptor instead. func (*TargetVpnGatewayAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1711} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1780} } func (x *TargetVpnGatewayAggregatedList) GetId() string { @@ -196605,7 +203810,7 @@ type TargetVpnGatewayList struct { func (x *TargetVpnGatewayList) Reset() { *x = TargetVpnGatewayList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1712] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1781] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -196617,7 +203822,7 @@ func (x *TargetVpnGatewayList) String() string { func (*TargetVpnGatewayList) ProtoMessage() {} func (x *TargetVpnGatewayList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1712] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1781] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196630,7 +203835,7 @@ func (x *TargetVpnGatewayList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetVpnGatewayList.ProtoReflect.Descriptor instead. func (*TargetVpnGatewayList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1712} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1781} } func (x *TargetVpnGatewayList) GetId() string { @@ -196698,7 +203903,7 @@ type TargetVpnGatewayParams struct { func (x *TargetVpnGatewayParams) Reset() { *x = TargetVpnGatewayParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1713] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1782] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -196710,7 +203915,7 @@ func (x *TargetVpnGatewayParams) String() string { func (*TargetVpnGatewayParams) ProtoMessage() {} func (x *TargetVpnGatewayParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1713] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1782] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196723,7 +203928,7 @@ func (x *TargetVpnGatewayParams) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetVpnGatewayParams.ProtoReflect.Descriptor instead. func (*TargetVpnGatewayParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1713} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1782} } func (x *TargetVpnGatewayParams) GetResourceManagerTags() map[string]string { @@ -196746,7 +203951,7 @@ type TargetVpnGatewaysScopedList struct { func (x *TargetVpnGatewaysScopedList) Reset() { *x = TargetVpnGatewaysScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1714] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1783] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -196758,7 +203963,7 @@ func (x *TargetVpnGatewaysScopedList) String() string { func (*TargetVpnGatewaysScopedList) ProtoMessage() {} func (x *TargetVpnGatewaysScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1714] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1783] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196771,7 +203976,7 @@ func (x *TargetVpnGatewaysScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetVpnGatewaysScopedList.ProtoReflect.Descriptor instead. func (*TargetVpnGatewaysScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1714} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1783} } func (x *TargetVpnGatewaysScopedList) GetTargetVpnGateways() []*TargetVpnGateway { @@ -196820,7 +204025,7 @@ type TestFailure struct { func (x *TestFailure) Reset() { *x = TestFailure{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1715] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1784] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -196832,7 +204037,7 @@ func (x *TestFailure) String() string { func (*TestFailure) ProtoMessage() {} func (x *TestFailure) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1715] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1784] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196845,7 +204050,7 @@ func (x *TestFailure) ProtoReflect() protoreflect.Message { // Deprecated: Use TestFailure.ProtoReflect.Descriptor instead. func (*TestFailure) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1715} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1784} } func (x *TestFailure) GetActualOutputUrl() string { @@ -196928,7 +204133,7 @@ type TestIamPermissionsAddressRequest struct { func (x *TestIamPermissionsAddressRequest) Reset() { *x = TestIamPermissionsAddressRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1716] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1785] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -196940,7 +204145,7 @@ func (x *TestIamPermissionsAddressRequest) String() string { func (*TestIamPermissionsAddressRequest) ProtoMessage() {} func (x *TestIamPermissionsAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1716] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1785] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196953,7 +204158,7 @@ func (x *TestIamPermissionsAddressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TestIamPermissionsAddressRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsAddressRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1716} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1785} } func (x *TestIamPermissionsAddressRequest) GetProject() string { @@ -197001,7 +204206,7 @@ type TestIamPermissionsAutoscalerRequest struct { func (x *TestIamPermissionsAutoscalerRequest) Reset() { *x = TestIamPermissionsAutoscalerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1717] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1786] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197013,7 +204218,7 @@ func (x *TestIamPermissionsAutoscalerRequest) String() string { func (*TestIamPermissionsAutoscalerRequest) ProtoMessage() {} func (x *TestIamPermissionsAutoscalerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1717] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1786] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197026,7 +204231,7 @@ func (x *TestIamPermissionsAutoscalerRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use TestIamPermissionsAutoscalerRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsAutoscalerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1717} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1786} } func (x *TestIamPermissionsAutoscalerRequest) GetProject() string { @@ -197072,7 +204277,7 @@ type TestIamPermissionsBackendBucketRequest struct { func (x *TestIamPermissionsBackendBucketRequest) Reset() { *x = TestIamPermissionsBackendBucketRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1718] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1787] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197084,7 +204289,7 @@ func (x *TestIamPermissionsBackendBucketRequest) String() string { func (*TestIamPermissionsBackendBucketRequest) ProtoMessage() {} func (x *TestIamPermissionsBackendBucketRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1718] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1787] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197097,7 +204302,7 @@ func (x *TestIamPermissionsBackendBucketRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use TestIamPermissionsBackendBucketRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsBackendBucketRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1718} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1787} } func (x *TestIamPermissionsBackendBucketRequest) GetProject() string { @@ -197136,7 +204341,7 @@ type TestIamPermissionsBackendServiceRequest struct { func (x *TestIamPermissionsBackendServiceRequest) Reset() { *x = TestIamPermissionsBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1719] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1788] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197148,7 +204353,7 @@ func (x *TestIamPermissionsBackendServiceRequest) String() string { func (*TestIamPermissionsBackendServiceRequest) ProtoMessage() {} func (x *TestIamPermissionsBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1719] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1788] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197161,7 +204366,7 @@ func (x *TestIamPermissionsBackendServiceRequest) ProtoReflect() protoreflect.Me // Deprecated: Use TestIamPermissionsBackendServiceRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1719} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1788} } func (x *TestIamPermissionsBackendServiceRequest) GetProject() string { @@ -197202,7 +204407,7 @@ type TestIamPermissionsDiskRequest struct { func (x *TestIamPermissionsDiskRequest) Reset() { *x = TestIamPermissionsDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1720] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1789] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197214,7 +204419,7 @@ func (x *TestIamPermissionsDiskRequest) String() string { func (*TestIamPermissionsDiskRequest) ProtoMessage() {} func (x *TestIamPermissionsDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1720] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1789] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197227,7 +204432,7 @@ func (x *TestIamPermissionsDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TestIamPermissionsDiskRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1720} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1789} } func (x *TestIamPermissionsDiskRequest) GetProject() string { @@ -197273,7 +204478,7 @@ type TestIamPermissionsExternalVpnGatewayRequest struct { func (x *TestIamPermissionsExternalVpnGatewayRequest) Reset() { *x = TestIamPermissionsExternalVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1721] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1790] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197285,7 +204490,7 @@ func (x *TestIamPermissionsExternalVpnGatewayRequest) String() string { func (*TestIamPermissionsExternalVpnGatewayRequest) ProtoMessage() {} func (x *TestIamPermissionsExternalVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1721] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1790] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197298,7 +204503,7 @@ func (x *TestIamPermissionsExternalVpnGatewayRequest) ProtoReflect() protoreflec // Deprecated: Use TestIamPermissionsExternalVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsExternalVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1721} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1790} } func (x *TestIamPermissionsExternalVpnGatewayRequest) GetProject() string { @@ -197335,7 +204540,7 @@ type TestIamPermissionsFirewallPolicyRequest struct { func (x *TestIamPermissionsFirewallPolicyRequest) Reset() { *x = TestIamPermissionsFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1722] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1791] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197347,7 +204552,7 @@ func (x *TestIamPermissionsFirewallPolicyRequest) String() string { func (*TestIamPermissionsFirewallPolicyRequest) ProtoMessage() {} func (x *TestIamPermissionsFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1722] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1791] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197360,7 +204565,7 @@ func (x *TestIamPermissionsFirewallPolicyRequest) ProtoReflect() protoreflect.Me // Deprecated: Use TestIamPermissionsFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1722} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1791} } func (x *TestIamPermissionsFirewallPolicyRequest) GetResource() string { @@ -197392,7 +204597,7 @@ type TestIamPermissionsFirewallRequest struct { func (x *TestIamPermissionsFirewallRequest) Reset() { *x = TestIamPermissionsFirewallRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1723] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1792] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197404,7 +204609,7 @@ func (x *TestIamPermissionsFirewallRequest) String() string { func (*TestIamPermissionsFirewallRequest) ProtoMessage() {} func (x *TestIamPermissionsFirewallRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1723] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1792] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197417,7 +204622,7 @@ func (x *TestIamPermissionsFirewallRequest) ProtoReflect() protoreflect.Message // Deprecated: Use TestIamPermissionsFirewallRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsFirewallRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1723} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1792} } func (x *TestIamPermissionsFirewallRequest) GetProject() string { @@ -197456,7 +204661,7 @@ type TestIamPermissionsGlobalAddressRequest struct { func (x *TestIamPermissionsGlobalAddressRequest) Reset() { *x = TestIamPermissionsGlobalAddressRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1724] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1793] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197468,7 +204673,7 @@ func (x *TestIamPermissionsGlobalAddressRequest) String() string { func (*TestIamPermissionsGlobalAddressRequest) ProtoMessage() {} func (x *TestIamPermissionsGlobalAddressRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1724] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1793] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197481,7 +204686,7 @@ func (x *TestIamPermissionsGlobalAddressRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use TestIamPermissionsGlobalAddressRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsGlobalAddressRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1724} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1793} } func (x *TestIamPermissionsGlobalAddressRequest) GetProject() string { @@ -197520,7 +204725,7 @@ type TestIamPermissionsHealthCheckRequest struct { func (x *TestIamPermissionsHealthCheckRequest) Reset() { *x = TestIamPermissionsHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1725] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1794] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197532,7 +204737,7 @@ func (x *TestIamPermissionsHealthCheckRequest) String() string { func (*TestIamPermissionsHealthCheckRequest) ProtoMessage() {} func (x *TestIamPermissionsHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1725] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1794] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197545,7 +204750,7 @@ func (x *TestIamPermissionsHealthCheckRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use TestIamPermissionsHealthCheckRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1725} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1794} } func (x *TestIamPermissionsHealthCheckRequest) GetProject() string { @@ -197584,7 +204789,7 @@ type TestIamPermissionsImageRequest struct { func (x *TestIamPermissionsImageRequest) Reset() { *x = TestIamPermissionsImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1726] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1795] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197596,7 +204801,7 @@ func (x *TestIamPermissionsImageRequest) String() string { func (*TestIamPermissionsImageRequest) ProtoMessage() {} func (x *TestIamPermissionsImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1726] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1795] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197609,7 +204814,7 @@ func (x *TestIamPermissionsImageRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TestIamPermissionsImageRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1726} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1795} } func (x *TestIamPermissionsImageRequest) GetProject() string { @@ -197650,7 +204855,7 @@ type TestIamPermissionsInstanceGroupRequest struct { func (x *TestIamPermissionsInstanceGroupRequest) Reset() { *x = TestIamPermissionsInstanceGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1727] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1796] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197662,7 +204867,7 @@ func (x *TestIamPermissionsInstanceGroupRequest) String() string { func (*TestIamPermissionsInstanceGroupRequest) ProtoMessage() {} func (x *TestIamPermissionsInstanceGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1727] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1796] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197675,7 +204880,7 @@ func (x *TestIamPermissionsInstanceGroupRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use TestIamPermissionsInstanceGroupRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsInstanceGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1727} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1796} } func (x *TestIamPermissionsInstanceGroupRequest) GetProject() string { @@ -197723,7 +204928,7 @@ type TestIamPermissionsInstanceRequest struct { func (x *TestIamPermissionsInstanceRequest) Reset() { *x = TestIamPermissionsInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1728] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1797] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197735,7 +204940,7 @@ func (x *TestIamPermissionsInstanceRequest) String() string { func (*TestIamPermissionsInstanceRequest) ProtoMessage() {} func (x *TestIamPermissionsInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1728] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1797] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197748,7 +204953,7 @@ func (x *TestIamPermissionsInstanceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use TestIamPermissionsInstanceRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1728} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1797} } func (x *TestIamPermissionsInstanceRequest) GetProject() string { @@ -197794,7 +204999,7 @@ type TestIamPermissionsInstanceTemplateRequest struct { func (x *TestIamPermissionsInstanceTemplateRequest) Reset() { *x = TestIamPermissionsInstanceTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1729] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1798] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197806,7 +205011,7 @@ func (x *TestIamPermissionsInstanceTemplateRequest) String() string { func (*TestIamPermissionsInstanceTemplateRequest) ProtoMessage() {} func (x *TestIamPermissionsInstanceTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1729] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1798] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197819,7 +205024,7 @@ func (x *TestIamPermissionsInstanceTemplateRequest) ProtoReflect() protoreflect. // Deprecated: Use TestIamPermissionsInstanceTemplateRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsInstanceTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1729} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1798} } func (x *TestIamPermissionsInstanceTemplateRequest) GetProject() string { @@ -197843,6 +205048,79 @@ func (x *TestIamPermissionsInstanceTemplateRequest) GetTestPermissionsRequestRes return nil } +// A request message for InstantSnapshotGroups.TestIamPermissions. See the method description for details. +type TestIamPermissionsInstantSnapshotGroupRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + // The body resource for this request + TestPermissionsRequestResource *TestPermissionsRequest `protobuf:"bytes,439214758,opt,name=test_permissions_request_resource,json=testPermissionsRequestResource,proto3" json:"test_permissions_request_resource,omitempty"` + // The name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *TestIamPermissionsInstantSnapshotGroupRequest) Reset() { + *x = TestIamPermissionsInstantSnapshotGroupRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1799] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *TestIamPermissionsInstantSnapshotGroupRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*TestIamPermissionsInstantSnapshotGroupRequest) ProtoMessage() {} + +func (x *TestIamPermissionsInstantSnapshotGroupRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1799] + 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 TestIamPermissionsInstantSnapshotGroupRequest.ProtoReflect.Descriptor instead. +func (*TestIamPermissionsInstantSnapshotGroupRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1799} +} + +func (x *TestIamPermissionsInstantSnapshotGroupRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *TestIamPermissionsInstantSnapshotGroupRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + +func (x *TestIamPermissionsInstantSnapshotGroupRequest) GetTestPermissionsRequestResource() *TestPermissionsRequest { + if x != nil { + return x.TestPermissionsRequestResource + } + return nil +} + +func (x *TestIamPermissionsInstantSnapshotGroupRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + // A request message for InstantSnapshots.TestIamPermissions. See the method description for details. type TestIamPermissionsInstantSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -197860,7 +205138,7 @@ type TestIamPermissionsInstantSnapshotRequest struct { func (x *TestIamPermissionsInstantSnapshotRequest) Reset() { *x = TestIamPermissionsInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1730] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1800] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197872,7 +205150,7 @@ func (x *TestIamPermissionsInstantSnapshotRequest) String() string { func (*TestIamPermissionsInstantSnapshotRequest) ProtoMessage() {} func (x *TestIamPermissionsInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1730] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1800] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197885,7 +205163,7 @@ func (x *TestIamPermissionsInstantSnapshotRequest) ProtoReflect() protoreflect.M // Deprecated: Use TestIamPermissionsInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1730} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1800} } func (x *TestIamPermissionsInstantSnapshotRequest) GetProject() string { @@ -197931,7 +205209,7 @@ type TestIamPermissionsInterconnectAttachmentGroupRequest struct { func (x *TestIamPermissionsInterconnectAttachmentGroupRequest) Reset() { *x = TestIamPermissionsInterconnectAttachmentGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1731] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1801] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197943,7 +205221,7 @@ func (x *TestIamPermissionsInterconnectAttachmentGroupRequest) String() string { func (*TestIamPermissionsInterconnectAttachmentGroupRequest) ProtoMessage() {} func (x *TestIamPermissionsInterconnectAttachmentGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1731] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1801] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197956,7 +205234,7 @@ func (x *TestIamPermissionsInterconnectAttachmentGroupRequest) ProtoReflect() pr // Deprecated: Use TestIamPermissionsInterconnectAttachmentGroupRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsInterconnectAttachmentGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1731} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1801} } func (x *TestIamPermissionsInterconnectAttachmentGroupRequest) GetProject() string { @@ -197995,7 +205273,7 @@ type TestIamPermissionsInterconnectGroupRequest struct { func (x *TestIamPermissionsInterconnectGroupRequest) Reset() { *x = TestIamPermissionsInterconnectGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1732] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1802] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198007,7 +205285,7 @@ func (x *TestIamPermissionsInterconnectGroupRequest) String() string { func (*TestIamPermissionsInterconnectGroupRequest) ProtoMessage() {} func (x *TestIamPermissionsInterconnectGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1732] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1802] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198020,7 +205298,7 @@ func (x *TestIamPermissionsInterconnectGroupRequest) ProtoReflect() protoreflect // Deprecated: Use TestIamPermissionsInterconnectGroupRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsInterconnectGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1732} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1802} } func (x *TestIamPermissionsInterconnectGroupRequest) GetProject() string { @@ -198059,7 +205337,7 @@ type TestIamPermissionsLicenseCodeRequest struct { func (x *TestIamPermissionsLicenseCodeRequest) Reset() { *x = TestIamPermissionsLicenseCodeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1733] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1803] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198071,7 +205349,7 @@ func (x *TestIamPermissionsLicenseCodeRequest) String() string { func (*TestIamPermissionsLicenseCodeRequest) ProtoMessage() {} func (x *TestIamPermissionsLicenseCodeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1733] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1803] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198084,7 +205362,7 @@ func (x *TestIamPermissionsLicenseCodeRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use TestIamPermissionsLicenseCodeRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsLicenseCodeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1733} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1803} } func (x *TestIamPermissionsLicenseCodeRequest) GetProject() string { @@ -198123,7 +205401,7 @@ type TestIamPermissionsLicenseRequest struct { func (x *TestIamPermissionsLicenseRequest) Reset() { *x = TestIamPermissionsLicenseRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1734] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1804] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198135,7 +205413,7 @@ func (x *TestIamPermissionsLicenseRequest) String() string { func (*TestIamPermissionsLicenseRequest) ProtoMessage() {} func (x *TestIamPermissionsLicenseRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1734] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1804] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198148,7 +205426,7 @@ func (x *TestIamPermissionsLicenseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TestIamPermissionsLicenseRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsLicenseRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1734} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1804} } func (x *TestIamPermissionsLicenseRequest) GetProject() string { @@ -198187,7 +205465,7 @@ type TestIamPermissionsMachineImageRequest struct { func (x *TestIamPermissionsMachineImageRequest) Reset() { *x = TestIamPermissionsMachineImageRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1735] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1805] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198199,7 +205477,7 @@ func (x *TestIamPermissionsMachineImageRequest) String() string { func (*TestIamPermissionsMachineImageRequest) ProtoMessage() {} func (x *TestIamPermissionsMachineImageRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1735] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1805] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198212,7 +205490,7 @@ func (x *TestIamPermissionsMachineImageRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use TestIamPermissionsMachineImageRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsMachineImageRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1735} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1805} } func (x *TestIamPermissionsMachineImageRequest) GetProject() string { @@ -198253,7 +205531,7 @@ type TestIamPermissionsNetworkAttachmentRequest struct { func (x *TestIamPermissionsNetworkAttachmentRequest) Reset() { *x = TestIamPermissionsNetworkAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1736] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1806] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198265,7 +205543,7 @@ func (x *TestIamPermissionsNetworkAttachmentRequest) String() string { func (*TestIamPermissionsNetworkAttachmentRequest) ProtoMessage() {} func (x *TestIamPermissionsNetworkAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1736] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1806] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198278,7 +205556,7 @@ func (x *TestIamPermissionsNetworkAttachmentRequest) ProtoReflect() protoreflect // Deprecated: Use TestIamPermissionsNetworkAttachmentRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsNetworkAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1736} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1806} } func (x *TestIamPermissionsNetworkAttachmentRequest) GetProject() string { @@ -198326,7 +205604,7 @@ type TestIamPermissionsNetworkEndpointGroupRequest struct { func (x *TestIamPermissionsNetworkEndpointGroupRequest) Reset() { *x = TestIamPermissionsNetworkEndpointGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1737] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1807] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198338,7 +205616,7 @@ func (x *TestIamPermissionsNetworkEndpointGroupRequest) String() string { func (*TestIamPermissionsNetworkEndpointGroupRequest) ProtoMessage() {} func (x *TestIamPermissionsNetworkEndpointGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1737] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1807] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198351,7 +205629,7 @@ func (x *TestIamPermissionsNetworkEndpointGroupRequest) ProtoReflect() protorefl // Deprecated: Use TestIamPermissionsNetworkEndpointGroupRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsNetworkEndpointGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1737} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1807} } func (x *TestIamPermissionsNetworkEndpointGroupRequest) GetProject() string { @@ -198397,7 +205675,7 @@ type TestIamPermissionsNetworkFirewallPolicyRequest struct { func (x *TestIamPermissionsNetworkFirewallPolicyRequest) Reset() { *x = TestIamPermissionsNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1738] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1808] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198409,7 +205687,7 @@ func (x *TestIamPermissionsNetworkFirewallPolicyRequest) String() string { func (*TestIamPermissionsNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *TestIamPermissionsNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1738] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1808] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198422,7 +205700,7 @@ func (x *TestIamPermissionsNetworkFirewallPolicyRequest) ProtoReflect() protoref // Deprecated: Use TestIamPermissionsNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1738} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1808} } func (x *TestIamPermissionsNetworkFirewallPolicyRequest) GetProject() string { @@ -198463,7 +205741,7 @@ type TestIamPermissionsNodeGroupRequest struct { func (x *TestIamPermissionsNodeGroupRequest) Reset() { *x = TestIamPermissionsNodeGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1739] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1809] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198475,7 +205753,7 @@ func (x *TestIamPermissionsNodeGroupRequest) String() string { func (*TestIamPermissionsNodeGroupRequest) ProtoMessage() {} func (x *TestIamPermissionsNodeGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1739] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1809] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198488,7 +205766,7 @@ func (x *TestIamPermissionsNodeGroupRequest) ProtoReflect() protoreflect.Message // Deprecated: Use TestIamPermissionsNodeGroupRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsNodeGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1739} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1809} } func (x *TestIamPermissionsNodeGroupRequest) GetProject() string { @@ -198536,7 +205814,7 @@ type TestIamPermissionsNodeTemplateRequest struct { func (x *TestIamPermissionsNodeTemplateRequest) Reset() { *x = TestIamPermissionsNodeTemplateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1740] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1810] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198548,7 +205826,7 @@ func (x *TestIamPermissionsNodeTemplateRequest) String() string { func (*TestIamPermissionsNodeTemplateRequest) ProtoMessage() {} func (x *TestIamPermissionsNodeTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1740] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1810] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198561,7 +205839,7 @@ func (x *TestIamPermissionsNodeTemplateRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use TestIamPermissionsNodeTemplateRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsNodeTemplateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1740} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1810} } func (x *TestIamPermissionsNodeTemplateRequest) GetProject() string { @@ -198609,7 +205887,7 @@ type TestIamPermissionsPacketMirroringRequest struct { func (x *TestIamPermissionsPacketMirroringRequest) Reset() { *x = TestIamPermissionsPacketMirroringRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1741] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1811] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198621,7 +205899,7 @@ func (x *TestIamPermissionsPacketMirroringRequest) String() string { func (*TestIamPermissionsPacketMirroringRequest) ProtoMessage() {} func (x *TestIamPermissionsPacketMirroringRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1741] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1811] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198634,7 +205912,7 @@ func (x *TestIamPermissionsPacketMirroringRequest) ProtoReflect() protoreflect.M // Deprecated: Use TestIamPermissionsPacketMirroringRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsPacketMirroringRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1741} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1811} } func (x *TestIamPermissionsPacketMirroringRequest) GetProject() string { @@ -198682,7 +205960,7 @@ type TestIamPermissionsRegionAutoscalerRequest struct { func (x *TestIamPermissionsRegionAutoscalerRequest) Reset() { *x = TestIamPermissionsRegionAutoscalerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1742] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1812] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198694,7 +205972,7 @@ func (x *TestIamPermissionsRegionAutoscalerRequest) String() string { func (*TestIamPermissionsRegionAutoscalerRequest) ProtoMessage() {} func (x *TestIamPermissionsRegionAutoscalerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1742] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1812] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198707,7 +205985,7 @@ func (x *TestIamPermissionsRegionAutoscalerRequest) ProtoReflect() protoreflect. // Deprecated: Use TestIamPermissionsRegionAutoscalerRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRegionAutoscalerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1742} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1812} } func (x *TestIamPermissionsRegionAutoscalerRequest) GetProject() string { @@ -198738,6 +206016,79 @@ func (x *TestIamPermissionsRegionAutoscalerRequest) GetTestPermissionsRequestRes return nil } +// A request message for RegionBackendBuckets.TestIamPermissions. See the method description for details. +type TestIamPermissionsRegionBackendBucketRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + // The body resource for this request + TestPermissionsRequestResource *TestPermissionsRequest `protobuf:"bytes,439214758,opt,name=test_permissions_request_resource,json=testPermissionsRequestResource,proto3" json:"test_permissions_request_resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *TestIamPermissionsRegionBackendBucketRequest) Reset() { + *x = TestIamPermissionsRegionBackendBucketRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1813] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *TestIamPermissionsRegionBackendBucketRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*TestIamPermissionsRegionBackendBucketRequest) ProtoMessage() {} + +func (x *TestIamPermissionsRegionBackendBucketRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1813] + 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 TestIamPermissionsRegionBackendBucketRequest.ProtoReflect.Descriptor instead. +func (*TestIamPermissionsRegionBackendBucketRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1813} +} + +func (x *TestIamPermissionsRegionBackendBucketRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *TestIamPermissionsRegionBackendBucketRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *TestIamPermissionsRegionBackendBucketRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + +func (x *TestIamPermissionsRegionBackendBucketRequest) GetTestPermissionsRequestResource() *TestPermissionsRequest { + if x != nil { + return x.TestPermissionsRequestResource + } + return nil +} + // A request message for RegionBackendServices.TestIamPermissions. See the method description for details. type TestIamPermissionsRegionBackendServiceRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -198755,7 +206106,7 @@ type TestIamPermissionsRegionBackendServiceRequest struct { func (x *TestIamPermissionsRegionBackendServiceRequest) Reset() { *x = TestIamPermissionsRegionBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1743] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1814] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198767,7 +206118,7 @@ func (x *TestIamPermissionsRegionBackendServiceRequest) String() string { func (*TestIamPermissionsRegionBackendServiceRequest) ProtoMessage() {} func (x *TestIamPermissionsRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1743] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1814] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198780,7 +206131,7 @@ func (x *TestIamPermissionsRegionBackendServiceRequest) ProtoReflect() protorefl // Deprecated: Use TestIamPermissionsRegionBackendServiceRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRegionBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1743} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1814} } func (x *TestIamPermissionsRegionBackendServiceRequest) GetProject() string { @@ -198828,7 +206179,7 @@ type TestIamPermissionsRegionCompositeHealthCheckRequest struct { func (x *TestIamPermissionsRegionCompositeHealthCheckRequest) Reset() { *x = TestIamPermissionsRegionCompositeHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1744] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1815] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198840,7 +206191,7 @@ func (x *TestIamPermissionsRegionCompositeHealthCheckRequest) String() string { func (*TestIamPermissionsRegionCompositeHealthCheckRequest) ProtoMessage() {} func (x *TestIamPermissionsRegionCompositeHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1744] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1815] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198853,7 +206204,7 @@ func (x *TestIamPermissionsRegionCompositeHealthCheckRequest) ProtoReflect() pro // Deprecated: Use TestIamPermissionsRegionCompositeHealthCheckRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRegionCompositeHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1744} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1815} } func (x *TestIamPermissionsRegionCompositeHealthCheckRequest) GetProject() string { @@ -198901,7 +206252,7 @@ type TestIamPermissionsRegionDiskRequest struct { func (x *TestIamPermissionsRegionDiskRequest) Reset() { *x = TestIamPermissionsRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1745] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1816] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198913,7 +206264,7 @@ func (x *TestIamPermissionsRegionDiskRequest) String() string { func (*TestIamPermissionsRegionDiskRequest) ProtoMessage() {} func (x *TestIamPermissionsRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1745] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1816] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198926,7 +206277,7 @@ func (x *TestIamPermissionsRegionDiskRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use TestIamPermissionsRegionDiskRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1745} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1816} } func (x *TestIamPermissionsRegionDiskRequest) GetProject() string { @@ -198974,7 +206325,7 @@ type TestIamPermissionsRegionHealthAggregationPolicyRequest struct { func (x *TestIamPermissionsRegionHealthAggregationPolicyRequest) Reset() { *x = TestIamPermissionsRegionHealthAggregationPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1746] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1817] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198986,7 +206337,7 @@ func (x *TestIamPermissionsRegionHealthAggregationPolicyRequest) String() string func (*TestIamPermissionsRegionHealthAggregationPolicyRequest) ProtoMessage() {} func (x *TestIamPermissionsRegionHealthAggregationPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1746] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1817] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198999,7 +206350,7 @@ func (x *TestIamPermissionsRegionHealthAggregationPolicyRequest) ProtoReflect() // Deprecated: Use TestIamPermissionsRegionHealthAggregationPolicyRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRegionHealthAggregationPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1746} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1817} } func (x *TestIamPermissionsRegionHealthAggregationPolicyRequest) GetProject() string { @@ -199047,7 +206398,7 @@ type TestIamPermissionsRegionHealthCheckRequest struct { func (x *TestIamPermissionsRegionHealthCheckRequest) Reset() { *x = TestIamPermissionsRegionHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1747] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1818] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199059,7 +206410,7 @@ func (x *TestIamPermissionsRegionHealthCheckRequest) String() string { func (*TestIamPermissionsRegionHealthCheckRequest) ProtoMessage() {} func (x *TestIamPermissionsRegionHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1747] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1818] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199072,7 +206423,7 @@ func (x *TestIamPermissionsRegionHealthCheckRequest) ProtoReflect() protoreflect // Deprecated: Use TestIamPermissionsRegionHealthCheckRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRegionHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1747} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1818} } func (x *TestIamPermissionsRegionHealthCheckRequest) GetProject() string { @@ -199120,7 +206471,7 @@ type TestIamPermissionsRegionHealthCheckServiceRequest struct { func (x *TestIamPermissionsRegionHealthCheckServiceRequest) Reset() { *x = TestIamPermissionsRegionHealthCheckServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1748] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1819] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199132,7 +206483,7 @@ func (x *TestIamPermissionsRegionHealthCheckServiceRequest) String() string { func (*TestIamPermissionsRegionHealthCheckServiceRequest) ProtoMessage() {} func (x *TestIamPermissionsRegionHealthCheckServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1748] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1819] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199145,7 +206496,7 @@ func (x *TestIamPermissionsRegionHealthCheckServiceRequest) ProtoReflect() proto // Deprecated: Use TestIamPermissionsRegionHealthCheckServiceRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRegionHealthCheckServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1748} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1819} } func (x *TestIamPermissionsRegionHealthCheckServiceRequest) GetProject() string { @@ -199193,7 +206544,7 @@ type TestIamPermissionsRegionHealthSourceRequest struct { func (x *TestIamPermissionsRegionHealthSourceRequest) Reset() { *x = TestIamPermissionsRegionHealthSourceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1749] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1820] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199205,7 +206556,7 @@ func (x *TestIamPermissionsRegionHealthSourceRequest) String() string { func (*TestIamPermissionsRegionHealthSourceRequest) ProtoMessage() {} func (x *TestIamPermissionsRegionHealthSourceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1749] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1820] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199218,7 +206569,7 @@ func (x *TestIamPermissionsRegionHealthSourceRequest) ProtoReflect() protoreflec // Deprecated: Use TestIamPermissionsRegionHealthSourceRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRegionHealthSourceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1749} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1820} } func (x *TestIamPermissionsRegionHealthSourceRequest) GetProject() string { @@ -199266,7 +206617,7 @@ type TestIamPermissionsRegionInstanceGroupRequest struct { func (x *TestIamPermissionsRegionInstanceGroupRequest) Reset() { *x = TestIamPermissionsRegionInstanceGroupRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1750] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1821] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199278,7 +206629,7 @@ func (x *TestIamPermissionsRegionInstanceGroupRequest) String() string { func (*TestIamPermissionsRegionInstanceGroupRequest) ProtoMessage() {} func (x *TestIamPermissionsRegionInstanceGroupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1750] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1821] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199291,7 +206642,7 @@ func (x *TestIamPermissionsRegionInstanceGroupRequest) ProtoReflect() protorefle // Deprecated: Use TestIamPermissionsRegionInstanceGroupRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRegionInstanceGroupRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1750} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1821} } func (x *TestIamPermissionsRegionInstanceGroupRequest) GetProject() string { @@ -199322,6 +206673,79 @@ func (x *TestIamPermissionsRegionInstanceGroupRequest) GetTestPermissionsRequest return nil } +// A request message for RegionInstantSnapshotGroups.TestIamPermissions. See the method description for details. +type TestIamPermissionsRegionInstantSnapshotGroupRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + // The body resource for this request + TestPermissionsRequestResource *TestPermissionsRequest `protobuf:"bytes,439214758,opt,name=test_permissions_request_resource,json=testPermissionsRequestResource,proto3" json:"test_permissions_request_resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *TestIamPermissionsRegionInstantSnapshotGroupRequest) Reset() { + *x = TestIamPermissionsRegionInstantSnapshotGroupRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1822] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *TestIamPermissionsRegionInstantSnapshotGroupRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*TestIamPermissionsRegionInstantSnapshotGroupRequest) ProtoMessage() {} + +func (x *TestIamPermissionsRegionInstantSnapshotGroupRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1822] + 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 TestIamPermissionsRegionInstantSnapshotGroupRequest.ProtoReflect.Descriptor instead. +func (*TestIamPermissionsRegionInstantSnapshotGroupRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1822} +} + +func (x *TestIamPermissionsRegionInstantSnapshotGroupRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *TestIamPermissionsRegionInstantSnapshotGroupRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *TestIamPermissionsRegionInstantSnapshotGroupRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + +func (x *TestIamPermissionsRegionInstantSnapshotGroupRequest) GetTestPermissionsRequestResource() *TestPermissionsRequest { + if x != nil { + return x.TestPermissionsRequestResource + } + return nil +} + // A request message for RegionInstantSnapshots.TestIamPermissions. See the method description for details. type TestIamPermissionsRegionInstantSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -199339,7 +206763,7 @@ type TestIamPermissionsRegionInstantSnapshotRequest struct { func (x *TestIamPermissionsRegionInstantSnapshotRequest) Reset() { *x = TestIamPermissionsRegionInstantSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1751] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1823] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199351,7 +206775,7 @@ func (x *TestIamPermissionsRegionInstantSnapshotRequest) String() string { func (*TestIamPermissionsRegionInstantSnapshotRequest) ProtoMessage() {} func (x *TestIamPermissionsRegionInstantSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1751] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1823] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199364,7 +206788,7 @@ func (x *TestIamPermissionsRegionInstantSnapshotRequest) ProtoReflect() protoref // Deprecated: Use TestIamPermissionsRegionInstantSnapshotRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRegionInstantSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1751} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1823} } func (x *TestIamPermissionsRegionInstantSnapshotRequest) GetProject() string { @@ -199412,7 +206836,7 @@ type TestIamPermissionsRegionNetworkFirewallPolicyRequest struct { func (x *TestIamPermissionsRegionNetworkFirewallPolicyRequest) Reset() { *x = TestIamPermissionsRegionNetworkFirewallPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1752] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1824] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199424,7 +206848,7 @@ func (x *TestIamPermissionsRegionNetworkFirewallPolicyRequest) String() string { func (*TestIamPermissionsRegionNetworkFirewallPolicyRequest) ProtoMessage() {} func (x *TestIamPermissionsRegionNetworkFirewallPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1752] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1824] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199437,7 +206861,7 @@ func (x *TestIamPermissionsRegionNetworkFirewallPolicyRequest) ProtoReflect() pr // Deprecated: Use TestIamPermissionsRegionNetworkFirewallPolicyRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRegionNetworkFirewallPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1752} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1824} } func (x *TestIamPermissionsRegionNetworkFirewallPolicyRequest) GetProject() string { @@ -199485,7 +206909,7 @@ type TestIamPermissionsRegionNotificationEndpointRequest struct { func (x *TestIamPermissionsRegionNotificationEndpointRequest) Reset() { *x = TestIamPermissionsRegionNotificationEndpointRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1753] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1825] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199497,7 +206921,7 @@ func (x *TestIamPermissionsRegionNotificationEndpointRequest) String() string { func (*TestIamPermissionsRegionNotificationEndpointRequest) ProtoMessage() {} func (x *TestIamPermissionsRegionNotificationEndpointRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1753] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1825] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199510,7 +206934,7 @@ func (x *TestIamPermissionsRegionNotificationEndpointRequest) ProtoReflect() pro // Deprecated: Use TestIamPermissionsRegionNotificationEndpointRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRegionNotificationEndpointRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1753} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1825} } func (x *TestIamPermissionsRegionNotificationEndpointRequest) GetProject() string { @@ -199541,6 +206965,79 @@ func (x *TestIamPermissionsRegionNotificationEndpointRequest) GetTestPermissions return nil } +// A request message for RegionSnapshots.TestIamPermissions. See the method description for details. +type TestIamPermissionsRegionSnapshotRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // Name or id of the resource for this request. + Resource string `protobuf:"bytes,195806222,opt,name=resource,proto3" json:"resource,omitempty"` + // The body resource for this request + TestPermissionsRequestResource *TestPermissionsRequest `protobuf:"bytes,439214758,opt,name=test_permissions_request_resource,json=testPermissionsRequestResource,proto3" json:"test_permissions_request_resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *TestIamPermissionsRegionSnapshotRequest) Reset() { + *x = TestIamPermissionsRegionSnapshotRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1826] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *TestIamPermissionsRegionSnapshotRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*TestIamPermissionsRegionSnapshotRequest) ProtoMessage() {} + +func (x *TestIamPermissionsRegionSnapshotRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1826] + 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 TestIamPermissionsRegionSnapshotRequest.ProtoReflect.Descriptor instead. +func (*TestIamPermissionsRegionSnapshotRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1826} +} + +func (x *TestIamPermissionsRegionSnapshotRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *TestIamPermissionsRegionSnapshotRequest) GetRegion() string { + if x != nil { + return x.Region + } + return "" +} + +func (x *TestIamPermissionsRegionSnapshotRequest) GetResource() string { + if x != nil { + return x.Resource + } + return "" +} + +func (x *TestIamPermissionsRegionSnapshotRequest) GetTestPermissionsRequestResource() *TestPermissionsRequest { + if x != nil { + return x.TestPermissionsRequestResource + } + return nil +} + // A request message for ReservationBlocks.TestIamPermissions. See the method description for details. type TestIamPermissionsReservationBlockRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -199560,7 +207057,7 @@ type TestIamPermissionsReservationBlockRequest struct { func (x *TestIamPermissionsReservationBlockRequest) Reset() { *x = TestIamPermissionsReservationBlockRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1754] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1827] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199572,7 +207069,7 @@ func (x *TestIamPermissionsReservationBlockRequest) String() string { func (*TestIamPermissionsReservationBlockRequest) ProtoMessage() {} func (x *TestIamPermissionsReservationBlockRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1754] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1827] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199585,7 +207082,7 @@ func (x *TestIamPermissionsReservationBlockRequest) ProtoReflect() protoreflect. // Deprecated: Use TestIamPermissionsReservationBlockRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsReservationBlockRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1754} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1827} } func (x *TestIamPermissionsReservationBlockRequest) GetParentResource() string { @@ -199640,7 +207137,7 @@ type TestIamPermissionsReservationRequest struct { func (x *TestIamPermissionsReservationRequest) Reset() { *x = TestIamPermissionsReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1755] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1828] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199652,7 +207149,7 @@ func (x *TestIamPermissionsReservationRequest) String() string { func (*TestIamPermissionsReservationRequest) ProtoMessage() {} func (x *TestIamPermissionsReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1755] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1828] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199665,7 +207162,7 @@ func (x *TestIamPermissionsReservationRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use TestIamPermissionsReservationRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1755} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1828} } func (x *TestIamPermissionsReservationRequest) GetProject() string { @@ -199715,7 +207212,7 @@ type TestIamPermissionsReservationSubBlockRequest struct { func (x *TestIamPermissionsReservationSubBlockRequest) Reset() { *x = TestIamPermissionsReservationSubBlockRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1756] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1829] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199727,7 +207224,7 @@ func (x *TestIamPermissionsReservationSubBlockRequest) String() string { func (*TestIamPermissionsReservationSubBlockRequest) ProtoMessage() {} func (x *TestIamPermissionsReservationSubBlockRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1756] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1829] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199740,7 +207237,7 @@ func (x *TestIamPermissionsReservationSubBlockRequest) ProtoReflect() protorefle // Deprecated: Use TestIamPermissionsReservationSubBlockRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsReservationSubBlockRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1756} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1829} } func (x *TestIamPermissionsReservationSubBlockRequest) GetParentResource() string { @@ -199795,7 +207292,7 @@ type TestIamPermissionsResourcePolicyRequest struct { func (x *TestIamPermissionsResourcePolicyRequest) Reset() { *x = TestIamPermissionsResourcePolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1757] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1830] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199807,7 +207304,7 @@ func (x *TestIamPermissionsResourcePolicyRequest) String() string { func (*TestIamPermissionsResourcePolicyRequest) ProtoMessage() {} func (x *TestIamPermissionsResourcePolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1757] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1830] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199820,7 +207317,7 @@ func (x *TestIamPermissionsResourcePolicyRequest) ProtoReflect() protoreflect.Me // Deprecated: Use TestIamPermissionsResourcePolicyRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsResourcePolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1757} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1830} } func (x *TestIamPermissionsResourcePolicyRequest) GetProject() string { @@ -199866,7 +207363,7 @@ type TestIamPermissionsRouteRequest struct { func (x *TestIamPermissionsRouteRequest) Reset() { *x = TestIamPermissionsRouteRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1758] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1831] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199878,7 +207375,7 @@ func (x *TestIamPermissionsRouteRequest) String() string { func (*TestIamPermissionsRouteRequest) ProtoMessage() {} func (x *TestIamPermissionsRouteRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1758] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1831] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199891,7 +207388,7 @@ func (x *TestIamPermissionsRouteRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TestIamPermissionsRouteRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsRouteRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1758} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1831} } func (x *TestIamPermissionsRouteRequest) GetProject() string { @@ -199932,7 +207429,7 @@ type TestIamPermissionsServiceAttachmentRequest struct { func (x *TestIamPermissionsServiceAttachmentRequest) Reset() { *x = TestIamPermissionsServiceAttachmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1759] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1832] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199944,7 +207441,7 @@ func (x *TestIamPermissionsServiceAttachmentRequest) String() string { func (*TestIamPermissionsServiceAttachmentRequest) ProtoMessage() {} func (x *TestIamPermissionsServiceAttachmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1759] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1832] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199957,7 +207454,7 @@ func (x *TestIamPermissionsServiceAttachmentRequest) ProtoReflect() protoreflect // Deprecated: Use TestIamPermissionsServiceAttachmentRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsServiceAttachmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1759} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1832} } func (x *TestIamPermissionsServiceAttachmentRequest) GetProject() string { @@ -200003,7 +207500,7 @@ type TestIamPermissionsSnapshotRequest struct { func (x *TestIamPermissionsSnapshotRequest) Reset() { *x = TestIamPermissionsSnapshotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1760] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1833] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200015,7 +207512,7 @@ func (x *TestIamPermissionsSnapshotRequest) String() string { func (*TestIamPermissionsSnapshotRequest) ProtoMessage() {} func (x *TestIamPermissionsSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1760] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1833] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200028,7 +207525,7 @@ func (x *TestIamPermissionsSnapshotRequest) ProtoReflect() protoreflect.Message // Deprecated: Use TestIamPermissionsSnapshotRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsSnapshotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1760} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1833} } func (x *TestIamPermissionsSnapshotRequest) GetProject() string { @@ -200069,7 +207566,7 @@ type TestIamPermissionsStoragePoolRequest struct { func (x *TestIamPermissionsStoragePoolRequest) Reset() { *x = TestIamPermissionsStoragePoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1761] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1834] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200081,7 +207578,7 @@ func (x *TestIamPermissionsStoragePoolRequest) String() string { func (*TestIamPermissionsStoragePoolRequest) ProtoMessage() {} func (x *TestIamPermissionsStoragePoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1761] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1834] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200094,7 +207591,7 @@ func (x *TestIamPermissionsStoragePoolRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use TestIamPermissionsStoragePoolRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsStoragePoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1761} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1834} } func (x *TestIamPermissionsStoragePoolRequest) GetProject() string { @@ -200142,7 +207639,7 @@ type TestIamPermissionsSubnetworkRequest struct { func (x *TestIamPermissionsSubnetworkRequest) Reset() { *x = TestIamPermissionsSubnetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1762] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1835] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200154,7 +207651,7 @@ func (x *TestIamPermissionsSubnetworkRequest) String() string { func (*TestIamPermissionsSubnetworkRequest) ProtoMessage() {} func (x *TestIamPermissionsSubnetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1762] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1835] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200167,7 +207664,7 @@ func (x *TestIamPermissionsSubnetworkRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use TestIamPermissionsSubnetworkRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsSubnetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1762} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1835} } func (x *TestIamPermissionsSubnetworkRequest) GetProject() string { @@ -200215,7 +207712,7 @@ type TestIamPermissionsTargetInstanceRequest struct { func (x *TestIamPermissionsTargetInstanceRequest) Reset() { *x = TestIamPermissionsTargetInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1763] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1836] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200227,7 +207724,7 @@ func (x *TestIamPermissionsTargetInstanceRequest) String() string { func (*TestIamPermissionsTargetInstanceRequest) ProtoMessage() {} func (x *TestIamPermissionsTargetInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1763] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1836] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200240,7 +207737,7 @@ func (x *TestIamPermissionsTargetInstanceRequest) ProtoReflect() protoreflect.Me // Deprecated: Use TestIamPermissionsTargetInstanceRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsTargetInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1763} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1836} } func (x *TestIamPermissionsTargetInstanceRequest) GetProject() string { @@ -200288,7 +207785,7 @@ type TestIamPermissionsTargetPoolRequest struct { func (x *TestIamPermissionsTargetPoolRequest) Reset() { *x = TestIamPermissionsTargetPoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1764] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1837] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200300,7 +207797,7 @@ func (x *TestIamPermissionsTargetPoolRequest) String() string { func (*TestIamPermissionsTargetPoolRequest) ProtoMessage() {} func (x *TestIamPermissionsTargetPoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1764] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1837] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200313,7 +207810,7 @@ func (x *TestIamPermissionsTargetPoolRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use TestIamPermissionsTargetPoolRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsTargetPoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1764} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1837} } func (x *TestIamPermissionsTargetPoolRequest) GetProject() string { @@ -200359,7 +207856,7 @@ type TestIamPermissionsTargetSslProxyRequest struct { func (x *TestIamPermissionsTargetSslProxyRequest) Reset() { *x = TestIamPermissionsTargetSslProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1765] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1838] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200371,7 +207868,7 @@ func (x *TestIamPermissionsTargetSslProxyRequest) String() string { func (*TestIamPermissionsTargetSslProxyRequest) ProtoMessage() {} func (x *TestIamPermissionsTargetSslProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1765] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1838] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200384,7 +207881,7 @@ func (x *TestIamPermissionsTargetSslProxyRequest) ProtoReflect() protoreflect.Me // Deprecated: Use TestIamPermissionsTargetSslProxyRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsTargetSslProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1765} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1838} } func (x *TestIamPermissionsTargetSslProxyRequest) GetProject() string { @@ -200423,7 +207920,7 @@ type TestIamPermissionsTargetTcpProxyRequest struct { func (x *TestIamPermissionsTargetTcpProxyRequest) Reset() { *x = TestIamPermissionsTargetTcpProxyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1766] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1839] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200435,7 +207932,7 @@ func (x *TestIamPermissionsTargetTcpProxyRequest) String() string { func (*TestIamPermissionsTargetTcpProxyRequest) ProtoMessage() {} func (x *TestIamPermissionsTargetTcpProxyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1766] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1839] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200448,7 +207945,7 @@ func (x *TestIamPermissionsTargetTcpProxyRequest) ProtoReflect() protoreflect.Me // Deprecated: Use TestIamPermissionsTargetTcpProxyRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsTargetTcpProxyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1766} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1839} } func (x *TestIamPermissionsTargetTcpProxyRequest) GetProject() string { @@ -200487,7 +207984,7 @@ type TestIamPermissionsUrlMapRequest struct { func (x *TestIamPermissionsUrlMapRequest) Reset() { *x = TestIamPermissionsUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1767] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1840] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200499,7 +207996,7 @@ func (x *TestIamPermissionsUrlMapRequest) String() string { func (*TestIamPermissionsUrlMapRequest) ProtoMessage() {} func (x *TestIamPermissionsUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1767] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1840] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200512,7 +208009,7 @@ func (x *TestIamPermissionsUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TestIamPermissionsUrlMapRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1767} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1840} } func (x *TestIamPermissionsUrlMapRequest) GetProject() string { @@ -200553,7 +208050,7 @@ type TestIamPermissionsVpnGatewayRequest struct { func (x *TestIamPermissionsVpnGatewayRequest) Reset() { *x = TestIamPermissionsVpnGatewayRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1768] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1841] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200565,7 +208062,7 @@ func (x *TestIamPermissionsVpnGatewayRequest) String() string { func (*TestIamPermissionsVpnGatewayRequest) ProtoMessage() {} func (x *TestIamPermissionsVpnGatewayRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1768] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1841] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200578,7 +208075,7 @@ func (x *TestIamPermissionsVpnGatewayRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use TestIamPermissionsVpnGatewayRequest.ProtoReflect.Descriptor instead. func (*TestIamPermissionsVpnGatewayRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1768} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1841} } func (x *TestIamPermissionsVpnGatewayRequest) GetProject() string { @@ -200620,7 +208117,7 @@ type TestPermissionsRequest struct { func (x *TestPermissionsRequest) Reset() { *x = TestPermissionsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1769] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1842] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200632,7 +208129,7 @@ func (x *TestPermissionsRequest) String() string { func (*TestPermissionsRequest) ProtoMessage() {} func (x *TestPermissionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1769] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1842] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200645,7 +208142,7 @@ func (x *TestPermissionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TestPermissionsRequest.ProtoReflect.Descriptor instead. func (*TestPermissionsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1769} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1842} } func (x *TestPermissionsRequest) GetPermissions() []string { @@ -200666,7 +208163,7 @@ type TestPermissionsResponse struct { func (x *TestPermissionsResponse) Reset() { *x = TestPermissionsResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1770] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1843] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200678,7 +208175,7 @@ func (x *TestPermissionsResponse) String() string { func (*TestPermissionsResponse) ProtoMessage() {} func (x *TestPermissionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1770] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1843] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200691,7 +208188,7 @@ func (x *TestPermissionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use TestPermissionsResponse.ProtoReflect.Descriptor instead. func (*TestPermissionsResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1770} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1843} } func (x *TestPermissionsResponse) GetPermissions() []string { @@ -200711,7 +208208,7 @@ type Uint128 struct { func (x *Uint128) Reset() { *x = Uint128{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1771] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1844] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200723,7 +208220,7 @@ func (x *Uint128) String() string { func (*Uint128) ProtoMessage() {} func (x *Uint128) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1771] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1844] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200736,7 +208233,7 @@ func (x *Uint128) ProtoReflect() protoreflect.Message { // Deprecated: Use Uint128.ProtoReflect.Descriptor instead. func (*Uint128) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1771} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1844} } func (x *Uint128) GetHigh() uint64 { @@ -200783,7 +208280,7 @@ type UpcomingMaintenance struct { func (x *UpcomingMaintenance) Reset() { *x = UpcomingMaintenance{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1772] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1845] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200795,7 +208292,7 @@ func (x *UpcomingMaintenance) String() string { func (*UpcomingMaintenance) ProtoMessage() {} func (x *UpcomingMaintenance) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1772] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1845] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200808,7 +208305,7 @@ func (x *UpcomingMaintenance) ProtoReflect() protoreflect.Message { // Deprecated: Use UpcomingMaintenance.ProtoReflect.Descriptor instead. func (*UpcomingMaintenance) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1772} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1845} } func (x *UpcomingMaintenance) GetCanReschedule() bool { @@ -200900,7 +208397,7 @@ type UpdateAccessConfigInstanceRequest struct { func (x *UpdateAccessConfigInstanceRequest) Reset() { *x = UpdateAccessConfigInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1773] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1846] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200912,7 +208409,7 @@ func (x *UpdateAccessConfigInstanceRequest) String() string { func (*UpdateAccessConfigInstanceRequest) ProtoMessage() {} func (x *UpdateAccessConfigInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1773] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1846] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200925,7 +208422,7 @@ func (x *UpdateAccessConfigInstanceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use UpdateAccessConfigInstanceRequest.ProtoReflect.Descriptor instead. func (*UpdateAccessConfigInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1773} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1846} } func (x *UpdateAccessConfigInstanceRequest) GetAccessConfigResource() *AccessConfig { @@ -201001,7 +208498,7 @@ type UpdateAutoscalerRequest struct { func (x *UpdateAutoscalerRequest) Reset() { *x = UpdateAutoscalerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1774] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1847] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -201013,7 +208510,7 @@ func (x *UpdateAutoscalerRequest) String() string { func (*UpdateAutoscalerRequest) ProtoMessage() {} func (x *UpdateAutoscalerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1774] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1847] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201026,7 +208523,7 @@ func (x *UpdateAutoscalerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateAutoscalerRequest.ProtoReflect.Descriptor instead. func (*UpdateAutoscalerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1774} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1847} } func (x *UpdateAutoscalerRequest) GetAutoscaler() string { @@ -201093,7 +208590,7 @@ type UpdateBackendBucketRequest struct { func (x *UpdateBackendBucketRequest) Reset() { *x = UpdateBackendBucketRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1775] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1848] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -201105,7 +208602,7 @@ func (x *UpdateBackendBucketRequest) String() string { func (*UpdateBackendBucketRequest) ProtoMessage() {} func (x *UpdateBackendBucketRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1775] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1848] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201118,7 +208615,7 @@ func (x *UpdateBackendBucketRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateBackendBucketRequest.ProtoReflect.Descriptor instead. func (*UpdateBackendBucketRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1775} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1848} } func (x *UpdateBackendBucketRequest) GetBackendBucket() string { @@ -201178,7 +208675,7 @@ type UpdateBackendServiceRequest struct { func (x *UpdateBackendServiceRequest) Reset() { *x = UpdateBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1776] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1849] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -201190,7 +208687,7 @@ func (x *UpdateBackendServiceRequest) String() string { func (*UpdateBackendServiceRequest) ProtoMessage() {} func (x *UpdateBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1776] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1849] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201203,7 +208700,7 @@ func (x *UpdateBackendServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateBackendServiceRequest.ProtoReflect.Descriptor instead. func (*UpdateBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1776} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1849} } func (x *UpdateBackendServiceRequest) GetBackendService() string { @@ -201268,7 +208765,7 @@ type UpdateDiskRequest struct { func (x *UpdateDiskRequest) Reset() { *x = UpdateDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1777] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1850] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -201280,7 +208777,7 @@ func (x *UpdateDiskRequest) String() string { func (*UpdateDiskRequest) ProtoMessage() {} func (x *UpdateDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1777] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1850] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201293,7 +208790,7 @@ func (x *UpdateDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateDiskRequest.ProtoReflect.Descriptor instead. func (*UpdateDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1777} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1850} } func (x *UpdateDiskRequest) GetDisk() string { @@ -201374,21 +208871,404 @@ type UpdateDisplayDeviceInstanceRequest struct { sizeCache protoimpl.SizeCache } -func (x *UpdateDisplayDeviceInstanceRequest) Reset() { - *x = UpdateDisplayDeviceInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1778] +func (x *UpdateDisplayDeviceInstanceRequest) Reset() { + *x = UpdateDisplayDeviceInstanceRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1851] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *UpdateDisplayDeviceInstanceRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*UpdateDisplayDeviceInstanceRequest) ProtoMessage() {} + +func (x *UpdateDisplayDeviceInstanceRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1851] + 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 UpdateDisplayDeviceInstanceRequest.ProtoReflect.Descriptor instead. +func (*UpdateDisplayDeviceInstanceRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1851} +} + +func (x *UpdateDisplayDeviceInstanceRequest) GetDisplayDeviceResource() *DisplayDevice { + if x != nil { + return x.DisplayDeviceResource + } + return nil +} + +func (x *UpdateDisplayDeviceInstanceRequest) GetInstance() string { + if x != nil { + return x.Instance + } + return "" +} + +func (x *UpdateDisplayDeviceInstanceRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *UpdateDisplayDeviceInstanceRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *UpdateDisplayDeviceInstanceRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + +// A request message for Firewalls.Update. See the method description for details. +type UpdateFirewallRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the firewall rule to update. + Firewall string `protobuf:"bytes,511016192,opt,name=firewall,proto3" json:"firewall,omitempty"` + // The body resource for this request + FirewallResource *Firewall `protobuf:"bytes,41425005,opt,name=firewall_resource,json=firewallResource,proto3" json:"firewall_resource,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *UpdateFirewallRequest) Reset() { + *x = UpdateFirewallRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1852] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *UpdateFirewallRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*UpdateFirewallRequest) ProtoMessage() {} + +func (x *UpdateFirewallRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1852] + 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 UpdateFirewallRequest.ProtoReflect.Descriptor instead. +func (*UpdateFirewallRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1852} +} + +func (x *UpdateFirewallRequest) GetFirewall() string { + if x != nil { + return x.Firewall + } + return "" +} + +func (x *UpdateFirewallRequest) GetFirewallResource() *Firewall { + if x != nil { + return x.FirewallResource + } + return nil +} + +func (x *UpdateFirewallRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *UpdateFirewallRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +// A request message for FutureReservations.Update. See the method description for details. +type UpdateFutureReservationRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the reservation to update. Name should conform to RFC1035. + FutureReservation string `protobuf:"bytes,56206160,opt,name=future_reservation,json=futureReservation,proto3" json:"future_reservation,omitempty"` + // The body resource for this request + FutureReservationResource *FutureReservation `protobuf:"bytes,466750493,opt,name=future_reservation_resource,json=futureReservationResource,proto3" json:"future_reservation_resource,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // update_mask indicates fields to be updated as part of this request. + UpdateMask *string `protobuf:"bytes,500079778,opt,name=update_mask,json=updateMask,proto3,oneof" json:"update_mask,omitempty"` + // Name of the zone for this request. Name should conform to RFC1035. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *UpdateFutureReservationRequest) Reset() { + *x = UpdateFutureReservationRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1853] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *UpdateFutureReservationRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*UpdateFutureReservationRequest) ProtoMessage() {} + +func (x *UpdateFutureReservationRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1853] + 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 UpdateFutureReservationRequest.ProtoReflect.Descriptor instead. +func (*UpdateFutureReservationRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1853} +} + +func (x *UpdateFutureReservationRequest) GetFutureReservation() string { + if x != nil { + return x.FutureReservation + } + return "" +} + +func (x *UpdateFutureReservationRequest) GetFutureReservationResource() *FutureReservation { + if x != nil { + return x.FutureReservationResource + } + return nil +} + +func (x *UpdateFutureReservationRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *UpdateFutureReservationRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *UpdateFutureReservationRequest) GetUpdateMask() string { + if x != nil && x.UpdateMask != nil { + return *x.UpdateMask + } + return "" +} + +func (x *UpdateFutureReservationRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + +// A request message for HealthChecks.Update. See the method description for details. +type UpdateHealthCheckRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Name of the HealthCheck resource to update. + HealthCheck string `protobuf:"bytes,308876645,opt,name=health_check,json=healthCheck,proto3" json:"health_check,omitempty"` + // The body resource for this request + HealthCheckResource *HealthCheck `protobuf:"bytes,201925032,opt,name=health_check_resource,json=healthCheckResource,proto3" json:"health_check_resource,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *UpdateHealthCheckRequest) Reset() { + *x = UpdateHealthCheckRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1854] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *UpdateHealthCheckRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*UpdateHealthCheckRequest) ProtoMessage() {} + +func (x *UpdateHealthCheckRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1854] + 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 UpdateHealthCheckRequest.ProtoReflect.Descriptor instead. +func (*UpdateHealthCheckRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1854} +} + +func (x *UpdateHealthCheckRequest) GetHealthCheck() string { + if x != nil { + return x.HealthCheck + } + return "" +} + +func (x *UpdateHealthCheckRequest) GetHealthCheckResource() *HealthCheck { + if x != nil { + return x.HealthCheckResource + } + return nil +} + +func (x *UpdateHealthCheckRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *UpdateHealthCheckRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +// A request message for Instances.Update. See the method description for details. +type UpdateInstanceRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Whether to discard local SSDs from the instance during restart + // default value is false. + DiscardLocalSsd *bool `protobuf:"varint,319517903,opt,name=discard_local_ssd,json=discardLocalSsd,proto3,oneof" json:"discard_local_ssd,omitempty"` + // Name of the instance resource to update. + Instance string `protobuf:"bytes,18257045,opt,name=instance,proto3" json:"instance,omitempty"` + // The body resource for this request + InstanceResource *Instance `protobuf:"bytes,215988344,opt,name=instance_resource,json=instanceResource,proto3" json:"instance_resource,omitempty"` + // Specifies the action to take when updating an instance even if the + // updated properties do not require it. If not specified, then + // Compute Engine acts based on the minimum action that the updated + // properties require. + // Check the MinimalAction enum for the list of possible values. + MinimalAction *string `protobuf:"bytes,270567060,opt,name=minimal_action,json=minimalAction,proto3,oneof" json:"minimal_action,omitempty"` + // Specifies the most disruptive action that can be taken on the instance + // as part of the update. Compute Engine returns an error if the + // instance properties require a more disruptive action as part of the + // instance update. Valid options from lowest to highest are + // NO_EFFECT, REFRESH, and RESTART. + // Check the MostDisruptiveAllowedAction enum for the list of possible values. + MostDisruptiveAllowedAction *string `protobuf:"bytes,66103053,opt,name=most_disruptive_allowed_action,json=mostDisruptiveAllowedAction,proto3,oneof" json:"most_disruptive_allowed_action,omitempty"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // The name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *UpdateInstanceRequest) Reset() { + *x = UpdateInstanceRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1855] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *UpdateDisplayDeviceInstanceRequest) String() string { +func (x *UpdateInstanceRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*UpdateDisplayDeviceInstanceRequest) ProtoMessage() {} +func (*UpdateInstanceRequest) ProtoMessage() {} -func (x *UpdateDisplayDeviceInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1778] +func (x *UpdateInstanceRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1855] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201399,53 +209279,74 @@ func (x *UpdateDisplayDeviceInstanceRequest) ProtoReflect() protoreflect.Message return mi.MessageOf(x) } -// Deprecated: Use UpdateDisplayDeviceInstanceRequest.ProtoReflect.Descriptor instead. -func (*UpdateDisplayDeviceInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1778} +// Deprecated: Use UpdateInstanceRequest.ProtoReflect.Descriptor instead. +func (*UpdateInstanceRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1855} } -func (x *UpdateDisplayDeviceInstanceRequest) GetDisplayDeviceResource() *DisplayDevice { - if x != nil { - return x.DisplayDeviceResource +func (x *UpdateInstanceRequest) GetDiscardLocalSsd() bool { + if x != nil && x.DiscardLocalSsd != nil { + return *x.DiscardLocalSsd } - return nil + return false } -func (x *UpdateDisplayDeviceInstanceRequest) GetInstance() string { +func (x *UpdateInstanceRequest) GetInstance() string { if x != nil { return x.Instance } return "" } -func (x *UpdateDisplayDeviceInstanceRequest) GetProject() string { +func (x *UpdateInstanceRequest) GetInstanceResource() *Instance { + if x != nil { + return x.InstanceResource + } + return nil +} + +func (x *UpdateInstanceRequest) GetMinimalAction() string { + if x != nil && x.MinimalAction != nil { + return *x.MinimalAction + } + return "" +} + +func (x *UpdateInstanceRequest) GetMostDisruptiveAllowedAction() string { + if x != nil && x.MostDisruptiveAllowedAction != nil { + return *x.MostDisruptiveAllowedAction + } + return "" +} + +func (x *UpdateInstanceRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *UpdateDisplayDeviceInstanceRequest) GetRequestId() string { +func (x *UpdateInstanceRequest) GetRequestId() string { if x != nil && x.RequestId != nil { return *x.RequestId } return "" } -func (x *UpdateDisplayDeviceInstanceRequest) GetZone() string { +func (x *UpdateInstanceRequest) GetZone() string { if x != nil { return x.Zone } return "" } -// A request message for Firewalls.Update. See the method description for details. -type UpdateFirewallRequest struct { +// A request message for Disks.UpdateKmsKey. See the method description for details. +type UpdateKmsKeyDiskRequest struct { state protoimpl.MessageState `protogen:"open.v1"` - // Name of the firewall rule to update. - Firewall string `protobuf:"bytes,511016192,opt,name=firewall,proto3" json:"firewall,omitempty"` + // Name of the Disk resource, should conform to RFC1035. + Disk string `protobuf:"bytes,3083677,opt,name=disk,proto3" json:"disk,omitempty"` // The body resource for this request - FirewallResource *Firewall `protobuf:"bytes,41425005,opt,name=firewall_resource,json=firewallResource,proto3" json:"firewall_resource,omitempty"` + DiskUpdateKmsKeyRequestResource *DiskUpdateKmsKeyRequest `protobuf:"bytes,178025952,opt,name=disk_update_kms_key_request_resource,json=diskUpdateKmsKeyRequestResource,proto3" json:"disk_update_kms_key_request_resource,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` // An optional request ID to identify requests. Specify a unique request ID so @@ -201461,26 +209362,28 @@ type UpdateFirewallRequest struct { // The request ID must be // a valid UUID with the exception that zero UUID is not supported // (00000000-0000-0000-0000-000000000000). - RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // The name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } -func (x *UpdateFirewallRequest) Reset() { - *x = UpdateFirewallRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1779] +func (x *UpdateKmsKeyDiskRequest) Reset() { + *x = UpdateKmsKeyDiskRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1856] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *UpdateFirewallRequest) String() string { +func (x *UpdateKmsKeyDiskRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*UpdateFirewallRequest) ProtoMessage() {} +func (*UpdateKmsKeyDiskRequest) ProtoMessage() {} -func (x *UpdateFirewallRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1779] +func (x *UpdateKmsKeyDiskRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1856] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201491,48 +209394,57 @@ func (x *UpdateFirewallRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use UpdateFirewallRequest.ProtoReflect.Descriptor instead. -func (*UpdateFirewallRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1779} +// Deprecated: Use UpdateKmsKeyDiskRequest.ProtoReflect.Descriptor instead. +func (*UpdateKmsKeyDiskRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1856} } -func (x *UpdateFirewallRequest) GetFirewall() string { +func (x *UpdateKmsKeyDiskRequest) GetDisk() string { if x != nil { - return x.Firewall + return x.Disk } return "" } -func (x *UpdateFirewallRequest) GetFirewallResource() *Firewall { +func (x *UpdateKmsKeyDiskRequest) GetDiskUpdateKmsKeyRequestResource() *DiskUpdateKmsKeyRequest { if x != nil { - return x.FirewallResource + return x.DiskUpdateKmsKeyRequestResource } return nil } -func (x *UpdateFirewallRequest) GetProject() string { +func (x *UpdateKmsKeyDiskRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *UpdateFirewallRequest) GetRequestId() string { +func (x *UpdateKmsKeyDiskRequest) GetRequestId() string { if x != nil && x.RequestId != nil { return *x.RequestId } return "" } -// A request message for FutureReservations.Update. See the method description for details. -type UpdateFutureReservationRequest struct { +func (x *UpdateKmsKeyDiskRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + +// A request message for RegionDisks.UpdateKmsKey. See the method description for details. +type UpdateKmsKeyRegionDiskRequest struct { state protoimpl.MessageState `protogen:"open.v1"` - // Name of the reservation to update. Name should conform to RFC1035. - FutureReservation string `protobuf:"bytes,56206160,opt,name=future_reservation,json=futureReservation,proto3" json:"future_reservation,omitempty"` - // The body resource for this request - FutureReservationResource *FutureReservation `protobuf:"bytes,466750493,opt,name=future_reservation_resource,json=futureReservationResource,proto3" json:"future_reservation_resource,omitempty"` + // Name of the Disk resource, should conform to RFC1035. + Disk string `protobuf:"bytes,3083677,opt,name=disk,proto3" json:"disk,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // The name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // The body resource for this request + RegionDiskUpdateKmsKeyRequestResource *RegionDiskUpdateKmsKeyRequest `protobuf:"bytes,10015819,opt,name=region_disk_update_kms_key_request_resource,json=regionDiskUpdateKmsKeyRequestResource,proto3" json:"region_disk_update_kms_key_request_resource,omitempty"` // An optional request ID to identify requests. Specify a unique request ID so // that if you must retry your request, the server will know to ignore the // request if it has already been completed. @@ -201546,30 +209458,26 @@ type UpdateFutureReservationRequest struct { // The request ID must be // a valid UUID with the exception that zero UUID is not supported // (00000000-0000-0000-0000-000000000000). - RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` - // update_mask indicates fields to be updated as part of this request. - UpdateMask *string `protobuf:"bytes,500079778,opt,name=update_mask,json=updateMask,proto3,oneof" json:"update_mask,omitempty"` - // Name of the zone for this request. Name should conform to RFC1035. - Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } -func (x *UpdateFutureReservationRequest) Reset() { - *x = UpdateFutureReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1780] +func (x *UpdateKmsKeyRegionDiskRequest) Reset() { + *x = UpdateKmsKeyRegionDiskRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1857] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *UpdateFutureReservationRequest) String() string { +func (x *UpdateKmsKeyRegionDiskRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*UpdateFutureReservationRequest) ProtoMessage() {} +func (*UpdateKmsKeyRegionDiskRequest) ProtoMessage() {} -func (x *UpdateFutureReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1780] +func (x *UpdateKmsKeyRegionDiskRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1857] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201580,62 +209488,55 @@ func (x *UpdateFutureReservationRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use UpdateFutureReservationRequest.ProtoReflect.Descriptor instead. -func (*UpdateFutureReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1780} +// Deprecated: Use UpdateKmsKeyRegionDiskRequest.ProtoReflect.Descriptor instead. +func (*UpdateKmsKeyRegionDiskRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1857} } -func (x *UpdateFutureReservationRequest) GetFutureReservation() string { +func (x *UpdateKmsKeyRegionDiskRequest) GetDisk() string { if x != nil { - return x.FutureReservation + return x.Disk } return "" } -func (x *UpdateFutureReservationRequest) GetFutureReservationResource() *FutureReservation { - if x != nil { - return x.FutureReservationResource - } - return nil -} - -func (x *UpdateFutureReservationRequest) GetProject() string { +func (x *UpdateKmsKeyRegionDiskRequest) GetProject() string { if x != nil { return x.Project } return "" } -func (x *UpdateFutureReservationRequest) GetRequestId() string { - if x != nil && x.RequestId != nil { - return *x.RequestId +func (x *UpdateKmsKeyRegionDiskRequest) GetRegion() string { + if x != nil { + return x.Region } return "" } -func (x *UpdateFutureReservationRequest) GetUpdateMask() string { - if x != nil && x.UpdateMask != nil { - return *x.UpdateMask +func (x *UpdateKmsKeyRegionDiskRequest) GetRegionDiskUpdateKmsKeyRequestResource() *RegionDiskUpdateKmsKeyRequest { + if x != nil { + return x.RegionDiskUpdateKmsKeyRequestResource } - return "" + return nil } -func (x *UpdateFutureReservationRequest) GetZone() string { - if x != nil { - return x.Zone +func (x *UpdateKmsKeyRegionDiskRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId } return "" } -// A request message for HealthChecks.Update. See the method description for details. -type UpdateHealthCheckRequest struct { +// A request message for RegionSnapshots.UpdateKmsKey. See the method description for details. +type UpdateKmsKeyRegionSnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` - // Name of the HealthCheck resource to update. - HealthCheck string `protobuf:"bytes,308876645,opt,name=health_check,json=healthCheck,proto3" json:"health_check,omitempty"` - // The body resource for this request - HealthCheckResource *HealthCheck `protobuf:"bytes,201925032,opt,name=health_check_resource,json=healthCheckResource,proto3" json:"health_check_resource,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // Name of the region for this request. + Region string `protobuf:"bytes,138946292,opt,name=region,proto3" json:"region,omitempty"` + // The body resource for this request + RegionSnapshotUpdateKmsKeyRequestResource *RegionSnapshotUpdateKmsKeyRequest `protobuf:"bytes,279384818,opt,name=region_snapshot_update_kms_key_request_resource,json=regionSnapshotUpdateKmsKeyRequestResource,proto3" json:"region_snapshot_update_kms_key_request_resource,omitempty"` // An optional request ID to identify requests. Specify a unique request ID so // that if you must retry your request, the server will know to ignore the // request if it has already been completed. @@ -201649,26 +209550,28 @@ type UpdateHealthCheckRequest struct { // The request ID must be // a valid UUID with the exception that zero UUID is not supported // (00000000-0000-0000-0000-000000000000). - RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // Name of the snapshot resource to update. Should conform to RFC1035. + Snapshot string `protobuf:"bytes,284874180,opt,name=snapshot,proto3" json:"snapshot,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } -func (x *UpdateHealthCheckRequest) Reset() { - *x = UpdateHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1781] +func (x *UpdateKmsKeyRegionSnapshotRequest) Reset() { + *x = UpdateKmsKeyRegionSnapshotRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1858] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *UpdateHealthCheckRequest) String() string { +func (x *UpdateKmsKeyRegionSnapshotRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*UpdateHealthCheckRequest) ProtoMessage() {} +func (*UpdateKmsKeyRegionSnapshotRequest) ProtoMessage() {} -func (x *UpdateHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1781] +func (x *UpdateKmsKeyRegionSnapshotRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1858] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201679,62 +209582,49 @@ func (x *UpdateHealthCheckRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use UpdateHealthCheckRequest.ProtoReflect.Descriptor instead. -func (*UpdateHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1781} +// Deprecated: Use UpdateKmsKeyRegionSnapshotRequest.ProtoReflect.Descriptor instead. +func (*UpdateKmsKeyRegionSnapshotRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1858} } -func (x *UpdateHealthCheckRequest) GetHealthCheck() string { +func (x *UpdateKmsKeyRegionSnapshotRequest) GetProject() string { if x != nil { - return x.HealthCheck + return x.Project } return "" } -func (x *UpdateHealthCheckRequest) GetHealthCheckResource() *HealthCheck { +func (x *UpdateKmsKeyRegionSnapshotRequest) GetRegion() string { if x != nil { - return x.HealthCheckResource + return x.Region } - return nil + return "" } -func (x *UpdateHealthCheckRequest) GetProject() string { +func (x *UpdateKmsKeyRegionSnapshotRequest) GetRegionSnapshotUpdateKmsKeyRequestResource() *RegionSnapshotUpdateKmsKeyRequest { if x != nil { - return x.Project + return x.RegionSnapshotUpdateKmsKeyRequestResource } - return "" + return nil } -func (x *UpdateHealthCheckRequest) GetRequestId() string { +func (x *UpdateKmsKeyRegionSnapshotRequest) GetRequestId() string { if x != nil && x.RequestId != nil { return *x.RequestId } return "" } -// A request message for Instances.Update. See the method description for details. -type UpdateInstanceRequest struct { +func (x *UpdateKmsKeyRegionSnapshotRequest) GetSnapshot() string { + if x != nil { + return x.Snapshot + } + return "" +} + +// A request message for Snapshots.UpdateKmsKey. See the method description for details. +type UpdateKmsKeySnapshotRequest struct { state protoimpl.MessageState `protogen:"open.v1"` - // Whether to discard local SSDs from the instance during restart - // default value is false. - DiscardLocalSsd *bool `protobuf:"varint,319517903,opt,name=discard_local_ssd,json=discardLocalSsd,proto3,oneof" json:"discard_local_ssd,omitempty"` - // Name of the instance resource to update. - Instance string `protobuf:"bytes,18257045,opt,name=instance,proto3" json:"instance,omitempty"` - // The body resource for this request - InstanceResource *Instance `protobuf:"bytes,215988344,opt,name=instance_resource,json=instanceResource,proto3" json:"instance_resource,omitempty"` - // Specifies the action to take when updating an instance even if the - // updated properties do not require it. If not specified, then - // Compute Engine acts based on the minimum action that the updated - // properties require. - // Check the MinimalAction enum for the list of possible values. - MinimalAction *string `protobuf:"bytes,270567060,opt,name=minimal_action,json=minimalAction,proto3,oneof" json:"minimal_action,omitempty"` - // Specifies the most disruptive action that can be taken on the instance - // as part of the update. Compute Engine returns an error if the - // instance properties require a more disruptive action as part of the - // instance update. Valid options from lowest to highest are - // NO_EFFECT, REFRESH, and RESTART. - // Check the MostDisruptiveAllowedAction enum for the list of possible values. - MostDisruptiveAllowedAction *string `protobuf:"bytes,66103053,opt,name=most_disruptive_allowed_action,json=mostDisruptiveAllowedAction,proto3,oneof" json:"most_disruptive_allowed_action,omitempty"` // Project ID for this request. Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` // An optional request ID to identify requests. Specify a unique request ID so @@ -201751,27 +209641,29 @@ type UpdateInstanceRequest struct { // a valid UUID with the exception that zero UUID is not supported // (00000000-0000-0000-0000-000000000000). RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` - // The name of the zone for this request. - Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // Name of the snapshot resource to update. Should conform to RFC1035. + Snapshot string `protobuf:"bytes,284874180,opt,name=snapshot,proto3" json:"snapshot,omitempty"` + // The body resource for this request + SnapshotUpdateKmsKeyRequestResource *SnapshotUpdateKmsKeyRequest `protobuf:"bytes,103145991,opt,name=snapshot_update_kms_key_request_resource,json=snapshotUpdateKmsKeyRequestResource,proto3" json:"snapshot_update_kms_key_request_resource,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } -func (x *UpdateInstanceRequest) Reset() { - *x = UpdateInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1782] +func (x *UpdateKmsKeySnapshotRequest) Reset() { + *x = UpdateKmsKeySnapshotRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1859] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } -func (x *UpdateInstanceRequest) String() string { +func (x *UpdateKmsKeySnapshotRequest) String() string { return protoimpl.X.MessageStringOf(x) } -func (*UpdateInstanceRequest) ProtoMessage() {} +func (*UpdateKmsKeySnapshotRequest) ProtoMessage() {} -func (x *UpdateInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1782] +func (x *UpdateKmsKeySnapshotRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1859] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201782,65 +209674,37 @@ func (x *UpdateInstanceRequest) ProtoReflect() protoreflect.Message { return mi.MessageOf(x) } -// Deprecated: Use UpdateInstanceRequest.ProtoReflect.Descriptor instead. -func (*UpdateInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1782} -} - -func (x *UpdateInstanceRequest) GetDiscardLocalSsd() bool { - if x != nil && x.DiscardLocalSsd != nil { - return *x.DiscardLocalSsd - } - return false -} - -func (x *UpdateInstanceRequest) GetInstance() string { - if x != nil { - return x.Instance - } - return "" +// Deprecated: Use UpdateKmsKeySnapshotRequest.ProtoReflect.Descriptor instead. +func (*UpdateKmsKeySnapshotRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1859} } -func (x *UpdateInstanceRequest) GetInstanceResource() *Instance { +func (x *UpdateKmsKeySnapshotRequest) GetProject() string { if x != nil { - return x.InstanceResource - } - return nil -} - -func (x *UpdateInstanceRequest) GetMinimalAction() string { - if x != nil && x.MinimalAction != nil { - return *x.MinimalAction + return x.Project } return "" } -func (x *UpdateInstanceRequest) GetMostDisruptiveAllowedAction() string { - if x != nil && x.MostDisruptiveAllowedAction != nil { - return *x.MostDisruptiveAllowedAction +func (x *UpdateKmsKeySnapshotRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId } return "" } -func (x *UpdateInstanceRequest) GetProject() string { +func (x *UpdateKmsKeySnapshotRequest) GetSnapshot() string { if x != nil { - return x.Project - } - return "" -} - -func (x *UpdateInstanceRequest) GetRequestId() string { - if x != nil && x.RequestId != nil { - return *x.RequestId + return x.Snapshot } return "" } -func (x *UpdateInstanceRequest) GetZone() string { +func (x *UpdateKmsKeySnapshotRequest) GetSnapshotUpdateKmsKeyRequestResource() *SnapshotUpdateKmsKeyRequest { if x != nil { - return x.Zone + return x.SnapshotUpdateKmsKeyRequestResource } - return "" + return nil } // A request message for Licenses.Update. See the method description for details. @@ -201874,7 +209738,7 @@ type UpdateLicenseRequest struct { func (x *UpdateLicenseRequest) Reset() { *x = UpdateLicenseRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1783] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1860] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -201886,7 +209750,7 @@ func (x *UpdateLicenseRequest) String() string { func (*UpdateLicenseRequest) ProtoMessage() {} func (x *UpdateLicenseRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1783] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1860] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201899,7 +209763,7 @@ func (x *UpdateLicenseRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateLicenseRequest.ProtoReflect.Descriptor instead. func (*UpdateLicenseRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1783} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1860} } func (x *UpdateLicenseRequest) GetLicense() string { @@ -201970,7 +209834,7 @@ type UpdateNetworkInterfaceInstanceRequest struct { func (x *UpdateNetworkInterfaceInstanceRequest) Reset() { *x = UpdateNetworkInterfaceInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1784] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1861] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -201982,7 +209846,7 @@ func (x *UpdateNetworkInterfaceInstanceRequest) String() string { func (*UpdateNetworkInterfaceInstanceRequest) ProtoMessage() {} func (x *UpdateNetworkInterfaceInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1784] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1861] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201995,7 +209859,7 @@ func (x *UpdateNetworkInterfaceInstanceRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use UpdateNetworkInterfaceInstanceRequest.ProtoReflect.Descriptor instead. func (*UpdateNetworkInterfaceInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1784} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1861} } func (x *UpdateNetworkInterfaceInstanceRequest) GetInstance() string { @@ -202069,7 +209933,7 @@ type UpdatePeeringNetworkRequest struct { func (x *UpdatePeeringNetworkRequest) Reset() { *x = UpdatePeeringNetworkRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1785] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1862] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -202081,7 +209945,7 @@ func (x *UpdatePeeringNetworkRequest) String() string { func (*UpdatePeeringNetworkRequest) ProtoMessage() {} func (x *UpdatePeeringNetworkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1785] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1862] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202094,7 +209958,7 @@ func (x *UpdatePeeringNetworkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdatePeeringNetworkRequest.ProtoReflect.Descriptor instead. func (*UpdatePeeringNetworkRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1785} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1862} } func (x *UpdatePeeringNetworkRequest) GetNetwork() string { @@ -202159,7 +210023,7 @@ type UpdatePerInstanceConfigsInstanceGroupManagerRequest struct { func (x *UpdatePerInstanceConfigsInstanceGroupManagerRequest) Reset() { *x = UpdatePerInstanceConfigsInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1786] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1863] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -202171,7 +210035,7 @@ func (x *UpdatePerInstanceConfigsInstanceGroupManagerRequest) String() string { func (*UpdatePerInstanceConfigsInstanceGroupManagerRequest) ProtoMessage() {} func (x *UpdatePerInstanceConfigsInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1786] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1863] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202184,7 +210048,7 @@ func (x *UpdatePerInstanceConfigsInstanceGroupManagerRequest) ProtoReflect() pro // Deprecated: Use UpdatePerInstanceConfigsInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*UpdatePerInstanceConfigsInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1786} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1863} } func (x *UpdatePerInstanceConfigsInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -202254,7 +210118,7 @@ type UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest struct { func (x *UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest) Reset() { *x = UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1787] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1864] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -202266,7 +210130,7 @@ func (x *UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest) String() str func (*UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest) ProtoMessage() {} func (x *UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1787] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1864] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202279,7 +210143,7 @@ func (x *UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest) ProtoReflect // Deprecated: Use UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest.ProtoReflect.Descriptor instead. func (*UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1787} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1864} } func (x *UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest) GetInstanceGroupManager() string { @@ -202346,7 +210210,7 @@ type UpdatePreviewFeatureRequest struct { func (x *UpdatePreviewFeatureRequest) Reset() { *x = UpdatePreviewFeatureRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1788] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1865] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -202358,7 +210222,7 @@ func (x *UpdatePreviewFeatureRequest) String() string { func (*UpdatePreviewFeatureRequest) ProtoMessage() {} func (x *UpdatePreviewFeatureRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1788] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1865] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202371,7 +210235,7 @@ func (x *UpdatePreviewFeatureRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdatePreviewFeatureRequest.ProtoReflect.Descriptor instead. func (*UpdatePreviewFeatureRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1788} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1865} } func (x *UpdatePreviewFeatureRequest) GetPreviewFeature() string { @@ -202433,7 +210297,7 @@ type UpdateRegionAutoscalerRequest struct { func (x *UpdateRegionAutoscalerRequest) Reset() { *x = UpdateRegionAutoscalerRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1789] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1866] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -202445,7 +210309,7 @@ func (x *UpdateRegionAutoscalerRequest) String() string { func (*UpdateRegionAutoscalerRequest) ProtoMessage() {} func (x *UpdateRegionAutoscalerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1789] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1866] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202458,7 +210322,7 @@ func (x *UpdateRegionAutoscalerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateRegionAutoscalerRequest.ProtoReflect.Descriptor instead. func (*UpdateRegionAutoscalerRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1789} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1866} } func (x *UpdateRegionAutoscalerRequest) GetAutoscaler() string { @@ -202527,7 +210391,7 @@ type UpdateRegionBackendServiceRequest struct { func (x *UpdateRegionBackendServiceRequest) Reset() { *x = UpdateRegionBackendServiceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1790] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1867] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -202539,7 +210403,7 @@ func (x *UpdateRegionBackendServiceRequest) String() string { func (*UpdateRegionBackendServiceRequest) ProtoMessage() {} func (x *UpdateRegionBackendServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1790] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1867] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202552,7 +210416,7 @@ func (x *UpdateRegionBackendServiceRequest) ProtoReflect() protoreflect.Message // Deprecated: Use UpdateRegionBackendServiceRequest.ProtoReflect.Descriptor instead. func (*UpdateRegionBackendServiceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1790} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1867} } func (x *UpdateRegionBackendServiceRequest) GetBackendService() string { @@ -202624,7 +210488,7 @@ type UpdateRegionCommitmentRequest struct { func (x *UpdateRegionCommitmentRequest) Reset() { *x = UpdateRegionCommitmentRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1791] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1868] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -202636,7 +210500,7 @@ func (x *UpdateRegionCommitmentRequest) String() string { func (*UpdateRegionCommitmentRequest) ProtoMessage() {} func (x *UpdateRegionCommitmentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1791] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1868] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202649,7 +210513,7 @@ func (x *UpdateRegionCommitmentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateRegionCommitmentRequest.ProtoReflect.Descriptor instead. func (*UpdateRegionCommitmentRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1791} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1868} } func (x *UpdateRegionCommitmentRequest) GetCommitment() string { @@ -202735,7 +210599,7 @@ type UpdateRegionDiskRequest struct { func (x *UpdateRegionDiskRequest) Reset() { *x = UpdateRegionDiskRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1792] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1869] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -202747,7 +210611,7 @@ func (x *UpdateRegionDiskRequest) String() string { func (*UpdateRegionDiskRequest) ProtoMessage() {} func (x *UpdateRegionDiskRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1792] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1869] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202760,7 +210624,7 @@ func (x *UpdateRegionDiskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateRegionDiskRequest.ProtoReflect.Descriptor instead. func (*UpdateRegionDiskRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1792} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1869} } func (x *UpdateRegionDiskRequest) GetDisk() string { @@ -202843,7 +210707,7 @@ type UpdateRegionHealthCheckRequest struct { func (x *UpdateRegionHealthCheckRequest) Reset() { *x = UpdateRegionHealthCheckRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1793] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1870] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -202855,7 +210719,7 @@ func (x *UpdateRegionHealthCheckRequest) String() string { func (*UpdateRegionHealthCheckRequest) ProtoMessage() {} func (x *UpdateRegionHealthCheckRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1793] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1870] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202868,7 +210732,7 @@ func (x *UpdateRegionHealthCheckRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateRegionHealthCheckRequest.ProtoReflect.Descriptor instead. func (*UpdateRegionHealthCheckRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1793} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1870} } func (x *UpdateRegionHealthCheckRequest) GetHealthCheck() string { @@ -202926,7 +210790,7 @@ type UpdateRegionUrlMapRequest struct { func (x *UpdateRegionUrlMapRequest) Reset() { *x = UpdateRegionUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1794] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1871] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -202938,7 +210802,7 @@ func (x *UpdateRegionUrlMapRequest) String() string { func (*UpdateRegionUrlMapRequest) ProtoMessage() {} func (x *UpdateRegionUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1794] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1871] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202951,7 +210815,7 @@ func (x *UpdateRegionUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateRegionUrlMapRequest.ProtoReflect.Descriptor instead. func (*UpdateRegionUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1794} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1871} } func (x *UpdateRegionUrlMapRequest) GetProject() string { @@ -203023,7 +210887,7 @@ type UpdateReservationRequest struct { func (x *UpdateReservationRequest) Reset() { *x = UpdateReservationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1795] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1872] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -203035,7 +210899,7 @@ func (x *UpdateReservationRequest) String() string { func (*UpdateReservationRequest) ProtoMessage() {} func (x *UpdateReservationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1795] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1872] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -203048,7 +210912,7 @@ func (x *UpdateReservationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateReservationRequest.ProtoReflect.Descriptor instead. func (*UpdateReservationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1795} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1872} } func (x *UpdateReservationRequest) GetPaths() string { @@ -203121,7 +210985,7 @@ type UpdateReservationSlotRequest struct { func (x *UpdateReservationSlotRequest) Reset() { *x = UpdateReservationSlotRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1796] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1873] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -203133,7 +210997,7 @@ func (x *UpdateReservationSlotRequest) String() string { func (*UpdateReservationSlotRequest) ProtoMessage() {} func (x *UpdateReservationSlotRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1796] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1873] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -203146,7 +211010,7 @@ func (x *UpdateReservationSlotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateReservationSlotRequest.ProtoReflect.Descriptor instead. func (*UpdateReservationSlotRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1796} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1873} } func (x *UpdateReservationSlotRequest) GetParentName() string { @@ -203222,7 +211086,7 @@ type UpdateRoutePolicyRouterRequest struct { func (x *UpdateRoutePolicyRouterRequest) Reset() { *x = UpdateRoutePolicyRouterRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1797] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1874] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -203234,7 +211098,7 @@ func (x *UpdateRoutePolicyRouterRequest) String() string { func (*UpdateRoutePolicyRouterRequest) ProtoMessage() {} func (x *UpdateRoutePolicyRouterRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1797] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1874] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -203247,7 +211111,7 @@ func (x *UpdateRoutePolicyRouterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateRoutePolicyRouterRequest.ProtoReflect.Descriptor instead. func (*UpdateRoutePolicyRouterRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1797} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1874} } func (x *UpdateRoutePolicyRouterRequest) GetProject() string { @@ -203316,7 +211180,7 @@ type UpdateRouterRequest struct { func (x *UpdateRouterRequest) Reset() { *x = UpdateRouterRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1798] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1875] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -203328,7 +211192,7 @@ func (x *UpdateRouterRequest) String() string { func (*UpdateRouterRequest) ProtoMessage() {} func (x *UpdateRouterRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1798] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1875] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -203341,7 +211205,7 @@ func (x *UpdateRouterRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateRouterRequest.ProtoReflect.Descriptor instead. func (*UpdateRouterRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1798} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1875} } func (x *UpdateRouterRequest) GetProject() string { @@ -203410,7 +211274,7 @@ type UpdateShieldedInstanceConfigInstanceRequest struct { func (x *UpdateShieldedInstanceConfigInstanceRequest) Reset() { *x = UpdateShieldedInstanceConfigInstanceRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1799] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1876] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -203422,7 +211286,7 @@ func (x *UpdateShieldedInstanceConfigInstanceRequest) String() string { func (*UpdateShieldedInstanceConfigInstanceRequest) ProtoMessage() {} func (x *UpdateShieldedInstanceConfigInstanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1799] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1876] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -203435,7 +211299,7 @@ func (x *UpdateShieldedInstanceConfigInstanceRequest) ProtoReflect() protoreflec // Deprecated: Use UpdateShieldedInstanceConfigInstanceRequest.ProtoReflect.Descriptor instead. func (*UpdateShieldedInstanceConfigInstanceRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1799} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1876} } func (x *UpdateShieldedInstanceConfigInstanceRequest) GetInstance() string { @@ -203506,7 +211370,7 @@ type UpdateStoragePoolRequest struct { func (x *UpdateStoragePoolRequest) Reset() { *x = UpdateStoragePoolRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1800] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1877] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -203518,7 +211382,7 @@ func (x *UpdateStoragePoolRequest) String() string { func (*UpdateStoragePoolRequest) ProtoMessage() {} func (x *UpdateStoragePoolRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1800] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1877] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -203531,7 +211395,7 @@ func (x *UpdateStoragePoolRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateStoragePoolRequest.ProtoReflect.Descriptor instead. func (*UpdateStoragePoolRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1800} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1877} } func (x *UpdateStoragePoolRequest) GetProject() string { @@ -203605,7 +211469,7 @@ type UpdateUrlMapRequest struct { func (x *UpdateUrlMapRequest) Reset() { *x = UpdateUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1801] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1878] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -203617,7 +211481,7 @@ func (x *UpdateUrlMapRequest) String() string { func (*UpdateUrlMapRequest) ProtoMessage() {} func (x *UpdateUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1801] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1878] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -203630,7 +211494,7 @@ func (x *UpdateUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateUrlMapRequest.ProtoReflect.Descriptor instead. func (*UpdateUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1801} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1878} } func (x *UpdateUrlMapRequest) GetProject() string { @@ -203661,6 +211525,100 @@ func (x *UpdateUrlMapRequest) GetUrlMapResource() *UrlMap { return nil } +// A request message for ZoneVmExtensionPolicies.Update. See the method description for details. +type UpdateZoneVmExtensionPolicyRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Project ID for this request. + Project string `protobuf:"bytes,227560217,opt,name=project,proto3" json:"project,omitempty"` + // An optional request ID to identify requests. Specify a unique request ID so + // that if you must retry your request, the server will know to ignore the + // request if it has already been completed. + // + // For example, consider a situation where you make an initial request and + // the request times out. If you make the request again with the same + // request ID, the server can check if original operation with the same + // request ID was received, and if so, will ignore the second request. This + // prevents clients from accidentally creating duplicate commitments. + // + // The request ID must be + // a valid UUID with the exception that zero UUID is not supported + // (00000000-0000-0000-0000-000000000000). + RequestId *string `protobuf:"bytes,37109963,opt,name=request_id,json=requestId,proto3,oneof" json:"request_id,omitempty"` + // Name of the zone VM extension policy to update. + VmExtensionPolicy string `protobuf:"bytes,331532730,opt,name=vm_extension_policy,json=vmExtensionPolicy,proto3" json:"vm_extension_policy,omitempty"` + // The body resource for this request + VmExtensionPolicyResource *VmExtensionPolicy `protobuf:"bytes,515669235,opt,name=vm_extension_policy_resource,json=vmExtensionPolicyResource,proto3" json:"vm_extension_policy_resource,omitempty"` + // Name of the zone for this request. + Zone string `protobuf:"bytes,3744684,opt,name=zone,proto3" json:"zone,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *UpdateZoneVmExtensionPolicyRequest) Reset() { + *x = UpdateZoneVmExtensionPolicyRequest{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1879] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *UpdateZoneVmExtensionPolicyRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*UpdateZoneVmExtensionPolicyRequest) ProtoMessage() {} + +func (x *UpdateZoneVmExtensionPolicyRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1879] + 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 UpdateZoneVmExtensionPolicyRequest.ProtoReflect.Descriptor instead. +func (*UpdateZoneVmExtensionPolicyRequest) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1879} +} + +func (x *UpdateZoneVmExtensionPolicyRequest) GetProject() string { + if x != nil { + return x.Project + } + return "" +} + +func (x *UpdateZoneVmExtensionPolicyRequest) GetRequestId() string { + if x != nil && x.RequestId != nil { + return *x.RequestId + } + return "" +} + +func (x *UpdateZoneVmExtensionPolicyRequest) GetVmExtensionPolicy() string { + if x != nil { + return x.VmExtensionPolicy + } + return "" +} + +func (x *UpdateZoneVmExtensionPolicyRequest) GetVmExtensionPolicyResource() *VmExtensionPolicy { + if x != nil { + return x.VmExtensionPolicyResource + } + return nil +} + +func (x *UpdateZoneVmExtensionPolicyRequest) GetZone() string { + if x != nil { + return x.Zone + } + return "" +} + // Represents a URL Map resource. // // Compute Engine has two URL Map resources: @@ -203826,7 +211784,7 @@ type UrlMap struct { func (x *UrlMap) Reset() { *x = UrlMap{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1802] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1880] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -203838,7 +211796,7 @@ func (x *UrlMap) String() string { func (*UrlMap) ProtoMessage() {} func (x *UrlMap) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1802] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1880] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -203851,7 +211809,7 @@ func (x *UrlMap) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlMap.ProtoReflect.Descriptor instead. func (*UrlMap) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1802} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1880} } func (x *UrlMap) GetCreationTimestamp() string { @@ -203991,7 +211949,7 @@ type UrlMapList struct { func (x *UrlMapList) Reset() { *x = UrlMapList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1803] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1881] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204003,7 +211961,7 @@ func (x *UrlMapList) String() string { func (*UrlMapList) ProtoMessage() {} func (x *UrlMapList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1803] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1881] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204016,7 +211974,7 @@ func (x *UrlMapList) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlMapList.ProtoReflect.Descriptor instead. func (*UrlMapList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1803} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1881} } func (x *UrlMapList) GetId() string { @@ -204070,7 +212028,7 @@ type UrlMapReference struct { func (x *UrlMapReference) Reset() { *x = UrlMapReference{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1804] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1882] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204082,7 +212040,7 @@ func (x *UrlMapReference) String() string { func (*UrlMapReference) ProtoMessage() {} func (x *UrlMapReference) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1804] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1882] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204095,7 +212053,7 @@ func (x *UrlMapReference) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlMapReference.ProtoReflect.Descriptor instead. func (*UrlMapReference) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1804} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1882} } func (x *UrlMapReference) GetUrlMap() string { @@ -204150,7 +212108,7 @@ type UrlMapTest struct { func (x *UrlMapTest) Reset() { *x = UrlMapTest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1805] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1883] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204162,7 +212120,7 @@ func (x *UrlMapTest) String() string { func (*UrlMapTest) ProtoMessage() {} func (x *UrlMapTest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1805] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1883] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204175,7 +212133,7 @@ func (x *UrlMapTest) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlMapTest.ProtoReflect.Descriptor instead. func (*UrlMapTest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1805} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1883} } func (x *UrlMapTest) GetDescription() string { @@ -204240,7 +212198,7 @@ type UrlMapTestHeader struct { func (x *UrlMapTestHeader) Reset() { *x = UrlMapTestHeader{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1806] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1884] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204252,7 +212210,7 @@ func (x *UrlMapTestHeader) String() string { func (*UrlMapTestHeader) ProtoMessage() {} func (x *UrlMapTestHeader) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1806] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1884] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204265,7 +212223,7 @@ func (x *UrlMapTestHeader) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlMapTestHeader.ProtoReflect.Descriptor instead. func (*UrlMapTestHeader) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1806} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1884} } func (x *UrlMapTestHeader) GetName() string { @@ -204299,7 +212257,7 @@ type UrlMapValidationResult struct { func (x *UrlMapValidationResult) Reset() { *x = UrlMapValidationResult{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1807] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1885] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204311,7 +212269,7 @@ func (x *UrlMapValidationResult) String() string { func (*UrlMapValidationResult) ProtoMessage() {} func (x *UrlMapValidationResult) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1807] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1885] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204324,7 +212282,7 @@ func (x *UrlMapValidationResult) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlMapValidationResult.ProtoReflect.Descriptor instead. func (*UrlMapValidationResult) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1807} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1885} } func (x *UrlMapValidationResult) GetLoadErrors() []string { @@ -204381,7 +212339,7 @@ type UrlMapsAggregatedList struct { func (x *UrlMapsAggregatedList) Reset() { *x = UrlMapsAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1808] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1886] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204393,7 +212351,7 @@ func (x *UrlMapsAggregatedList) String() string { func (*UrlMapsAggregatedList) ProtoMessage() {} func (x *UrlMapsAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1808] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1886] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204406,7 +212364,7 @@ func (x *UrlMapsAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlMapsAggregatedList.ProtoReflect.Descriptor instead. func (*UrlMapsAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1808} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1886} } func (x *UrlMapsAggregatedList) GetId() string { @@ -204471,7 +212429,7 @@ type UrlMapsScopedList struct { func (x *UrlMapsScopedList) Reset() { *x = UrlMapsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1809] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1887] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204483,7 +212441,7 @@ func (x *UrlMapsScopedList) String() string { func (*UrlMapsScopedList) ProtoMessage() {} func (x *UrlMapsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1809] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1887] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204496,7 +212454,7 @@ func (x *UrlMapsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlMapsScopedList.ProtoReflect.Descriptor instead. func (*UrlMapsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1809} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1887} } func (x *UrlMapsScopedList) GetUrlMaps() []*UrlMap { @@ -204540,7 +212498,7 @@ type UrlMapsValidateRequest struct { func (x *UrlMapsValidateRequest) Reset() { *x = UrlMapsValidateRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1810] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1888] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204552,7 +212510,7 @@ func (x *UrlMapsValidateRequest) String() string { func (*UrlMapsValidateRequest) ProtoMessage() {} func (x *UrlMapsValidateRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1810] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1888] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204565,7 +212523,7 @@ func (x *UrlMapsValidateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlMapsValidateRequest.ProtoReflect.Descriptor instead. func (*UrlMapsValidateRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1810} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1888} } func (x *UrlMapsValidateRequest) GetLoadBalancingSchemes() []string { @@ -204591,7 +212549,7 @@ type UrlMapsValidateResponse struct { func (x *UrlMapsValidateResponse) Reset() { *x = UrlMapsValidateResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1811] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1889] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204603,7 +212561,7 @@ func (x *UrlMapsValidateResponse) String() string { func (*UrlMapsValidateResponse) ProtoMessage() {} func (x *UrlMapsValidateResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1811] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1889] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204616,7 +212574,7 @@ func (x *UrlMapsValidateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlMapsValidateResponse.ProtoReflect.Descriptor instead. func (*UrlMapsValidateResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1811} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1889} } func (x *UrlMapsValidateResponse) GetResult() *UrlMapValidationResult { @@ -204671,7 +212629,7 @@ type UrlRewrite struct { func (x *UrlRewrite) Reset() { *x = UrlRewrite{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1812] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1890] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204683,7 +212641,7 @@ func (x *UrlRewrite) String() string { func (*UrlRewrite) ProtoMessage() {} func (x *UrlRewrite) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1812] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1890] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204696,7 +212654,7 @@ func (x *UrlRewrite) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlRewrite.ProtoReflect.Descriptor instead. func (*UrlRewrite) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1812} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1890} } func (x *UrlRewrite) GetHostRewrite() string { @@ -204765,7 +212723,7 @@ type UsableSubnetwork struct { func (x *UsableSubnetwork) Reset() { *x = UsableSubnetwork{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1813] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1891] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204777,7 +212735,7 @@ func (x *UsableSubnetwork) String() string { func (*UsableSubnetwork) ProtoMessage() {} func (x *UsableSubnetwork) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1813] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1891] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204790,7 +212748,7 @@ func (x *UsableSubnetwork) ProtoReflect() protoreflect.Message { // Deprecated: Use UsableSubnetwork.ProtoReflect.Descriptor instead. func (*UsableSubnetwork) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1813} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1891} } func (x *UsableSubnetwork) GetExternalIpv6Prefix() string { @@ -204880,7 +212838,7 @@ type UsableSubnetworkSecondaryRange struct { func (x *UsableSubnetworkSecondaryRange) Reset() { *x = UsableSubnetworkSecondaryRange{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1814] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1892] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204892,7 +212850,7 @@ func (x *UsableSubnetworkSecondaryRange) String() string { func (*UsableSubnetworkSecondaryRange) ProtoMessage() {} func (x *UsableSubnetworkSecondaryRange) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1814] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1892] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204905,7 +212863,7 @@ func (x *UsableSubnetworkSecondaryRange) ProtoReflect() protoreflect.Message { // Deprecated: Use UsableSubnetworkSecondaryRange.ProtoReflect.Descriptor instead. func (*UsableSubnetworkSecondaryRange) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1814} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1892} } func (x *UsableSubnetworkSecondaryRange) GetIpCidrRange() string { @@ -204955,7 +212913,7 @@ type UsableSubnetworksAggregatedList struct { func (x *UsableSubnetworksAggregatedList) Reset() { *x = UsableSubnetworksAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1815] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1893] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204967,7 +212925,7 @@ func (x *UsableSubnetworksAggregatedList) String() string { func (*UsableSubnetworksAggregatedList) ProtoMessage() {} func (x *UsableSubnetworksAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1815] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1893] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204980,7 +212938,7 @@ func (x *UsableSubnetworksAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use UsableSubnetworksAggregatedList.ProtoReflect.Descriptor instead. func (*UsableSubnetworksAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1815} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1893} } func (x *UsableSubnetworksAggregatedList) GetId() string { @@ -205059,7 +213017,7 @@ type UsageExportLocation struct { func (x *UsageExportLocation) Reset() { *x = UsageExportLocation{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1816] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1894] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -205071,7 +213029,7 @@ func (x *UsageExportLocation) String() string { func (*UsageExportLocation) ProtoMessage() {} func (x *UsageExportLocation) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1816] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1894] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205084,7 +213042,7 @@ func (x *UsageExportLocation) ProtoReflect() protoreflect.Message { // Deprecated: Use UsageExportLocation.ProtoReflect.Descriptor instead. func (*UsageExportLocation) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1816} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1894} } func (x *UsageExportLocation) GetBucketName() string { @@ -205118,7 +213076,7 @@ type ValidateRegionUrlMapRequest struct { func (x *ValidateRegionUrlMapRequest) Reset() { *x = ValidateRegionUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1817] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1895] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -205130,7 +213088,7 @@ func (x *ValidateRegionUrlMapRequest) String() string { func (*ValidateRegionUrlMapRequest) ProtoMessage() {} func (x *ValidateRegionUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1817] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1895] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205143,7 +213101,7 @@ func (x *ValidateRegionUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ValidateRegionUrlMapRequest.ProtoReflect.Descriptor instead. func (*ValidateRegionUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1817} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1895} } func (x *ValidateRegionUrlMapRequest) GetProject() string { @@ -205189,7 +213147,7 @@ type ValidateUrlMapRequest struct { func (x *ValidateUrlMapRequest) Reset() { *x = ValidateUrlMapRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1818] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1896] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -205201,7 +213159,7 @@ func (x *ValidateUrlMapRequest) String() string { func (*ValidateUrlMapRequest) ProtoMessage() {} func (x *ValidateUrlMapRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1818] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1896] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205214,7 +213172,7 @@ func (x *ValidateUrlMapRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ValidateUrlMapRequest.ProtoReflect.Descriptor instead. func (*ValidateUrlMapRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1818} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1896} } func (x *ValidateUrlMapRequest) GetProject() string { @@ -205250,7 +213208,7 @@ type VmEndpointNatMappings struct { func (x *VmEndpointNatMappings) Reset() { *x = VmEndpointNatMappings{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1819] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1897] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -205262,7 +213220,7 @@ func (x *VmEndpointNatMappings) String() string { func (*VmEndpointNatMappings) ProtoMessage() {} func (x *VmEndpointNatMappings) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1819] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1897] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205275,7 +213233,7 @@ func (x *VmEndpointNatMappings) ProtoReflect() protoreflect.Message { // Deprecated: Use VmEndpointNatMappings.ProtoReflect.Descriptor instead. func (*VmEndpointNatMappings) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1819} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1897} } func (x *VmEndpointNatMappings) GetInstanceName() string { @@ -205326,7 +213284,7 @@ type VmEndpointNatMappingsInterfaceNatMappings struct { func (x *VmEndpointNatMappingsInterfaceNatMappings) Reset() { *x = VmEndpointNatMappingsInterfaceNatMappings{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1820] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1898] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -205338,7 +213296,7 @@ func (x *VmEndpointNatMappingsInterfaceNatMappings) String() string { func (*VmEndpointNatMappingsInterfaceNatMappings) ProtoMessage() {} func (x *VmEndpointNatMappingsInterfaceNatMappings) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1820] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1898] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205351,7 +213309,7 @@ func (x *VmEndpointNatMappingsInterfaceNatMappings) ProtoReflect() protoreflect. // Deprecated: Use VmEndpointNatMappingsInterfaceNatMappings.ProtoReflect.Descriptor instead. func (*VmEndpointNatMappingsInterfaceNatMappings) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1820} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1898} } func (x *VmEndpointNatMappingsInterfaceNatMappings) GetDrainNatIpPortRanges() []string { @@ -205435,7 +213393,7 @@ type VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings struct { func (x *VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings) Reset() { *x = VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1821] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1899] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -205447,7 +213405,7 @@ func (x *VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings) String() stri func (*VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings) ProtoMessage() {} func (x *VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1821] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1899] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205460,7 +213418,7 @@ func (x *VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings) ProtoReflect( // Deprecated: Use VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings.ProtoReflect.Descriptor instead. func (*VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1821} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1899} } func (x *VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings) GetDrainNatIpPortRanges() []string { @@ -205525,7 +213483,7 @@ type VmEndpointNatMappingsList struct { func (x *VmEndpointNatMappingsList) Reset() { *x = VmEndpointNatMappingsList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1822] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1900] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -205537,7 +213495,7 @@ func (x *VmEndpointNatMappingsList) String() string { func (*VmEndpointNatMappingsList) ProtoMessage() {} func (x *VmEndpointNatMappingsList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1822] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1900] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205550,7 +213508,7 @@ func (x *VmEndpointNatMappingsList) ProtoReflect() protoreflect.Message { // Deprecated: Use VmEndpointNatMappingsList.ProtoReflect.Descriptor instead. func (*VmEndpointNatMappingsList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1822} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1900} } func (x *VmEndpointNatMappingsList) GetId() string { @@ -205595,6 +213553,464 @@ func (x *VmEndpointNatMappingsList) GetWarning() *Warning { return nil } +// Represents a VM extension policy. +type VmExtensionPolicy struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Output only. [Output Only] Creation timestamp inRFC3339 + // text format. + CreationTimestamp *string `protobuf:"bytes,30525366,opt,name=creation_timestamp,json=creationTimestamp,proto3,oneof" json:"creation_timestamp,omitempty"` + // An optional description of this resource. + Description *string `protobuf:"bytes,422937596,opt,name=description,proto3,oneof" json:"description,omitempty"` + // Required. A map of extension names (for example, "ops-agent") to their corresponding + // policy configurations. + ExtensionPolicies map[string]*VmExtensionPolicyExtensionPolicy `protobuf:"bytes,227761488,rep,name=extension_policies,json=extensionPolicies,proto3" json:"extension_policies,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + // Optional. Output only. [Output Only] Link to the global policy that manages this zone policy, if + // applicable. + GlobalResourceLink *string `protobuf:"bytes,516569583,opt,name=global_resource_link,json=globalResourceLink,proto3,oneof" json:"global_resource_link,omitempty"` + // Output only. [Output Only] The unique identifier for the resource. This identifier is + // defined by the server. + Id *uint64 `protobuf:"varint,3355,opt,name=id,proto3,oneof" json:"id,omitempty"` + // Optional. Selectors to target VMs for this policy. VMs are selected if they match + // *any* of the provided selectors (logical OR). If this list is empty, the + // policy applies to all VMs. + InstanceSelectors []*VmExtensionPolicyInstanceSelector `protobuf:"bytes,520298826,rep,name=instance_selectors,json=instanceSelectors,proto3" json:"instance_selectors,omitempty"` + // Output only. [Output Only] Type of the resource. Alwayscompute#vmExtensionPolicy. + Kind *string `protobuf:"bytes,3292052,opt,name=kind,proto3,oneof" json:"kind,omitempty"` + // Optional. Output only. [Output Only] Indicates if this policy is managed by a global policy. + ManagedByGlobal *bool `protobuf:"varint,88605675,opt,name=managed_by_global,json=managedByGlobal,proto3,oneof" json:"managed_by_global,omitempty"` + // Name of the resource. Provided by the client when the resource is created. + // The name must be 1-63 characters long, and comply withRFC1035. + // Specifically, the name must be 1-63 characters long and match the regular + // expression `[a-z]([-a-z0-9]*[a-z0-9])?` + // which means the first character must be a lowercase letter, and all + // following characters must be a dash, lowercase letter, or digit, except + // the last character, which cannot be a dash. + Name *string `protobuf:"bytes,3373707,opt,name=name,proto3,oneof" json:"name,omitempty"` + // Optional. Priority of this policy. Used to resolve conflicts when multiple policies + // apply to the same extension. + // The policy priority is an integer from 0 to 65535, inclusive. Lower + // integers indicate higher priorities. If you do not specify a priority when + // creating a rule, it is assigned a priority of 1000. If priorities are + // equal, the policy with the most recent creation timestamp takes precedence. + Priority *int32 `protobuf:"varint,445151652,opt,name=priority,proto3,oneof" json:"priority,omitempty"` + // Output only. [Output Only] Server-defined fully-qualified URL for this resource. + SelfLink *string `protobuf:"bytes,456214797,opt,name=self_link,json=selfLink,proto3,oneof" json:"self_link,omitempty"` + // Output only. [Output Only] Server-defined URL for this resource's resource id. + SelfLinkWithId *string `protobuf:"bytes,44520962,opt,name=self_link_with_id,json=selfLinkWithId,proto3,oneof" json:"self_link_with_id,omitempty"` + // Optional. Output only. [Output Only] Current state of the policy: ACTIVE or DELETING. + // Check the State enum for the list of possible values. + State *string `protobuf:"bytes,109757585,opt,name=state,proto3,oneof" json:"state,omitempty"` + // Output only. [Output Only] Update timestamp inRFC3339 + // text format. + UpdateTimestamp *string `protobuf:"bytes,120894752,opt,name=update_timestamp,json=updateTimestamp,proto3,oneof" json:"update_timestamp,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *VmExtensionPolicy) Reset() { + *x = VmExtensionPolicy{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1901] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *VmExtensionPolicy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*VmExtensionPolicy) ProtoMessage() {} + +func (x *VmExtensionPolicy) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1901] + 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 VmExtensionPolicy.ProtoReflect.Descriptor instead. +func (*VmExtensionPolicy) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1901} +} + +func (x *VmExtensionPolicy) GetCreationTimestamp() string { + if x != nil && x.CreationTimestamp != nil { + return *x.CreationTimestamp + } + return "" +} + +func (x *VmExtensionPolicy) GetDescription() string { + if x != nil && x.Description != nil { + return *x.Description + } + return "" +} + +func (x *VmExtensionPolicy) GetExtensionPolicies() map[string]*VmExtensionPolicyExtensionPolicy { + if x != nil { + return x.ExtensionPolicies + } + return nil +} + +func (x *VmExtensionPolicy) GetGlobalResourceLink() string { + if x != nil && x.GlobalResourceLink != nil { + return *x.GlobalResourceLink + } + return "" +} + +func (x *VmExtensionPolicy) GetId() uint64 { + if x != nil && x.Id != nil { + return *x.Id + } + return 0 +} + +func (x *VmExtensionPolicy) GetInstanceSelectors() []*VmExtensionPolicyInstanceSelector { + if x != nil { + return x.InstanceSelectors + } + return nil +} + +func (x *VmExtensionPolicy) GetKind() string { + if x != nil && x.Kind != nil { + return *x.Kind + } + return "" +} + +func (x *VmExtensionPolicy) GetManagedByGlobal() bool { + if x != nil && x.ManagedByGlobal != nil { + return *x.ManagedByGlobal + } + return false +} + +func (x *VmExtensionPolicy) GetName() string { + if x != nil && x.Name != nil { + return *x.Name + } + return "" +} + +func (x *VmExtensionPolicy) GetPriority() int32 { + if x != nil && x.Priority != nil { + return *x.Priority + } + return 0 +} + +func (x *VmExtensionPolicy) GetSelfLink() string { + if x != nil && x.SelfLink != nil { + return *x.SelfLink + } + return "" +} + +func (x *VmExtensionPolicy) GetSelfLinkWithId() string { + if x != nil && x.SelfLinkWithId != nil { + return *x.SelfLinkWithId + } + return "" +} + +func (x *VmExtensionPolicy) GetState() string { + if x != nil && x.State != nil { + return *x.State + } + return "" +} + +func (x *VmExtensionPolicy) GetUpdateTimestamp() string { + if x != nil && x.UpdateTimestamp != nil { + return *x.UpdateTimestamp + } + return "" +} + +// Configuration for a specific VM extension. +type VmExtensionPolicyExtensionPolicy struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional. The specific version of the extension to install. If not set, the latest + // version is used. + PinnedVersion *string `protobuf:"bytes,446267249,opt,name=pinned_version,json=pinnedVersion,proto3,oneof" json:"pinned_version,omitempty"` + // Optional. String-based configuration data for the extension. + StringConfig *string `protobuf:"bytes,318905136,opt,name=string_config,json=stringConfig,proto3,oneof" json:"string_config,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *VmExtensionPolicyExtensionPolicy) Reset() { + *x = VmExtensionPolicyExtensionPolicy{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1902] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *VmExtensionPolicyExtensionPolicy) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*VmExtensionPolicyExtensionPolicy) ProtoMessage() {} + +func (x *VmExtensionPolicyExtensionPolicy) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1902] + 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 VmExtensionPolicyExtensionPolicy.ProtoReflect.Descriptor instead. +func (*VmExtensionPolicyExtensionPolicy) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1902} +} + +func (x *VmExtensionPolicyExtensionPolicy) GetPinnedVersion() string { + if x != nil && x.PinnedVersion != nil { + return *x.PinnedVersion + } + return "" +} + +func (x *VmExtensionPolicyExtensionPolicy) GetStringConfig() string { + if x != nil && x.StringConfig != nil { + return *x.StringConfig + } + return "" +} + +// Defines how to select VMs to apply a zone VM extension policy. +type VmExtensionPolicyInstanceSelector struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional. LabelSelector selects VMs based on their labels. + LabelSelector *VmExtensionPolicyLabelSelector `protobuf:"bytes,349780170,opt,name=label_selector,json=labelSelector,proto3,oneof" json:"label_selector,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *VmExtensionPolicyInstanceSelector) Reset() { + *x = VmExtensionPolicyInstanceSelector{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1903] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *VmExtensionPolicyInstanceSelector) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*VmExtensionPolicyInstanceSelector) ProtoMessage() {} + +func (x *VmExtensionPolicyInstanceSelector) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1903] + 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 VmExtensionPolicyInstanceSelector.ProtoReflect.Descriptor instead. +func (*VmExtensionPolicyInstanceSelector) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1903} +} + +func (x *VmExtensionPolicyInstanceSelector) GetLabelSelector() *VmExtensionPolicyLabelSelector { + if x != nil { + return x.LabelSelector + } + return nil +} + +// A LabelSelector is applied to a VM only if it matches all the specified +// labels. +type VmExtensionPolicyLabelSelector struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional. A map of key-value pairs representing VM labels. + // VMs must have all of the labels specified in this map to be selected + // (logical AND). + // + // e.g. If the `inclusion_labels` are {("key1", "value1"), ("key2", + // "value2")}, the VM labels must contain both ("key1", "value1") and + // ("key2", "value2") to be selected. If the VM labels are ("key1", + // "value1") and ("something", "else"), it will not be selected. + // + // If the map is empty, it's considered a match. + InclusionLabels map[string]string `protobuf:"bytes,501312642,rep,name=inclusion_labels,json=inclusionLabels,proto3" json:"inclusion_labels,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *VmExtensionPolicyLabelSelector) Reset() { + *x = VmExtensionPolicyLabelSelector{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1904] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *VmExtensionPolicyLabelSelector) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*VmExtensionPolicyLabelSelector) ProtoMessage() {} + +func (x *VmExtensionPolicyLabelSelector) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1904] + 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 VmExtensionPolicyLabelSelector.ProtoReflect.Descriptor instead. +func (*VmExtensionPolicyLabelSelector) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1904} +} + +func (x *VmExtensionPolicyLabelSelector) GetInclusionLabels() map[string]string { + if x != nil { + return x.InclusionLabels + } + return nil +} + +type VmExtensionPolicyList struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Output only. [Output Only] Fingerprint of this resource. A hash of the contents stored + // in this object. This field is used in optimistic locking. This field will + // be ignored when inserting a VmExtensionPolicy. An up-to-date + // fingerprint must be provided in order to update the VmExtensionPolicy. + // + // To see the latest value of the fingerprint, make a get() request to + // retrieve a VmExtensionPolicy. + Etag *string `protobuf:"bytes,3123477,opt,name=etag,proto3,oneof" json:"etag,omitempty"` + // Output only. [Output Only] Unique identifier for the resource; defined by the server. + Id *string `protobuf:"bytes,3355,opt,name=id,proto3,oneof" json:"id,omitempty"` + // Output only. [Output Only] A list of VM extension policy resources. + Items []*VmExtensionPolicy `protobuf:"bytes,100526016,rep,name=items,proto3" json:"items,omitempty"` + // Output only. Type of resource. + Kind *string `protobuf:"bytes,3292052,opt,name=kind,proto3,oneof" json:"kind,omitempty"` + // Output only. [Output Only] This token allows you to get the next page of results for + // list requests. If the number of results is larger thanmaxResults, use the nextPageToken as a value for + // the query parameter pageToken in the next list request. + // Subsequent list requests will have their own nextPageToken to + // continue paging through the results. + NextPageToken *string `protobuf:"bytes,79797525,opt,name=next_page_token,json=nextPageToken,proto3,oneof" json:"next_page_token,omitempty"` + // Output only. [Output Only] Server-defined URL for this resource. + SelfLink *string `protobuf:"bytes,456214797,opt,name=self_link,json=selfLink,proto3,oneof" json:"self_link,omitempty"` + // Output only. [Output Only] Unreachable resources. + Unreachables []string `protobuf:"bytes,243372063,rep,name=unreachables,proto3" json:"unreachables,omitempty"` + // Output only. [Output Only] Informational warning message. + Warning *Warning `protobuf:"bytes,50704284,opt,name=warning,proto3,oneof" json:"warning,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *VmExtensionPolicyList) Reset() { + *x = VmExtensionPolicyList{} + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1905] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *VmExtensionPolicyList) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*VmExtensionPolicyList) ProtoMessage() {} + +func (x *VmExtensionPolicyList) ProtoReflect() protoreflect.Message { + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1905] + 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 VmExtensionPolicyList.ProtoReflect.Descriptor instead. +func (*VmExtensionPolicyList) Descriptor() ([]byte, []int) { + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1905} +} + +func (x *VmExtensionPolicyList) GetEtag() string { + if x != nil && x.Etag != nil { + return *x.Etag + } + return "" +} + +func (x *VmExtensionPolicyList) GetId() string { + if x != nil && x.Id != nil { + return *x.Id + } + return "" +} + +func (x *VmExtensionPolicyList) GetItems() []*VmExtensionPolicy { + if x != nil { + return x.Items + } + return nil +} + +func (x *VmExtensionPolicyList) GetKind() string { + if x != nil && x.Kind != nil { + return *x.Kind + } + return "" +} + +func (x *VmExtensionPolicyList) GetNextPageToken() string { + if x != nil && x.NextPageToken != nil { + return *x.NextPageToken + } + return "" +} + +func (x *VmExtensionPolicyList) GetSelfLink() string { + if x != nil && x.SelfLink != nil { + return *x.SelfLink + } + return "" +} + +func (x *VmExtensionPolicyList) GetUnreachables() []string { + if x != nil { + return x.Unreachables + } + return nil +} + +func (x *VmExtensionPolicyList) GetWarning() *Warning { + if x != nil { + return x.Warning + } + return nil +} + // Represents a HA VPN gateway. // // HA VPN is a high-availability (HA) Cloud VPN solution that lets you securely @@ -205663,7 +214079,7 @@ type VpnGateway struct { func (x *VpnGateway) Reset() { *x = VpnGateway{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1823] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1906] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -205675,7 +214091,7 @@ func (x *VpnGateway) String() string { func (*VpnGateway) ProtoMessage() {} func (x *VpnGateway) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1823] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1906] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205688,7 +214104,7 @@ func (x *VpnGateway) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnGateway.ProtoReflect.Descriptor instead. func (*VpnGateway) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1823} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1906} } func (x *VpnGateway) GetCreationTimestamp() string { @@ -205816,7 +214232,7 @@ type VpnGatewayAggregatedList struct { func (x *VpnGatewayAggregatedList) Reset() { *x = VpnGatewayAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1824] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1907] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -205828,7 +214244,7 @@ func (x *VpnGatewayAggregatedList) String() string { func (*VpnGatewayAggregatedList) ProtoMessage() {} func (x *VpnGatewayAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1824] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1907] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205841,7 +214257,7 @@ func (x *VpnGatewayAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnGatewayAggregatedList.ProtoReflect.Descriptor instead. func (*VpnGatewayAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1824} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1907} } func (x *VpnGatewayAggregatedList) GetId() string { @@ -205919,7 +214335,7 @@ type VpnGatewayList struct { func (x *VpnGatewayList) Reset() { *x = VpnGatewayList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1825] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1908] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -205931,7 +214347,7 @@ func (x *VpnGatewayList) String() string { func (*VpnGatewayList) ProtoMessage() {} func (x *VpnGatewayList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1825] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1908] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205944,7 +214360,7 @@ func (x *VpnGatewayList) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnGatewayList.ProtoReflect.Descriptor instead. func (*VpnGatewayList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1825} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1908} } func (x *VpnGatewayList) GetId() string { @@ -206012,7 +214428,7 @@ type VpnGatewayParams struct { func (x *VpnGatewayParams) Reset() { *x = VpnGatewayParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1826] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1909] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -206024,7 +214440,7 @@ func (x *VpnGatewayParams) String() string { func (*VpnGatewayParams) ProtoMessage() {} func (x *VpnGatewayParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1826] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1909] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206037,7 +214453,7 @@ func (x *VpnGatewayParams) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnGatewayParams.ProtoReflect.Descriptor instead. func (*VpnGatewayParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1826} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1909} } func (x *VpnGatewayParams) GetResourceManagerTags() map[string]string { @@ -206057,7 +214473,7 @@ type VpnGatewayStatus struct { func (x *VpnGatewayStatus) Reset() { *x = VpnGatewayStatus{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1827] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1910] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -206069,7 +214485,7 @@ func (x *VpnGatewayStatus) String() string { func (*VpnGatewayStatus) ProtoMessage() {} func (x *VpnGatewayStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1827] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1910] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206082,7 +214498,7 @@ func (x *VpnGatewayStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnGatewayStatus.ProtoReflect.Descriptor instead. func (*VpnGatewayStatus) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1827} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1910} } func (x *VpnGatewayStatus) GetVpnConnections() []*VpnGatewayStatusVpnConnection { @@ -206111,7 +214527,7 @@ type VpnGatewayStatusHighAvailabilityRequirementState struct { func (x *VpnGatewayStatusHighAvailabilityRequirementState) Reset() { *x = VpnGatewayStatusHighAvailabilityRequirementState{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1828] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1911] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -206123,7 +214539,7 @@ func (x *VpnGatewayStatusHighAvailabilityRequirementState) String() string { func (*VpnGatewayStatusHighAvailabilityRequirementState) ProtoMessage() {} func (x *VpnGatewayStatusHighAvailabilityRequirementState) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1828] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1911] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206136,7 +214552,7 @@ func (x *VpnGatewayStatusHighAvailabilityRequirementState) ProtoReflect() protor // Deprecated: Use VpnGatewayStatusHighAvailabilityRequirementState.ProtoReflect.Descriptor instead. func (*VpnGatewayStatusHighAvailabilityRequirementState) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1828} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1911} } func (x *VpnGatewayStatusHighAvailabilityRequirementState) GetState() string { @@ -206170,7 +214586,7 @@ type VpnGatewayStatusTunnel struct { func (x *VpnGatewayStatusTunnel) Reset() { *x = VpnGatewayStatusTunnel{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1829] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1912] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -206182,7 +214598,7 @@ func (x *VpnGatewayStatusTunnel) String() string { func (*VpnGatewayStatusTunnel) ProtoMessage() {} func (x *VpnGatewayStatusTunnel) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1829] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1912] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206195,7 +214611,7 @@ func (x *VpnGatewayStatusTunnel) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnGatewayStatusTunnel.ProtoReflect.Descriptor instead. func (*VpnGatewayStatusTunnel) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1829} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1912} } func (x *VpnGatewayStatusTunnel) GetLocalGatewayInterface() uint32 { @@ -206242,7 +214658,7 @@ type VpnGatewayStatusVpnConnection struct { func (x *VpnGatewayStatusVpnConnection) Reset() { *x = VpnGatewayStatusVpnConnection{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1830] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1913] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -206254,7 +214670,7 @@ func (x *VpnGatewayStatusVpnConnection) String() string { func (*VpnGatewayStatusVpnConnection) ProtoMessage() {} func (x *VpnGatewayStatusVpnConnection) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1830] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1913] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206267,7 +214683,7 @@ func (x *VpnGatewayStatusVpnConnection) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnGatewayStatusVpnConnection.ProtoReflect.Descriptor instead. func (*VpnGatewayStatusVpnConnection) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1830} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1913} } func (x *VpnGatewayStatusVpnConnection) GetPeerExternalGateway() string { @@ -206333,7 +214749,7 @@ type VpnGatewayVpnGatewayInterface struct { func (x *VpnGatewayVpnGatewayInterface) Reset() { *x = VpnGatewayVpnGatewayInterface{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1831] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1914] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -206345,7 +214761,7 @@ func (x *VpnGatewayVpnGatewayInterface) String() string { func (*VpnGatewayVpnGatewayInterface) ProtoMessage() {} func (x *VpnGatewayVpnGatewayInterface) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1831] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1914] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206358,7 +214774,7 @@ func (x *VpnGatewayVpnGatewayInterface) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnGatewayVpnGatewayInterface.ProtoReflect.Descriptor instead. func (*VpnGatewayVpnGatewayInterface) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1831} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1914} } func (x *VpnGatewayVpnGatewayInterface) GetId() uint32 { @@ -206398,7 +214814,7 @@ type VpnGatewaysGetStatusResponse struct { func (x *VpnGatewaysGetStatusResponse) Reset() { *x = VpnGatewaysGetStatusResponse{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1832] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1915] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -206410,7 +214826,7 @@ func (x *VpnGatewaysGetStatusResponse) String() string { func (*VpnGatewaysGetStatusResponse) ProtoMessage() {} func (x *VpnGatewaysGetStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1832] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1915] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206423,7 +214839,7 @@ func (x *VpnGatewaysGetStatusResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnGatewaysGetStatusResponse.ProtoReflect.Descriptor instead. func (*VpnGatewaysGetStatusResponse) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1832} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1915} } func (x *VpnGatewaysGetStatusResponse) GetResult() *VpnGatewayStatus { @@ -206446,7 +214862,7 @@ type VpnGatewaysScopedList struct { func (x *VpnGatewaysScopedList) Reset() { *x = VpnGatewaysScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1833] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1916] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -206458,7 +214874,7 @@ func (x *VpnGatewaysScopedList) String() string { func (*VpnGatewaysScopedList) ProtoMessage() {} func (x *VpnGatewaysScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1833] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1916] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206471,7 +214887,7 @@ func (x *VpnGatewaysScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnGatewaysScopedList.ProtoReflect.Descriptor instead. func (*VpnGatewaysScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1833} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1916} } func (x *VpnGatewaysScopedList) GetVpnGateways() []*VpnGateway { @@ -206638,7 +215054,7 @@ type VpnTunnel struct { func (x *VpnTunnel) Reset() { *x = VpnTunnel{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1834] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1917] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -206650,7 +215066,7 @@ func (x *VpnTunnel) String() string { func (*VpnTunnel) ProtoMessage() {} func (x *VpnTunnel) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1834] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1917] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206663,7 +215079,7 @@ func (x *VpnTunnel) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnTunnel.ProtoReflect.Descriptor instead. func (*VpnTunnel) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1834} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1917} } func (x *VpnTunnel) GetCipherSuite() *VpnTunnelCipherSuite { @@ -206875,7 +215291,7 @@ type VpnTunnelAggregatedList struct { func (x *VpnTunnelAggregatedList) Reset() { *x = VpnTunnelAggregatedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1835] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1918] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -206887,7 +215303,7 @@ func (x *VpnTunnelAggregatedList) String() string { func (*VpnTunnelAggregatedList) ProtoMessage() {} func (x *VpnTunnelAggregatedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1835] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1918] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206900,7 +215316,7 @@ func (x *VpnTunnelAggregatedList) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnTunnelAggregatedList.ProtoReflect.Descriptor instead. func (*VpnTunnelAggregatedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1835} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1918} } func (x *VpnTunnelAggregatedList) GetId() string { @@ -206962,7 +215378,7 @@ type VpnTunnelCipherSuite struct { func (x *VpnTunnelCipherSuite) Reset() { *x = VpnTunnelCipherSuite{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1836] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1919] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -206974,7 +215390,7 @@ func (x *VpnTunnelCipherSuite) String() string { func (*VpnTunnelCipherSuite) ProtoMessage() {} func (x *VpnTunnelCipherSuite) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1836] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1919] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206987,7 +215403,7 @@ func (x *VpnTunnelCipherSuite) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnTunnelCipherSuite.ProtoReflect.Descriptor instead. func (*VpnTunnelCipherSuite) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1836} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1919} } func (x *VpnTunnelCipherSuite) GetPhase1() *VpnTunnelPhase1Algorithms { @@ -207030,7 +215446,7 @@ type VpnTunnelList struct { func (x *VpnTunnelList) Reset() { *x = VpnTunnelList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1837] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1920] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207042,7 +215458,7 @@ func (x *VpnTunnelList) String() string { func (*VpnTunnelList) ProtoMessage() {} func (x *VpnTunnelList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1837] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1920] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207055,7 +215471,7 @@ func (x *VpnTunnelList) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnTunnelList.ProtoReflect.Descriptor instead. func (*VpnTunnelList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1837} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1920} } func (x *VpnTunnelList) GetId() string { @@ -207123,7 +215539,7 @@ type VpnTunnelParams struct { func (x *VpnTunnelParams) Reset() { *x = VpnTunnelParams{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1838] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1921] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207135,7 +215551,7 @@ func (x *VpnTunnelParams) String() string { func (*VpnTunnelParams) ProtoMessage() {} func (x *VpnTunnelParams) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1838] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1921] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207148,7 +215564,7 @@ func (x *VpnTunnelParams) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnTunnelParams.ProtoReflect.Descriptor instead. func (*VpnTunnelParams) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1838} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1921} } func (x *VpnTunnelParams) GetResourceManagerTags() map[string]string { @@ -207170,7 +215586,7 @@ type VpnTunnelPhase1Algorithms struct { func (x *VpnTunnelPhase1Algorithms) Reset() { *x = VpnTunnelPhase1Algorithms{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1839] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1922] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207182,7 +215598,7 @@ func (x *VpnTunnelPhase1Algorithms) String() string { func (*VpnTunnelPhase1Algorithms) ProtoMessage() {} func (x *VpnTunnelPhase1Algorithms) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1839] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1922] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207195,7 +215611,7 @@ func (x *VpnTunnelPhase1Algorithms) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnTunnelPhase1Algorithms.ProtoReflect.Descriptor instead. func (*VpnTunnelPhase1Algorithms) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1839} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1922} } func (x *VpnTunnelPhase1Algorithms) GetDh() []string { @@ -207237,7 +215653,7 @@ type VpnTunnelPhase2Algorithms struct { func (x *VpnTunnelPhase2Algorithms) Reset() { *x = VpnTunnelPhase2Algorithms{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1840] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1923] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207249,7 +215665,7 @@ func (x *VpnTunnelPhase2Algorithms) String() string { func (*VpnTunnelPhase2Algorithms) ProtoMessage() {} func (x *VpnTunnelPhase2Algorithms) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1840] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1923] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207262,7 +215678,7 @@ func (x *VpnTunnelPhase2Algorithms) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnTunnelPhase2Algorithms.ProtoReflect.Descriptor instead. func (*VpnTunnelPhase2Algorithms) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1840} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1923} } func (x *VpnTunnelPhase2Algorithms) GetEncryption() []string { @@ -207299,7 +215715,7 @@ type VpnTunnelsScopedList struct { func (x *VpnTunnelsScopedList) Reset() { *x = VpnTunnelsScopedList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1841] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1924] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207311,7 +215727,7 @@ func (x *VpnTunnelsScopedList) String() string { func (*VpnTunnelsScopedList) ProtoMessage() {} func (x *VpnTunnelsScopedList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1841] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1924] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207324,7 +215740,7 @@ func (x *VpnTunnelsScopedList) ProtoReflect() protoreflect.Message { // Deprecated: Use VpnTunnelsScopedList.ProtoReflect.Descriptor instead. func (*VpnTunnelsScopedList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1841} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1924} } func (x *VpnTunnelsScopedList) GetVpnTunnels() []*VpnTunnel { @@ -207362,7 +215778,7 @@ type WafExpressionSet struct { func (x *WafExpressionSet) Reset() { *x = WafExpressionSet{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1842] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1925] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207374,7 +215790,7 @@ func (x *WafExpressionSet) String() string { func (*WafExpressionSet) ProtoMessage() {} func (x *WafExpressionSet) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1842] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1925] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207387,7 +215803,7 @@ func (x *WafExpressionSet) ProtoReflect() protoreflect.Message { // Deprecated: Use WafExpressionSet.ProtoReflect.Descriptor instead. func (*WafExpressionSet) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1842} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1925} } func (x *WafExpressionSet) GetAliases() []string { @@ -207431,7 +215847,7 @@ type WafExpressionSetExpression struct { func (x *WafExpressionSetExpression) Reset() { *x = WafExpressionSetExpression{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1843] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1926] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207443,7 +215859,7 @@ func (x *WafExpressionSetExpression) String() string { func (*WafExpressionSetExpression) ProtoMessage() {} func (x *WafExpressionSetExpression) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1843] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1926] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207456,7 +215872,7 @@ func (x *WafExpressionSetExpression) ProtoReflect() protoreflect.Message { // Deprecated: Use WafExpressionSetExpression.ProtoReflect.Descriptor instead. func (*WafExpressionSetExpression) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1843} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1926} } func (x *WafExpressionSetExpression) GetId() string { @@ -207487,7 +215903,7 @@ type WaitGlobalOperationRequest struct { func (x *WaitGlobalOperationRequest) Reset() { *x = WaitGlobalOperationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1844] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1927] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207499,7 +215915,7 @@ func (x *WaitGlobalOperationRequest) String() string { func (*WaitGlobalOperationRequest) ProtoMessage() {} func (x *WaitGlobalOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1844] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1927] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207512,7 +215928,7 @@ func (x *WaitGlobalOperationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use WaitGlobalOperationRequest.ProtoReflect.Descriptor instead. func (*WaitGlobalOperationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1844} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1927} } func (x *WaitGlobalOperationRequest) GetOperation() string { @@ -207545,7 +215961,7 @@ type WaitRegionOperationRequest struct { func (x *WaitRegionOperationRequest) Reset() { *x = WaitRegionOperationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1845] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1928] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207557,7 +215973,7 @@ func (x *WaitRegionOperationRequest) String() string { func (*WaitRegionOperationRequest) ProtoMessage() {} func (x *WaitRegionOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1845] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1928] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207570,7 +215986,7 @@ func (x *WaitRegionOperationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use WaitRegionOperationRequest.ProtoReflect.Descriptor instead. func (*WaitRegionOperationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1845} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1928} } func (x *WaitRegionOperationRequest) GetOperation() string { @@ -207610,7 +216026,7 @@ type WaitZoneOperationRequest struct { func (x *WaitZoneOperationRequest) Reset() { *x = WaitZoneOperationRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1846] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1929] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207622,7 +216038,7 @@ func (x *WaitZoneOperationRequest) String() string { func (*WaitZoneOperationRequest) ProtoMessage() {} func (x *WaitZoneOperationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1846] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1929] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207635,7 +216051,7 @@ func (x *WaitZoneOperationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use WaitZoneOperationRequest.ProtoReflect.Descriptor instead. func (*WaitZoneOperationRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1846} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1929} } func (x *WaitZoneOperationRequest) GetOperation() string { @@ -207685,7 +216101,7 @@ type Warning struct { func (x *Warning) Reset() { *x = Warning{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1847] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1930] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207697,7 +216113,7 @@ func (x *Warning) String() string { func (*Warning) ProtoMessage() {} func (x *Warning) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1847] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1930] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207710,7 +216126,7 @@ func (x *Warning) ProtoReflect() protoreflect.Message { // Deprecated: Use Warning.ProtoReflect.Descriptor instead. func (*Warning) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1847} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1930} } func (x *Warning) GetCode() string { @@ -207759,7 +216175,7 @@ type Warnings struct { func (x *Warnings) Reset() { *x = Warnings{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1848] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1931] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207771,7 +216187,7 @@ func (x *Warnings) String() string { func (*Warnings) ProtoMessage() {} func (x *Warnings) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1848] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1931] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207784,7 +216200,7 @@ func (x *Warnings) ProtoReflect() protoreflect.Message { // Deprecated: Use Warnings.ProtoReflect.Descriptor instead. func (*Warnings) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1848} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1931} } func (x *Warnings) GetCode() string { @@ -207850,7 +216266,7 @@ type WeightedBackendService struct { func (x *WeightedBackendService) Reset() { *x = WeightedBackendService{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1849] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1932] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207862,7 +216278,7 @@ func (x *WeightedBackendService) String() string { func (*WeightedBackendService) ProtoMessage() {} func (x *WeightedBackendService) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1849] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1932] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207875,7 +216291,7 @@ func (x *WeightedBackendService) ProtoReflect() protoreflect.Message { // Deprecated: Use WeightedBackendService.ProtoReflect.Descriptor instead. func (*WeightedBackendService) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1849} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1932} } func (x *WeightedBackendService) GetBackendService() string { @@ -207928,7 +216344,7 @@ type Wire struct { func (x *Wire) Reset() { *x = Wire{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1850] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1933] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207940,7 +216356,7 @@ func (x *Wire) String() string { func (*Wire) ProtoMessage() {} func (x *Wire) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1850] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1933] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207953,7 +216369,7 @@ func (x *Wire) ProtoReflect() protoreflect.Message { // Deprecated: Use Wire.ProtoReflect.Descriptor instead. func (*Wire) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1850} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1933} } func (x *Wire) GetAdminEnabled() bool { @@ -207995,7 +216411,7 @@ type WireEndpoint struct { func (x *WireEndpoint) Reset() { *x = WireEndpoint{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1851] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1934] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208007,7 +216423,7 @@ func (x *WireEndpoint) String() string { func (*WireEndpoint) ProtoMessage() {} func (x *WireEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1851] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1934] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208020,7 +216436,7 @@ func (x *WireEndpoint) ProtoReflect() protoreflect.Message { // Deprecated: Use WireEndpoint.ProtoReflect.Descriptor instead. func (*WireEndpoint) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1851} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1934} } func (x *WireEndpoint) GetInterconnect() string { @@ -208085,7 +216501,7 @@ type WireGroup struct { func (x *WireGroup) Reset() { *x = WireGroup{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1852] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1935] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208097,7 +216513,7 @@ func (x *WireGroup) String() string { func (*WireGroup) ProtoMessage() {} func (x *WireGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1852] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1935] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208110,7 +216526,7 @@ func (x *WireGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use WireGroup.ProtoReflect.Descriptor instead. func (*WireGroup) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1852} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1935} } func (x *WireGroup) GetAdminEnabled() bool { @@ -208214,7 +216630,7 @@ type WireGroupEndpoint struct { func (x *WireGroupEndpoint) Reset() { *x = WireGroupEndpoint{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1853] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1936] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208226,7 +216642,7 @@ func (x *WireGroupEndpoint) String() string { func (*WireGroupEndpoint) ProtoMessage() {} func (x *WireGroupEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1853] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1936] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208239,7 +216655,7 @@ func (x *WireGroupEndpoint) ProtoReflect() protoreflect.Message { // Deprecated: Use WireGroupEndpoint.ProtoReflect.Descriptor instead. func (*WireGroupEndpoint) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1853} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1936} } func (x *WireGroupEndpoint) GetInterconnects() map[string]*WireGroupEndpointInterconnect { @@ -208287,7 +216703,7 @@ type WireGroupEndpointInterconnect struct { func (x *WireGroupEndpointInterconnect) Reset() { *x = WireGroupEndpointInterconnect{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1854] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1937] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208299,7 +216715,7 @@ func (x *WireGroupEndpointInterconnect) String() string { func (*WireGroupEndpointInterconnect) ProtoMessage() {} func (x *WireGroupEndpointInterconnect) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1854] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1937] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208312,7 +216728,7 @@ func (x *WireGroupEndpointInterconnect) ProtoReflect() protoreflect.Message { // Deprecated: Use WireGroupEndpointInterconnect.ProtoReflect.Descriptor instead. func (*WireGroupEndpointInterconnect) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1854} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1937} } func (x *WireGroupEndpointInterconnect) GetInterconnect() string { @@ -208358,7 +216774,7 @@ type WireGroupList struct { func (x *WireGroupList) Reset() { *x = WireGroupList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1855] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1938] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208370,7 +216786,7 @@ func (x *WireGroupList) String() string { func (*WireGroupList) ProtoMessage() {} func (x *WireGroupList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1855] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1938] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208383,7 +216799,7 @@ func (x *WireGroupList) ProtoReflect() protoreflect.Message { // Deprecated: Use WireGroupList.ProtoReflect.Descriptor instead. func (*WireGroupList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1855} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1938} } func (x *WireGroupList) GetEtag() string { @@ -208453,7 +216869,7 @@ type WireGroupTopology struct { func (x *WireGroupTopology) Reset() { *x = WireGroupTopology{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1856] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1939] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208465,7 +216881,7 @@ func (x *WireGroupTopology) String() string { func (*WireGroupTopology) ProtoMessage() {} func (x *WireGroupTopology) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1856] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1939] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208478,7 +216894,7 @@ func (x *WireGroupTopology) ProtoReflect() protoreflect.Message { // Deprecated: Use WireGroupTopology.ProtoReflect.Descriptor instead. func (*WireGroupTopology) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1856} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1939} } func (x *WireGroupTopology) GetEndpoints() []*WireGroupTopologyEndpoint { @@ -208502,7 +216918,7 @@ type WireGroupTopologyEndpoint struct { func (x *WireGroupTopologyEndpoint) Reset() { *x = WireGroupTopologyEndpoint{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1857] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1940] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208514,7 +216930,7 @@ func (x *WireGroupTopologyEndpoint) String() string { func (*WireGroupTopologyEndpoint) ProtoMessage() {} func (x *WireGroupTopologyEndpoint) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1857] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1940] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208527,7 +216943,7 @@ func (x *WireGroupTopologyEndpoint) ProtoReflect() protoreflect.Message { // Deprecated: Use WireGroupTopologyEndpoint.ProtoReflect.Descriptor instead. func (*WireGroupTopologyEndpoint) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1857} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1940} } func (x *WireGroupTopologyEndpoint) GetCity() string { @@ -208577,7 +216993,7 @@ type WireProperties struct { func (x *WireProperties) Reset() { *x = WireProperties{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1858] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1941] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208589,7 +217005,7 @@ func (x *WireProperties) String() string { func (*WireProperties) ProtoMessage() {} func (x *WireProperties) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1858] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1941] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208602,7 +217018,7 @@ func (x *WireProperties) ProtoReflect() protoreflect.Message { // Deprecated: Use WireProperties.ProtoReflect.Descriptor instead. func (*WireProperties) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1858} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1941} } func (x *WireProperties) GetBandwidthAllocation() string { @@ -208653,7 +217069,7 @@ type WithdrawPublicAdvertisedPrefixeRequest struct { func (x *WithdrawPublicAdvertisedPrefixeRequest) Reset() { *x = WithdrawPublicAdvertisedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1859] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1942] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208665,7 +217081,7 @@ func (x *WithdrawPublicAdvertisedPrefixeRequest) String() string { func (*WithdrawPublicAdvertisedPrefixeRequest) ProtoMessage() {} func (x *WithdrawPublicAdvertisedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1859] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1942] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208678,7 +217094,7 @@ func (x *WithdrawPublicAdvertisedPrefixeRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use WithdrawPublicAdvertisedPrefixeRequest.ProtoReflect.Descriptor instead. func (*WithdrawPublicAdvertisedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1859} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1942} } func (x *WithdrawPublicAdvertisedPrefixeRequest) GetProject() string { @@ -208732,7 +217148,7 @@ type WithdrawPublicDelegatedPrefixeRequest struct { func (x *WithdrawPublicDelegatedPrefixeRequest) Reset() { *x = WithdrawPublicDelegatedPrefixeRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1860] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1943] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208744,7 +217160,7 @@ func (x *WithdrawPublicDelegatedPrefixeRequest) String() string { func (*WithdrawPublicDelegatedPrefixeRequest) ProtoMessage() {} func (x *WithdrawPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1860] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1943] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208757,7 +217173,7 @@ func (x *WithdrawPublicDelegatedPrefixeRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use WithdrawPublicDelegatedPrefixeRequest.ProtoReflect.Descriptor instead. func (*WithdrawPublicDelegatedPrefixeRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1860} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1943} } func (x *WithdrawPublicDelegatedPrefixeRequest) GetProject() string { @@ -208798,7 +217214,7 @@ type WorkloadIdentityConfig struct { func (x *WorkloadIdentityConfig) Reset() { *x = WorkloadIdentityConfig{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1861] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1944] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208810,7 +217226,7 @@ func (x *WorkloadIdentityConfig) String() string { func (*WorkloadIdentityConfig) ProtoMessage() {} func (x *WorkloadIdentityConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1861] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1944] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208823,7 +217239,7 @@ func (x *WorkloadIdentityConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use WorkloadIdentityConfig.ProtoReflect.Descriptor instead. func (*WorkloadIdentityConfig) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1861} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1944} } func (x *WorkloadIdentityConfig) GetIdentity() string { @@ -208865,7 +217281,7 @@ type XpnHostList struct { func (x *XpnHostList) Reset() { *x = XpnHostList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1862] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1945] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208877,7 +217293,7 @@ func (x *XpnHostList) String() string { func (*XpnHostList) ProtoMessage() {} func (x *XpnHostList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1862] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1945] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208890,7 +217306,7 @@ func (x *XpnHostList) ProtoReflect() protoreflect.Message { // Deprecated: Use XpnHostList.ProtoReflect.Descriptor instead. func (*XpnHostList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1862} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1945} } func (x *XpnHostList) GetId() string { @@ -208951,7 +217367,7 @@ type XpnResourceId struct { func (x *XpnResourceId) Reset() { *x = XpnResourceId{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1863] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1946] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -208963,7 +217379,7 @@ func (x *XpnResourceId) String() string { func (*XpnResourceId) ProtoMessage() {} func (x *XpnResourceId) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1863] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1946] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208976,7 +217392,7 @@ func (x *XpnResourceId) ProtoReflect() protoreflect.Message { // Deprecated: Use XpnResourceId.ProtoReflect.Descriptor instead. func (*XpnResourceId) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1863} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1946} } func (x *XpnResourceId) GetId() string { @@ -209032,7 +217448,7 @@ type Zone struct { func (x *Zone) Reset() { *x = Zone{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1864] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1947] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -209044,7 +217460,7 @@ func (x *Zone) String() string { func (*Zone) ProtoMessage() {} func (x *Zone) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1864] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1947] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -209057,7 +217473,7 @@ func (x *Zone) ProtoReflect() protoreflect.Message { // Deprecated: Use Zone.ProtoReflect.Descriptor instead. func (*Zone) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1864} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1947} } func (x *Zone) GetAvailableCpuPlatforms() []string { @@ -209162,7 +217578,7 @@ type ZoneList struct { func (x *ZoneList) Reset() { *x = ZoneList{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1865] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1948] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -209174,7 +217590,7 @@ func (x *ZoneList) String() string { func (*ZoneList) ProtoMessage() {} func (x *ZoneList) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1865] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1948] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -209187,7 +217603,7 @@ func (x *ZoneList) ProtoReflect() protoreflect.Message { // Deprecated: Use ZoneList.ProtoReflect.Descriptor instead. func (*ZoneList) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1865} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1948} } func (x *ZoneList) GetId() string { @@ -209249,7 +217665,7 @@ type ZoneSetLabelsRequest struct { func (x *ZoneSetLabelsRequest) Reset() { *x = ZoneSetLabelsRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1866] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1949] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -209261,7 +217677,7 @@ func (x *ZoneSetLabelsRequest) String() string { func (*ZoneSetLabelsRequest) ProtoMessage() {} func (x *ZoneSetLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1866] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1949] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -209274,7 +217690,7 @@ func (x *ZoneSetLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ZoneSetLabelsRequest.ProtoReflect.Descriptor instead. func (*ZoneSetLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1866} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1949} } func (x *ZoneSetLabelsRequest) GetLabelFingerprint() string { @@ -209309,7 +217725,7 @@ type ZoneSetNestedPolicyRequest struct { func (x *ZoneSetNestedPolicyRequest) Reset() { *x = ZoneSetNestedPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1867] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1950] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -209321,7 +217737,7 @@ func (x *ZoneSetNestedPolicyRequest) String() string { func (*ZoneSetNestedPolicyRequest) ProtoMessage() {} func (x *ZoneSetNestedPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1867] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1950] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -209334,7 +217750,7 @@ func (x *ZoneSetNestedPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ZoneSetNestedPolicyRequest.ProtoReflect.Descriptor instead. func (*ZoneSetNestedPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1867} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1950} } func (x *ZoneSetNestedPolicyRequest) GetBindings() []*Binding { @@ -209376,7 +217792,7 @@ type ZoneSetPolicyRequest struct { func (x *ZoneSetPolicyRequest) Reset() { *x = ZoneSetPolicyRequest{} - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1868] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1951] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -209388,7 +217804,7 @@ func (x *ZoneSetPolicyRequest) String() string { func (*ZoneSetPolicyRequest) ProtoMessage() {} func (x *ZoneSetPolicyRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1868] + mi := &file_google_cloud_compute_v1_compute_proto_msgTypes[1951] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -209401,7 +217817,7 @@ func (x *ZoneSetPolicyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ZoneSetPolicyRequest.ProtoReflect.Descriptor instead. func (*ZoneSetPolicyRequest) Descriptor() ([]byte, []int) { - return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1868} + return file_google_cloud_compute_v1_compute_proto_rawDescGZIP(), []int{1951} } func (x *ZoneSetPolicyRequest) GetBindings() []*Binding { @@ -209974,6 +218390,24 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\t_order_byB\r\n" + "\v_page_tokenB\x19\n" + "\x17_return_partial_successB\x19\n" + + "\x17_service_project_number\"\x94\x04\n" + + "#AggregatedListBackendBucketsRequest\x12\x1f\n" + + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x125\n" + + "\x12include_all_scopes\x18\xf4\xe1̺\x01 \x01(\bH\x01R\x10includeAllScopes\x88\x01\x01\x12'\n" + + "\vmax_results\x18\x9bȋ\x1a \x01(\rH\x02R\n" + + "maxResults\x88\x01\x01\x12!\n" + + "\border_by\x18\xe8\xfd\xc7L \x01(\tH\x03R\aorderBy\x88\x01\x01\x12%\n" + + "\n" + + "page_token\x18ɰ\xc4\t \x01(\tH\x04R\tpageToken\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12=\n" + + "\x16return_partial_success\x18\xb6\xa4\xcf\xf6\x01 \x01(\bH\x05R\x14returnPartialSuccess\x88\x01\x01\x12=\n" + + "\x16service_project_number\x18\xf9\xab\x85\x97\x01 \x01(\x03H\x06R\x14serviceProjectNumber\x88\x01\x01B\t\n" + + "\a_filterB\x15\n" + + "\x13_include_all_scopesB\x0e\n" + + "\f_max_resultsB\v\n" + + "\t_order_byB\r\n" + + "\v_page_tokenB\x19\n" + + "\x17_return_partial_successB\x19\n" + "\x17_service_project_number\"\x95\x04\n" + "$AggregatedListBackendServicesRequest\x12\x1f\n" + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x125\n" + @@ -211332,8 +219766,7 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x16_min_required_replicasB\v\n" + "\t_scheduleB\f\n" + "\n" + - "_time_zone\"\xde\n" + - "\n" + + "_time_zone\"\x80\x0f\n" + "\aBackend\x12.\n" + "\x0ebalancing_mode\x18\x89˖\xcd\x01 \x01(\tH\x00R\rbalancingMode\x88\x01\x01\x120\n" + "\x0fcapacity_scaler\x18\x8d\xc7Ԗ\x01 \x01(\x02H\x01R\x0ecapacityScaler\x88\x01\x01\x12W\n" + @@ -211343,21 +219776,26 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x05group\x18\xff\xec\x83/ \x01(\tH\x04R\x05group\x88\x01\x01\x12/\n" + "\x0fmax_connections\x18\xfa\xd5\xe14 \x01(\x05H\x05R\x0emaxConnections\x88\x01\x01\x12G\n" + "\x1cmax_connections_per_endpoint\x18\x9c\xe7\xb6g \x01(\x05H\x06R\x19maxConnectionsPerEndpoint\x88\x01\x01\x12G\n" + - "\x1cmax_connections_per_instance\x18\x9c\xd5\xf41 \x01(\x05H\aR\x19maxConnectionsPerInstance\x88\x01\x01\x12\"\n" + - "\bmax_rate\x18۽\xc8\xc2\x01 \x01(\x05H\bR\amaxRate\x88\x01\x01\x129\n" + - "\x15max_rate_per_endpoint\x18۪\xf4= \x01(\x02H\tR\x12maxRatePerEndpoint\x88\x01\x01\x129\n" + - "\x15max_rate_per_instance\x18ۘ\xb2\b \x01(\x02H\n" + - "R\x12maxRatePerInstance\x88\x01\x01\x12/\n" + - "\x0fmax_utilization\x18\xc7\xf7\xd4F \x01(\x02H\vR\x0emaxUtilization\x88\x01\x01\x12p\n" + - "\x12orchestration_info\x18짭\xd2\x01 \x01(\v28.google.cloud.compute.v1.BackendBackendOrchestrationInfoH\fR\x11orchestrationInfo\x88\x01\x01\x12&\n" + - "\n" + - "preference\x18\xdb\xf9\xf2G \x01(\tH\rR\n" + - "preference\x88\x01\x01\"y\n" + + "\x1cmax_connections_per_instance\x18\x9c\xd5\xf41 \x01(\x05H\aR\x19maxConnectionsPerInstance\x88\x01\x01\x12<\n" + + "\x16max_in_flight_requests\x18Ԅ\xa7\x82\x01 \x01(\x05H\bR\x13maxInFlightRequests\x88\x01\x01\x12T\n" + + "#max_in_flight_requests_per_endpoint\x18\x82\xbd\xea\x92\x01 \x01(\x05H\tR\x1emaxInFlightRequestsPerEndpoint\x88\x01\x01\x12S\n" + + "#max_in_flight_requests_per_instance\x18\x82\xab\xa8] \x01(\x05H\n" + + "R\x1emaxInFlightRequestsPerInstance\x88\x01\x01\x12\"\n" + + "\bmax_rate\x18۽\xc8\xc2\x01 \x01(\x05H\vR\amaxRate\x88\x01\x01\x129\n" + + "\x15max_rate_per_endpoint\x18۪\xf4= \x01(\x02H\fR\x12maxRatePerEndpoint\x88\x01\x01\x129\n" + + "\x15max_rate_per_instance\x18ۘ\xb2\b \x01(\x02H\rR\x12maxRatePerInstance\x88\x01\x01\x12/\n" + + "\x0fmax_utilization\x18\xc7\xf7\xd4F \x01(\x02H\x0eR\x0emaxUtilization\x88\x01\x01\x12p\n" + + "\x12orchestration_info\x18짭\xd2\x01 \x01(\v28.google.cloud.compute.v1.BackendBackendOrchestrationInfoH\x0fR\x11orchestrationInfo\x88\x01\x01\x12&\n" + + "\n" + + "preference\x18\xdb\xf9\xf2G \x01(\tH\x10R\n" + + "preference\x88\x01\x01\x121\n" + + "\x10traffic_duration\x18\x96\x93\xc5\x05 \x01(\tH\x11R\x0ftrafficDuration\x88\x01\x01\"\x8b\x01\n" + "\rBalancingMode\x12\x1c\n" + "\x18UNDEFINED_BALANCING_MODE\x10\x00\x12\x11\n" + "\n" + "CONNECTION\x10\xdeչu\x12\x16\n" + - "\x0eCUSTOM_METRICS\x10\xd5㍞\x01\x12\v\n" + + "\x0eCUSTOM_METRICS\x10\xd5㍞\x01\x12\x10\n" + + "\tIN_FLIGHT\x10ʑ\xcfZ\x12\v\n" + "\x04RATE\x10\xe0\x89\x99\x01\x12\x12\n" + "\vUTILIZATION\x10\x82\x84\xefJ\"i\n" + "\n" + @@ -211365,7 +219803,12 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x14UNDEFINED_PREFERENCE\x10\x00\x12\x0e\n" + "\aDEFAULT\x10\xa1\xc4\xfd6\x12\x1e\n" + "\x16PREFERENCE_UNSPECIFIED\x10\xb3\xeb\xce\xec\x01\x12\x11\n" + - "\tPREFERRED\x10\xe1\xb8\xdc\xc7\x01B\x11\n" + + "\tPREFERRED\x10\xe1\xb8\xdc\xc7\x01\"q\n" + + "\x0fTrafficDuration\x12\x1e\n" + + "\x1aUNDEFINED_TRAFFIC_DURATION\x10\x00\x12\v\n" + + "\x04LONG\x10\xfc\xfc\x8e\x01\x12\f\n" + + "\x05SHORT\x10ܘ\xce%\x12#\n" + + "\x1cTRAFFIC_DURATION_UNSPECIFIED\x10\x8e̺~B\x11\n" + "\x0f_balancing_modeB\x12\n" + "\x10_capacity_scalerB\x0e\n" + "\f_descriptionB\v\n" + @@ -211373,16 +219816,20 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x06_groupB\x12\n" + "\x10_max_connectionsB\x1f\n" + "\x1d_max_connections_per_endpointB\x1f\n" + - "\x1d_max_connections_per_instanceB\v\n" + + "\x1d_max_connections_per_instanceB\x19\n" + + "\x17_max_in_flight_requestsB&\n" + + "$_max_in_flight_requests_per_endpointB&\n" + + "$_max_in_flight_requests_per_instanceB\v\n" + "\t_max_rateB\x18\n" + "\x16_max_rate_per_endpointB\x18\n" + "\x16_max_rate_per_instanceB\x12\n" + "\x10_max_utilizationB\x15\n" + "\x13_orchestration_infoB\r\n" + - "\v_preference\"]\n" + + "\v_preferenceB\x13\n" + + "\x11_traffic_duration\"]\n" + "\x1fBackendBackendOrchestrationInfo\x12)\n" + "\fresource_uri\x18\xbb\x83\xf0H \x01(\tH\x00R\vresourceUri\x88\x01\x01B\x0f\n" + - "\r_resource_uri\"\x89\t\n" + + "\r_resource_uri\"\xce\t\n" + "\rBackendBucket\x12(\n" + "\vbucket_name\x18\xc0\x97\x9e\x87\x01 \x01(\tH\x00R\n" + "bucketName\x88\x01\x01\x12V\n" + @@ -211400,15 +219847,17 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x15load_balancing_scheme\x18Č\u00ad\x01 \x01(\tH\tR\x13loadBalancingScheme\x88\x01\x01\x12\x1a\n" + "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\n" + "R\x04name\x88\x01\x01\x12L\n" + - "\x06params\x18\x86\xf3\xab% \x01(\v2,.google.cloud.compute.v1.BackendBucketParamsH\vR\x06params\x88\x01\x01\x12$\n" + - "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\fR\bselfLink\x88\x01\x01\x12I\n" + + "\x06params\x18\x86\xf3\xab% \x01(\v2,.google.cloud.compute.v1.BackendBucketParamsH\vR\x06params\x88\x01\x01\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tH\fR\x06region\x88\x01\x01\x12$\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\rR\bselfLink\x88\x01\x01\x12I\n" + "\aused_by\x18\x99\xa0ҹ\x01 \x03(\v2,.google.cloud.compute.v1.BackendBucketUsedByR\x06usedBy\"U\n" + "\x0fCompressionMode\x12\x1e\n" + "\x1aUNDEFINED_COMPRESSION_MODE\x10\x00\x12\x10\n" + "\tAUTOMATIC\x10\x8b\x84\xe9N\x12\x10\n" + - "\bDISABLED\x10\xfc\u0530\xf6\x01\"S\n" + + "\bDISABLED\x10\xfc\u0530\xf6\x01\"m\n" + "\x13LoadBalancingScheme\x12#\n" + - "\x1fUNDEFINED_LOAD_BALANCING_SCHEME\x10\x00\x12\x17\n" + + "\x1fUNDEFINED_LOAD_BALANCING_SCHEME\x10\x00\x12\x18\n" + + "\x10EXTERNAL_MANAGED\x10\x8b\xb6\x92\xf4\x01\x12\x17\n" + "\x10INTERNAL_MANAGED\x10\xfd\xd7\xe7\x11B\x0e\n" + "\f_bucket_nameB\r\n" + "\v_cdn_policyB\x13\n" + @@ -211421,9 +219870,28 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x05_kindB\x18\n" + "\x16_load_balancing_schemeB\a\n" + "\x05_nameB\t\n" + - "\a_paramsB\f\n" + + "\a_paramsB\t\n" + + "\a_regionB\f\n" + "\n" + - "_self_link\"\x9a\t\n" + + "_self_link\"\xee\x03\n" + + "\x1bBackendBucketAggregatedList\x12\x14\n" + + "\x02id\x18\x9b\x1a \x01(\tH\x00R\x02id\x88\x01\x01\x12X\n" + + "\x05items\x18\xc0\xcf\xf7/ \x03(\v2?.google.cloud.compute.v1.BackendBucketAggregatedList.ItemsEntryR\x05items\x12\x1a\n" + + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\x01R\x04kind\x88\x01\x01\x12.\n" + + "\x0fnext_page_token\x18\x95\xba\x86& \x01(\tH\x02R\rnextPageToken\x88\x01\x01\x12$\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\x03R\bselfLink\x88\x01\x01\x12B\n" + + "\awarning\x18\x9cߖ\x18 \x01(\v2 .google.cloud.compute.v1.WarningH\x04R\awarning\x88\x01\x01\x1ak\n" + + "\n" + + "ItemsEntry\x12\x10\n" + + "\x03key\x18\x01 \x01(\tR\x03key\x12G\n" + + "\x05value\x18\x02 \x01(\v21.google.cloud.compute.v1.BackendBucketsScopedListR\x05value:\x028\x01B\x05\n" + + "\x03_idB\a\n" + + "\x05_kindB\x12\n" + + "\x10_next_page_tokenB\f\n" + + "\n" + + "_self_linkB\n" + + "\n" + + "\b_warning\"\x9a\t\n" + "\x16BackendBucketCdnPolicy\x12\x93\x01\n" + "\x1fbypass_cache_on_request_headers\x18ʽ\xeb\xe7\x01 \x03(\v2I.google.cloud.compute.v1.BackendBucketCdnPolicyBypassCacheOnRequestHeaderR\x1bbypassCacheOnRequestHeaders\x12o\n" + "\x10cache_key_policy\x18\xef\xd7\xf8K \x01(\v2=.google.cloud.compute.v1.BackendBucketCdnPolicyCacheKeyPolicyH\x00R\x0ecacheKeyPolicy\x88\x01\x01\x12%\n" + @@ -211481,6 +219949,20 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "_self_linkB\n" + "\n" + + "\b_warning\"\xe4\x02\n" + + "\x17BackendBucketListUsable\x12\x14\n" + + "\x02id\x18\x9b\x1a \x01(\tH\x00R\x02id\x88\x01\x01\x12?\n" + + "\x05items\x18\xc0\xcf\xf7/ \x03(\v2&.google.cloud.compute.v1.BackendBucketR\x05items\x12\x1a\n" + + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\x01R\x04kind\x88\x01\x01\x12.\n" + + "\x0fnext_page_token\x18\x95\xba\x86& \x01(\tH\x02R\rnextPageToken\x88\x01\x01\x12$\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\x03R\bselfLink\x88\x01\x01\x12B\n" + + "\awarning\x18\x9cߖ\x18 \x01(\v2 .google.cloud.compute.v1.WarningH\x04R\awarning\x88\x01\x01B\x05\n" + + "\x03_idB\a\n" + + "\x05_kindB\x12\n" + + "\x10_next_page_tokenB\f\n" + + "\n" + + "_self_linkB\n" + + "\n" + "\b_warning\"\xdc\x01\n" + "\x13BackendBucketParams\x12}\n" + "\x15resource_manager_tags\x18\xfc\x9b\x8b\xb4\x01 \x03(\v2E.google.cloud.compute.v1.BackendBucketParams.ResourceManagerTagsEntryR\x13resourceManagerTags\x1aF\n" + @@ -211490,7 +219972,12 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x13BackendBucketUsedBy\x12$\n" + "\treference\x18\xcb\xfe\xecF \x01(\tH\x00R\treference\x88\x01\x01B\f\n" + "\n" + - "_reference\"\xad\x01\n" + + "_reference\"\xbe\x01\n" + + "\x18BackendBucketsScopedList\x12R\n" + + "\x0fbackend_buckets\x18\x9e\x9a\xdbK \x03(\v2&.google.cloud.compute.v1.BackendBucketR\x0ebackendBuckets\x12B\n" + + "\awarning\x18\x9cߖ\x18 \x01(\v2 .google.cloud.compute.v1.WarningH\x00R\awarning\x88\x01\x01B\n" + + "\n" + + "\b_warning\"\xad\x01\n" + "\x13BackendCustomMetric\x12 \n" + "\adry_run\x18\xf7ö\x9a\x01 \x01(\bH\x00R\x06dryRun\x88\x01\x01\x12/\n" + "\x0fmax_utilization\x18\xc7\xf7\xd4F \x01(\x02H\x01R\x0emaxUtilization\x88\x01\x01\x12\x1a\n" + @@ -212082,9 +220569,13 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12!\n" + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\n" + "\xe0A\x02\xf2G\x04zoneR\x04zoneB\r\n" + - "\v_request_id\"\x8b\x01\n" + - "\x16BulkInsertDiskResource\x12M\n" + - "\x1fsource_consistency_group_policy\x18ݢ\xad\t \x01(\tH\x00R\x1csourceConsistencyGroupPolicy\x88\x01\x01B\"\n" + + "\v_request_id\"\xd2\x03\n" + + "\x16BulkInsertDiskResource\x12\x8a\x01\n" + + "!instant_snapshot_group_parameters\x18\xe7ߐ\b \x01(\v27.google.cloud.compute.v1.InstantSnapshotGroupParametersH\x00R\x1einstantSnapshotGroupParameters\x88\x01\x01\x12t\n" + + "\x19snapshot_group_parameters\x18\xc5\xf1\x92\x14 \x01(\v20.google.cloud.compute.v1.SnapshotGroupParametersH\x01R\x17snapshotGroupParameters\x88\x01\x01\x12M\n" + + "\x1fsource_consistency_group_policy\x18ݢ\xad\t \x01(\tH\x02R\x1csourceConsistencyGroupPolicy\x88\x01\x01B$\n" + + "\"_instant_snapshot_group_parametersB\x1c\n" + + "\x1a_snapshot_group_parametersB\"\n" + " _source_consistency_group_policy\"\xb2\x02\n" + "\x19BulkInsertInstanceRequest\x12\x8f\x01\n" + "&bulk_insert_instance_resource_resource\x18\xce\xc2\xe0\x13 \x01(\v23.google.cloud.compute.v1.BulkInsertInstanceResourceB\x03\xe0A\x02R\"bulkInsertInstanceResourceResource\x12*\n" + @@ -212191,7 +220682,51 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x16query_string_whitelist\x18\xb0\u0601\x19 \x03(\tR\x14queryStringWhitelistB\x0f\n" + "\r_include_hostB\x13\n" + "\x11_include_protocolB\x17\n" + - "\x15_include_query_string\"\x9a\x02\n" + + "\x15_include_query_string\"\x81\b\n" + + "\vCachePolicy\x12K\n" + + "!cache_bypass_request_header_names\x18\x80\xb5\x9b^ \x03(\tR\x1dcacheBypassRequestHeaderNames\x12d\n" + + "\x10cache_key_policy\x18\xef\xd7\xf8K \x01(\v22.google.cloud.compute.v1.CachePolicyCacheKeyPolicyH\x00R\x0ecacheKeyPolicy\x88\x01\x01\x12%\n" + + "\n" + + "cache_mode\x18\xc0\xc8\xe2\r \x01(\tH\x01R\tcacheMode\x88\x01\x01\x12H\n" + + "\n" + + "client_ttl\x18\xf8\x8e\xec\r \x01(\v2!.google.cloud.compute.v1.DurationH\x02R\tclientTtl\x88\x01\x01\x12J\n" + + "\vdefault_ttl\x18\xee\xfd\xe6/ \x01(\v2!.google.cloud.compute.v1.DurationH\x03R\n" + + "defaultTtl\x88\x01\x01\x12C\n" + + "\amax_ttl\x18\x91\x89Ւ\x01 \x01(\v2!.google.cloud.compute.v1.DurationH\x04R\x06maxTtl\x88\x01\x01\x122\n" + + "\x10negative_caching\x18\xb5â\xa0\x01 \x01(\bH\x05R\x0fnegativeCaching\x88\x01\x01\x12t\n" + + "\x17negative_caching_policy\x18\xfc\xb5\x8aJ \x03(\v29.google.cloud.compute.v1.CachePolicyNegativeCachingPolicyR\x15negativeCachingPolicy\x126\n" + + "\x12request_coalescing\x18Ԅ\x88\xfe\x01 \x01(\bH\x06R\x11requestCoalescing\x88\x01\x01\x12U\n" + + "\x11serve_while_stale\x18\xdb\xf7\xedp \x01(\v2!.google.cloud.compute.v1.DurationH\aR\x0fserveWhileStale\x88\x01\x01\"s\n" + + "\tCacheMode\x12\x18\n" + + "\x14UNDEFINED_CACHE_MODE\x10\x00\x12\x18\n" + + "\x10CACHE_ALL_STATIC\x10闥\xa9\x01\x12\x17\n" + + "\x0fFORCE_CACHE_ALL\x10\xb0\xdd\xe0\xe7\x01\x12\x19\n" + + "\x12USE_ORIGIN_HEADERS\x10\xa5\x92\xb4\x1aB\x13\n" + + "\x11_cache_key_policyB\r\n" + + "\v_cache_modeB\r\n" + + "\v_client_ttlB\x0e\n" + + "\f_default_ttlB\n" + + "\n" + + "\b_max_ttlB\x13\n" + + "\x11_negative_cachingB\x15\n" + + "\x13_request_coalescingB\x14\n" + + "\x12_serve_while_stale\"\xe2\x03\n" + + "\x19CachePolicyCacheKeyPolicy\x12=\n" + + "\x19excluded_query_parameters\x18\x96\x87\xc7; \x03(\tR\x17excludedQueryParameters\x12*\n" + + "\finclude_host\x18߅\x94\xe8\x01 \x01(\bH\x00R\vincludeHost\x88\x01\x01\x122\n" + + "\x10include_protocol\x18\xcf\xd0ܐ\x01 \x01(\bH\x01R\x0fincludeProtocol\x88\x01\x01\x129\n" + + "\x14include_query_string\x18\x9f\xf3\x84\xe2\x01 \x01(\bH\x02R\x12includeQueryString\x88\x01\x01\x125\n" + + "\x15included_cookie_names\x18\xd0\xc8\xf8\x1f \x03(\tR\x13includedCookieNames\x126\n" + + "\x15included_header_names\x18\xb9\xf3\xc1\xfe\x01 \x03(\tR\x13includedHeaderNames\x12=\n" + + "\x19included_query_parameters\x18\xe4ō\x01 \x03(\tR\x17includedQueryParametersB\x0f\n" + + "\r_include_hostB\x13\n" + + "\x11_include_protocolB\x17\n" + + "\x15_include_query_string\"\x8b\x01\n" + + " CachePolicyNegativeCachingPolicy\x12\x1a\n" + + "\x04code\x18\xedۺ\x01 \x01(\x05H\x00R\x04code\x88\x01\x01\x12:\n" + + "\x03ttl\x18\xec\x83\a \x01(\v2!.google.cloud.compute.v1.DurationH\x01R\x03ttl\x88\x01\x01B\a\n" + + "\x05_codeB\x06\n" + + "\x04_ttl\"\x9a\x02\n" + "\x19CalendarModeAdviceRequest\x12\x85\x01\n" + "\x16future_resources_specs\x18\x82\xde\xccy \x03(\v2L.google.cloud.compute.v1.CalendarModeAdviceRequest.FutureResourcesSpecsEntryR\x14futureResourcesSpecs\x1au\n" + "\x19FutureResourcesSpecsEntry\x12\x10\n" + @@ -212224,6 +220759,14 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x0eresize_request\x18\x84\x84\xb9g \x01(\tB\x03\xe0A\x02R\rresizeRequest\x12!\n" + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\n" + "\xe0A\x02\xf2G\x04zoneR\x04zoneB\r\n" + + "\v_request_id\"\xae\x02\n" + + "4CancelRegionInstanceGroupManagerResizeRequestRequest\x12<\n" + + "\x16instance_group_manager\x18\xc3\xf7\xf3v \x01(\tB\x03\xe0A\x02R\x14instanceGroupManager\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12-\n" + + "\x0eresize_request\x18\x84\x84\xb9g \x01(\tB\x03\xe0A\x02R\rresizeRequestB\r\n" + "\v_request_id\"\x87\x03\n" + "\x0fCircuitBreakers\x12/\n" + "\x0fmax_connections\x18\xfa\xd5\xe14 \x01(\x05H\x00R\x0emaxConnections\x88\x01\x01\x129\n" + @@ -212260,7 +220803,7 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12<\n" + "\x16source_firewall_policy\x18\xad\xda\xf6\v \x01(\tH\x01R\x14sourceFirewallPolicy\x88\x01\x01B\r\n" + "\v_request_idB\x19\n" + - "\x17_source_firewall_policy\"\xc6\x17\n" + + "\x17_source_firewall_policy\"\x9c\x18\n" + "\n" + "Commitment\x12&\n" + "\n" + @@ -212275,19 +220818,20 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\aR\x04kind\x88\x01\x01\x12f\n" + "\x10license_resource\x18\xcc\xd4\xea\xd0\x01 \x01(\v22.google.cloud.compute.v1.LicenseResourceCommitmentH\bR\x0flicenseResource\x88\x01\x01\x12;\n" + "\x18merge_source_commitments\x18\xc1\xaa\xd8Y \x03(\tR\x16mergeSourceCommitments\x12\x1a\n" + - "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\tR\x04name\x88\x01\x01\x12\x1a\n" + - "\x04plan\x18\xa9\x96\xd2\x01 \x01(\tH\n" + - "R\x04plan\x88\x01\x01\x12\x1e\n" + - "\x06region\x18\xf4͠B \x01(\tH\vR\x06region\x88\x01\x01\x12L\n" + + "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\tR\x04name\x88\x01\x01\x12I\n" + + "\x06params\x18\x86\xf3\xab% \x01(\v2).google.cloud.compute.v1.CommitmentParamsH\n" + + "R\x06params\x88\x01\x01\x12\x1a\n" + + "\x04plan\x18\xa9\x96\xd2\x01 \x01(\tH\vR\x04plan\x88\x01\x01\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tH\fR\x06region\x88\x01\x01\x12L\n" + "\freservations\x18\xa7\xec̾\x01 \x03(\v2$.google.cloud.compute.v1.ReservationR\freservations\x12b\n" + - "\x0fresource_status\x18\xc3\xfa\xf7v \x01(\v21.google.cloud.compute.v1.CommitmentResourceStatusH\fR\x0eresourceStatus\x88\x01\x01\x12L\n" + + "\x0fresource_status\x18\xc3\xfa\xf7v \x01(\v21.google.cloud.compute.v1.CommitmentResourceStatusH\rR\x0eresourceStatus\x88\x01\x01\x12L\n" + "\tresources\x18\xa5\xfc\xb2N \x03(\v2+.google.cloud.compute.v1.ResourceCommitmentR\tresources\x12$\n" + - "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\rR\bselfLink\x88\x01\x01\x12?\n" + - "\x17split_source_commitment\x18Է\xfd\xbf\x01 \x01(\tH\x0eR\x15splitSourceCommitment\x88\x01\x01\x12/\n" + - "\x0fstart_timestamp\x18\xf9\xaa\xf1' \x01(\tH\x0fR\x0estartTimestamp\x88\x01\x01\x12\x1e\n" + - "\x06status\x18\xf2\x9f\xb7V \x01(\tH\x10R\x06status\x88\x01\x01\x12.\n" + - "\x0estatus_message\x18\xba\xc9\xe9\x8d\x01 \x01(\tH\x11R\rstatusMessage\x88\x01\x01\x12\x1a\n" + - "\x04type\x18\xba\x9e\xda\x01 \x01(\tH\x12R\x04type\x88\x01\x01\"b\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\x0eR\bselfLink\x88\x01\x01\x12?\n" + + "\x17split_source_commitment\x18Է\xfd\xbf\x01 \x01(\tH\x0fR\x15splitSourceCommitment\x88\x01\x01\x12/\n" + + "\x0fstart_timestamp\x18\xf9\xaa\xf1' \x01(\tH\x10R\x0estartTimestamp\x88\x01\x01\x12\x1e\n" + + "\x06status\x18\xf2\x9f\xb7V \x01(\tH\x11R\x06status\x88\x01\x01\x12.\n" + + "\x0estatus_message\x18\xba\xc9\xe9\x8d\x01 \x01(\tH\x12R\rstatusMessage\x88\x01\x01\x12\x1a\n" + + "\x04type\x18\xba\x9e\xda\x01 \x01(\tH\x13R\x04type\x88\x01\x01\"b\n" + "\bCategory\x12\x16\n" + "\x12UNDEFINED_CATEGORY\x10\x00\x12\x1c\n" + "\x14CATEGORY_UNSPECIFIED\x10ֺ\xe6\xf2\x01\x12\x0f\n" + @@ -212355,7 +220899,8 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x03_idB\a\n" + "\x05_kindB\x13\n" + "\x11_license_resourceB\a\n" + - "\x05_nameB\a\n" + + "\x05_nameB\t\n" + + "\a_paramsB\a\n" + "\x05_planB\t\n" + "\a_regionB\x12\n" + "\x10_resource_statusB\f\n" + @@ -212398,7 +220943,12 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "_self_linkB\n" + "\n" + - "\b_warning\"\x9f\x01\n" + + "\b_warning\"\xd6\x01\n" + + "\x10CommitmentParams\x12z\n" + + "\x15resource_manager_tags\x18\xfc\x9b\x8b\xb4\x01 \x03(\v2B.google.cloud.compute.v1.CommitmentParams.ResourceManagerTagsEntryR\x13resourceManagerTags\x1aF\n" + + "\x18ResourceManagerTagsEntry\x12\x10\n" + + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\x9f\x01\n" + "\x18CommitmentResourceStatus\x12Y\n" + "%custom_term_eligibility_end_timestamp\x18\xfb\xabǭ\x01 \x01(\tH\x00R!customTermEligibilityEndTimestamp\x88\x01\x01B(\n" + "&_custom_term_eligibility_end_timestamp\"\xb2\x01\n" + @@ -212448,7 +220998,18 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "_self_linkB\n" + "\n" + - "\b_warning\"\xec\x02\n" + + "\b_warning\"\xdc\x02\n" + + "\x1aCompositeHealthCheckHealth\x12|\n" + + "\x0ehealth_sources\x18\xd5\xd1ܽ\x01 \x03(\v2Q.google.cloud.compute.v1.CompositeHealthChecksGetHealthResponseHealthSourceHealthR\rhealthSources\x12*\n" + + "\fhealth_state\x18\xee鿚\x01 \x01(\tH\x00R\vhealthState\x88\x01\x01\x12\x1a\n" + + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\x01R\x04kind\x88\x01\x01\"^\n" + + "\vHealthState\x12\x1a\n" + + "\x16UNDEFINED_HEALTH_STATE\x10\x00\x12\x0f\n" + + "\aHEALTHY\x10\xfd\xaa\xdb\xd1\x01\x12\x11\n" + + "\tUNHEALTHY\x10Ĺ\xad\xdc\x01\x12\x0f\n" + + "\aUNKNOWN\x10\xaa\xf0\xc4\xce\x01B\x0f\n" + + "\r_health_stateB\a\n" + + "\x05_kind\"\xec\x02\n" + "\x18CompositeHealthCheckList\x12\x14\n" + "\x02id\x18\x9b\x1a \x01(\tH\x00R\x02id\x88\x01\x01\x12F\n" + "\x05items\x18\xc0\xcf\xf7/ \x03(\v2-.google.cloud.compute.v1.CompositeHealthCheckR\x05items\x12\x1a\n" + @@ -212462,7 +221023,17 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "_self_linkB\n" + "\n" + - "\b_warning\"\xdc\x01\n" + + "\b_warning\"\x82\x02\n" + + "8CompositeHealthChecksGetHealthResponseHealthSourceHealth\x12*\n" + + "\fhealth_state\x18\xee鿚\x01 \x01(\tH\x00R\vhealthState\x88\x01\x01\x12\x1e\n" + + "\x06source\x18\x9b\xd0\xc1T \x01(\tH\x01R\x06source\x88\x01\x01\"^\n" + + "\vHealthState\x12\x1a\n" + + "\x16UNDEFINED_HEALTH_STATE\x10\x00\x12\x0f\n" + + "\aHEALTHY\x10\xfd\xaa\xdb\xd1\x01\x12\x11\n" + + "\tUNHEALTHY\x10Ĺ\xad\xdc\x01\x12\x0f\n" + + "\aUNKNOWN\x10\xaa\xf0\xc4\xce\x01B\x0f\n" + + "\r_health_stateB\t\n" + + "\a_source\"\xdc\x01\n" + "\x1fCompositeHealthChecksScopedList\x12i\n" + "\x17composite_health_checks\x18\xf6\xc7\xf9\xf6\x01 \x03(\v2-.google.cloud.compute.v1.CompositeHealthCheckR\x15compositeHealthChecks\x12B\n" + "\awarning\x18\x9cߖ\x18 \x01(\v2 .google.cloud.compute.v1.WarningH\x00R\awarning\x88\x01\x01B\n" + @@ -212817,6 +221388,14 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "@region_instance_group_managers_delete_instances_request_resource\x18\xf9\x8a\xeb\xee\x01 \x01(\v2J.google.cloud.compute.v1.RegionInstanceGroupManagersDeleteInstancesRequestB\x03\xe0A\x02R9regionInstanceGroupManagersDeleteInstancesRequestResource\x12%\n" + "\n" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + + "\v_request_id\"\xe6\x01\n" + + "!DeleteInstantSnapshotGroupRequest\x12<\n" + + "\x16instant_snapshot_group\x18\xe2\xec\xb5j \x01(\tB\x03\xe0A\x02R\x14instantSnapshotGroup\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12!\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\n" + + "\xe0A\x02\xf2G\x04zoneR\x04zoneB\r\n" + "\v_request_id\"\xd7\x01\n" + "\x1cDeleteInstantSnapshotRequest\x122\n" + "\x10instant_snapshot\x18\xe2\xdcߺ\x01 \x01(\tB\x03\xe0A\x02R\x0finstantSnapshot\x12*\n" + @@ -212977,6 +221556,13 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + "\n" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + + "\v_request_id\"\xdc\x01\n" + + " DeleteRegionBackendBucketRequest\x12-\n" + + "\x0ebackend_bucket\x18\xf5\xe3\xdd+ \x01(\tB\x03\xe0A\x02R\rbackendBucket\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + "\v_request_id\"\xe0\x01\n" + "!DeleteRegionBackendServiceRequest\x120\n" + "\x0fbackend_service\x18\x8a\xc0\xae\x92\x01 \x01(\tB\x03\xe0A\x02R\x0ebackendService\x12*\n" + @@ -213033,6 +221619,14 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + "\n" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + + "\v_request_id\"\xae\x02\n" + + "4DeleteRegionInstanceGroupManagerResizeRequestRequest\x12<\n" + + "\x16instance_group_manager\x18\xc3\xf7\xf3v \x01(\tB\x03\xe0A\x02R\x14instanceGroupManager\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12-\n" + + "\x0eresize_request\x18\x84\x84\xb9g \x01(\tB\x03\xe0A\x02R\rresizeRequestB\r\n" + "\v_request_id\"\xe6\x01\n" + "#DeleteRegionInstanceTemplateRequest\x124\n" + "\x11instance_template\x18䁻\x93\x01 \x01(\tB\x03\xe0A\x02R\x10instanceTemplate\x12*\n" + @@ -213040,6 +221634,13 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + "\n" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + + "\v_request_id\"\xf2\x01\n" + + "'DeleteRegionInstantSnapshotGroupRequest\x12<\n" + + "\x16instant_snapshot_group\x18\xe2\xec\xb5j \x01(\tB\x03\xe0A\x02R\x14instantSnapshotGroup\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + "\v_request_id\"\xe3\x01\n" + "\"DeleteRegionInstantSnapshotRequest\x122\n" + "\x10instant_snapshot\x18\xe2\xdcߺ\x01 \x01(\tB\x03\xe0A\x02R\x0finstantSnapshot\x12*\n" + @@ -213080,6 +221681,13 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12/\n" + "\x0fsecurity_policy\x18\x91\x86\xcaQ \x01(\tB\x03\xe0A\x02R\x0esecurityPolicyB\r\n" + + "\v_request_id\"\xcd\x01\n" + + "\x1bDeleteRegionSnapshotRequest\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12#\n" + + "\bsnapshot\x18ī\xeb\x87\x01 \x01(\tB\x03\xe0A\x02R\bsnapshotB\r\n" + "\v_request_id\"\xdf\x01\n" + "!DeleteRegionSslCertificateRequest\x12*\n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + @@ -213311,7 +221919,15 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\toperation\x18\xe7\xaa\xeb\x18 \x01(\tB\x03\xe0A\x02R\toperation\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1a\n" + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\x03\xe0A\x02R\x04zone\"\x1d\n" + - "\x1bDeleteZoneOperationResponse\"]\n" + + "\x1bDeleteZoneOperationResponse\"\xe2\x01\n" + + "\"DeleteZoneVmExtensionPolicyRequest\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x127\n" + + "\x13vm_extension_policy\x18\xba\x93\x8b\x9e\x01 \x01(\tB\x03\xe0A\x02R\x11vmExtensionPolicy\x12!\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\n" + + "\xe0A\x02\xf2G\x04zoneR\x04zoneB\r\n" + + "\v_request_id\"]\n" + "\x06Denied\x12)\n" + "\fI_p_protocol\x18\xbd\xf6\xde\xe8\x01 \x01(\tH\x00R\n" + "IPProtocol\x88\x01\x01\x12\x17\n" + @@ -213676,7 +222292,11 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "disk_types\x18\u05fe\xed^ \x03(\v2!.google.cloud.compute.v1.DiskTypeR\tdiskTypes\x12B\n" + "\awarning\x18\x9cߖ\x18 \x01(\v2 .google.cloud.compute.v1.WarningH\x00R\awarning\x88\x01\x01B\n" + "\n" + - "\b_warning\"Q\n" + + "\b_warning\"U\n" + + "\x17DiskUpdateKmsKeyRequest\x12)\n" + + "\fkms_key_name\x18\x99\xeb\xfb\xe6\x01 \x01(\tH\x00R\n" + + "kmsKeyName\x88\x01\x01B\x0f\n" + + "\r_kms_key_name\"Q\n" + "\x1fDisksAddResourcePoliciesRequest\x12.\n" + "\x11resource_policies\x18\xe1\x9c\xcc\n" + " \x03(\tR\x10resourcePolicies\"T\n" + @@ -214309,36 +222929,42 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x10forwarding_rules\x18\xb5\x9a̖\x01 \x03(\v2'.google.cloud.compute.v1.ForwardingRuleR\x0fforwardingRules\x12B\n" + "\awarning\x18\x9cߖ\x18 \x01(\v2 .google.cloud.compute.v1.WarningH\x00R\awarning\x88\x01\x01B\n" + "\n" + - "\b_warning\"\xf9\x14\n" + + "\b_warning\"\xd3\x17\n" + "\x11FutureReservation\x12u\n" + "\x15aggregate_reservation\x18\xcc\xf2\x83\x8b\x01 \x01(\v27.google.cloud.compute.v1.AllocationAggregateReservationH\x00R\x14aggregateReservation\x88\x01\x01\x12X\n" + "%auto_created_reservations_delete_time\x18\xd0\xd9\xe6s \x01(\tH\x01R!autoCreatedReservationsDeleteTime\x88\x01\x01\x12w\n" + "\"auto_created_reservations_duration\x18\x85\xb0\xd0\xec\x01 \x01(\v2!.google.cloud.compute.v1.DurationH\x02R\x1fautoCreatedReservationsDuration\x88\x01\x01\x12Y\n" + "%auto_delete_auto_created_reservations\x18\xaa\xe3\xa5\xea\x01 \x01(\bH\x03R!autoDeleteAutoCreatedReservations\x88\x01\x01\x12i\n" + - "\x0fcommitment_info\x18\x98\xef\xafN \x01(\v28.google.cloud.compute.v1.FutureReservationCommitmentInfoH\x04R\x0ecommitmentInfo\x88\x01\x01\x125\n" + - "\x12creation_timestamp\x18\xb6\x8f\xc7\x0e \x01(\tH\x05R\x11creationTimestamp\x88\x01\x01\x120\n" + - "\x0fdeployment_type\x18\U001005bd\x01 \x01(\tH\x06R\x0edeploymentType\x88\x01\x01\x12)\n" + - "\vdescription\x18\xfc\x87\xd6\xc9\x01 \x01(\tH\aR\vdescription\x88\x01\x01\x12G\n" + - "\x1benable_emergent_maintenance\x18\x89\xe2ר\x01 \x01(\bH\bR\x19enableEmergentMaintenance\x88\x01\x01\x12\x14\n" + - "\x02id\x18\x9b\x1a \x01(\x04H\tR\x02id\x88\x01\x01\x12\x1a\n" + - "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\n" + - "R\x04kind\x88\x01\x01\x12\x1a\n" + - "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\vR\x04name\x88\x01\x01\x12'\n" + - "\vname_prefix\x18ƥ\xddp \x01(\tH\fR\n" + - "namePrefix\x88\x01\x01\x12/\n" + - "\x0fplanning_status\x18\x94\xa6\xb3\t \x01(\tH\rR\x0eplanningStatus\x88\x01\x01\x122\n" + - "\x10reservation_mode\x18\xb6ܜ\x84\x01 \x01(\tH\x0eR\x0freservationMode\x88\x01\x01\x122\n" + - "\x10reservation_name\x18\x9eޝ\x84\x01 \x01(\tH\x0fR\x0freservationName\x88\x01\x01\x12/\n" + - "\x0fscheduling_type\x18\x85\xfe\xa4_ \x01(\tH\x10R\x0eschedulingType\x88\x01\x01\x12$\n" + - "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\x11R\bselfLink\x88\x01\x01\x121\n" + - "\x11self_link_with_id\x18\x82\xac\x9d\x15 \x01(\tH\x12R\x0eselfLinkWithId\x88\x01\x01\x12U\n" + - "\x0eshare_settings\x18\x83\x91\x94\x7f \x01(\v2&.google.cloud.compute.v1.ShareSettingsH\x13R\rshareSettings\x88\x01\x01\x12J\n" + - "\x1dspecific_reservation_required\x18\x9fǃl \x01(\bH\x14R\x1bspecificReservationRequired\x88\x01\x01\x12\x7f\n" + - "\x17specific_sku_properties\x18\xc2\xf8\xf53 \x01(\v2?.google.cloud.compute.v1.FutureReservationSpecificSKUPropertiesH\x15R\x15specificSkuProperties\x88\x01\x01\x12P\n" + - "\x06status\x18\xf2\x9f\xb7V \x01(\v20.google.cloud.compute.v1.FutureReservationStatusH\x16R\x06status\x88\x01\x01\x12^\n" + - "\vtime_window\x18\xa2\xeb\xd8\xc9\x01 \x01(\v24.google.cloud.compute.v1.FutureReservationTimeWindowH\x17R\n" + + "\x0fcommitment_info\x18\x98\xef\xafN \x01(\v28.google.cloud.compute.v1.FutureReservationCommitmentInfoH\x04R\x0ecommitmentInfo\x88\x01\x01\x12C\n" + + "\x19confidential_compute_type\x18\x99\uf8b8\x01 \x01(\tH\x05R\x17confidentialComputeType\x88\x01\x01\x125\n" + + "\x12creation_timestamp\x18\xb6\x8f\xc7\x0e \x01(\tH\x06R\x11creationTimestamp\x88\x01\x01\x120\n" + + "\x0fdeployment_type\x18\U001005bd\x01 \x01(\tH\aR\x0edeploymentType\x88\x01\x01\x12)\n" + + "\vdescription\x18\xfc\x87\xd6\xc9\x01 \x01(\tH\bR\vdescription\x88\x01\x01\x12G\n" + + "\x1benable_emergent_maintenance\x18\x89\xe2ר\x01 \x01(\bH\tR\x19enableEmergentMaintenance\x88\x01\x01\x12\x14\n" + + "\x02id\x18\x9b\x1a \x01(\x04H\n" + + "R\x02id\x88\x01\x01\x12\x1a\n" + + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\vR\x04kind\x88\x01\x01\x12\x1a\n" + + "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\fR\x04name\x88\x01\x01\x12'\n" + + "\vname_prefix\x18ƥ\xddp \x01(\tH\rR\n" + + "namePrefix\x88\x01\x01\x12P\n" + + "\x06params\x18\x86\xf3\xab% \x01(\v20.google.cloud.compute.v1.FutureReservationParamsH\x0eR\x06params\x88\x01\x01\x12/\n" + + "\x0fplanning_status\x18\x94\xa6\xb3\t \x01(\tH\x0fR\x0eplanningStatus\x88\x01\x01\x122\n" + + "\x10reservation_mode\x18\xb6ܜ\x84\x01 \x01(\tH\x10R\x0freservationMode\x88\x01\x01\x122\n" + + "\x10reservation_name\x18\x9eޝ\x84\x01 \x01(\tH\x11R\x0freservationName\x88\x01\x01\x12/\n" + + "\x0fscheduling_type\x18\x85\xfe\xa4_ \x01(\tH\x12R\x0eschedulingType\x88\x01\x01\x12$\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\x13R\bselfLink\x88\x01\x01\x121\n" + + "\x11self_link_with_id\x18\x82\xac\x9d\x15 \x01(\tH\x14R\x0eselfLinkWithId\x88\x01\x01\x12U\n" + + "\x0eshare_settings\x18\x83\x91\x94\x7f \x01(\v2&.google.cloud.compute.v1.ShareSettingsH\x15R\rshareSettings\x88\x01\x01\x12J\n" + + "\x1dspecific_reservation_required\x18\x9fǃl \x01(\bH\x16R\x1bspecificReservationRequired\x88\x01\x01\x12\x7f\n" + + "\x17specific_sku_properties\x18\xc2\xf8\xf53 \x01(\v2?.google.cloud.compute.v1.FutureReservationSpecificSKUPropertiesH\x17R\x15specificSkuProperties\x88\x01\x01\x12P\n" + + "\x06status\x18\xf2\x9f\xb7V \x01(\v20.google.cloud.compute.v1.FutureReservationStatusH\x18R\x06status\x88\x01\x01\x12^\n" + + "\vtime_window\x18\xa2\xeb\xd8\xc9\x01 \x01(\v24.google.cloud.compute.v1.FutureReservationTimeWindowH\x19R\n" + "timeWindow\x88\x01\x01\x12\x1a\n" + - "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tH\x18R\x04zone\x88\x01\x01\"a\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tH\x1aR\x04zone\x88\x01\x01\"\x97\x01\n" + + "\x17ConfidentialComputeType\x12'\n" + + "#UNDEFINED_CONFIDENTIAL_COMPUTE_TYPE\x10\x00\x12%\n" + + "\x1dCONFIDENTIAL_COMPUTE_TYPE_TDX\x10\xe2\xacҏ\x01\x12,\n" + + "%CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED\x10\x91\xaf\x91\x14\"a\n" + "\x0eDeploymentType\x12\x1d\n" + "\x19UNDEFINED_DEPLOYMENT_TYPE\x10\x00\x12\f\n" + "\x05DENSE\x10\xff\x95\xfb\x1e\x12\"\n" + @@ -214362,7 +222988,8 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "&_auto_created_reservations_delete_timeB%\n" + "#_auto_created_reservations_durationB(\n" + "&_auto_delete_auto_created_reservationsB\x12\n" + - "\x10_commitment_infoB\x15\n" + + "\x10_commitment_infoB\x1c\n" + + "\x1a_confidential_compute_typeB\x15\n" + "\x13_creation_timestampB\x12\n" + "\x10_deployment_typeB\x0e\n" + "\f_descriptionB\x1e\n" + @@ -214370,7 +222997,8 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x03_idB\a\n" + "\x05_kindB\a\n" + "\x05_nameB\x0e\n" + - "\f_name_prefixB\x12\n" + + "\f_name_prefixB\t\n" + + "\a_paramsB\x12\n" + "\x10_planning_statusB\x13\n" + "\x11_reservation_modeB\x13\n" + "\x11_reservation_nameB\x12\n" + @@ -214399,7 +223027,12 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\"PREVIOUSCOMMITMENTTERM_UNSPECIFIED\x10\x90\xf2\xfa.B\x12\n" + "\x10_commitment_nameB\x12\n" + "\x10_commitment_planB\x1c\n" + - "\x1a_previous_commitment_terms\"\xe7\x02\n" + + "\x1a_previous_commitment_terms\"\xe5\x01\n" + + "\x17FutureReservationParams\x12\x81\x01\n" + + "\x15resource_manager_tags\x18\xfc\x9b\x8b\xb4\x01 \x03(\v2I.google.cloud.compute.v1.FutureReservationParams.ResourceManagerTagsEntryR\x13resourceManagerTags\x1aF\n" + + "\x18ResourceManagerTagsEntry\x12\x10\n" + + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xe7\x02\n" + "&FutureReservationSpecificSKUProperties\x12\x8b\x01\n" + "\x13instance_properties\x18\x9d\x9e\xd8f \x01(\v2R.google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstancePropertiesH\x00R\x12instanceProperties\x88\x01\x01\x12A\n" + "\x18source_instance_template\x18\xc0\xc3\xc1\x9e\x01 \x01(\tH\x01R\x16sourceInstanceTemplate\x88\x01\x01\x12'\n" + @@ -214809,7 +223442,15 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x0fbackend_service\x18\x8a\xc0\xae\x92\x01 \x01(\tB\x03\xe0A\x02R\x0ebackendService\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\x82\x01\n" + - "!resource_group_reference_resource\x18\xd3\xfe\xed5 \x01(\v2/.google.cloud.compute.v1.ResourceGroupReferenceB\x03\xe0A\x02R\x1eresourceGroupReferenceResource\"\xfc\x01\n" + + "!resource_group_reference_resource\x18\xd3\xfe\xed5 \x01(\v2/.google.cloud.compute.v1.ResourceGroupReferenceB\x03\xe0A\x02R\x1eresourceGroupReferenceResource\"\xad\x01\n" + + "*GetHealthRegionCompositeHealthCheckRequest\x12=\n" + + "\x16composite_health_check\x18\x9d\xc0\xd6\xde\x01 \x01(\tB\x03\xe0A\x02R\x14compositeHealthCheck\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\"\x94\x01\n" + + "\"GetHealthRegionHealthSourceRequest\x12,\n" + + "\rhealth_source\x18ކų\x01 \x01(\tB\x03\xe0A\x02R\fhealthSource\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\"\xfc\x01\n" + "\x1aGetHealthTargetPoolRequest\x12s\n" + "\x1binstance_reference_resource\x18\xec\xe4\u058b\x01 \x01(\v2*.google.cloud.compute.v1.InstanceReferenceB\x03\xe0A\x02R\x19instanceReferenceResource\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + @@ -214851,6 +223492,12 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + " options_requested_policy_version\x18\xbd\xfc\x85\xee\x01 \x01(\x05H\x00R\x1doptionsRequestedPolicyVersion\x88\x01\x01\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresourceB#\n" + + "!_options_requested_policy_version\"\x82\x02\n" + + "'GetIamPolicyInstantSnapshotGroupRequest\x12P\n" + + " options_requested_policy_version\x18\xbd\xfc\x85\xee\x01 \x01(\x05H\x00R\x1doptionsRequestedPolicyVersion\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\x12\x1a\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\x03\xe0A\x02R\x04zoneB#\n" + "!_options_requested_policy_version\"\xfd\x01\n" + "\"GetIamPolicyInstantSnapshotRequest\x12P\n" + " options_requested_policy_version\x18\xbd\xfc\x85\xee\x01 \x01(\x05H\x00R\x1doptionsRequestedPolicyVersion\x88\x01\x01\x12 \n" + @@ -214900,6 +223547,12 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresourceB#\n" + + "!_options_requested_policy_version\"\x85\x02\n" + + "&GetIamPolicyRegionBackendBucketRequest\x12P\n" + + " options_requested_policy_version\x18\xbd\xfc\x85\xee\x01 \x01(\x05H\x00R\x1doptionsRequestedPolicyVersion\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresourceB#\n" + "!_options_requested_policy_version\"\x86\x02\n" + "'GetIamPolicyRegionBackendServiceRequest\x12P\n" + " options_requested_policy_version\x18\xbd\xfc\x85\xee\x01 \x01(\x05H\x00R\x1doptionsRequestedPolicyVersion\x88\x01\x01\x12 \n" + @@ -214912,6 +223565,12 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresourceB#\n" + + "!_options_requested_policy_version\"\x8c\x02\n" + + "-GetIamPolicyRegionInstantSnapshotGroupRequest\x12P\n" + + " options_requested_policy_version\x18\xbd\xfc\x85\xee\x01 \x01(\x05H\x00R\x1doptionsRequestedPolicyVersion\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresourceB#\n" + "!_options_requested_policy_version\"\x87\x02\n" + "(GetIamPolicyRegionInstantSnapshotRequest\x12P\n" + " options_requested_policy_version\x18\xbd\xfc\x85\xee\x01 \x01(\x05H\x00R\x1doptionsRequestedPolicyVersion\x88\x01\x01\x12 \n" + @@ -214924,6 +223583,12 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresourceB#\n" + + "!_options_requested_policy_version\"\x80\x02\n" + + "!GetIamPolicyRegionSnapshotRequest\x12P\n" + + " options_requested_policy_version\x18\xbd\xfc\x85\xee\x01 \x01(\x05H\x00R\x1doptionsRequestedPolicyVersion\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresourceB#\n" + "!_options_requested_policy_version\"\xaf\x02\n" + "#GetIamPolicyReservationBlockRequest\x12P\n" + " options_requested_policy_version\x18\xbd\xfc\x85\xee\x01 \x01(\x05H\x00R\x1doptionsRequestedPolicyVersion\x88\x01\x01\x12/\n" + @@ -215003,7 +223668,11 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\x03\xe0A\x02R\x04zone\"t\n" + "\x1aGetInstanceTemplateRequest\x124\n" + "\x11instance_template\x18䁻\x93\x01 \x01(\tB\x03\xe0A\x02R\x10instanceTemplate\x12 \n" + - "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\"\x8d\x01\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\"\x9c\x01\n" + + "\x1eGetInstantSnapshotGroupRequest\x12<\n" + + "\x16instant_snapshot_group\x18\xe2\xec\xb5j \x01(\tB\x03\xe0A\x02R\x14instantSnapshotGroup\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1a\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\x03\xe0A\x02R\x04zone\"\x8d\x01\n" + "\x19GetInstantSnapshotRequest\x122\n" + "\x10instant_snapshot\x18\xe2\xdcߺ\x01 \x01(\tB\x03\xe0A\x02R\x0finstantSnapshot\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1a\n" + @@ -215136,6 +223805,10 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "autoscaler\x18\xd7\xfd\xd2\xf6\x01 \x01(\tB\x03\xe0A\x02R\n" + "autoscaler\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\"\x90\x01\n" + + "\x1dGetRegionBackendBucketRequest\x12-\n" + + "\x0ebackend_bucket\x18\xf5\xe3\xdd+ \x01(\tB\x03\xe0A\x02R\rbackendBucket\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\"\x94\x01\n" + "\x1eGetRegionBackendServiceRequest\x120\n" + "\x0fbackend_service\x18\x8a\xc0\xae\x92\x01 \x01(\tB\x03\xe0A\x02R\x0ebackendService\x12 \n" + @@ -215178,7 +223851,12 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "$GetRegionInstanceGroupManagerRequest\x12<\n" + "\x16instance_group_manager\x18\xc3\xf7\xf3v \x01(\tB\x03\xe0A\x02R\x14instanceGroupManager\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + - "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\"\x90\x01\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\"\xe2\x01\n" + + "1GetRegionInstanceGroupManagerResizeRequestRequest\x12<\n" + + "\x16instance_group_manager\x18\xc3\xf7\xf3v \x01(\tB\x03\xe0A\x02R\x14instanceGroupManager\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12-\n" + + "\x0eresize_request\x18\x84\x84\xb9g \x01(\tB\x03\xe0A\x02R\rresizeRequest\"\x90\x01\n" + "\x1dGetRegionInstanceGroupRequest\x12-\n" + "\x0einstance_group\x18\xd5\xd4\xd5& \x01(\tB\x03\xe0A\x02R\rinstanceGroup\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + @@ -215186,6 +223864,10 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + " GetRegionInstanceTemplateRequest\x124\n" + "\x11instance_template\x18䁻\x93\x01 \x01(\tB\x03\xe0A\x02R\x10instanceTemplate\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\"\xa6\x01\n" + + "$GetRegionInstantSnapshotGroupRequest\x12<\n" + + "\x16instant_snapshot_group\x18\xe2\xec\xb5j \x01(\tB\x03\xe0A\x02R\x14instantSnapshotGroup\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\"\x97\x01\n" + "\x1fGetRegionInstantSnapshotRequest\x122\n" + "\x10instant_snapshot\x18\xe2\xdcߺ\x01 \x01(\tB\x03\xe0A\x02R\x0finstantSnapshot\x12 \n" + @@ -215214,7 +223896,14 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x1eGetRegionSecurityPolicyRequest\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12/\n" + - "\x0fsecurity_policy\x18\x91\x86\xcaQ \x01(\tB\x03\xe0A\x02R\x0esecurityPolicy\"\x93\x01\n" + + "\x0fsecurity_policy\x18\x91\x86\xcaQ \x01(\tB\x03\xe0A\x02R\x0esecurityPolicy\"\x81\x01\n" + + "\x18GetRegionSnapshotRequest\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12#\n" + + "\bsnapshot\x18ī\xeb\x87\x01 \x01(\tB\x03\xe0A\x02R\bsnapshot\"c\n" + + "\x1fGetRegionSnapshotSettingRequest\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\"\x93\x01\n" + "\x1eGetRegionSslCertificateRequest\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12/\n" + @@ -215494,6 +224183,10 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\x03\xe0A\x02R\x04zone\"N\n" + "\x0eGetZoneRequest\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1a\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\x03\xe0A\x02R\x04zone\"\x98\x01\n" + + "\x1fGetZoneVmExtensionPolicyRequest\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x127\n" + + "\x13vm_extension_policy\x18\xba\x93\x8b\x9e\x01 \x01(\tB\x03\xe0A\x02R\x11vmExtensionPolicy\x12\x1a\n" + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\x03\xe0A\x02R\x04zone\"\xa9\x01\n" + "\x1aGlobalAddressesMoveRequest\x12)\n" + "\vdescription\x18\xfc\x87\xd6\xc9\x01 \x01(\tH\x00R\vdescription\x88\x01\x01\x128\n" + @@ -215954,7 +224647,18 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "_self_linkB\n" + "\n" + - "\b_warning\"\xdc\x02\n" + + "\b_warning\"\xb6\x02\n" + + "\x12HealthSourceHealth\x12*\n" + + "\fhealth_state\x18\xee鿚\x01 \x01(\tH\x00R\vhealthState\x88\x01\x01\x12\x1a\n" + + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\x01R\x04kind\x88\x01\x01\x12^\n" + + "\asources\x18\xb8\xb7\xf2; \x03(\v2A.google.cloud.compute.v1.HealthSourcesGetHealthResponseSourceInfoR\asources\"^\n" + + "\vHealthState\x12\x1a\n" + + "\x16UNDEFINED_HEALTH_STATE\x10\x00\x12\x0f\n" + + "\aHEALTHY\x10\xfd\xaa\xdb\xd1\x01\x12\x11\n" + + "\tUNHEALTHY\x10Ĺ\xad\xdc\x01\x12\x0f\n" + + "\aUNKNOWN\x10\xaa\xf0\xc4\xce\x01B\x0f\n" + + "\r_health_stateB\a\n" + + "\x05_kind\"\xdc\x02\n" + "\x10HealthSourceList\x12\x14\n" + "\x02id\x18\x9b\x1a \x01(\tH\x00R\x02id\x88\x01\x01\x12>\n" + "\x05items\x18\xc0\xcf\xf7/ \x03(\v2%.google.cloud.compute.v1.HealthSourceR\x05items\x12\x1a\n" + @@ -215968,7 +224672,20 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "_self_linkB\n" + "\n" + - "\b_warning\"\xbb\x01\n" + + "\b_warning\"\x89\x02\n" + + "(HealthSourcesGetHealthResponseSourceInfo\x12l\n" + + "\bbackends\x18ߘ\xcb\xf3\x01 \x03(\v2L.google.cloud.compute.v1.HealthSourcesGetHealthResponseSourceInfoBackendInfoR\bbackends\x120\n" + + "\x0fforwarding_rule\x18\xfe\xa5݀\x01 \x01(\tH\x00R\x0eforwardingRule\x88\x01\x01\x12\x1e\n" + + "\x06source\x18\x9b\xd0\xc1T \x01(\tH\x01R\x06source\x88\x01\x01B\x12\n" + + "\x10_forwarding_ruleB\t\n" + + "\a_source\"\xfa\x01\n" + + "3HealthSourcesGetHealthResponseSourceInfoBackendInfo\x12.\n" + + "\x0eendpoint_count\x18囆\xe8\x01 \x01(\x05H\x00R\rendpointCount\x88\x01\x01\x12\x1c\n" + + "\x05group\x18\xff\xec\x83/ \x01(\tH\x01R\x05group\x88\x01\x01\x12=\n" + + "\x16healthy_endpoint_count\x18\xc7\xc9\xf2\x8a\x01 \x01(\x05H\x02R\x14healthyEndpointCount\x88\x01\x01B\x11\n" + + "\x0f_endpoint_countB\b\n" + + "\x06_groupB\x19\n" + + "\x17_healthy_endpoint_count\"\xbb\x01\n" + "\x17HealthSourcesScopedList\x12P\n" + "\x0ehealth_sources\x18\xd5\xd1ܽ\x01 \x03(\v2%.google.cloud.compute.v1.HealthSourceR\rhealthSources\x12B\n" + "\awarning\x18\x9cߖ\x18 \x01(\v2 .google.cloud.compute.v1.WarningH\x00R\awarning\x88\x01\x01B\n" + @@ -216140,18 +224857,20 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x0fper_try_timeout\x18\xbb\xadą\x01 \x01(\v2!.google.cloud.compute.v1.DurationH\x01R\rperTryTimeout\x88\x01\x01\x12,\n" + "\x10retry_conditions\x18\xaf\xe1\xde\r \x03(\tR\x0fretryConditionsB\x0e\n" + "\f_num_retriesB\x12\n" + - "\x10_per_try_timeout\"\xf6\x06\n" + - "\x0fHttpRouteAction\x12M\n" + - "\vcors_policy\x18\x84̝\xbe\x01 \x01(\v2#.google.cloud.compute.v1.CorsPolicyH\x00R\n" + + "\x10_per_try_timeout\"\xd9\a\n" + + "\x0fHttpRouteAction\x12P\n" + + "\fcache_policy\x18\x8f\xb9\x8b\xda\x01 \x01(\v2$.google.cloud.compute.v1.CachePolicyH\x00R\vcachePolicy\x88\x01\x01\x12M\n" + + "\vcors_policy\x18\x84̝\xbe\x01 \x01(\v2#.google.cloud.compute.v1.CorsPolicyH\x01R\n" + "corsPolicy\x88\x01\x01\x12j\n" + - "\x16fault_injection_policy\x18\x97\x94\xea\xc4\x01 \x01(\v2+.google.cloud.compute.v1.HttpFaultInjectionH\x01R\x14faultInjectionPolicy\x88\x01\x01\x12Y\n" + - "\x13max_stream_duration\x18\x98\xa5\xa5\x1d \x01(\v2!.google.cloud.compute.v1.DurationH\x02R\x11maxStreamDuration\x88\x01\x01\x12h\n" + - "\x15request_mirror_policy\x18\x82\xe0\xffh \x01(\v2,.google.cloud.compute.v1.RequestMirrorPolicyH\x03R\x13requestMirrorPolicy\x88\x01\x01\x12S\n" + - "\fretry_policy\x18\xa9\xe5\x8a\x1b \x01(\v2(.google.cloud.compute.v1.HttpRetryPolicyH\x04R\vretryPolicy\x88\x01\x01\x12D\n" + - "\atimeout\x18ᚽ\x8d\x01 \x01(\v2!.google.cloud.compute.v1.DurationH\x05R\atimeout\x88\x01\x01\x12M\n" + - "\vurl_rewrite\x18\xbc\xfd\xaa\x82\x01 \x01(\v2#.google.cloud.compute.v1.UrlRewriteH\x06R\n" + + "\x16fault_injection_policy\x18\x97\x94\xea\xc4\x01 \x01(\v2+.google.cloud.compute.v1.HttpFaultInjectionH\x02R\x14faultInjectionPolicy\x88\x01\x01\x12Y\n" + + "\x13max_stream_duration\x18\x98\xa5\xa5\x1d \x01(\v2!.google.cloud.compute.v1.DurationH\x03R\x11maxStreamDuration\x88\x01\x01\x12h\n" + + "\x15request_mirror_policy\x18\x82\xe0\xffh \x01(\v2,.google.cloud.compute.v1.RequestMirrorPolicyH\x04R\x13requestMirrorPolicy\x88\x01\x01\x12S\n" + + "\fretry_policy\x18\xa9\xe5\x8a\x1b \x01(\v2(.google.cloud.compute.v1.HttpRetryPolicyH\x05R\vretryPolicy\x88\x01\x01\x12D\n" + + "\atimeout\x18ᚽ\x8d\x01 \x01(\v2!.google.cloud.compute.v1.DurationH\x06R\atimeout\x88\x01\x01\x12M\n" + + "\vurl_rewrite\x18\xbc\xfd\xaa\x82\x01 \x01(\v2#.google.cloud.compute.v1.UrlRewriteH\aR\n" + "urlRewrite\x88\x01\x01\x12o\n" + - "\x19weighted_backend_services\x18\xd1\xc7ڠ\x01 \x03(\v2/.google.cloud.compute.v1.WeightedBackendServiceR\x17weightedBackendServicesB\x0e\n" + + "\x19weighted_backend_services\x18\xd1\xc7ڠ\x01 \x03(\v2/.google.cloud.compute.v1.WeightedBackendServiceR\x17weightedBackendServicesB\x0f\n" + + "\r_cache_policyB\x0e\n" + "\f_cors_policyB\x19\n" + "\x17_fault_injection_policyB\x16\n" + "\x14_max_stream_durationB\x18\n" + @@ -216472,7 +225191,17 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12%\n" + "\n" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + - "\v_request_id\"\x92\x02\n" + + "\v_request_id\"\x86\x03\n" + + "!InsertInstantSnapshotGroupRequest\x12|\n" + + "\x1finstant_snapshot_group_resource\x18˚\x96E \x01(\v2-.google.cloud.compute.v1.InstantSnapshotGroupB\x03\xe0A\x02R\x1cinstantSnapshotGroupResource\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12A\n" + + "\x18source_consistency_group\x18\xf4̯\xfd\x01 \x01(\tH\x01R\x16sourceConsistencyGroup\x88\x01\x01\x12!\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\n" + + "\xe0A\x02\xf2G\x04zoneR\x04zoneB\r\n" + + "\v_request_idB\x1b\n" + + "\x19_source_consistency_group\"\x92\x02\n" + "\x1cInsertInstantSnapshotRequest\x12m\n" + "\x19instant_snapshot_resource\x18˪\x88\xb7\x01 \x01(\v2(.google.cloud.compute.v1.InstantSnapshotB\x03\xe0A\x02R\x17instantSnapshotResource\x12*\n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12%\n" + @@ -216608,6 +225337,13 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + "\n" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + + "\v_request_id\"\x96\x02\n" + + " InsertRegionBackendBucketRequest\x12g\n" + + "\x17backend_bucket_resource\x18\x98\xceǵ\x01 \x01(\v2&.google.cloud.compute.v1.BackendBucketB\x03\xe0A\x02R\x15backendBucketResource\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + "\v_request_id\"\x9a\x02\n" + "!InsertRegionBackendServiceRequest\x12j\n" + "\x18backend_service_resource\x18\xa3\x81ߥ\x01 \x01(\v2'.google.cloud.compute.v1.BackendServiceB\x03\xe0A\x02R\x16backendServiceResource\x12*\n" + @@ -216673,6 +225409,14 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + "\n" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + + "\v_request_id\"\xa8\x03\n" + + "4InsertRegionInstanceGroupManagerResizeRequestRequest\x12<\n" + + "\x16instance_group_manager\x18\xc3\xf7\xf3v \x01(\tB\x03\xe0A\x02R\x14instanceGroupManager\x12\xa6\x01\n" + + ".instance_group_manager_resize_request_resource\x18\xed\xbe\xb5\xdf\x01 \x01(\v2:.google.cloud.compute.v1.InstanceGroupManagerResizeRequestB\x03\xe0A\x02R)instanceGroupManagerResizeRequestResource\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + "\v_request_id\"\xa1\x02\n" + "#InsertRegionInstanceTemplateRequest\x12o\n" + "\x1ainstance_template_resource\x18\x89\xea\x8b\x05 \x01(\v2).google.cloud.compute.v1.InstanceTemplateB\x03\xe0A\x02R\x18instanceTemplateResource\x12*\n" + @@ -216680,7 +225424,16 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + "\n" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + - "\v_request_id\"\x9e\x02\n" + + "\v_request_id\"\x92\x03\n" + + "'InsertRegionInstantSnapshotGroupRequest\x12|\n" + + "\x1finstant_snapshot_group_resource\x18˚\x96E \x01(\v2-.google.cloud.compute.v1.InstantSnapshotGroupB\x03\xe0A\x02R\x1cinstantSnapshotGroupResource\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12A\n" + + "\x18source_consistency_group\x18\xf4̯\xfd\x01 \x01(\tH\x01R\x16sourceConsistencyGroup\x88\x01\x01B\r\n" + + "\v_request_idB\x1b\n" + + "\x19_source_consistency_group\"\x9e\x02\n" + "\"InsertRegionInstantSnapshotRequest\x12m\n" + "\x19instant_snapshot_resource\x18˪\x88\xb7\x01 \x01(\v2(.google.cloud.compute.v1.InstantSnapshotB\x03\xe0A\x02R\x17instantSnapshotResource\x12*\n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + @@ -216717,7 +225470,14 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x18security_policy_resource\x18\xfc\xaa\x89g \x01(\v2'.google.cloud.compute.v1.SecurityPolicyB\x03\xe0A\x02R\x16securityPolicyResource\x12+\n" + "\rvalidate_only\x18\xb5\xfa\xdfs \x01(\bH\x01R\fvalidateOnly\x88\x01\x01B\r\n" + "\v_request_idB\x10\n" + - "\x0e_validate_only\"\x99\x02\n" + + "\x0e_validate_only\"\x81\x02\n" + + "\x1bInsertRegionSnapshotRequest\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12W\n" + + "\x11snapshot_resource\x18\xa9\xb8\xc1\xe5\x01 \x01(\v2!.google.cloud.compute.v1.SnapshotB\x03\xe0A\x02R\x10snapshotResourceB\r\n" + + "\v_request_id\"\x99\x02\n" + "!InsertRegionSslCertificateRequest\x12*\n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + @@ -216916,7 +225676,15 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\rvalidate_only\x18\xb5\xfa\xdfs \x01(\bH\x01R\fvalidateOnly\x88\x01\x01\x12Z\n" + "\x13wire_group_resource\x18\xc8\xc1\xeb7 \x01(\v2\".google.cloud.compute.v1.WireGroupB\x03\xe0A\x02R\x11wireGroupResourceB\r\n" + "\v_request_idB\x10\n" + - "\x0e_validate_only\"\x84%\n" + + "\x0e_validate_only\"\x9f\x02\n" + + "\"InsertZoneVmExtensionPolicyRequest\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12t\n" + + "\x1cvm_extension_policy_resource\x18\xf3\xf9\xf1\xf5\x01 \x01(\v2*.google.cloud.compute.v1.VmExtensionPolicyB\x03\xe0A\x02R\x19vmExtensionPolicyResource\x12!\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\n" + + "\xe0A\x02\xf2G\x04zoneR\x04zoneB\r\n" + + "\v_request_id\"\x84%\n" + "\bInstance\x12u\n" + "\x19advanced_machine_features\x18\xb2\xe7\xaa\xc3\x01 \x01(\v20.google.cloud.compute.v1.AdvancedMachineFeaturesH\x00R\x17advancedMachineFeatures\x88\x01\x01\x12-\n" + "\x0ecan_ip_forward\x18\xfc\x86\x84\xdf\x01 \x01(\bH\x01R\fcanIpForward\x88\x01\x01\x12~\n" + @@ -217334,21 +226102,22 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "_self_linkB\n" + "\n" + - "\b_warning\"\x8c\a\n" + + "\b_warning\"\xb7\a\n" + "!InstanceGroupManagerResizeRequest\x125\n" + "\x12creation_timestamp\x18\xb6\x8f\xc7\x0e \x01(\tH\x00R\x11creationTimestamp\x88\x01\x01\x12)\n" + "\vdescription\x18\xfc\x87\xd6\xc9\x01 \x01(\tH\x01R\vdescription\x88\x01\x01\x12\x14\n" + "\x02id\x18\x9b\x1a \x01(\x04H\x02R\x02id\x88\x01\x01\x12\x1a\n" + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\x03R\x04kind\x88\x01\x01\x12\x1a\n" + - "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\x04R\x04name\x88\x01\x01\x12_\n" + - "\x16requested_run_duration\x18\xf9\x8b\xd9n \x01(\v2!.google.cloud.compute.v1.DurationH\x05R\x14requestedRunDuration\x88\x01\x01\x12$\n" + - "\tresize_by\x18\xc2\xcf\xc0\xfe\x01 \x01(\x05H\x06R\bresizeBy\x88\x01\x01\x12$\n" + - "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\aR\bselfLink\x88\x01\x01\x121\n" + - "\x11self_link_with_id\x18\x82\xac\x9d\x15 \x01(\tH\bR\x0eselfLinkWithId\x88\x01\x01\x12\x1c\n" + - "\x05state\x18\x91\x89\xab4 \x01(\tH\tR\x05state\x88\x01\x01\x12`\n" + - "\x06status\x18\xf2\x9f\xb7V \x01(\v2@.google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatusH\n" + - "R\x06status\x88\x01\x01\x12\x1a\n" + - "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tH\vR\x04zone\x88\x01\x01\"\x8f\x01\n" + + "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\x04R\x04name\x88\x01\x01\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tH\x05R\x06region\x88\x01\x01\x12_\n" + + "\x16requested_run_duration\x18\xf9\x8b\xd9n \x01(\v2!.google.cloud.compute.v1.DurationH\x06R\x14requestedRunDuration\x88\x01\x01\x12$\n" + + "\tresize_by\x18\xc2\xcf\xc0\xfe\x01 \x01(\x05H\aR\bresizeBy\x88\x01\x01\x12$\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\bR\bselfLink\x88\x01\x01\x121\n" + + "\x11self_link_with_id\x18\x82\xac\x9d\x15 \x01(\tH\tR\x0eselfLinkWithId\x88\x01\x01\x12\x1c\n" + + "\x05state\x18\x91\x89\xab4 \x01(\tH\n" + + "R\x05state\x88\x01\x01\x12`\n" + + "\x06status\x18\xf2\x9f\xb7V \x01(\v2@.google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatusH\vR\x06status\x88\x01\x01\x12\x1a\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tH\fR\x04zone\x88\x01\x01\"\x8f\x01\n" + "\x05State\x12\x13\n" + "\x0fUNDEFINED_STATE\x10\x00\x12\x0f\n" + "\bACCEPTED\x10\xa7\x9f\xd2u\x12\x10\n" + @@ -217361,7 +226130,8 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\f_descriptionB\x05\n" + "\x03_idB\a\n" + "\x05_kindB\a\n" + - "\x05_nameB\x19\n" + + "\x05_nameB\t\n" + + "\a_regionB\x19\n" + "\x17_requested_run_durationB\f\n" + "\n" + "_resize_byB\f\n" + @@ -217404,20 +226174,22 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x06MANUAL\x10Ʒ\xf78\x12\x14\n" + "\x0eSCALE_OUT_POOL\x10\x82\xe4&B\x14\n" + "\x12_initial_delay_secB\a\n" + - "\x05_mode\"\xcf\x06\n" + + "\x05_mode\"\xfd\a\n" + "\x1aInstanceGroupManagerStatus\x12\x7f\n" + "\x14all_instances_config\x18\x81\xae\xd85 \x01(\v2E.google.cloud.compute.v1.InstanceGroupManagerStatusAllInstancesConfigH\x00R\x12allInstancesConfig\x88\x01\x01\x12\x90\x01\n" + "\x1eapplied_accelerator_topologies\x18\xa3\xef\xc5\xe5\x01 \x03(\v2F.google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopologyR\x1cappliedAcceleratorTopologies\x12'\n" + "\n" + "autoscaler\x18\xd7\xfd\xd2\xf6\x01 \x01(\tH\x01R\n" + "autoscaler\x88\x01\x01\x12\x89\x01\n" + - "\x17bulk_instance_operation\x18\x8a\xad\x9b\xef\x01 \x01(\v2H.google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperationH\x02R\x15bulkInstanceOperation\x88\x01\x01\x12#\n" + - "\tis_stable\x18\xf0\xef\xd83 \x01(\bH\x03R\bisStable\x88\x01\x01\x12_\n" + - "\bstateful\x18\xcc\xe6\xc8t \x01(\v2;.google.cloud.compute.v1.InstanceGroupManagerStatusStatefulH\x04R\bstateful\x88\x01\x01\x12p\n" + - "\x0eversion_target\x18\xd8\xdd\xfe\x89\x01 \x01(\v2@.google.cloud.compute.v1.InstanceGroupManagerStatusVersionTargetH\x05R\rversionTarget\x88\x01\x01B\x17\n" + + "\x17bulk_instance_operation\x18\x8a\xad\x9b\xef\x01 \x01(\v2H.google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperationH\x02R\x15bulkInstanceOperation\x88\x01\x01\x12\x8d\x01\n" + + "\x19current_instance_statuses\x18\xc4\uef00\x01 \x01(\v2H.google.cloud.compute.v1.InstanceGroupManagerStatusInstanceStatusSummaryH\x03R\x17currentInstanceStatuses\x88\x01\x01\x12#\n" + + "\tis_stable\x18\xf0\xef\xd83 \x01(\bH\x04R\bisStable\x88\x01\x01\x12_\n" + + "\bstateful\x18\xcc\xe6\xc8t \x01(\v2;.google.cloud.compute.v1.InstanceGroupManagerStatusStatefulH\x05R\bstateful\x88\x01\x01\x12p\n" + + "\x0eversion_target\x18\xd8\xdd\xfe\x89\x01 \x01(\v2@.google.cloud.compute.v1.InstanceGroupManagerStatusVersionTargetH\x06R\rversionTarget\x88\x01\x01B\x17\n" + "\x15_all_instances_configB\r\n" + "\v_autoscalerB\x1a\n" + - "\x18_bulk_instance_operationB\f\n" + + "\x18_bulk_instance_operationB\x1c\n" + + "\x1a_current_instance_statusesB\f\n" + "\n" + "_is_stableB\v\n" + "\t_statefulB\x11\n" + @@ -217462,7 +226234,45 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\ttimestamp\x18\x96Ҥ\x1a \x01(\tH\x01R\ttimestamp\x88\x01\x01B\b\n" + "\x06_errorB\f\n" + "\n" + - "_timestamp\"\x98\x02\n" + + "_timestamp\"\xef\x05\n" + + "/InstanceGroupManagerStatusInstanceStatusSummary\x12/\n" + + "\x0edeprovisioning\x18\xee˰\xdc\x01 \x01(\x05H\x00R\x0edeprovisioning\x88\x01\x01\x12*\n" + + "\fnon_existent\x18Ƈ\xb2\xdf\x01 \x01(\x05H\x01R\vnonExistent\x88\x01\x01\x12!\n" + + "\apending\x18\x97\x93º\x01 \x01(\x05H\x02R\apending\x88\x01\x01\x12)\n" + + "\fpending_stop\x18\xaa\xbb\xe6M \x01(\x05H\x03R\vpendingStop\x88\x01\x01\x12*\n" + + "\fprovisioning\x18\xed\xa5\xdf9 \x01(\x05H\x04R\fprovisioning\x88\x01\x01\x12%\n" + + "\trepairing\x18\xb5ⴔ\x01 \x01(\x05H\x05R\trepairing\x88\x01\x01\x12!\n" + + "\arunning\x18\xbf\xab\xbc\xe3\x01 \x01(\x05H\x06R\arunning\x88\x01\x01\x12 \n" + + "\astaging\x18\xbb\xb0\x98w \x01(\x05H\aR\astaging\x88\x01\x01\x12 \n" + + "\astopped\x18ͣ\xbe} \x01(\x05H\bR\astopped\x88\x01\x01\x12\"\n" + + "\bstopping\x18\xf4\xf0\x8a2 \x01(\x05H\tR\bstopping\x88\x01\x01\x12%\n" + + "\tsuspended\x18ۛ\xd6\xe7\x01 \x01(\x05H\n" + + "R\tsuspended\x88\x01\x01\x12&\n" + + "\n" + + "suspending\x18\xa6\xfc\xf0\r \x01(\x05H\vR\n" + + "suspending\x88\x01\x01\x12'\n" + + "\n" + + "terminated\x18\xa3\x9c\xf4\x8f\x01 \x01(\x05H\fR\n" + + "terminated\x88\x01\x01B\x11\n" + + "\x0f_deprovisioningB\x0f\n" + + "\r_non_existentB\n" + + "\n" + + "\b_pendingB\x0f\n" + + "\r_pending_stopB\x0f\n" + + "\r_provisioningB\f\n" + + "\n" + + "_repairingB\n" + + "\n" + + "\b_runningB\n" + + "\n" + + "\b_stagingB\n" + + "\n" + + "\b_stoppedB\v\n" + + "\t_stoppingB\f\n" + + "\n" + + "_suspendedB\r\n" + + "\v_suspendingB\r\n" + + "\v_terminated\"\x98\x02\n" + "\"InstanceGroupManagerStatusStateful\x126\n" + "\x13has_stateful_config\x18\xf0\xe7\xd64 \x01(\bH\x00R\x11hasStatefulConfig\x88\x01\x01\x12\x88\x01\n" + "\x14per_instance_configs\x18\xa9\xd5\xf8\xfa\x01 \x01(\v2M.google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigsH\x01R\x12perInstanceConfigs\x88\x01\x01B\x16\n" + @@ -217970,7 +226780,7 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x06scopes\x18\x9f\x99\x92O \x03(\tR\x06scopesB\b\n" + "\x06_email\"~\n" + "&InstancesStartWithEncryptionKeyRequest\x12T\n" + - "\x05disks\x18\xf6\xcc\xca- \x03(\v2;.google.cloud.compute.v1.CustomerEncryptionKeyProtectedDiskR\x05disks\"\x82\f\n" + + "\x05disks\x18\xf6\xcc\xca- \x03(\v2;.google.cloud.compute.v1.CustomerEncryptionKeyProtectedDiskR\x05disks\"\xe5\r\n" + "\x0fInstantSnapshot\x12+\n" + "\farchitecture\x18\xd3ұ\x90\x01 \x01(\tH\x00R\farchitecture\x88\x01\x01\x125\n" + "\x12creation_timestamp\x18\xb6\x8f\xc7\x0e \x01(\tH\x01R\x11creationTimestamp\x88\x01\x01\x12)\n" + @@ -217992,9 +226802,11 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x11self_link_with_id\x18\x82\xac\x9d\x15 \x01(\tH\x0eR\x0eselfLinkWithId\x88\x01\x01\x12(\n" + "\vsource_disk\x18\xc1\xee\xb4\xd7\x01 \x01(\tH\x0fR\n" + "sourceDisk\x88\x01\x01\x12-\n" + - "\x0esource_disk_id\x18\xd9\xcd\xc9\xd8\x01 \x01(\tH\x10R\fsourceDiskId\x88\x01\x01\x12\x1e\n" + - "\x06status\x18\xf2\x9f\xb7V \x01(\tH\x11R\x06status\x88\x01\x01\x12\x1a\n" + - "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tH\x12R\x04zone\x88\x01\x01\x1a9\n" + + "\x0esource_disk_id\x18\xd9\xcd\xc9\xd8\x01 \x01(\tH\x10R\fsourceDiskId\x88\x01\x01\x12J\n" + + "\x1dsource_instant_snapshot_group\x18\x86\xfe\xe7\xfa\x01 \x01(\tH\x11R\x1asourceInstantSnapshotGroup\x88\x01\x01\x12N\n" + + " source_instant_snapshot_group_id\x18\xf4\x99\xd7O \x01(\tH\x12R\x1csourceInstantSnapshotGroupId\x88\x01\x01\x12\x1e\n" + + "\x06status\x18\xf2\x9f\xb7V \x01(\tH\x13R\x06status\x88\x01\x01\x12\x1a\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tH\x14R\x04zone\x88\x01\x01\x1a9\n" + "\vLabelsEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"j\n" + @@ -218027,7 +226839,9 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "_self_linkB\x14\n" + "\x12_self_link_with_idB\x0e\n" + "\f_source_diskB\x11\n" + - "\x0f_source_disk_idB\t\n" + + "\x0f_source_disk_idB \n" + + "\x1e_source_instant_snapshot_groupB#\n" + + "!_source_instant_snapshot_group_idB\t\n" + "\a_statusB\a\n" + "\x05_zone\"\x9b\x04\n" + "\x1dInstantSnapshotAggregatedList\x12\x14\n" + @@ -218048,7 +226862,56 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "_self_linkB\n" + "\n" + - "\b_warning\"\xe2\x02\n" + + "\b_warning\"\xe5\x06\n" + + "\x14InstantSnapshotGroup\x125\n" + + "\x12creation_timestamp\x18\xb6\x8f\xc7\x0e \x01(\tH\x00R\x11creationTimestamp\x88\x01\x01\x12)\n" + + "\vdescription\x18\xfc\x87\xd6\xc9\x01 \x01(\tH\x01R\vdescription\x88\x01\x01\x12\x14\n" + + "\x02id\x18\x9b\x1a \x01(\x04H\x02R\x02id\x88\x01\x01\x12\x1a\n" + + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\x03R\x04kind\x88\x01\x01\x12\x1a\n" + + "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\x04R\x04name\x88\x01\x01\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tH\x05R\x06region\x88\x01\x01\x12l\n" + + "\x0fresource_status\x18\xc3\xfa\xf7v \x01(\v2;.google.cloud.compute.v1.InstantSnapshotGroupResourceStatusH\x06R\x0eresourceStatus\x88\x01\x01\x12$\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\aR\bselfLink\x88\x01\x01\x121\n" + + "\x11self_link_with_id\x18\x82\xac\x9d\x15 \x01(\tH\bR\x0eselfLinkWithId\x88\x01\x01\x12A\n" + + "\x18source_consistency_group\x18\xf4̯\xfd\x01 \x01(\tH\tR\x16sourceConsistencyGroup\x88\x01\x01\x12\x1e\n" + + "\x06status\x18\xf2\x9f\xb7V \x01(\tH\n" + + "R\x06status\x88\x01\x01\x12\x1a\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tH\vR\x04zone\x88\x01\x01\"\x82\x01\n" + + "\x06Status\x12\x14\n" + + "\x10UNDEFINED_STATUS\x10\x00\x12\x10\n" + + "\bCREATING\x10\xb9\xbd\x9d\xd9\x01\x12\x10\n" + + "\bDELETING\x10\xa8\xa7\x87\xfc\x01\x12\x0e\n" + + "\x06FAILED\x10\xbd\x90\xa6\xd9\x01\x12\x0f\n" + + "\aINVALID\x10\xd7\xfb\xed\xfc\x01\x12\f\n" + + "\x05READY\x10\x83Ï%\x12\x0f\n" + + "\aUNKNOWN\x10\xaa\xf0\xc4\xce\x01B\x15\n" + + "\x13_creation_timestampB\x0e\n" + + "\f_descriptionB\x05\n" + + "\x03_idB\a\n" + + "\x05_kindB\a\n" + + "\x05_nameB\t\n" + + "\a_regionB\x12\n" + + "\x10_resource_statusB\f\n" + + "\n" + + "_self_linkB\x14\n" + + "\x12_self_link_with_idB\x1b\n" + + "\x19_source_consistency_groupB\t\n" + + "\a_statusB\a\n" + + "\x05_zone\"\x8e\x01\n" + + "\x1eInstantSnapshotGroupParameters\x12J\n" + + "\x1dsource_instant_snapshot_group\x18\x86\xfe\xe7\xfa\x01 \x01(\tH\x00R\x1asourceInstantSnapshotGroup\x88\x01\x01B \n" + + "\x1e_source_instant_snapshot_group\"\xa0\x02\n" + + "\"InstantSnapshotGroupResourceStatus\x12\\\n" + + "&consistency_membership_resolution_time\x18\x9e\xb5\xa7\xa5\x01 \x01(\tH\x00R#consistencyMembershipResolutionTime\x88\x01\x01\x12a\n" + + "\vsource_info\x18Ҝ\xbe\xd7\x01 \x01(\v27.google.cloud.compute.v1.InstantSnapshotGroupSourceInfoH\x01R\n" + + "sourceInfo\x88\x01\x01B)\n" + + "'_consistency_membership_resolution_timeB\x0e\n" + + "\f_source_info\"\xbf\x01\n" + + "\x1eInstantSnapshotGroupSourceInfo\x124\n" + + "\x11consistency_group\x18\x98\x8b\xa9\xf2\x01 \x01(\tH\x00R\x10consistencyGroup\x88\x01\x01\x128\n" + + "\x14consistency_group_id\x18\xa2\xca\xe8( \x01(\tH\x01R\x12consistencyGroupId\x88\x01\x01B\x14\n" + + "\x12_consistency_groupB\x17\n" + + "\x15_consistency_group_id\"\xe2\x02\n" + "\x13InstantSnapshotList\x12\x14\n" + "\x02id\x18\x9b\x1a \x01(\tH\x00R\x02id\x88\x01\x01\x12A\n" + "\x05items\x18\xc0\xcf\xf7/ \x03(\v2(.google.cloud.compute.v1.InstantSnapshotR\x05items\x12\x1a\n" + @@ -219857,6 +228720,38 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\f_max_resultsB\v\n" + "\t_order_byB\r\n" + "\v_page_tokenB\x19\n" + + "\x17_return_partial_success\"\xb9\x03\n" + + "\x19ListInstantSnapshotGroups\x12\x1a\n" + + "\x04etag\x18\x95Ҿ\x01 \x01(\tH\x00R\x04etag\x88\x01\x01\x12\x14\n" + + "\x02id\x18\x9b\x1a \x01(\tH\x01R\x02id\x88\x01\x01\x12F\n" + + "\x05items\x18\xc0\xcf\xf7/ \x03(\v2-.google.cloud.compute.v1.InstantSnapshotGroupR\x05items\x12\x1a\n" + + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\x02R\x04kind\x88\x01\x01\x12.\n" + + "\x0fnext_page_token\x18\x95\xba\x86& \x01(\tH\x03R\rnextPageToken\x88\x01\x01\x12$\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\x04R\bselfLink\x88\x01\x01\x12%\n" + + "\funreachables\x18\x9f\xa0\x86t \x03(\tR\funreachables\x12B\n" + + "\awarning\x18\x9cߖ\x18 \x01(\v2 .google.cloud.compute.v1.WarningH\x05R\awarning\x88\x01\x01B\a\n" + + "\x05_etagB\x05\n" + + "\x03_idB\a\n" + + "\x05_kindB\x12\n" + + "\x10_next_page_tokenB\f\n" + + "\n" + + "_self_linkB\n" + + "\n" + + "\b_warning\"\x85\x03\n" + + " ListInstantSnapshotGroupsRequest\x12\x1f\n" + + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + + "\vmax_results\x18\x9bȋ\x1a \x01(\rH\x01R\n" + + "maxResults\x88\x01\x01\x12!\n" + + "\border_by\x18\xe8\xfd\xc7L \x01(\tH\x02R\aorderBy\x88\x01\x01\x12%\n" + + "\n" + + "page_token\x18ɰ\xc4\t \x01(\tH\x03R\tpageToken\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12=\n" + + "\x16return_partial_success\x18\xb6\xa4\xcf\xf6\x01 \x01(\bH\x04R\x14returnPartialSuccess\x88\x01\x01\x12\x1a\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\x03\xe0A\x02R\x04zoneB\t\n" + + "\a_filterB\x0e\n" + + "\f_max_resultsB\v\n" + + "\t_order_byB\r\n" + + "\v_page_tokenB\x19\n" + "\x17_return_partial_success\"\x80\x03\n" + "\x1bListInstantSnapshotsRequest\x12\x1f\n" + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + @@ -220407,6 +229302,21 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\f_max_resultsB\v\n" + "\t_order_byB\r\n" + "\v_page_tokenB\x19\n" + + "\x17_return_partial_success\"\x88\x03\n" + + "\x1fListRegionBackendBucketsRequest\x12\x1f\n" + + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + + "\vmax_results\x18\x9bȋ\x1a \x01(\rH\x01R\n" + + "maxResults\x88\x01\x01\x12!\n" + + "\border_by\x18\xe8\xfd\xc7L \x01(\tH\x02R\aorderBy\x88\x01\x01\x12%\n" + + "\n" + + "page_token\x18ɰ\xc4\t \x01(\tH\x03R\tpageToken\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12=\n" + + "\x16return_partial_success\x18\xb6\xa4\xcf\xf6\x01 \x01(\bH\x04R\x14returnPartialSuccess\x88\x01\x01B\t\n" + + "\a_filterB\x0e\n" + + "\f_max_resultsB\v\n" + + "\t_order_byB\r\n" + + "\v_page_tokenB\x19\n" + "\x17_return_partial_success\"\x89\x03\n" + " ListRegionBackendServicesRequest\x12\x1f\n" + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + @@ -220542,6 +229452,22 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\f_max_resultsB\v\n" + "\t_order_byB\r\n" + "\v_page_tokenB\x19\n" + + "\x17_return_partial_success\"\xda\x03\n" + + "3ListRegionInstanceGroupManagerResizeRequestsRequest\x12\x1f\n" + + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12<\n" + + "\x16instance_group_manager\x18\xc3\xf7\xf3v \x01(\tB\x03\xe0A\x02R\x14instanceGroupManager\x12'\n" + + "\vmax_results\x18\x9bȋ\x1a \x01(\rH\x01R\n" + + "maxResults\x88\x01\x01\x12!\n" + + "\border_by\x18\xe8\xfd\xc7L \x01(\tH\x02R\aorderBy\x88\x01\x01\x12%\n" + + "\n" + + "page_token\x18ɰ\xc4\t \x01(\tH\x03R\tpageToken\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12=\n" + + "\x16return_partial_success\x18\xb6\xa4\xcf\xf6\x01 \x01(\bH\x04R\x14returnPartialSuccess\x88\x01\x01B\t\n" + + "\a_filterB\x0e\n" + + "\f_max_resultsB\v\n" + + "\t_order_byB\r\n" + + "\v_page_tokenB\x19\n" + "\x17_return_partial_success\"\x8f\x03\n" + "&ListRegionInstanceGroupManagersRequest\x12\x1f\n" + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + @@ -220587,6 +229513,21 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\f_max_resultsB\v\n" + "\t_order_byB\r\n" + "\v_page_tokenB\x19\n" + + "\x17_return_partial_success\"\x8f\x03\n" + + "&ListRegionInstantSnapshotGroupsRequest\x12\x1f\n" + + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + + "\vmax_results\x18\x9bȋ\x1a \x01(\rH\x01R\n" + + "maxResults\x88\x01\x01\x12!\n" + + "\border_by\x18\xe8\xfd\xc7L \x01(\tH\x02R\aorderBy\x88\x01\x01\x12%\n" + + "\n" + + "page_token\x18ɰ\xc4\t \x01(\tH\x03R\tpageToken\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12=\n" + + "\x16return_partial_success\x18\xb6\xa4\xcf\xf6\x01 \x01(\bH\x04R\x14returnPartialSuccess\x88\x01\x01B\t\n" + + "\a_filterB\x0e\n" + + "\f_max_resultsB\v\n" + + "\t_order_byB\r\n" + + "\v_page_tokenB\x19\n" + "\x17_return_partial_success\"\x8a\x03\n" + "!ListRegionInstantSnapshotsRequest\x12\x1f\n" + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + @@ -220677,6 +229618,21 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\f_max_resultsB\v\n" + "\t_order_byB\r\n" + "\v_page_tokenB\x19\n" + + "\x17_return_partial_success\"\x83\x03\n" + + "\x1aListRegionSnapshotsRequest\x12\x1f\n" + + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + + "\vmax_results\x18\x9bȋ\x1a \x01(\rH\x01R\n" + + "maxResults\x88\x01\x01\x12!\n" + + "\border_by\x18\xe8\xfd\xc7L \x01(\tH\x02R\aorderBy\x88\x01\x01\x12%\n" + + "\n" + + "page_token\x18ɰ\xc4\t \x01(\tH\x03R\tpageToken\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12=\n" + + "\x16return_partial_success\x18\xb6\xa4\xcf\xf6\x01 \x01(\bH\x04R\x14returnPartialSuccess\x88\x01\x01B\t\n" + + "\a_filterB\x0e\n" + + "\f_max_resultsB\v\n" + + "\t_order_byB\r\n" + + "\v_page_tokenB\x19\n" + "\x17_return_partial_success\"\x89\x03\n" + " ListRegionSslCertificatesRequest\x12\x1f\n" + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + @@ -221172,6 +230128,20 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\f_max_resultsB\v\n" + "\t_order_byB\r\n" + "\v_page_tokenB\x19\n" + + "\x17_return_partial_success\"\xe8\x02\n" + + "\x1fListUsableBackendBucketsRequest\x12\x1f\n" + + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + + "\vmax_results\x18\x9bȋ\x1a \x01(\rH\x01R\n" + + "maxResults\x88\x01\x01\x12!\n" + + "\border_by\x18\xe8\xfd\xc7L \x01(\tH\x02R\aorderBy\x88\x01\x01\x12%\n" + + "\n" + + "page_token\x18ɰ\xc4\t \x01(\tH\x03R\tpageToken\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12=\n" + + "\x16return_partial_success\x18\xb6\xa4\xcf\xf6\x01 \x01(\bH\x04R\x14returnPartialSuccess\x88\x01\x01B\t\n" + + "\a_filterB\x0e\n" + + "\f_max_resultsB\v\n" + + "\t_order_byB\r\n" + + "\v_page_tokenB\x19\n" + "\x17_return_partial_success\"\xe9\x02\n" + " ListUsableBackendServicesRequest\x12\x1f\n" + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + @@ -221186,6 +230156,21 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\f_max_resultsB\v\n" + "\t_order_byB\r\n" + "\v_page_tokenB\x19\n" + + "\x17_return_partial_success\"\x8e\x03\n" + + "%ListUsableRegionBackendBucketsRequest\x12\x1f\n" + + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + + "\vmax_results\x18\x9bȋ\x1a \x01(\rH\x01R\n" + + "maxResults\x88\x01\x01\x12!\n" + + "\border_by\x18\xe8\xfd\xc7L \x01(\tH\x02R\aorderBy\x88\x01\x01\x12%\n" + + "\n" + + "page_token\x18ɰ\xc4\t \x01(\tH\x03R\tpageToken\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12=\n" + + "\x16return_partial_success\x18\xb6\xa4\xcf\xf6\x01 \x01(\bH\x04R\x14returnPartialSuccess\x88\x01\x01B\t\n" + + "\a_filterB\x0e\n" + + "\f_max_resultsB\v\n" + + "\t_order_byB\r\n" + + "\v_page_tokenB\x19\n" + "\x17_return_partial_success\"\x8f\x03\n" + "&ListUsableRegionBackendServicesRequest\x12\x1f\n" + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + @@ -221292,6 +230277,21 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\f_max_resultsB\v\n" + "\t_order_byB\r\n" + "\v_page_tokenB\x19\n" + + "\x17_return_partial_success\"\x87\x03\n" + + "\"ListZoneVmExtensionPoliciesRequest\x12\x1f\n" + + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + + "\vmax_results\x18\x9bȋ\x1a \x01(\rH\x01R\n" + + "maxResults\x88\x01\x01\x12!\n" + + "\border_by\x18\xe8\xfd\xc7L \x01(\tH\x02R\aorderBy\x88\x01\x01\x12%\n" + + "\n" + + "page_token\x18ɰ\xc4\t \x01(\tH\x03R\tpageToken\x88\x01\x01\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12=\n" + + "\x16return_partial_success\x18\xb6\xa4\xcf\xf6\x01 \x01(\bH\x04R\x14returnPartialSuccess\x88\x01\x01\x12\x1a\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\x03\xe0A\x02R\x04zoneB\t\n" + + "\a_filterB\x0e\n" + + "\f_max_resultsB\v\n" + + "\t_order_byB\r\n" + + "\v_page_tokenB\x19\n" + "\x17_return_partial_success\"\xd9\x02\n" + "\x10ListZonesRequest\x12\x1f\n" + "\x06filter\x18\xf8\x96\xa3\xa0\x01 \x01(\tH\x00R\x06filter\x88\x01\x01\x12'\n" + @@ -221778,18 +230778,19 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "_self_linkB\n" + "\n" + - "\b_warning\"\xef\x04\n" + + "\b_warning\"\xb7\x05\n" + "\"NetworkAttachmentConnectedEndpoint\x12&\n" + "\n" + "ip_address\x18\xdc\xf1\xdc\xc1\x01 \x01(\tH\x00R\tipAddress\x88\x01\x01\x12*\n" + "\fipv6_address\x18\x9c\xb3\xef\xa2\x01 \x01(\tH\x01R\vipv6Address\x88\x01\x01\x122\n" + "\x11project_id_or_num\x18\xa8\x8a\xe5\xa6\x01 \x01(\tH\x02R\x0eprojectIdOrNum\x88\x01\x01\x12:\n" + - "\x18secondary_ip_cidr_ranges\x18\x94\xb2\xf07 \x03(\tR\x15secondaryIpCidrRanges\x12\x1e\n" + - "\x06status\x18\xf2\x9f\xb7V \x01(\tH\x03R\x06status\x88\x01\x01\x12'\n" + + "\x18secondary_ip_cidr_ranges\x18\x94\xb2\xf07 \x03(\tR\x15secondaryIpCidrRanges\x121\n" + + "\x10service_class_id\x18\x8c\xb7\xcb\xc9\x01 \x01(\tH\x03R\x0eserviceClassId\x88\x01\x01\x12\x1e\n" + + "\x06status\x18\xf2\x9f\xb7V \x01(\tH\x04R\x06status\x88\x01\x01\x12'\n" + "\n" + - "subnetwork\x18\xee\xa7\xe4\x92\x01 \x01(\tH\x04R\n" + + "subnetwork\x18\xee\xa7\xe4\x92\x01 \x01(\tH\x05R\n" + "subnetwork\x88\x01\x01\x12;\n" + - "\x15subnetwork_cidr_range\x18\xa3\xdb߶\x01 \x01(\tH\x05R\x13subnetworkCidrRange\x88\x01\x01\"\x94\x01\n" + + "\x15subnetwork_cidr_range\x18\xa3\xdb߶\x01 \x01(\tH\x06R\x13subnetworkCidrRange\x88\x01\x01\"\x94\x01\n" + "\x06Status\x12\x14\n" + "\x10UNDEFINED_STATUS\x10\x00\x12\x0f\n" + "\bACCEPTED\x10\xa7\x9f\xd2u\x12\x0e\n" + @@ -221800,7 +230801,8 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x12STATUS_UNSPECIFIED\x10\xca̋\x14B\r\n" + "\v_ip_addressB\x0f\n" + "\r_ipv6_addressB\x14\n" + - "\x12_project_id_or_numB\t\n" + + "\x12_project_id_or_numB\x13\n" + + "\x11_service_class_idB\t\n" + "\a_statusB\r\n" + "\v_subnetworkB\x18\n" + "\x16_subnetwork_cidr_range\"\xe6\x02\n" + @@ -222070,7 +231072,7 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "_self_linkB\n" + "\n" + - "\b_warning\"\xe1\r\n" + + "\b_warning\"\xa9\x0e\n" + "\x10NetworkInterface\x12O\n" + "\x0eaccess_configs\x18\x96\xbb\xfa4 \x03(\v2%.google.cloud.compute.v1.AccessConfigR\raccessConfigs\x12P\n" + "\x0falias_ip_ranges\x18\xbf\x83\xdcN \x03(\v2%.google.cloud.compute.v1.AliasIpRangeR\raliasIpRanges\x12:\n" + @@ -222091,13 +231093,14 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\bnic_type\x18\x91\xc6\xc2\x1c \x01(\tH\vR\anicType\x88\x01\x01\x12/\n" + "\x0fparent_nic_name\x18\u05ec\xd7\xc7\x01 \x01(\tH\fR\rparentNicName\x88\x01\x01\x12(\n" + "\vqueue_count\x18\xe1\xf8\x97\xf0\x01 \x01(\x05H\rR\n" + - "queueCount\x88\x01\x01\x12&\n" + + "queueCount\x88\x01\x01\x121\n" + + "\x10service_class_id\x18\x8c\xb7\xcb\xc9\x01 \x01(\tH\x0eR\x0eserviceClassId\x88\x01\x01\x12&\n" + "\n" + - "stack_type\x18\x91\xb5\x8b\xcb\x01 \x01(\tH\x0eR\tstackType\x88\x01\x01\x12'\n" + + "stack_type\x18\x91\xb5\x8b\xcb\x01 \x01(\tH\x0fR\tstackType\x88\x01\x01\x12'\n" + "\n" + - "subnetwork\x18\xee\xa7\xe4\x92\x01 \x01(\tH\x0fR\n" + + "subnetwork\x18\xee\xa7\xe4\x92\x01 \x01(\tH\x10R\n" + "subnetwork\x88\x01\x01\x12\x1a\n" + - "\x04vlan\x18\xe3\x8a\xdd\x01 \x01(\x05H\x10R\x04vlan\x88\x01\x01\"X\n" + + "\x04vlan\x18\xe3\x8a\xdd\x01 \x01(\x05H\x11R\x04vlan\x88\x01\x01\"X\n" + "\tIgmpQuery\x12\x18\n" + "\x14UNDEFINED_IGMP_QUERY\x10\x00\x12\x1a\n" + "\x13IGMP_QUERY_DISABLED\x10\xf1\xb1\xbe\r\x12\x15\n" + @@ -222138,7 +231141,8 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\f_network_i_pB\v\n" + "\t_nic_typeB\x12\n" + "\x10_parent_nic_nameB\x0e\n" + - "\f_queue_countB\r\n" + + "\f_queue_countB\x13\n" + + "\x11_service_class_idB\r\n" + "\v_stack_typeB\r\n" + "\v_subnetworkB\a\n" + "\x05_vlan\"\xd2\x02\n" + @@ -223599,6 +232603,14 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x01R\trequestId\x88\x01\x01B\r\n" + "\v_autoscalerB\r\n" + + "\v_request_id\"\xc4\x02\n" + + "\x1fPatchRegionBackendBucketRequest\x12-\n" + + "\x0ebackend_bucket\x18\xf5\xe3\xdd+ \x01(\tB\x03\xe0A\x02R\rbackendBucket\x12g\n" + + "\x17backend_bucket_resource\x18\x98\xceǵ\x01 \x01(\v2&.google.cloud.compute.v1.BackendBucketB\x03\xe0A\x02R\x15backendBucketResource\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + "\v_request_id\"\xcb\x02\n" + " PatchRegionBackendServiceRequest\x120\n" + "\x0fbackend_service\x18\x8a\xc0\xae\x92\x01 \x01(\tB\x03\xe0A\x02R\x0ebackendService\x12j\n" + @@ -223674,6 +232686,16 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\vupdate_mask\x18\xa2\xb9\xba\xee\x01 \x01(\tH\x01R\n" + "updateMask\x88\x01\x01B\r\n" + "\v_request_idB\x0e\n" + + "\f_update_mask\"\xda\x02\n" + + "!PatchRegionSnapshotSettingRequest\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12p\n" + + "\x1asnapshot_settings_resource\x18\xef\x8dƪ\x01 \x01(\v2).google.cloud.compute.v1.SnapshotSettingsB\x03\xe0A\x02R\x18snapshotSettingsResource\x12(\n" + + "\vupdate_mask\x18\xa2\xb9\xba\xee\x01 \x01(\tH\x01R\n" + + "updateMask\x88\x01\x01B\r\n" + + "\v_request_idB\x0e\n" + "\f_update_mask\"\xad\x02\n" + "\x1bPatchRegionSslPolicyRequest\x12*\n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + @@ -224761,7 +233783,11 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "_self_linkB\n" + "\n" + - "\b_warning\"W\n" + + "\b_warning\"[\n" + + "\x1dRegionDiskUpdateKmsKeyRequest\x12)\n" + + "\fkms_key_name\x18\x99\xeb\xfb\xe6\x01 \x01(\tH\x00R\n" + + "kmsKeyName\x88\x01\x01B\x0f\n" + + "\r_kms_key_name\"W\n" + "%RegionDisksAddResourcePoliciesRequest\x12.\n" + "\x11resource_policies\x18\xe1\x9c\xcc\n" + " \x03(\tR\x10resourcePolicies\"Z\n" + @@ -224806,7 +233832,24 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "\b_warning\"\x94\x01\n" + "0RegionInstanceGroupManagerPatchInstanceConfigReq\x12`\n" + - "\x14per_instance_configs\x18\xa9\xd5\xf8\xfa\x01 \x03(\v2*.google.cloud.compute.v1.PerInstanceConfigR\x12perInstanceConfigs\"\x95\x01\n" + + "\x14per_instance_configs\x18\xa9\xd5\xf8\xfa\x01 \x03(\v2*.google.cloud.compute.v1.PerInstanceConfigR\x12perInstanceConfigs\"\xe1\x03\n" + + "4RegionInstanceGroupManagerResizeRequestsListResponse\x12\x1a\n" + + "\x04etag\x18\x95Ҿ\x01 \x01(\tH\x00R\x04etag\x88\x01\x01\x12\x14\n" + + "\x02id\x18\x9b\x1a \x01(\tH\x01R\x02id\x88\x01\x01\x12S\n" + + "\x05items\x18\xc0\xcf\xf7/ \x03(\v2:.google.cloud.compute.v1.InstanceGroupManagerResizeRequestR\x05items\x12\x1a\n" + + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\x02R\x04kind\x88\x01\x01\x12.\n" + + "\x0fnext_page_token\x18\x95\xba\x86& \x01(\tH\x03R\rnextPageToken\x88\x01\x01\x12$\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\x04R\bselfLink\x88\x01\x01\x12%\n" + + "\funreachables\x18\x9f\xa0\x86t \x03(\tR\funreachables\x12B\n" + + "\awarning\x18\x9cߖ\x18 \x01(\v2 .google.cloud.compute.v1.WarningH\x05R\awarning\x88\x01\x01B\a\n" + + "\x05_etagB\x05\n" + + "\x03_idB\a\n" + + "\x05_kindB\x12\n" + + "\x10_next_page_tokenB\f\n" + + "\n" + + "_self_linkB\n" + + "\n" + + "\b_warning\"\x95\x01\n" + "1RegionInstanceGroupManagerUpdateInstanceConfigReq\x12`\n" + "\x14per_instance_configs\x18\xa9\xd5\xf8\xfa\x01 \x03(\v2*.google.cloud.compute.v1.PerInstanceConfigR\x12perInstanceConfigs\"U\n" + "2RegionInstanceGroupManagersAbandonInstancesRequest\x12\x1f\n" + @@ -224948,7 +233991,11 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x04etag\x18\x95Ҿ\x01 \x01(\tH\x00R\x04etag\x88\x01\x01\x12?\n" + "\x06policy\x18\xb2ʶ+ \x01(\v2\x1f.google.cloud.compute.v1.PolicyH\x01R\x06policy\x88\x01\x01B\a\n" + "\x05_etagB\t\n" + - "\a_policy\"b\n" + + "\a_policy\"_\n" + + "!RegionSnapshotUpdateKmsKeyRequest\x12)\n" + + "\fkms_key_name\x18\x99\xeb\xfb\xe6\x01 \x01(\tH\x00R\n" + + "kmsKeyName\x88\x01\x01B\x0f\n" + + "\r_kms_key_name\"b\n" + "1RegionTargetHttpsProxiesSetSslCertificatesRequest\x12-\n" + "\x10ssl_certificates\x18\x8f\xa2î\x01 \x03(\tR\x0fsslCertificates\"p\n" + "\x1cRegionUrlMapsValidateRequest\x12C\n" + @@ -225127,42 +234174,47 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12%\n" + "\n" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + - "\v_request_id\"\x9a\x17\n" + + "\v_request_id\"\x97\x19\n" + "\vReservation\x12\x86\x01\n" + "\x1badvanced_deployment_control\x18\xa0\x92\xe6\xc3\x01 \x01(\v2=.google.cloud.compute.v1.ReservationAdvancedDeploymentControlH\x00R\x19advancedDeploymentControl\x88\x01\x01\x12u\n" + "\x15aggregate_reservation\x18\xcc\xf2\x83\x8b\x01 \x01(\v27.google.cloud.compute.v1.AllocationAggregateReservationH\x01R\x14aggregateReservation\x88\x01\x01\x12'\n" + "\n" + "commitment\x18\x95\x96\xf3\xe5\x01 \x01(\tH\x02R\n" + - "commitment\x88\x01\x01\x125\n" + - "\x12creation_timestamp\x18\xb6\x8f\xc7\x0e \x01(\tH\x03R\x11creationTimestamp\x88\x01\x01\x12^\n" + - "\x15delete_after_duration\x18\xab\x9b\xbf\x9a\x01 \x01(\v2!.google.cloud.compute.v1.DurationH\x04R\x13deleteAfterDuration\x88\x01\x01\x12,\n" + - "\x0edelete_at_time\x18\xc5\xf1\xdb' \x01(\tH\x05R\fdeleteAtTime\x88\x01\x01\x120\n" + - "\x0fdeployment_type\x18\U001005bd\x01 \x01(\tH\x06R\x0edeploymentType\x88\x01\x01\x12)\n" + - "\vdescription\x18\xfc\x87\xd6\xc9\x01 \x01(\tH\aR\vdescription\x88\x01\x01\x12A\n" + - "\x18early_access_maintenance\x18\x94\x8e\xff\xa3\x01 \x01(\tH\bR\x16earlyAccessMaintenance\x88\x01\x01\x12G\n" + - "\x1benable_emergent_maintenance\x18\x89\xe2ר\x01 \x01(\bH\tR\x19enableEmergentMaintenance\x88\x01\x01\x12\x14\n" + - "\x02id\x18\x9b\x1a \x01(\x04H\n" + - "R\x02id\x88\x01\x01\x12\x1a\n" + - "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\vR\x04kind\x88\x01\x01\x121\n" + + "commitment\x88\x01\x01\x12C\n" + + "\x19confidential_compute_type\x18\x99\uf8b8\x01 \x01(\tH\x03R\x17confidentialComputeType\x88\x01\x01\x125\n" + + "\x12creation_timestamp\x18\xb6\x8f\xc7\x0e \x01(\tH\x04R\x11creationTimestamp\x88\x01\x01\x12^\n" + + "\x15delete_after_duration\x18\xab\x9b\xbf\x9a\x01 \x01(\v2!.google.cloud.compute.v1.DurationH\x05R\x13deleteAfterDuration\x88\x01\x01\x12,\n" + + "\x0edelete_at_time\x18\xc5\xf1\xdb' \x01(\tH\x06R\fdeleteAtTime\x88\x01\x01\x120\n" + + "\x0fdeployment_type\x18\U001005bd\x01 \x01(\tH\aR\x0edeploymentType\x88\x01\x01\x12)\n" + + "\vdescription\x18\xfc\x87\xd6\xc9\x01 \x01(\tH\bR\vdescription\x88\x01\x01\x12A\n" + + "\x18early_access_maintenance\x18\x94\x8e\xff\xa3\x01 \x01(\tH\tR\x16earlyAccessMaintenance\x88\x01\x01\x12G\n" + + "\x1benable_emergent_maintenance\x18\x89\xe2ר\x01 \x01(\bH\n" + + "R\x19enableEmergentMaintenance\x88\x01\x01\x12\x14\n" + + "\x02id\x18\x9b\x1a \x01(\x04H\vR\x02id\x88\x01\x01\x12\x1a\n" + + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\fR\x04kind\x88\x01\x01\x121\n" + "\x12linked_commitments\x18\xd8\xfd\xc8\xe0\x01 \x03(\tR\x11linkedCommitments\x12\x1a\n" + - "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\fR\x04name\x88\x01\x01\x12J\n" + - "\x06params\x18\x86\xf3\xab% \x01(\v2*.google.cloud.compute.v1.ReservationParamsH\rR\x06params\x88\x01\x01\x120\n" + - "\x0fprotection_tier\x18\x88\x9f\xa7\xf0\x01 \x01(\tH\x0eR\x0eprotectionTier\x88\x01\x01\x12\x81\x01\n" + - "\x1areservation_sharing_policy\x18ȵ\x9bb \x01(\v2;.google.cloud.compute.v1.AllocationReservationSharingPolicyH\x0fR\x18reservationSharingPolicy\x88\x01\x01\x12j\n" + + "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\rR\x04name\x88\x01\x01\x12J\n" + + "\x06params\x18\x86\xf3\xab% \x01(\v2*.google.cloud.compute.v1.ReservationParamsH\x0eR\x06params\x88\x01\x01\x120\n" + + "\x0fprotection_tier\x18\x88\x9f\xa7\xf0\x01 \x01(\tH\x0fR\x0eprotectionTier\x88\x01\x01\x12\x81\x01\n" + + "\x1areservation_sharing_policy\x18ȵ\x9bb \x01(\v2;.google.cloud.compute.v1.AllocationReservationSharingPolicyH\x10R\x18reservationSharingPolicy\x88\x01\x01\x12j\n" + "\x11resource_policies\x18\xe1\x9c\xcc\n" + " \x03(\v2:.google.cloud.compute.v1.Reservation.ResourcePoliciesEntryR\x10resourcePolicies\x12b\n" + - "\x0fresource_status\x18\xc3\xfa\xf7v \x01(\v21.google.cloud.compute.v1.AllocationResourceStatusH\x10R\x0eresourceStatus\x88\x01\x01\x12,\n" + - "\rsatisfies_pzs\x18\xabݫ\xe5\x01 \x01(\bH\x11R\fsatisfiesPzs\x88\x01\x01\x12/\n" + - "\x0fscheduling_type\x18\x85\xfe\xa4_ \x01(\tH\x12R\x0eschedulingType\x88\x01\x01\x12$\n" + - "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\x13R\bselfLink\x88\x01\x01\x12U\n" + - "\x0eshare_settings\x18\x83\x91\x94\x7f \x01(\v2&.google.cloud.compute.v1.ShareSettingsH\x14R\rshareSettings\x88\x01\x01\x12u\n" + - "\x14specific_reservation\x18\xbf\xa0\x89\xc1\x01 \x01(\v29.google.cloud.compute.v1.AllocationSpecificSKUReservationH\x15R\x13specificReservation\x88\x01\x01\x12J\n" + - "\x1dspecific_reservation_required\x18\x9fǃl \x01(\bH\x16R\x1bspecificReservationRequired\x88\x01\x01\x12\x1e\n" + - "\x06status\x18\xf2\x9f\xb7V \x01(\tH\x17R\x06status\x88\x01\x01\x12\x1a\n" + - "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tH\x18R\x04zone\x88\x01\x01\x1aC\n" + + "\x0fresource_status\x18\xc3\xfa\xf7v \x01(\v21.google.cloud.compute.v1.AllocationResourceStatusH\x11R\x0eresourceStatus\x88\x01\x01\x12,\n" + + "\rsatisfies_pzs\x18\xabݫ\xe5\x01 \x01(\bH\x12R\fsatisfiesPzs\x88\x01\x01\x12/\n" + + "\x0fscheduling_type\x18\x85\xfe\xa4_ \x01(\tH\x13R\x0eschedulingType\x88\x01\x01\x12$\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\x14R\bselfLink\x88\x01\x01\x12U\n" + + "\x0eshare_settings\x18\x83\x91\x94\x7f \x01(\v2&.google.cloud.compute.v1.ShareSettingsH\x15R\rshareSettings\x88\x01\x01\x12u\n" + + "\x14specific_reservation\x18\xbf\xa0\x89\xc1\x01 \x01(\v29.google.cloud.compute.v1.AllocationSpecificSKUReservationH\x16R\x13specificReservation\x88\x01\x01\x12J\n" + + "\x1dspecific_reservation_required\x18\x9fǃl \x01(\bH\x17R\x1bspecificReservationRequired\x88\x01\x01\x12\x1e\n" + + "\x06status\x18\xf2\x9f\xb7V \x01(\tH\x18R\x06status\x88\x01\x01\x12\x1a\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tH\x19R\x04zone\x88\x01\x01\x1aC\n" + "\x15ResourcePoliciesEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + - "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"a\n" + + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\x97\x01\n" + + "\x17ConfidentialComputeType\x12'\n" + + "#UNDEFINED_CONFIDENTIAL_COMPUTE_TYPE\x10\x00\x12%\n" + + "\x1dCONFIDENTIAL_COMPUTE_TYPE_TDX\x10\xe2\xacҏ\x01\x12,\n" + + "%CONFIDENTIAL_COMPUTE_TYPE_UNSPECIFIED\x10\x91\xaf\x91\x14\"a\n" + "\x0eDeploymentType\x12\x1d\n" + "\x19UNDEFINED_DEPLOYMENT_TYPE\x10\x00\x12\f\n" + "\x05DENSE\x10\xff\x95\xfb\x1e\x12\"\n" + @@ -225191,7 +234243,8 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\bUPDATING\x10\xc6\xee\xec\xeb\x01B\x1e\n" + "\x1c_advanced_deployment_controlB\x18\n" + "\x16_aggregate_reservationB\r\n" + - "\v_commitmentB\x15\n" + + "\v_commitmentB\x1c\n" + + "\x1a_confidential_compute_typeB\x15\n" + "\x13_creation_timestampB\x18\n" + "\x16_delete_after_durationB\x11\n" + "\x0f_delete_at_timeB\x12\n" + @@ -227372,7 +236425,12 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "#SetIamPolicyInstanceTemplateRequest\x12\x84\x01\n" + "\"global_set_policy_request_resource\x18\xb2\xe7۠\x01 \x01(\v2/.google.cloud.compute.v1.GlobalSetPolicyRequestB\x03\xe0A\x02R\x1eglobalSetPolicyRequestResource\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\"\n" + - "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\"\x86\x02\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\"\x8b\x02\n" + + "'SetIamPolicyInstantSnapshotGroupRequest\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\x12\x1a\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\x03\xe0A\x02R\x04zone\x12~\n" + + " zone_set_policy_request_resource\x18\xbb\xb8\x98\xb6\x01 \x01(\v2-.google.cloud.compute.v1.ZoneSetPolicyRequestB\x03\xe0A\x02R\x1czoneSetPolicyRequestResource\"\x86\x02\n" + "\"SetIamPolicyInstantSnapshotRequest\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\x12\x1a\n" + @@ -227412,6 +236470,11 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\x84\x01\n" + "\"region_set_policy_request_resource\x18\x83\xc7\xeb\x83\x01 \x01(\v2/.google.cloud.compute.v1.RegionSetPolicyRequestB\x03\xe0A\x02R\x1eregionSetPolicyRequestResource\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\"\x95\x02\n" + + "&SetIamPolicyRegionBackendBucketRequest\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\x84\x01\n" + + "\"region_set_policy_request_resource\x18\x83\xc7\xeb\x83\x01 \x01(\v2/.google.cloud.compute.v1.RegionSetPolicyRequestB\x03\xe0A\x02R\x1eregionSetPolicyRequestResource\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\"\x96\x02\n" + "'SetIamPolicyRegionBackendServiceRequest\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + @@ -227422,6 +236485,11 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\x84\x01\n" + "\"region_set_policy_request_resource\x18\x83\xc7\xeb\x83\x01 \x01(\v2/.google.cloud.compute.v1.RegionSetPolicyRequestB\x03\xe0A\x02R\x1eregionSetPolicyRequestResource\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\"\x9c\x02\n" + + "-SetIamPolicyRegionInstantSnapshotGroupRequest\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\x84\x01\n" + + "\"region_set_policy_request_resource\x18\x83\xc7\xeb\x83\x01 \x01(\v2/.google.cloud.compute.v1.RegionSetPolicyRequestB\x03\xe0A\x02R\x1eregionSetPolicyRequestResource\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\"\x97\x02\n" + "(SetIamPolicyRegionInstantSnapshotRequest\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + @@ -227432,6 +236500,11 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\x84\x01\n" + "\"region_set_policy_request_resource\x18\x83\xc7\xeb\x83\x01 \x01(\v2/.google.cloud.compute.v1.RegionSetPolicyRequestB\x03\xe0A\x02R\x1eregionSetPolicyRequestResource\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\"\x90\x02\n" + + "!SetIamPolicyRegionSnapshotRequest\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\x84\x01\n" + + "\"region_set_policy_request_resource\x18\x83\xc7\xeb\x83\x01 \x01(\v2/.google.cloud.compute.v1.RegionSetPolicyRequestB\x03\xe0A\x02R\x1eregionSetPolicyRequestResource\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\"\xcb\x02\n" + "#SetIamPolicyReservationBlockRequest\x12/\n" + "\x0fparent_resource\x18\x83\x98\xd0\b \x01(\tB\x03\xe0A\x02R\x0eparentResource\x12 \n" + @@ -227589,6 +236662,14 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresourceB\r\n" + + "\v_request_id\"\xd5\x02\n" + + "\x1eSetLabelsRegionSnapshotRequest\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12\x83\x01\n" + + "\"region_set_labels_request_resource\x18\xd6\xf8\xd5{ \x01(\v2/.google.cloud.compute.v1.RegionSetLabelsRequestB\x03\xe0A\x02R\x1eregionSetLabelsRequestResource\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresourceB\r\n" + "\v_request_id\"\xf7\x01\n" + "\x1eSetLabelsSecurityPolicyRequest\x12\x84\x01\n" + "\"global_set_labels_request_resource\x18\x85\x99Ƙ\x01 \x01(\v2/.google.cloud.compute.v1.GlobalSetLabelsRequestB\x03\xe0A\x02R\x1eglobalSetLabelsRequestResource\x12*\n" + @@ -227980,7 +237061,7 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12!\n" + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\n" + "\xe0A\x02\xf2G\x04zoneR\x04zoneB\r\n" + - "\v_request_id\"\x97\x1a\n" + + "\v_request_id\"\xdc\x1b\n" + "\bSnapshot\x12+\n" + "\farchitecture\x18\xd3ұ\x90\x01 \x01(\tH\x00R\farchitecture\x88\x01\x01\x12*\n" + "\fauto_created\x18\xd8ț\xdd\x01 \x01(\bH\x01R\vautoCreated\x88\x01\x01\x12%\n" + @@ -228005,25 +237086,28 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\blicenses\x18҈\x80\xa1\x01 \x03(\tR\blicenses\x12,\n" + "\rlocation_hint\x18с\x92\xa7\x01 \x01(\tH\rR\flocationHint\x88\x01\x01\x12\x1a\n" + "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\x0eR\x04name\x88\x01\x01\x12G\n" + - "\x06params\x18\x86\xf3\xab% \x01(\v2'.google.cloud.compute.v1.SnapshotParamsH\x0fR\x06params\x88\x01\x01\x12,\n" + - "\rsatisfies_pzi\x18\xa1ݫ\xe5\x01 \x01(\bH\x10R\fsatisfiesPzi\x88\x01\x01\x12,\n" + - "\rsatisfies_pzs\x18\xabݫ\xe5\x01 \x01(\bH\x11R\fsatisfiesPzs\x88\x01\x01\x12$\n" + - "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\x12R\bselfLink\x88\x01\x01\x12n\n" + - "\x17snapshot_encryption_key\x18\xfe\xf6\xd4\x14 \x01(\v2..google.cloud.compute.v1.CustomerEncryptionKeyH\x13R\x15snapshotEncryptionKey\x88\x01\x01\x12+\n" + - "\rsnapshot_type\x18\xd5٥; \x01(\tH\x14R\fsnapshotType\x88\x01\x01\x12(\n" + - "\vsource_disk\x18\xc1\xee\xb4\xd7\x01 \x01(\tH\x15R\n" + + "\x06params\x18\x86\xf3\xab% \x01(\v2'.google.cloud.compute.v1.SnapshotParamsH\x0fR\x06params\x88\x01\x01\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tH\x10R\x06region\x88\x01\x01\x12,\n" + + "\rsatisfies_pzi\x18\xa1ݫ\xe5\x01 \x01(\bH\x11R\fsatisfiesPzi\x88\x01\x01\x12,\n" + + "\rsatisfies_pzs\x18\xabݫ\xe5\x01 \x01(\bH\x12R\fsatisfiesPzs\x88\x01\x01\x12$\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\x13R\bselfLink\x88\x01\x01\x12n\n" + + "\x17snapshot_encryption_key\x18\xfe\xf6\xd4\x14 \x01(\v2..google.cloud.compute.v1.CustomerEncryptionKeyH\x14R\x15snapshotEncryptionKey\x88\x01\x01\x122\n" + + "\x11snapshot_group_id\x18\xf6\x9d\xccy \x01(\tH\x15R\x0fsnapshotGroupId\x88\x01\x01\x126\n" + + "\x13snapshot_group_name\x18\xa6\xe3\xb5u \x01(\tH\x16R\x11snapshotGroupName\x88\x01\x01\x12+\n" + + "\rsnapshot_type\x18\xd5٥; \x01(\tH\x17R\fsnapshotType\x88\x01\x01\x12(\n" + + "\vsource_disk\x18\xc1\xee\xb4\xd7\x01 \x01(\tH\x18R\n" + "sourceDisk\x88\x01\x01\x12t\n" + - "\x1asource_disk_encryption_key\x18ᠸ\xfd\x01 \x01(\v2..google.cloud.compute.v1.CustomerEncryptionKeyH\x16R\x17sourceDiskEncryptionKey\x88\x01\x01\x12U\n" + - "#source_disk_for_recovery_checkpoint\x18\xfe\xe1ʫ\x01 \x01(\tH\x17R\x1fsourceDiskForRecoveryCheckpoint\x88\x01\x01\x12-\n" + - "\x0esource_disk_id\x18\xd9\xcd\xc9\xd8\x01 \x01(\tH\x18R\fsourceDiskId\x88\x01\x01\x12>\n" + - "\x17source_instant_snapshot\x18\x86\x84\xc3h \x01(\tH\x19R\x15sourceInstantSnapshot\x88\x01\x01\x12\x8b\x01\n" + - "&source_instant_snapshot_encryption_key\x18\xfc\x85\x94\xd0\x01 \x01(\v2..google.cloud.compute.v1.CustomerEncryptionKeyH\x1aR\"sourceInstantSnapshotEncryptionKey\x88\x01\x01\x12D\n" + - "\x1asource_instant_snapshot_id\x18\xf4Ӑ\x89\x01 \x01(\tH\x1bR\x17sourceInstantSnapshotId\x88\x01\x01\x12M\n" + - "\x1fsource_snapshot_schedule_policy\x18\x83\xb6\xb5p \x01(\tH\x1cR\x1csourceSnapshotSchedulePolicy\x88\x01\x01\x12R\n" + - "\"source_snapshot_schedule_policy_id\x18ק\xce! \x01(\tH\x1dR\x1esourceSnapshotSchedulePolicyId\x88\x01\x01\x12\x1e\n" + - "\x06status\x18\xf2\x9f\xb7V \x01(\tH\x1eR\x06status\x88\x01\x01\x12,\n" + - "\rstorage_bytes\x18\xa7\xbb\xbd\xca\x01 \x01(\x03H\x1fR\fstorageBytes\x88\x01\x01\x129\n" + - "\x14storage_bytes_status\x18\x8a\xab\x80\xea\x01 \x01(\tH R\x12storageBytesStatus\x88\x01\x01\x12/\n" + + "\x1asource_disk_encryption_key\x18ᠸ\xfd\x01 \x01(\v2..google.cloud.compute.v1.CustomerEncryptionKeyH\x19R\x17sourceDiskEncryptionKey\x88\x01\x01\x12U\n" + + "#source_disk_for_recovery_checkpoint\x18\xfe\xe1ʫ\x01 \x01(\tH\x1aR\x1fsourceDiskForRecoveryCheckpoint\x88\x01\x01\x12-\n" + + "\x0esource_disk_id\x18\xd9\xcd\xc9\xd8\x01 \x01(\tH\x1bR\fsourceDiskId\x88\x01\x01\x12>\n" + + "\x17source_instant_snapshot\x18\x86\x84\xc3h \x01(\tH\x1cR\x15sourceInstantSnapshot\x88\x01\x01\x12\x8b\x01\n" + + "&source_instant_snapshot_encryption_key\x18\xfc\x85\x94\xd0\x01 \x01(\v2..google.cloud.compute.v1.CustomerEncryptionKeyH\x1dR\"sourceInstantSnapshotEncryptionKey\x88\x01\x01\x12D\n" + + "\x1asource_instant_snapshot_id\x18\xf4Ӑ\x89\x01 \x01(\tH\x1eR\x17sourceInstantSnapshotId\x88\x01\x01\x12M\n" + + "\x1fsource_snapshot_schedule_policy\x18\x83\xb6\xb5p \x01(\tH\x1fR\x1csourceSnapshotSchedulePolicy\x88\x01\x01\x12R\n" + + "\"source_snapshot_schedule_policy_id\x18ק\xce! \x01(\tH R\x1esourceSnapshotSchedulePolicyId\x88\x01\x01\x12\x1e\n" + + "\x06status\x18\xf2\x9f\xb7V \x01(\tH!R\x06status\x88\x01\x01\x12,\n" + + "\rstorage_bytes\x18\xa7\xbb\xbd\xca\x01 \x01(\x03H\"R\fstorageBytes\x88\x01\x01\x129\n" + + "\x14storage_bytes_status\x18\x8a\xab\x80\xea\x01 \x01(\tH#R\x12storageBytesStatus\x88\x01\x01\x12/\n" + "\x11storage_locations\x18\x9a\xed\xb3\x9c\x01 \x03(\tR\x10storageLocations\x1a9\n" + "\vLabelsEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + @@ -228064,12 +237148,15 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x12_label_fingerprintB\x10\n" + "\x0e_location_hintB\a\n" + "\x05_nameB\t\n" + - "\a_paramsB\x10\n" + + "\a_paramsB\t\n" + + "\a_regionB\x10\n" + "\x0e_satisfies_pziB\x10\n" + "\x0e_satisfies_pzsB\f\n" + "\n" + "_self_linkB\x1a\n" + - "\x18_snapshot_encryption_keyB\x10\n" + + "\x18_snapshot_encryption_keyB\x14\n" + + "\x12_snapshot_group_idB\x16\n" + + "\x14_snapshot_group_nameB\x10\n" + "\x0e_snapshot_typeB\x0e\n" + "\f_source_diskB\x1d\n" + "\x1b_source_disk_encryption_keyB&\n" + @@ -228082,7 +237169,13 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "#_source_snapshot_schedule_policy_idB\t\n" + "\a_statusB\x10\n" + "\x0e_storage_bytesB\x17\n" + - "\x15_storage_bytes_status\"\xd4\x02\n" + + "\x15_storage_bytes_status\"\xbc\x01\n" + + "\x17SnapshotGroupParameters\x12&\n" + + "\rreplica_zones\x18\x80\xb8\x8c\x17 \x03(\tR\freplicaZones\x12:\n" + + "\x15source_snapshot_group\x18\xe8\xf1\xack \x01(\tH\x00R\x13sourceSnapshotGroup\x88\x01\x01\x12\x1a\n" + + "\x04type\x18\xba\x9e\xda\x01 \x01(\tH\x01R\x04type\x88\x01\x01B\x18\n" + + "\x16_source_snapshot_groupB\a\n" + + "\x05_type\"\xd4\x02\n" + "\fSnapshotList\x12\x14\n" + "\x02id\x18\x9b\x1a \x01(\tH\x00R\x02id\x88\x01\x01\x12:\n" + "\x05items\x18\xc0\xcf\xf7/ \x03(\v2!.google.cloud.compute.v1.SnapshotR\x05items\x12\x1a\n" + @@ -228101,10 +237194,27 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x15resource_manager_tags\x18\xfc\x9b\x8b\xb4\x01 \x03(\v2@.google.cloud.compute.v1.SnapshotParams.ResourceManagerTagsEntryR\x13resourceManagerTags\x1aF\n" + "\x18ResourceManagerTagsEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + - "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\x9d\x01\n" + - "\x10SnapshotSettings\x12t\n" + - "\x10storage_location\x18\xf9\xd1\xe0\xdb\x01 \x01(\v2@.google.cloud.compute.v1.SnapshotSettingsStorageLocationSettingsH\x00R\x0fstorageLocation\x88\x01\x01B\x13\n" + - "\x11_storage_location\"\xfd\x03\n" + + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\x9b\x02\n" + + "\x10SnapshotSettings\x12h\n" + + "\x0faccess_location\x18\xb0\xd8\xe3\b \x01(\v27.google.cloud.compute.v1.SnapshotSettingsAccessLocationH\x00R\x0eaccessLocation\x88\x01\x01\x12t\n" + + "\x10storage_location\x18\xf9\xd1\xe0\xdb\x01 \x01(\v2@.google.cloud.compute.v1.SnapshotSettingsStorageLocationSettingsH\x01R\x0fstorageLocation\x88\x01\x01B\x12\n" + + "\x10_access_locationB\x13\n" + + "\x11_storage_location\"\xaf\x03\n" + + "\x1eSnapshotSettingsAccessLocation\x12h\n" + + "\tlocations\x18ޮ\x91\xc5\x01 \x03(\v2F.google.cloud.compute.v1.SnapshotSettingsAccessLocation.LocationsEntryR\tlocations\x12\x1e\n" + + "\x06policy\x18\xb2ʶ+ \x01(\tH\x00R\x06policy\x88\x01\x01\x1a\x8d\x01\n" + + "\x0eLocationsEntry\x12\x10\n" + + "\x03key\x18\x01 \x01(\tR\x03key\x12e\n" + + "\x05value\x18\x02 \x01(\v2O.google.cloud.compute.v1.SnapshotSettingsAccessLocationAccessLocationPreferenceR\x05value:\x028\x01\"h\n" + + "\x06Policy\x12\x14\n" + + "\x10UNDEFINED_POLICY\x10\x00\x12\x13\n" + + "\vALL_REGIONS\x10\xa1\xae\x9f\x82\x01\x12\x19\n" + + "\x12POLICY_UNSPECIFIED\x10\x8a\xb7\xb3^\x12\x18\n" + + "\x10SPECIFIC_REGIONS\x10\xd2\xe3\xc5\xd8\x01B\t\n" + + "\a_policy\"c\n" + + "6SnapshotSettingsAccessLocationAccessLocationPreference\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tH\x00R\x06region\x88\x01\x01B\t\n" + + "\a_region\"\xfd\x03\n" + "'SnapshotSettingsStorageLocationSettings\x12q\n" + "\tlocations\x18ޮ\x91\xc5\x01 \x03(\v2O.google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings.LocationsEntryR\tlocations\x12\x1e\n" + "\x06policy\x18\xb2ʶ+ \x01(\tH\x00R\x06policy\x88\x01\x01\x1a\x97\x01\n" + @@ -228120,7 +237230,11 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\a_policy\"g\n" + "@SnapshotSettingsStorageLocationSettingsStorageLocationPreference\x12\x1a\n" + "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\x00R\x04name\x88\x01\x01B\a\n" + - "\x05_name\"\xd4\x01\n" + + "\x05_name\"Y\n" + + "\x1bSnapshotUpdateKmsKeyRequest\x12)\n" + + "\fkms_key_name\x18\x99\xeb\xfb\xe6\x01 \x01(\tH\x00R\n" + + "kmsKeyName\x88\x01\x01B\x0f\n" + + "\r_kms_key_name\"\xd4\x01\n" + "\x17SourceDiskEncryptionKey\x12g\n" + "\x13disk_encryption_key\x18\x85\xedā\x01 \x01(\v2..google.cloud.compute.v1.CustomerEncryptionKeyH\x00R\x11diskEncryptionKey\x88\x01\x01\x12(\n" + "\vsource_disk\x18\xc1\xee\xb4\xd7\x01 \x01(\tH\x01R\n" + @@ -229729,7 +238843,12 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + ")TestIamPermissionsInstanceTemplateRequest\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\x12\x83\x01\n" + - "!test_permissions_request_resource\x18\xa6ŷ\xd1\x01 \x01(\v2/.google.cloud.compute.v1.TestPermissionsRequestB\x03\xe0A\x02R\x1etestPermissionsRequestResource\"\x92\x02\n" + + "!test_permissions_request_resource\x18\xa6ŷ\xd1\x01 \x01(\v2/.google.cloud.compute.v1.TestPermissionsRequestB\x03\xe0A\x02R\x1etestPermissionsRequestResource\"\x97\x02\n" + + "-TestIamPermissionsInstantSnapshotGroupRequest\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\x12\x83\x01\n" + + "!test_permissions_request_resource\x18\xa6ŷ\xd1\x01 \x01(\v2/.google.cloud.compute.v1.TestPermissionsRequestB\x03\xe0A\x02R\x1etestPermissionsRequestResource\x12\x1a\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\x03\xe0A\x02R\x04zone\"\x92\x02\n" + "(TestIamPermissionsInstantSnapshotRequest\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\x12\x83\x01\n" + @@ -229788,6 +238907,11 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\x12\x83\x01\n" + + "!test_permissions_request_resource\x18\xa6ŷ\xd1\x01 \x01(\v2/.google.cloud.compute.v1.TestPermissionsRequestB\x03\xe0A\x02R\x1etestPermissionsRequestResource\"\x9a\x02\n" + + ",TestIamPermissionsRegionBackendBucketRequest\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\x12\x83\x01\n" + "!test_permissions_request_resource\x18\xa6ŷ\xd1\x01 \x01(\v2/.google.cloud.compute.v1.TestPermissionsRequestB\x03\xe0A\x02R\x1etestPermissionsRequestResource\"\x9b\x02\n" + "-TestIamPermissionsRegionBackendServiceRequest\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + @@ -229828,6 +238952,11 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\x12\x83\x01\n" + + "!test_permissions_request_resource\x18\xa6ŷ\xd1\x01 \x01(\v2/.google.cloud.compute.v1.TestPermissionsRequestB\x03\xe0A\x02R\x1etestPermissionsRequestResource\"\xa1\x02\n" + + "3TestIamPermissionsRegionInstantSnapshotGroupRequest\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\x12\x83\x01\n" + "!test_permissions_request_resource\x18\xa6ŷ\xd1\x01 \x01(\v2/.google.cloud.compute.v1.TestPermissionsRequestB\x03\xe0A\x02R\x1etestPermissionsRequestResource\"\x9c\x02\n" + ".TestIamPermissionsRegionInstantSnapshotRequest\x12 \n" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + @@ -229843,6 +238972,11 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\"\n" + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\x12\x83\x01\n" + + "!test_permissions_request_resource\x18\xa6ŷ\xd1\x01 \x01(\v2/.google.cloud.compute.v1.TestPermissionsRequestB\x03\xe0A\x02R\x1etestPermissionsRequestResource\"\x95\x02\n" + + "'TestIamPermissionsRegionSnapshotRequest\x12 \n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\x03\xe0A\x02R\aproject\x12\x1e\n" + + "\x06region\x18\xf4͠B \x01(\tB\x03\xe0A\x02R\x06region\x12\"\n" + + "\bresource\x18\x8e\x88\xaf] \x01(\tB\x03\xe0A\x02R\bresource\x12\x83\x01\n" + "!test_permissions_request_resource\x18\xa6ŷ\xd1\x01 \x01(\v2/.google.cloud.compute.v1.TestPermissionsRequestB\x03\xe0A\x02R\x1etestPermissionsRequestResource\"\xc4\x02\n" + ")TestIamPermissionsReservationBlockRequest\x12/\n" + "\x0fparent_resource\x18\x83\x98\xd0\b \x01(\tB\x03\xe0A\x02R\x0eparentResource\x12 \n" + @@ -230075,6 +239209,38 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x12_discard_local_ssdB\x11\n" + "\x0f_minimal_actionB!\n" + "\x1f_most_disruptive_allowed_actionB\r\n" + + "\v_request_id\"\xc4\x02\n" + + "\x17UpdateKmsKeyDiskRequest\x12\x1a\n" + + "\x04disk\x18\x9d\x9b\xbc\x01 \x01(\tB\x03\xe0A\x02R\x04disk\x12\x87\x01\n" + + "$disk_update_kms_key_request_resource\x18\xe0\xeb\xf1T \x01(\v20.google.cloud.compute.v1.DiskUpdateKmsKeyRequestB\x03\xe0A\x02R\x1fdiskUpdateKmsKeyRequestResource\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12!\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\n" + + "\xe0A\x02\xf2G\x04zoneR\x04zoneB\r\n" + + "\v_request_id\"\xe3\x02\n" + + "\x1dUpdateKmsKeyRegionDiskRequest\x12\x1a\n" + + "\x04disk\x18\x9d\x9b\xbc\x01 \x01(\tB\x03\xe0A\x02R\x04disk\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12\x9a\x01\n" + + "+region_disk_update_kms_key_request_resource\x18˨\xe3\x04 \x01(\v26.google.cloud.compute.v1.RegionDiskUpdateKmsKeyRequestB\x03\xe0A\x02R%regionDiskUpdateKmsKeyRequestResource\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01B\r\n" + + "\v_request_id\"\xfd\x02\n" + + "!UpdateKmsKeyRegionSnapshotRequest\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12'\n" + + "\x06region\x18\xf4͠B \x01(\tB\f\xe0A\x02\xf2G\x06regionR\x06region\x12\xa7\x01\n" + + "/region_snapshot_update_kms_key_request_resource\x18\U000a5705\x01 \x01(\v2:.google.cloud.compute.v1.RegionSnapshotUpdateKmsKeyRequestB\x03\xe0A\x02R)regionSnapshotUpdateKmsKeyRequestResource\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12#\n" + + "\bsnapshot\x18ī\xeb\x87\x01 \x01(\tB\x03\xe0A\x02R\bsnapshotB\r\n" + + "\v_request_id\"\xba\x02\n" + + "\x1bUpdateKmsKeySnapshotRequest\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12#\n" + + "\bsnapshot\x18ī\xeb\x87\x01 \x01(\tB\x03\xe0A\x02R\bsnapshot\x12\x93\x01\n" + + "(snapshot_update_kms_key_request_resource\x18\x87ė1 \x01(\v24.google.cloud.compute.v1.SnapshotUpdateKmsKeyRequestB\x03\xe0A\x02R#snapshotUpdateKmsKeyRequestResourceB\r\n" + "\v_request_id\"\xaa\x02\n" + "\x14UpdateLicenseRequest\x12 \n" + "\alicense\x18\xc1\x88\xc2O \x01(\tB\x03\xe0A\x02R\alicense\x12T\n" + @@ -230258,6 +239424,15 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x12 \n" + "\aurl_map\x18\x8c\x95\x81\xaf\x01 \x01(\tB\x03\xe0A\x02R\x06urlMap\x12Q\n" + "\x10url_map_resource\x18ᐷP \x01(\v2\x1f.google.cloud.compute.v1.UrlMapB\x03\xe0A\x02R\x0eurlMapResourceB\r\n" + + "\v_request_id\"\xd8\x02\n" + + "\"UpdateZoneVmExtensionPolicyRequest\x12*\n" + + "\aproject\x18\x99\x96\xc1l \x01(\tB\r\xe0A\x02\xf2G\aprojectR\aproject\x12%\n" + + "\n" + + "request_id\x18ˁ\xd9\x11 \x01(\tH\x00R\trequestId\x88\x01\x01\x127\n" + + "\x13vm_extension_policy\x18\xba\x93\x8b\x9e\x01 \x01(\tB\x03\xe0A\x02R\x11vmExtensionPolicy\x12t\n" + + "\x1cvm_extension_policy_resource\x18\xf3\xf9\xf1\xf5\x01 \x01(\v2*.google.cloud.compute.v1.VmExtensionPolicyB\x03\xe0A\x02R\x19vmExtensionPolicyResource\x12!\n" + + "\x04zone\x18\xac\xc7\xe4\x01 \x01(\tB\n" + + "\xe0A\x02\xf2G\x04zoneR\x04zoneB\r\n" + "\v_request_id\"\xca\t\n" + "\x06UrlMap\x125\n" + "\x12creation_timestamp\x18\xb6\x8f\xc7\x0e \x01(\tH\x00R\x11creationTimestamp\x88\x01\x01\x12\x8a\x01\n" + @@ -230511,6 +239686,73 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\n" + "_self_linkB\n" + "\n" + + "\b_warning\"\x80\t\n" + + "\x11VmExtensionPolicy\x125\n" + + "\x12creation_timestamp\x18\xb6\x8f\xc7\x0e \x01(\tH\x00R\x11creationTimestamp\x88\x01\x01\x12)\n" + + "\vdescription\x18\xfc\x87\xd6\xc9\x01 \x01(\tH\x01R\vdescription\x88\x01\x01\x12s\n" + + "\x12extension_policies\x18к\xcdl \x03(\v2A.google.cloud.compute.v1.VmExtensionPolicy.ExtensionPoliciesEntryR\x11extensionPolicies\x129\n" + + "\x14global_resource_link\x18\xef\xf3\xa8\xf6\x01 \x01(\tH\x02R\x12globalResourceLink\x88\x01\x01\x12\x14\n" + + "\x02id\x18\x9b\x1a \x01(\x04H\x03R\x02id\x88\x01\x01\x12m\n" + + "\x12instance_selectors\x18\xca\u008c\xf8\x01 \x03(\v2:.google.cloud.compute.v1.VmExtensionPolicyInstanceSelectorR\x11instanceSelectors\x12\x1a\n" + + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\x04R\x04kind\x88\x01\x01\x122\n" + + "\x11managed_by_global\x18뇠* \x01(\bH\x05R\x0fmanagedByGlobal\x88\x01\x01\x12\x1a\n" + + "\x04name\x18\x8b\xf5\xcd\x01 \x01(\tH\x06R\x04name\x88\x01\x01\x12#\n" + + "\bpriority\x18\xa4\xf3\xa1\xd4\x01 \x01(\x05H\aR\bpriority\x88\x01\x01\x12$\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\bR\bselfLink\x88\x01\x01\x121\n" + + "\x11self_link_with_id\x18\x82\xac\x9d\x15 \x01(\tH\tR\x0eselfLinkWithId\x88\x01\x01\x12\x1c\n" + + "\x05state\x18\x91\x89\xab4 \x01(\tH\n" + + "R\x05state\x88\x01\x01\x121\n" + + "\x10update_timestamp\x18\xa0\xea\xd29 \x01(\tH\vR\x0fupdateTimestamp\x88\x01\x01\x1a\x7f\n" + + "\x16ExtensionPoliciesEntry\x12\x10\n" + + "\x03key\x18\x01 \x01(\tR\x03key\x12O\n" + + "\x05value\x18\x02 \x01(\v29.google.cloud.compute.v1.VmExtensionPolicyExtensionPolicyR\x05value:\x028\x01\"Y\n" + + "\x05State\x12\x13\n" + + "\x0fUNDEFINED_STATE\x10\x00\x12\x0e\n" + + "\x06ACTIVE\x10\x86扖\x01\x12\x10\n" + + "\bDELETING\x10\xa8\xa7\x87\xfc\x01\x12\x19\n" + + "\x11STATE_UNSPECIFIED\x10\xc9м\xe0\x01B\x15\n" + + "\x13_creation_timestampB\x0e\n" + + "\f_descriptionB\x17\n" + + "\x15_global_resource_linkB\x05\n" + + "\x03_idB\a\n" + + "\x05_kindB\x14\n" + + "\x12_managed_by_globalB\a\n" + + "\x05_nameB\v\n" + + "\t_priorityB\f\n" + + "\n" + + "_self_linkB\x14\n" + + "\x12_self_link_with_idB\b\n" + + "\x06_stateB\x13\n" + + "\x11_update_timestamp\"\xa5\x01\n" + + " VmExtensionPolicyExtensionPolicy\x12.\n" + + "\x0epinned_version\x18\xf1\xfe\xe5\xd4\x01 \x01(\tH\x00R\rpinnedVersion\x88\x01\x01\x12,\n" + + "\rstring_config\x18\xb0\xb6\x88\x98\x01 \x01(\tH\x01R\fstringConfig\x88\x01\x01B\x11\n" + + "\x0f_pinned_versionB\x10\n" + + "\x0e_string_config\"\x9f\x01\n" + + "!VmExtensionPolicyInstanceSelector\x12g\n" + + "\x0elabel_selector\x18\xca\xf1\xe4\xa6\x01 \x01(\v27.google.cloud.compute.v1.VmExtensionPolicyLabelSelectorH\x00R\rlabelSelector\x88\x01\x01B\x11\n" + + "\x0f_label_selector\"\xe1\x01\n" + + "\x1eVmExtensionPolicyLabelSelector\x12{\n" + + "\x10inclusion_labels\x18\x82م\xef\x01 \x03(\v2L.google.cloud.compute.v1.VmExtensionPolicyLabelSelector.InclusionLabelsEntryR\x0finclusionLabels\x1aB\n" + + "\x14InclusionLabelsEntry\x12\x10\n" + + "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" + + "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xb2\x03\n" + + "\x15VmExtensionPolicyList\x12\x1a\n" + + "\x04etag\x18\x95Ҿ\x01 \x01(\tH\x00R\x04etag\x88\x01\x01\x12\x14\n" + + "\x02id\x18\x9b\x1a \x01(\tH\x01R\x02id\x88\x01\x01\x12C\n" + + "\x05items\x18\xc0\xcf\xf7/ \x03(\v2*.google.cloud.compute.v1.VmExtensionPolicyR\x05items\x12\x1a\n" + + "\x04kind\x18\x94\xf7\xc8\x01 \x01(\tH\x02R\x04kind\x88\x01\x01\x12.\n" + + "\x0fnext_page_token\x18\x95\xba\x86& \x01(\tH\x03R\rnextPageToken\x88\x01\x01\x12$\n" + + "\tself_link\x18\x8d\x92\xc5\xd9\x01 \x01(\tH\x04R\bselfLink\x88\x01\x01\x12%\n" + + "\funreachables\x18\x9f\xa0\x86t \x03(\tR\funreachables\x12B\n" + + "\awarning\x18\x9cߖ\x18 \x01(\v2 .google.cloud.compute.v1.WarningH\x05R\awarning\x88\x01\x01B\a\n" + + "\x05_etagB\x05\n" + + "\x03_idB\a\n" + + "\x05_kindB\x12\n" + + "\x10_next_page_tokenB\f\n" + + "\n" + + "_self_linkB\n" + + "\n" + "\b_warning\"\xc5\b\n" + "\n" + "VpnGateway\x125\n" + @@ -231097,15 +240339,18 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x04List\x12/.google.cloud.compute.v1.ListAutoscalersRequest\x1a'.google.cloud.compute.v1.AutoscalerList\"N\xdaA\fproject,zone\x82\xd3\xe4\x93\x029\x127/compute/v1/projects/{project}/zones/{zone}/autoscalers\x12\xe7\x01\n" + "\x05Patch\x12/.google.cloud.compute.v1.PatchAutoscalerRequest\x1a\".google.cloud.compute.v1.Operation\"\x88\x01\xdaA project,zone,autoscaler_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02N:\x13autoscaler_resource27/compute/v1/projects/{project}/zones/{zone}/autoscalers\x12\xc1\x02\n" + "\x12TestIamPermissions\x12<.google.cloud.compute.v1.TestIamPermissionsAutoscalerRequest\x1a0.google.cloud.compute.v1.TestPermissionsResponse\"\xba\x01\xdaA7project,zone,resource,test_permissions_request_resource\x82\xd3\xe4\x93\x02z:!test_permissions_request_resource\"U/compute/v1/projects/{project}/zones/{zone}/autoscalers/{resource}/testIamPermissions\x12\xe9\x01\n" + - "\x06Update\x120.google.cloud.compute.v1.UpdateAutoscalerRequest\x1a\".google.cloud.compute.v1.Operation\"\x88\x01\xdaA project,zone,autoscaler_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02N:\x13autoscaler_resource\x1a7/compute/v1/projects/{project}/zones/{zone}/autoscalers\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xc5\x19\n" + + "\x06Update\x120.google.cloud.compute.v1.UpdateAutoscalerRequest\x1a\".google.cloud.compute.v1.Operation\"\x88\x01\xdaA project,zone,autoscaler_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02N:\x13autoscaler_resource\x1a7/compute/v1/projects/{project}/zones/{zone}/autoscalers\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xe6\x1c\n" + "\x0eBackendBuckets\x12\xb0\x02\n" + - "\x0fAddSignedUrlKey\x12<.google.cloud.compute.v1.AddSignedUrlKeyBackendBucketRequest\x1a\".google.cloud.compute.v1.Operation\"\xba\x01\xdaA.project,backend_bucket,signed_url_key_resource\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02p:\x17signed_url_key_resource\"U/compute/v1/projects/{project}/global/backendBuckets/{backend_bucket}/addSignedUrlKey\x12\xdc\x01\n" + + "\x0fAddSignedUrlKey\x12<.google.cloud.compute.v1.AddSignedUrlKeyBackendBucketRequest\x1a\".google.cloud.compute.v1.Operation\"\xba\x01\xdaA.project,backend_bucket,signed_url_key_resource\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02p:\x17signed_url_key_resource\"U/compute/v1/projects/{project}/global/backendBuckets/{backend_bucket}/addSignedUrlKey\x12\xd0\x01\n" + + "\x0eAggregatedList\x12<.google.cloud.compute.v1.AggregatedListBackendBucketsRequest\x1a4.google.cloud.compute.v1.BackendBucketAggregatedList\"J\xdaA\aproject\x82\xd3\xe4\x93\x02:\x128/compute/v1/projects/{project}/aggregated/backendBuckets\x12\xdc\x01\n" + "\x06Delete\x123.google.cloud.compute.v1.DeleteBackendBucketRequest\x1a\".google.cloud.compute.v1.Operation\"y\xdaA\x16project,backend_bucket\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02G*E/compute/v1/projects/{project}/global/backendBuckets/{backend_bucket}\x12\x91\x02\n" + "\x12DeleteSignedUrlKey\x12?.google.cloud.compute.v1.DeleteSignedUrlKeyBackendBucketRequest\x1a\".google.cloud.compute.v1.Operation\"\x95\x01\xdaA\x1fproject,backend_bucket,key_name\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02Z\"X/compute/v1/projects/{project}/global/backendBuckets/{backend_bucket}/deleteSignedUrlKey\x12\xc7\x01\n" + "\x03Get\x120.google.cloud.compute.v1.GetBackendBucketRequest\x1a&.google.cloud.compute.v1.BackendBucket\"f\xdaA\x16project,backend_bucket\x82\xd3\xe4\x93\x02G\x12E/compute/v1/projects/{project}/global/backendBuckets/{backend_bucket}\x12\xd3\x01\n" + "\fGetIamPolicy\x129.google.cloud.compute.v1.GetIamPolicyBackendBucketRequest\x1a\x1f.google.cloud.compute.v1.Policy\"g\xdaA\x10project,resource\x82\xd3\xe4\x93\x02N\x12L/compute/v1/projects/{project}/global/backendBuckets/{resource}/getIamPolicy\x12\xee\x01\n" + "\x06Insert\x123.google.cloud.compute.v1.InsertBackendBucketRequest\x1a\".google.cloud.compute.v1.Operation\"\x8a\x01\xdaA\x1fproject,backend_bucket_resource\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02O:\x17backend_bucket_resource\"4/compute/v1/projects/{project}/global/backendBuckets\x12\xae\x01\n" + - "\x04List\x122.google.cloud.compute.v1.ListBackendBucketsRequest\x1a*.google.cloud.compute.v1.BackendBucketList\"F\xdaA\aproject\x82\xd3\xe4\x93\x026\x124/compute/v1/projects/{project}/global/backendBuckets\x12\x8c\x02\n" + + "\x04List\x122.google.cloud.compute.v1.ListBackendBucketsRequest\x1a*.google.cloud.compute.v1.BackendBucketList\"F\xdaA\aproject\x82\xd3\xe4\x93\x026\x124/compute/v1/projects/{project}/global/backendBuckets\x12\xcb\x01\n" + + "\n" + + "ListUsable\x128.google.cloud.compute.v1.ListUsableBackendBucketsRequest\x1a0.google.cloud.compute.v1.BackendBucketListUsable\"Q\xdaA\aproject\x82\xd3\xe4\x93\x02A\x12?/compute/v1/projects/{project}/global/backendBuckets/listUsable\x12\x8c\x02\n" + "\x05Patch\x122.google.cloud.compute.v1.PatchBackendBucketRequest\x1a\".google.cloud.compute.v1.Operation\"\xaa\x01\xdaA.project,backend_bucket,backend_bucket_resource\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02`:\x17backend_bucket_resource2E/compute/v1/projects/{project}/global/backendBuckets/{backend_bucket}\x12\xd9\x02\n" + "\x15SetEdgeSecurityPolicy\x12B.google.cloud.compute.v1.SetEdgeSecurityPolicyBackendBucketRequest\x1a\".google.cloud.compute.v1.Operation\"\xd7\x01\xdaA9project,backend_bucket,security_policy_reference_resource\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02\x81\x01:\"security_policy_reference_resource\"[/compute/v1/projects/{project}/global/backendBuckets/{backend_bucket}/setEdgeSecurityPolicy\x12\x9b\x02\n" + "\fSetIamPolicy\x129.google.cloud.compute.v1.SetIamPolicyBackendBucketRequest\x1a\x1f.google.cloud.compute.v1.Policy\"\xae\x01\xdaA3project,resource,global_set_policy_request_resource\x82\xd3\xe4\x93\x02r:\"global_set_policy_request_resource\"L/compute/v1/projects/{project}/global/backendBuckets/{resource}/setIamPolicy\x12\xbc\x02\n" + @@ -231140,7 +240385,7 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\tDiskTypes\x12\xc1\x01\n" + "\x0eAggregatedList\x127.google.cloud.compute.v1.AggregatedListDiskTypesRequest\x1a/.google.cloud.compute.v1.DiskTypeAggregatedList\"E\xdaA\aproject\x82\xd3\xe4\x93\x025\x123/compute/v1/projects/{project}/aggregated/diskTypes\x12\xb9\x01\n" + "\x03Get\x12+.google.cloud.compute.v1.GetDiskTypeRequest\x1a!.google.cloud.compute.v1.DiskType\"b\xdaA\x16project,zone,disk_type\x82\xd3\xe4\x93\x02C\x12A/compute/v1/projects/{project}/zones/{zone}/diskTypes/{disk_type}\x12\xaa\x01\n" + - "\x04List\x12-.google.cloud.compute.v1.ListDiskTypesRequest\x1a%.google.cloud.compute.v1.DiskTypeList\"L\xdaA\fproject,zone\x82\xd3\xe4\x93\x027\x125/compute/v1/projects/{project}/zones/{zone}/diskTypes\x1a\xa4\x01\xcaA\x16compute.googleapis.com\xd2A\x87\x01https://www.googleapis.com/auth/compute.readonly,https://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xbb'\n" + + "\x04List\x12-.google.cloud.compute.v1.ListDiskTypesRequest\x1a%.google.cloud.compute.v1.DiskTypeList\"L\xdaA\fproject,zone\x82\xd3\xe4\x93\x027\x125/compute/v1/projects/{project}/zones/{zone}/diskTypes\x1a\xa4\x01\xcaA\x16compute.googleapis.com\xd2A\x87\x01https://www.googleapis.com/auth/compute.readonly,https://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xe2)\n" + "\x05Disks\x12\xc9\x02\n" + "\x13AddResourcePolicies\x127.google.cloud.compute.v1.AddResourcePoliciesDiskRequest\x1a\".google.cloud.compute.v1.Operation\"\xd4\x01\xdaA>project,zone,disk,disks_add_resource_policies_request_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02|:,disks_add_resource_policies_request_resource\"L/compute/v1/projects/{project}/zones/{zone}/disks/{disk}/addResourcePolicies\x12\xb5\x01\n" + "\x0eAggregatedList\x123.google.cloud.compute.v1.AggregatedListDisksRequest\x1a+.google.cloud.compute.v1.DiskAggregatedList\"A\xdaA\aproject\x82\xd3\xe4\x93\x021\x12//compute/v1/projects/{project}/aggregated/disks\x12\x8e\x02\n" + @@ -231161,7 +240406,8 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x14StopAsyncReplication\x128.google.cloud.compute.v1.StopAsyncReplicationDiskRequest\x1a\".google.cloud.compute.v1.Operation\"z\xdaA\x11project,zone,disk\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02O\"M/compute/v1/projects/{project}/zones/{zone}/disks/{disk}/stopAsyncReplication\x12\xe0\x02\n" + "\x19StopGroupAsyncReplication\x12=.google.cloud.compute.v1.StopGroupAsyncReplicationDiskRequest\x1a\".google.cloud.compute.v1.Operation\"\xdf\x01\xdaAAproject,zone,disks_stop_group_async_replication_resource_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02\x83\x01:4disks_stop_group_async_replication_resource_resource\"K/compute/v1/projects/{project}/zones/{zone}/disks/stopGroupAsyncReplication\x12\xb5\x02\n" + "\x12TestIamPermissions\x126.google.cloud.compute.v1.TestIamPermissionsDiskRequest\x1a0.google.cloud.compute.v1.TestPermissionsResponse\"\xb4\x01\xdaA7project,zone,resource,test_permissions_request_resource\x82\xd3\xe4\x93\x02t:!test_permissions_request_resource\"O/compute/v1/projects/{project}/zones/{zone}/disks/{resource}/testIamPermissions\x12\xdd\x01\n" + - "\x06Update\x12*.google.cloud.compute.v1.UpdateDiskRequest\x1a\".google.cloud.compute.v1.Operation\"\x82\x01\xdaA\x1fproject,zone,disk,disk_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02I:\rdisk_resource28/compute/v1/projects/{project}/zones/{zone}/disks/{disk}\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xa9\r\n" + + "\x06Update\x12*.google.cloud.compute.v1.UpdateDiskRequest\x1a\".google.cloud.compute.v1.Operation\"\x82\x01\xdaA\x1fproject,zone,disk,disk_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02I:\rdisk_resource28/compute/v1/projects/{project}/zones/{zone}/disks/{disk}\x12\xa4\x02\n" + + "\fUpdateKmsKey\x120.google.cloud.compute.v1.UpdateKmsKeyDiskRequest\x1a\".google.cloud.compute.v1.Operation\"\xbd\x01\xdaA6project,zone,disk,disk_update_kms_key_request_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02m:$disk_update_kms_key_request_resource\"E/compute/v1/projects/{project}/zones/{zone}/disks/{disk}/updateKmsKey\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xa9\r\n" + "\x13ExternalVpnGateways\x12\xf3\x01\n" + "\x06Delete\x128.google.cloud.compute.v1.DeleteExternalVpnGatewayRequest\x1a\".google.cloud.compute.v1.Operation\"\x8a\x01\xdaA\x1cproject,external_vpn_gateway\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02R*P/compute/v1/projects/{project}/global/externalVpnGateways/{external_vpn_gateway}\x12\xe2\x01\n" + "\x03Get\x125.google.cloud.compute.v1.GetExternalVpnGatewayRequest\x1a+.google.cloud.compute.v1.ExternalVpnGateway\"w\xdaA\x1cproject,external_vpn_gateway\x82\xd3\xe4\x93\x02R\x12P/compute/v1/projects/{project}/global/externalVpnGateways/{external_vpn_gateway}\x12\x84\x02\n" + @@ -231387,7 +240633,15 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x12UpdateAccessConfig\x12:.google.cloud.compute.v1.UpdateAccessConfigInstanceRequest\x1a\".google.cloud.compute.v1.Operation\"\xc5\x01\xdaA>project,zone,instance,network_interface,access_config_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02m:\x16access_config_resource\"S/compute/v1/projects/{project}/zones/{zone}/instances/{instance}/updateAccessConfig\x12\xaf\x02\n" + "\x13UpdateDisplayDevice\x12;.google.cloud.compute.v1.UpdateDisplayDeviceInstanceRequest\x1a\".google.cloud.compute.v1.Operation\"\xb6\x01\xdaA-project,zone,instance,display_device_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02o:\x17display_device_resource2T/compute/v1/projects/{project}/zones/{zone}/instances/{instance}/updateDisplayDevice\x12\xd0\x02\n" + "\x16UpdateNetworkInterface\x12>.google.cloud.compute.v1.UpdateNetworkInterfaceInstanceRequest\x1a\".google.cloud.compute.v1.Operation\"\xd1\x01\xdaABproject,zone,instance,network_interface,network_interface_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02u:\x1anetwork_interface_resource2W/compute/v1/projects/{project}/zones/{zone}/instances/{instance}/updateNetworkInterface\x12\xdf\x02\n" + - "\x1cUpdateShieldedInstanceConfig\x12D.google.cloud.compute.v1.UpdateShieldedInstanceConfigInstanceRequest\x1a\".google.cloud.compute.v1.Operation\"\xd4\x01\xdaA7project,zone,instance,shielded_instance_config_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02\x82\x01:!shielded_instance_config_resource2]/compute/v1/projects/{project}/zones/{zone}/instances/{instance}/updateShieldedInstanceConfig\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\x83\x13\n" + + "\x1cUpdateShieldedInstanceConfig\x12D.google.cloud.compute.v1.UpdateShieldedInstanceConfigInstanceRequest\x1a\".google.cloud.compute.v1.Operation\"\xd4\x01\xdaA7project,zone,instance,shielded_instance_config_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02\x82\x01:!shielded_instance_config_resource2]/compute/v1/projects/{project}/zones/{zone}/instances/{instance}/updateShieldedInstanceConfig\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xf2\x0f\n" + + "\x15InstantSnapshotGroups\x12\x84\x02\n" + + "\x06Delete\x12:.google.cloud.compute.v1.DeleteInstantSnapshotGroupRequest\x1a\".google.cloud.compute.v1.Operation\"\x99\x01\xdaA#project,zone,instant_snapshot_group\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02\\*Z/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups/{instant_snapshot_group}\x12\xf8\x01\n" + + "\x03Get\x127.google.cloud.compute.v1.GetInstantSnapshotGroupRequest\x1a-.google.cloud.compute.v1.InstantSnapshotGroup\"\x88\x01\xdaA#project,zone,instant_snapshot_group\x82\xd3\xe4\x93\x02\\\x12Z/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups/{instant_snapshot_group}\x12\xec\x01\n" + + "\fGetIamPolicy\x12@.google.cloud.compute.v1.GetIamPolicyInstantSnapshotGroupRequest\x1a\x1f.google.cloud.compute.v1.Policy\"y\xdaA\x15project,zone,resource\x82\xd3\xe4\x93\x02[\x12Y/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups/{resource}/getIamPolicy\x12\x95\x02\n" + + "\x06Insert\x12:.google.cloud.compute.v1.InsertInstantSnapshotGroupRequest\x1a\".google.cloud.compute.v1.Operation\"\xaa\x01\xdaA,project,zone,instant_snapshot_group_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02d:\x1finstant_snapshot_group_resource\"A/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups\x12\xcf\x01\n" + + "\x04List\x129.google.cloud.compute.v1.ListInstantSnapshotGroupsRequest\x1a2.google.cloud.compute.v1.ListInstantSnapshotGroups\"X\xdaA\fproject,zone\x82\xd3\xe4\x93\x02C\x12A/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups\x12\xb0\x02\n" + + "\fSetIamPolicy\x12@.google.cloud.compute.v1.SetIamPolicyInstantSnapshotGroupRequest\x1a\x1f.google.cloud.compute.v1.Policy\"\xbc\x01\xdaA6project,zone,resource,zone_set_policy_request_resource\x82\xd3\xe4\x93\x02}: zone_set_policy_request_resource\"Y/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups/{resource}/setIamPolicy\x12\xd6\x02\n" + + "\x12TestIamPermissions\x12F.google.cloud.compute.v1.TestIamPermissionsInstantSnapshotGroupRequest\x1a0.google.cloud.compute.v1.TestPermissionsResponse\"\xc5\x01\xdaA7project,zone,resource,test_permissions_request_resource\x82\xd3\xe4\x93\x02\x84\x01:!test_permissions_request_resource\"_/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups/{resource}/testIamPermissions\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\x83\x13\n" + "\x10InstantSnapshots\x12\xd6\x01\n" + "\x0eAggregatedList\x12>.google.cloud.compute.v1.AggregatedListInstantSnapshotsRequest\x1a6.google.cloud.compute.v1.InstantSnapshotAggregatedList\"L\xdaA\aproject\x82\xd3\xe4\x93\x02<\x12:/compute/v1/projects/{project}/aggregated/instantSnapshots\x12\xee\x01\n" + "\x06Delete\x125.google.cloud.compute.v1.DeleteInstantSnapshotRequest\x1a\".google.cloud.compute.v1.Operation\"\x88\x01\xdaA\x1dproject,zone,instant_snapshot\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02Q*O/compute/v1/projects/{project}/zones/{zone}/instantSnapshots/{instant_snapshot}\x12\xdc\x01\n" + @@ -231634,7 +240888,18 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x04List\x125.google.cloud.compute.v1.ListRegionAutoscalersRequest\x1a-.google.cloud.compute.v1.RegionAutoscalerList\"T\xdaA\x0eproject,region\x82\xd3\xe4\x93\x02=\x12;/compute/v1/projects/{project}/regions/{region}/autoscalers\x12\xf5\x01\n" + "\x05Patch\x125.google.cloud.compute.v1.PatchRegionAutoscalerRequest\x1a\".google.cloud.compute.v1.Operation\"\x90\x01\xdaA\"project,region,autoscaler_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02R:\x13autoscaler_resource2;/compute/v1/projects/{project}/regions/{region}/autoscalers\x12\xcd\x02\n" + "\x12TestIamPermissions\x12B.google.cloud.compute.v1.TestIamPermissionsRegionAutoscalerRequest\x1a0.google.cloud.compute.v1.TestPermissionsResponse\"\xc0\x01\xdaA9project,region,resource,test_permissions_request_resource\x82\xd3\xe4\x93\x02~:!test_permissions_request_resource\"Y/compute/v1/projects/{project}/regions/{region}/autoscalers/{resource}/testIamPermissions\x12\xf7\x01\n" + - "\x06Update\x126.google.cloud.compute.v1.UpdateRegionAutoscalerRequest\x1a\".google.cloud.compute.v1.Operation\"\x90\x01\xdaA\"project,region,autoscaler_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02R:\x13autoscaler_resource\x1a;/compute/v1/projects/{project}/regions/{region}/autoscalers\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xbd\x1b\n" + + "\x06Update\x126.google.cloud.compute.v1.UpdateRegionAutoscalerRequest\x1a\".google.cloud.compute.v1.Operation\"\x90\x01\xdaA\"project,region,autoscaler_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02R:\x13autoscaler_resource\x1a;/compute/v1/projects/{project}/regions/{region}/autoscalers\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xb6\x13\n" + + "\x14RegionBackendBuckets\x12\xf4\x01\n" + + "\x06Delete\x129.google.cloud.compute.v1.DeleteRegionBackendBucketRequest\x1a\".google.cloud.compute.v1.Operation\"\x8a\x01\xdaA\x1dproject,region,backend_bucket\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02Q*O/compute/v1/projects/{project}/regions/{region}/backendBuckets/{backend_bucket}\x12\xde\x01\n" + + "\x03Get\x126.google.cloud.compute.v1.GetRegionBackendBucketRequest\x1a&.google.cloud.compute.v1.BackendBucket\"w\xdaA\x1dproject,region,backend_bucket\x82\xd3\xe4\x93\x02Q\x12O/compute/v1/projects/{project}/regions/{region}/backendBuckets/{backend_bucket}\x12\xea\x01\n" + + "\fGetIamPolicy\x12?.google.cloud.compute.v1.GetIamPolicyRegionBackendBucketRequest\x1a\x1f.google.cloud.compute.v1.Policy\"x\xdaA\x17project,region,resource\x82\xd3\xe4\x93\x02X\x12V/compute/v1/projects/{project}/regions/{region}/backendBuckets/{resource}/getIamPolicy\x12\x85\x02\n" + + "\x06Insert\x129.google.cloud.compute.v1.InsertRegionBackendBucketRequest\x1a\".google.cloud.compute.v1.Operation\"\x9b\x01\xdaA&project,region,backend_bucket_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02Y:\x17backend_bucket_resource\">/compute/v1/projects/{project}/regions/{region}/backendBuckets\x12\xc5\x01\n" + + "\x04List\x128.google.cloud.compute.v1.ListRegionBackendBucketsRequest\x1a*.google.cloud.compute.v1.BackendBucketList\"W\xdaA\x0eproject,region\x82\xd3\xe4\x93\x02@\x12>/compute/v1/projects/{project}/regions/{region}/backendBuckets\x12\xe2\x01\n" + + "\n" + + "ListUsable\x12>.google.cloud.compute.v1.ListUsableRegionBackendBucketsRequest\x1a0.google.cloud.compute.v1.BackendBucketListUsable\"b\xdaA\x0eproject,region\x82\xd3\xe4\x93\x02K\x12I/compute/v1/projects/{project}/regions/{region}/backendBuckets/listUsable\x12\xa3\x02\n" + + "\x05Patch\x128.google.cloud.compute.v1.PatchRegionBackendBucketRequest\x1a\".google.cloud.compute.v1.Operation\"\xbb\x01\xdaA5project,region,backend_bucket,backend_bucket_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02j:\x17backend_bucket_resource2O/compute/v1/projects/{project}/regions/{region}/backendBuckets/{backend_bucket}\x12\xb2\x02\n" + + "\fSetIamPolicy\x12?.google.cloud.compute.v1.SetIamPolicyRegionBackendBucketRequest\x1a\x1f.google.cloud.compute.v1.Policy\"\xbf\x01\xdaA:project,region,resource,region_set_policy_request_resource\x82\xd3\xe4\x93\x02|:\"region_set_policy_request_resource\"V/compute/v1/projects/{project}/regions/{region}/backendBuckets/{resource}/setIamPolicy\x12\xd4\x02\n" + + "\x12TestIamPermissions\x12E.google.cloud.compute.v1.TestIamPermissionsRegionBackendBucketRequest\x1a0.google.cloud.compute.v1.TestPermissionsResponse\"\xc4\x01\xdaA9project,region,resource,test_permissions_request_resource\x82\xd3\xe4\x93\x02\x81\x01:!test_permissions_request_resource\"\\/compute/v1/projects/{project}/regions/{region}/backendBuckets/{resource}/testIamPermissions\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xbd\x1b\n" + "\x15RegionBackendServices\x12\xf8\x01\n" + "\x06Delete\x12:.google.cloud.compute.v1.DeleteRegionBackendServiceRequest\x1a\".google.cloud.compute.v1.Operation\"\x8d\x01\xdaA\x1eproject,region,backend_service\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02S*Q/compute/v1/projects/{project}/regions/{region}/backendServices/{backend_service}\x12\xe3\x01\n" + "\x03Get\x127.google.cloud.compute.v1.GetRegionBackendServiceRequest\x1a'.google.cloud.compute.v1.BackendService\"z\xdaA\x1eproject,region,backend_service\x82\xd3\xe4\x93\x02S\x12Q/compute/v1/projects/{project}/regions/{region}/backendServices/{backend_service}\x12\xcb\x02\n" + @@ -231654,18 +240919,19 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x03Get\x123.google.cloud.compute.v1.GetRegionCommitmentRequest\x1a#.google.cloud.compute.v1.Commitment\"l\xdaA\x19project,region,commitment\x82\xd3\xe4\x93\x02J\x12H/compute/v1/projects/{project}/regions/{region}/commitments/{commitment}\x12\xf7\x01\n" + "\x06Insert\x126.google.cloud.compute.v1.InsertRegionCommitmentRequest\x1a\".google.cloud.compute.v1.Operation\"\x90\x01\xdaA\"project,region,commitment_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02R:\x13commitment_resource\";/compute/v1/projects/{project}/regions/{region}/commitments\x12\xbc\x01\n" + "\x04List\x125.google.cloud.compute.v1.ListRegionCommitmentsRequest\x1a'.google.cloud.compute.v1.CommitmentList\"T\xdaA\x0eproject,region\x82\xd3\xe4\x93\x02=\x12;/compute/v1/projects/{project}/regions/{region}/commitments\x12\x8f\x02\n" + - "\x06Update\x126.google.cloud.compute.v1.UpdateRegionCommitmentRequest\x1a\".google.cloud.compute.v1.Operation\"\xa8\x01\xdaA-project,region,commitment,commitment_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02_:\x13commitment_resource2H/compute/v1/projects/{project}/regions/{region}/commitments/{commitment}\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xd8\x10\n" + + "\x06Update\x126.google.cloud.compute.v1.UpdateRegionCommitmentRequest\x1a\".google.cloud.compute.v1.Operation\"\xa8\x01\xdaA-project,region,commitment,commitment_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02_:\x13commitment_resource2H/compute/v1/projects/{project}/regions/{region}/commitments/{commitment}\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xfb\x12\n" + "\x1bRegionCompositeHealthChecks\x12\xeb\x01\n" + "\x0eAggregatedList\x12I.google.cloud.compute.v1.AggregatedListRegionCompositeHealthChecksRequest\x1a;.google.cloud.compute.v1.CompositeHealthCheckAggregatedList\"Q\xdaA\aproject\x82\xd3\xe4\x93\x02A\x12?/compute/v1/projects/{project}/aggregated/compositeHealthChecks\x12\x92\x02\n" + "\x06Delete\x12@.google.cloud.compute.v1.DeleteRegionCompositeHealthCheckRequest\x1a\".google.cloud.compute.v1.Operation\"\xa1\x01\xdaA%project,region,composite_health_check\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02`*^/compute/v1/projects/{project}/regions/{region}/compositeHealthChecks/{composite_health_check}\x12\x84\x02\n" + - "\x03Get\x12=.google.cloud.compute.v1.GetRegionCompositeHealthCheckRequest\x1a-.google.cloud.compute.v1.CompositeHealthCheck\"\x8e\x01\xdaA%project,region,composite_health_check\x82\xd3\xe4\x93\x02`\x12^/compute/v1/projects/{project}/regions/{region}/compositeHealthChecks/{composite_health_check}\x12\xa3\x02\n" + + "\x03Get\x12=.google.cloud.compute.v1.GetRegionCompositeHealthCheckRequest\x1a-.google.cloud.compute.v1.CompositeHealthCheck\"\x8e\x01\xdaA%project,region,composite_health_check\x82\xd3\xe4\x93\x02`\x12^/compute/v1/projects/{project}/regions/{region}/compositeHealthChecks/{composite_health_check}\x12\xa0\x02\n" + + "\tGetHealth\x12C.google.cloud.compute.v1.GetHealthRegionCompositeHealthCheckRequest\x1a3.google.cloud.compute.v1.CompositeHealthCheckHealth\"\x98\x01\xdaA%project,region,composite_health_check\x82\xd3\xe4\x93\x02j\x12h/compute/v1/projects/{project}/regions/{region}/compositeHealthChecks/{composite_health_check}/getHealth\x12\xa3\x02\n" + "\x06Insert\x12@.google.cloud.compute.v1.InsertRegionCompositeHealthCheckRequest\x1a\".google.cloud.compute.v1.Operation\"\xb2\x01\xdaA.project,region,composite_health_check_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02h:\x1fcomposite_health_check_resource\"E/compute/v1/projects/{project}/regions/{region}/compositeHealthChecks\x12\xda\x01\n" + "\x04List\x12?.google.cloud.compute.v1.ListRegionCompositeHealthChecksRequest\x1a1.google.cloud.compute.v1.CompositeHealthCheckList\"^\xdaA\x0eproject,region\x82\xd3\xe4\x93\x02G\x12E/compute/v1/projects/{project}/regions/{region}/compositeHealthChecks\x12\xd2\x02\n" + "\x05Patch\x12?.google.cloud.compute.v1.PatchRegionCompositeHealthCheckRequest\x1a\".google.cloud.compute.v1.Operation\"\xe3\x01\xdaAEproject,region,composite_health_check,composite_health_check_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02\x81\x01:\x1fcomposite_health_check_resource2^/compute/v1/projects/{project}/regions/{region}/compositeHealthChecks/{composite_health_check}\x12\xe2\x02\n" + "\x12TestIamPermissions\x12L.google.cloud.compute.v1.TestIamPermissionsRegionCompositeHealthCheckRequest\x1a0.google.cloud.compute.v1.TestPermissionsResponse\"\xcb\x01\xdaA9project,region,resource,test_permissions_request_resource\x82\xd3\xe4\x93\x02\x88\x01:!test_permissions_request_resource\"c/compute/v1/projects/{project}/regions/{region}/compositeHealthChecks/{resource}/testIamPermissions\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xbf\x04\n" + "\x0fRegionDiskTypes\x12\xc5\x01\n" + "\x03Get\x121.google.cloud.compute.v1.GetRegionDiskTypeRequest\x1a!.google.cloud.compute.v1.DiskType\"h\xdaA\x18project,region,disk_type\x82\xd3\xe4\x93\x02G\x12E/compute/v1/projects/{project}/regions/{region}/diskTypes/{disk_type}\x12\xbc\x01\n" + - "\x04List\x123.google.cloud.compute.v1.ListRegionDiskTypesRequest\x1a+.google.cloud.compute.v1.RegionDiskTypeList\"R\xdaA\x0eproject,region\x82\xd3\xe4\x93\x02;\x129/compute/v1/projects/{project}/regions/{region}/diskTypes\x1a\xa4\x01\xcaA\x16compute.googleapis.com\xd2A\x87\x01https://www.googleapis.com/auth/compute.readonly,https://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\x8f&\n" + + "\x04List\x123.google.cloud.compute.v1.ListRegionDiskTypesRequest\x1a+.google.cloud.compute.v1.RegionDiskTypeList\"R\xdaA\x0eproject,region\x82\xd3\xe4\x93\x02;\x129/compute/v1/projects/{project}/regions/{region}/diskTypes\x1a\xa4\x01\xcaA\x16compute.googleapis.com\xd2A\x87\x01https://www.googleapis.com/auth/compute.readonly,https://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xd2(\n" + "\vRegionDisks\x12\xe6\x02\n" + "\x13AddResourcePolicies\x12=.google.cloud.compute.v1.AddResourcePoliciesRegionDiskRequest\x1a\".google.cloud.compute.v1.Operation\"\xeb\x01\xdaAGproject,region,disk,region_disks_add_resource_policies_request_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02\x87\x01:3region_disks_add_resource_policies_request_resource\"P/compute/v1/projects/{project}/regions/{region}/disks/{disk}/addResourcePolicies\x12\x9c\x02\n" + "\n" + @@ -231684,7 +240950,8 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x14StopAsyncReplication\x12>.google.cloud.compute.v1.StopAsyncReplicationRegionDiskRequest\x1a\".google.cloud.compute.v1.Operation\"\x82\x01\xdaA\x13project,region,disk\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02S\"Q/compute/v1/projects/{project}/regions/{region}/disks/{disk}/stopAsyncReplication\x12\xee\x02\n" + "\x19StopGroupAsyncReplication\x12C.google.cloud.compute.v1.StopGroupAsyncReplicationRegionDiskRequest\x1a\".google.cloud.compute.v1.Operation\"\xe7\x01\xdaACproject,region,disks_stop_group_async_replication_resource_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02\x87\x01:4disks_stop_group_async_replication_resource_resource\"O/compute/v1/projects/{project}/regions/{region}/disks/stopGroupAsyncReplication\x12\xc1\x02\n" + "\x12TestIamPermissions\x12<.google.cloud.compute.v1.TestIamPermissionsRegionDiskRequest\x1a0.google.cloud.compute.v1.TestPermissionsResponse\"\xba\x01\xdaA9project,region,resource,test_permissions_request_resource\x82\xd3\xe4\x93\x02x:!test_permissions_request_resource\"S/compute/v1/projects/{project}/regions/{region}/disks/{resource}/testIamPermissions\x12\xeb\x01\n" + - "\x06Update\x120.google.cloud.compute.v1.UpdateRegionDiskRequest\x1a\".google.cloud.compute.v1.Operation\"\x8a\x01\xdaA!project,region,disk,disk_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02M:\rdisk_resource2.google.cloud.compute.v1.HealthAggregationPolicyAggregatedList\"U\xdaA\aproject\x82\xd3\xe4\x93\x02E\x12C/compute/v1/projects/{project}/aggregated/healthAggregationPolicies\x12\x9f\x02\n" + "\x06Delete\x12C.google.cloud.compute.v1.DeleteRegionHealthAggregationPolicyRequest\x1a\".google.cloud.compute.v1.Operation\"\xab\x01\xdaA(project,region,health_aggregation_policy\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02g*e/compute/v1/projects/{project}/regions/{region}/healthAggregationPolicies/{health_aggregation_policy}\x12\x94\x02\n" + @@ -231708,15 +240975,22 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x04List\x126.google.cloud.compute.v1.ListRegionHealthChecksRequest\x1a(.google.cloud.compute.v1.HealthCheckList\"U\xdaA\x0eproject,region\x82\xd3\xe4\x93\x02>\x12.google.cloud.compute.v1.RemoveRuleRegionSecurityPolicyRequest\x1a\".google.cloud.compute.v1.Operation\"\x99\x01\xdaA\x1eproject,region,security_policy\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02_\"]/compute/v1/projects/{project}/regions/{region}/securityPolicies/{security_policy}/removeRule\x12\xc2\x02\n" + - "\tSetLabels\x12=.google.cloud.compute.v1.SetLabelsRegionSecurityPolicyRequest\x1a\".google.cloud.compute.v1.Operation\"\xd1\x01\xdaA:project,region,resource,region_set_labels_request_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02{:\"region_set_labels_request_resource\"U/compute/v1/projects/{project}/regions/{region}/securityPolicies/{resource}/setLabels\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xc3\b\n" + + "\tSetLabels\x12=.google.cloud.compute.v1.SetLabelsRegionSecurityPolicyRequest\x1a\".google.cloud.compute.v1.Operation\"\xd1\x01\xdaA:project,region,resource,region_set_labels_request_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02{:\"region_set_labels_request_resource\"U/compute/v1/projects/{project}/regions/{region}/securityPolicies/{resource}/setLabels\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xe4\x04\n" + + "\x16RegionSnapshotSettings\x12\xc5\x01\n" + + "\x03Get\x128.google.cloud.compute.v1.GetRegionSnapshotSettingRequest\x1a).google.cloud.compute.v1.SnapshotSettings\"Y\xdaA\x0eproject,region\x82\xd3\xe4\x93\x02B\x12@/compute/v1/projects/{project}/regions/{region}/snapshotSettings\x12\x8d\x02\n" + + "\x05Patch\x12:.google.cloud.compute.v1.PatchRegionSnapshotSettingRequest\x1a\".google.cloud.compute.v1.Operation\"\xa3\x01\xdaA)project,region,snapshot_settings_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02^:\x1asnapshot_settings_resource2@/compute/v1/projects/{project}/regions/{region}/snapshotSettings\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xc4\x13\n" + + "\x0fRegionSnapshots\x12\xdd\x01\n" + + "\x06Delete\x124.google.cloud.compute.v1.DeleteRegionSnapshotRequest\x1a\".google.cloud.compute.v1.Operation\"y\xdaA\x17project,region,snapshot\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02F*D/compute/v1/projects/{project}/regions/{region}/snapshots/{snapshot}\x12\xc3\x01\n" + + "\x03Get\x121.google.cloud.compute.v1.GetRegionSnapshotRequest\x1a!.google.cloud.compute.v1.Snapshot\"f\xdaA\x17project,region,snapshot\x82\xd3\xe4\x93\x02F\x12D/compute/v1/projects/{project}/regions/{region}/snapshots/{snapshot}\x12\xe0\x01\n" + + "\fGetIamPolicy\x12:.google.cloud.compute.v1.GetIamPolicyRegionSnapshotRequest\x1a\x1f.google.cloud.compute.v1.Policy\"s\xdaA\x17project,region,resource\x82\xd3\xe4\x93\x02S\x12Q/compute/v1/projects/{project}/regions/{region}/snapshots/{resource}/getIamPolicy\x12\xef\x01\n" + + "\x06Insert\x124.google.cloud.compute.v1.InsertRegionSnapshotRequest\x1a\".google.cloud.compute.v1.Operation\"\x8a\x01\xdaA project,region,snapshot_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02N:\x11snapshot_resource\"9/compute/v1/projects/{project}/regions/{region}/snapshots\x12\xb6\x01\n" + + "\x04List\x123.google.cloud.compute.v1.ListRegionSnapshotsRequest\x1a%.google.cloud.compute.v1.SnapshotList\"R\xdaA\x0eproject,region\x82\xd3\xe4\x93\x02;\x129/compute/v1/projects/{project}/regions/{region}/snapshots\x12\xa8\x02\n" + + "\fSetIamPolicy\x12:.google.cloud.compute.v1.SetIamPolicyRegionSnapshotRequest\x1a\x1f.google.cloud.compute.v1.Policy\"\xba\x01\xdaA:project,region,resource,region_set_policy_request_resource\x82\xd3\xe4\x93\x02w:\"region_set_policy_request_resource\"Q/compute/v1/projects/{project}/regions/{region}/snapshots/{resource}/setIamPolicy\x12\xb5\x02\n" + + "\tSetLabels\x127.google.cloud.compute.v1.SetLabelsRegionSnapshotRequest\x1a\".google.cloud.compute.v1.Operation\"\xca\x01\xdaA:project,region,resource,region_set_labels_request_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02t:\"region_set_labels_request_resource\"N/compute/v1/projects/{project}/regions/{region}/snapshots/{resource}/setLabels\x12\xc9\x02\n" + + "\x12TestIamPermissions\x12@.google.cloud.compute.v1.TestIamPermissionsRegionSnapshotRequest\x1a0.google.cloud.compute.v1.TestPermissionsResponse\"\xbe\x01\xdaA9project,region,resource,test_permissions_request_resource\x82\xd3\xe4\x93\x02|:!test_permissions_request_resource\"W/compute/v1/projects/{project}/regions/{region}/snapshots/{resource}/testIamPermissions\x12\xd9\x02\n" + + "\fUpdateKmsKey\x12:.google.cloud.compute.v1.UpdateKmsKeyRegionSnapshotRequest\x1a\".google.cloud.compute.v1.Operation\"\xe8\x01\xdaAGproject,region,snapshot,region_snapshot_update_kms_key_request_resource\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02\x84\x01:/region_snapshot_update_kms_key_request_resource\"Q/compute/v1/projects/{project}/regions/{region}/snapshots/{snapshot}/updateKmsKey\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xc3\b\n" + "\x15RegionSslCertificates\x12\xf8\x01\n" + "\x06Delete\x12:.google.cloud.compute.v1.DeleteRegionSslCertificateRequest\x1a\".google.cloud.compute.v1.Operation\"\x8d\x01\xdaA\x1eproject,region,ssl_certificate\x8aN\x10RegionOperations\x82\xd3\xe4\x93\x02S*Q/compute/v1/projects/{project}/regions/{region}/sslCertificates/{ssl_certificate}\x12\xe3\x01\n" + "\x03Get\x127.google.cloud.compute.v1.GetRegionSslCertificateRequest\x1a'.google.cloud.compute.v1.SslCertificate\"z\xdaA\x1eproject,region,ssl_certificate\x82\xd3\xe4\x93\x02S\x12Q/compute/v1/projects/{project}/regions/{region}/sslCertificates/{ssl_certificate}\x12\x89\x02\n" + @@ -231956,7 +241251,7 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x12TestIamPermissions\x12C.google.cloud.compute.v1.TestIamPermissionsServiceAttachmentRequest\x1a0.google.cloud.compute.v1.TestPermissionsResponse\"\xc8\x01\xdaA9project,region,resource,test_permissions_request_resource\x82\xd3\xe4\x93\x02\x85\x01:!test_permissions_request_resource\"`/compute/v1/projects/{project}/regions/{region}/serviceAttachments/{resource}/testIamPermissions\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xb7\x04\n" + "\x17SnapshotSettingsService\x12\xae\x01\n" + "\x03Get\x122.google.cloud.compute.v1.GetSnapshotSettingRequest\x1a).google.cloud.compute.v1.SnapshotSettings\"H\xdaA\aproject\x82\xd3\xe4\x93\x028\x126/compute/v1/projects/{project}/global/snapshotSettings\x12\xf6\x01\n" + - "\x05Patch\x124.google.cloud.compute.v1.PatchSnapshotSettingRequest\x1a\".google.cloud.compute.v1.Operation\"\x92\x01\xdaA\"project,snapshot_settings_resource\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02T:\x1asnapshot_settings_resource26/compute/v1/projects/{project}/global/snapshotSettings\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xa9\x0f\n" + + "\x05Patch\x124.google.cloud.compute.v1.PatchSnapshotSettingRequest\x1a\".google.cloud.compute.v1.Operation\"\x92\x01\xdaA\"project,snapshot_settings_resource\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02T:\x1asnapshot_settings_resource26/compute/v1/projects/{project}/global/snapshotSettings\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xdf\x11\n" + "\tSnapshots\x12\xc6\x01\n" + "\x06Delete\x12..google.cloud.compute.v1.DeleteSnapshotRequest\x1a\".google.cloud.compute.v1.Operation\"h\xdaA\x10project,snapshot\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02<*:/compute/v1/projects/{project}/global/snapshots/{snapshot}\x12\xac\x01\n" + "\x03Get\x12+.google.cloud.compute.v1.GetSnapshotRequest\x1a!.google.cloud.compute.v1.Snapshot\"U\xdaA\x10project,snapshot\x82\xd3\xe4\x93\x02<\x12:/compute/v1/projects/{project}/global/snapshots/{snapshot}\x12\xc9\x01\n" + @@ -231965,7 +241260,8 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x04List\x12-.google.cloud.compute.v1.ListSnapshotsRequest\x1a%.google.cloud.compute.v1.SnapshotList\"A\xdaA\aproject\x82\xd3\xe4\x93\x021\x12//compute/v1/projects/{project}/global/snapshots\x12\x91\x02\n" + "\fSetIamPolicy\x124.google.cloud.compute.v1.SetIamPolicySnapshotRequest\x1a\x1f.google.cloud.compute.v1.Policy\"\xa9\x01\xdaA3project,resource,global_set_policy_request_resource\x82\xd3\xe4\x93\x02m:\"global_set_policy_request_resource\"G/compute/v1/projects/{project}/global/snapshots/{resource}/setIamPolicy\x12\x9e\x02\n" + "\tSetLabels\x121.google.cloud.compute.v1.SetLabelsSnapshotRequest\x1a\".google.cloud.compute.v1.Operation\"\xb9\x01\xdaA3project,resource,global_set_labels_request_resource\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02j:\"global_set_labels_request_resource\"D/compute/v1/projects/{project}/global/snapshots/{resource}/setLabels\x12\xb2\x02\n" + - "\x12TestIamPermissions\x12:.google.cloud.compute.v1.TestIamPermissionsSnapshotRequest\x1a0.google.cloud.compute.v1.TestPermissionsResponse\"\xad\x01\xdaA2project,resource,test_permissions_request_resource\x82\xd3\xe4\x93\x02r:!test_permissions_request_resource\"M/compute/v1/projects/{project}/global/snapshots/{resource}/testIamPermissions\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xb6\t\n" + + "\x12TestIamPermissions\x12:.google.cloud.compute.v1.TestIamPermissionsSnapshotRequest\x1a0.google.cloud.compute.v1.TestPermissionsResponse\"\xad\x01\xdaA2project,resource,test_permissions_request_resource\x82\xd3\xe4\x93\x02r:!test_permissions_request_resource\"M/compute/v1/projects/{project}/global/snapshots/{resource}/testIamPermissions\x12\xb3\x02\n" + + "\fUpdateKmsKey\x124.google.cloud.compute.v1.UpdateKmsKeySnapshotRequest\x1a\".google.cloud.compute.v1.Operation\"\xc8\x01\xdaA9project,snapshot,snapshot_update_kms_key_request_resource\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02s:(snapshot_update_kms_key_request_resource\"G/compute/v1/projects/{project}/global/snapshots/{snapshot}/updateKmsKey\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xb6\t\n" + "\x0fSslCertificates\x12\xd3\x01\n" + "\x0eAggregatedList\x12=.google.cloud.compute.v1.AggregatedListSslCertificatesRequest\x1a5.google.cloud.compute.v1.SslCertificateAggregatedList\"K\xdaA\aproject\x82\xd3\xe4\x93\x02;\x129/compute/v1/projects/{project}/aggregated/sslCertificates\x12\xe0\x01\n" + "\x06Delete\x124.google.cloud.compute.v1.DeleteSslCertificateRequest\x1a\".google.cloud.compute.v1.Operation\"|\xdaA\x17project,ssl_certificate\x8aN\x10GlobalOperations\x82\xd3\xe4\x93\x02I*G/compute/v1/projects/{project}/global/sslCertificates/{ssl_certificate}\x12\xcc\x01\n" + @@ -232124,7 +241420,13 @@ const file_google_cloud_compute_v1_compute_proto_rawDesc = "" + "\x06Delete\x123.google.cloud.compute.v1.DeleteZoneOperationRequest\x1a4.google.cloud.compute.v1.DeleteZoneOperationResponse\"c\xdaA\x16project,zone,operation\x82\xd3\xe4\x93\x02D*B/compute/v1/projects/{project}/zones/{zone}/operations/{operation}\x12\xc3\x01\n" + "\x03Get\x120.google.cloud.compute.v1.GetZoneOperationRequest\x1a\".google.cloud.compute.v1.Operation\"f\xdaA\x16project,zone,operation\x90N\x01\x82\xd3\xe4\x93\x02D\x12B/compute/v1/projects/{project}/zones/{zone}/operations/{operation}\x12\xb1\x01\n" + "\x04List\x122.google.cloud.compute.v1.ListZoneOperationsRequest\x1a&.google.cloud.compute.v1.OperationList\"M\xdaA\fproject,zone\x82\xd3\xe4\x93\x028\x126/compute/v1/projects/{project}/zones/{zone}/operations\x12\xc7\x01\n" + - "\x04Wait\x121.google.cloud.compute.v1.WaitZoneOperationRequest\x1a\".google.cloud.compute.v1.Operation\"h\xdaA\x16project,zone,operation\x82\xd3\xe4\x93\x02I\"G/compute/v1/projects/{project}/zones/{zone}/operations/{operation}/wait\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xd1\x03\n" + + "\x04Wait\x121.google.cloud.compute.v1.WaitZoneOperationRequest\x1a\".google.cloud.compute.v1.Operation\"h\xdaA\x16project,zone,operation\x82\xd3\xe4\x93\x02I\"G/compute/v1/projects/{project}/zones/{zone}/operations/{operation}/wait\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\x98\v\n" + + "\x17ZoneVmExtensionPolicies\x12\xfd\x01\n" + + "\x06Delete\x12;.google.cloud.compute.v1.DeleteZoneVmExtensionPolicyRequest\x1a\".google.cloud.compute.v1.Operation\"\x91\x01\xdaA project,zone,vm_extension_policy\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02W*U/compute/v1/projects/{project}/zones/{zone}/vmExtensionPolicies/{vm_extension_policy}\x12\xee\x01\n" + + "\x03Get\x128.google.cloud.compute.v1.GetZoneVmExtensionPolicyRequest\x1a*.google.cloud.compute.v1.VmExtensionPolicy\"\x80\x01\xdaA project,zone,vm_extension_policy\x82\xd3\xe4\x93\x02W\x12U/compute/v1/projects/{project}/zones/{zone}/vmExtensionPolicies/{vm_extension_policy}\x12\x8e\x02\n" + + "\x06Insert\x12;.google.cloud.compute.v1.InsertZoneVmExtensionPolicyRequest\x1a\".google.cloud.compute.v1.Operation\"\xa2\x01\xdaA)project,zone,vm_extension_policy_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02_:\x1cvm_extension_policy_resource\"?/compute/v1/projects/{project}/zones/{zone}/vmExtensionPolicies\x12\xcb\x01\n" + + "\x04List\x12;.google.cloud.compute.v1.ListZoneVmExtensionPoliciesRequest\x1a..google.cloud.compute.v1.VmExtensionPolicyList\"V\xdaA\fproject,zone\x82\xd3\xe4\x93\x02A\x12?/compute/v1/projects/{project}/zones/{zone}/vmExtensionPolicies\x12\xb8\x02\n" + + "\x06Update\x12;.google.cloud.compute.v1.UpdateZoneVmExtensionPolicyRequest\x1a\".google.cloud.compute.v1.Operation\"\xcc\x01\xdaA=project,zone,vm_extension_policy,vm_extension_policy_resource\x8aN\x0eZoneOperations\x82\xd3\xe4\x93\x02u:\x1cvm_extension_policy_resource2U/compute/v1/projects/{project}/zones/{zone}/vmExtensionPolicies/{vm_extension_policy}\x1ar\xcaA\x16compute.googleapis.com\xd2AVhttps://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platform2\xd1\x03\n" + "\x05Zones\x12\x91\x01\n" + "\x03Get\x12'.google.cloud.compute.v1.GetZoneRequest\x1a\x1d.google.cloud.compute.v1.Zone\"B\xdaA\fproject,zone\x82\xd3\xe4\x93\x02-\x12+/compute/v1/projects/{project}/zones/{zone}\x12\x8c\x01\n" + "\x04List\x12).google.cloud.compute.v1.ListZonesRequest\x1a!.google.cloud.compute.v1.ZoneList\"6\xdaA\aproject\x82\xd3\xe4\x93\x02&\x12$/compute/v1/projects/{project}/zones\x1a\xa4\x01\xcaA\x16compute.googleapis.com\xd2A\x87\x01https://www.googleapis.com/auth/compute.readonly,https://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/cloud-platformB\xa7\x01\n" + @@ -232142,8 +241444,8 @@ func file_google_cloud_compute_v1_compute_proto_rawDescGZIP() []byte { return file_google_cloud_compute_v1_compute_proto_rawDescData } -var file_google_cloud_compute_v1_compute_proto_enumTypes = make([]protoimpl.EnumInfo, 473) -var file_google_cloud_compute_v1_compute_proto_msgTypes = make([]protoimpl.MessageInfo, 2014) +var file_google_cloud_compute_v1_compute_proto_enumTypes = make([]protoimpl.EnumInfo, 483) +var file_google_cloud_compute_v1_compute_proto_msgTypes = make([]protoimpl.MessageInfo, 2103) var file_google_cloud_compute_v1_compute_proto_goTypes = []any{ (AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState_State)(0), // 0: google.cloud.compute.v1.AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState.State (AccessConfig_NetworkTier)(0), // 1: google.cloud.compute.v1.AccessConfig.NetworkTier @@ -232161,6006 +241463,6270 @@ var file_google_cloud_compute_v1_compute_proto_goTypes = []any{ (AllocationReservationSharingPolicy_ServiceShareType)(0), // 13: google.cloud.compute.v1.AllocationReservationSharingPolicy.ServiceShareType (AllocationResourceStatusHealthInfo_HealthStatus)(0), // 14: google.cloud.compute.v1.AllocationResourceStatusHealthInfo.HealthStatus (AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk_Interface)(0), // 15: google.cloud.compute.v1.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk.Interface - (AttachedDisk_Architecture)(0), // 16: google.cloud.compute.v1.AttachedDisk.Architecture - (AttachedDisk_Interface)(0), // 17: google.cloud.compute.v1.AttachedDisk.Interface - (AttachedDisk_Mode)(0), // 18: google.cloud.compute.v1.AttachedDisk.Mode - (AttachedDisk_SavedState)(0), // 19: google.cloud.compute.v1.AttachedDisk.SavedState - (AttachedDisk_Type)(0), // 20: google.cloud.compute.v1.AttachedDisk.Type - (AttachedDiskInitializeParams_Architecture)(0), // 21: google.cloud.compute.v1.AttachedDiskInitializeParams.Architecture - (AttachedDiskInitializeParams_OnUpdateAction)(0), // 22: google.cloud.compute.v1.AttachedDiskInitializeParams.OnUpdateAction - (AuditLogConfig_LogType)(0), // 23: google.cloud.compute.v1.AuditLogConfig.LogType - (Autoscaler_Status)(0), // 24: google.cloud.compute.v1.Autoscaler.Status - (AutoscalerStatusDetails_Type)(0), // 25: google.cloud.compute.v1.AutoscalerStatusDetails.Type - (AutoscalingPolicy_Mode)(0), // 26: google.cloud.compute.v1.AutoscalingPolicy.Mode - (AutoscalingPolicyCpuUtilization_PredictiveMethod)(0), // 27: google.cloud.compute.v1.AutoscalingPolicyCpuUtilization.PredictiveMethod - (AutoscalingPolicyCustomMetricUtilization_UtilizationTargetType)(0), // 28: google.cloud.compute.v1.AutoscalingPolicyCustomMetricUtilization.UtilizationTargetType - (Backend_BalancingMode)(0), // 29: google.cloud.compute.v1.Backend.BalancingMode - (Backend_Preference)(0), // 30: google.cloud.compute.v1.Backend.Preference - (BackendBucket_CompressionMode)(0), // 31: google.cloud.compute.v1.BackendBucket.CompressionMode - (BackendBucket_LoadBalancingScheme)(0), // 32: google.cloud.compute.v1.BackendBucket.LoadBalancingScheme - (BackendBucketCdnPolicy_CacheMode)(0), // 33: google.cloud.compute.v1.BackendBucketCdnPolicy.CacheMode - (BackendService_CompressionMode)(0), // 34: google.cloud.compute.v1.BackendService.CompressionMode - (BackendService_ExternalManagedMigrationState)(0), // 35: google.cloud.compute.v1.BackendService.ExternalManagedMigrationState - (BackendService_IpAddressSelectionPolicy)(0), // 36: google.cloud.compute.v1.BackendService.IpAddressSelectionPolicy - (BackendService_LoadBalancingScheme)(0), // 37: google.cloud.compute.v1.BackendService.LoadBalancingScheme - (BackendService_LocalityLbPolicy)(0), // 38: google.cloud.compute.v1.BackendService.LocalityLbPolicy - (BackendService_Protocol)(0), // 39: google.cloud.compute.v1.BackendService.Protocol - (BackendService_SessionAffinity)(0), // 40: google.cloud.compute.v1.BackendService.SessionAffinity - (BackendServiceCdnPolicy_CacheMode)(0), // 41: google.cloud.compute.v1.BackendServiceCdnPolicy.CacheMode - (BackendServiceConnectionTrackingPolicy_ConnectionPersistenceOnUnhealthyBackends)(0), // 42: google.cloud.compute.v1.BackendServiceConnectionTrackingPolicy.ConnectionPersistenceOnUnhealthyBackends - (BackendServiceConnectionTrackingPolicy_TrackingMode)(0), // 43: google.cloud.compute.v1.BackendServiceConnectionTrackingPolicy.TrackingMode - (BackendServiceHAPolicy_FastIPMove)(0), // 44: google.cloud.compute.v1.BackendServiceHAPolicy.FastIPMove - (BackendServiceLocalityLoadBalancingPolicyConfigPolicy_Name)(0), // 45: google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name - (BackendServiceLogConfig_OptionalMode)(0), // 46: google.cloud.compute.v1.BackendServiceLogConfig.OptionalMode - (BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity_Spillover)(0), // 47: google.cloud.compute.v1.BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity.Spillover - (BfdPacket_Diagnostic)(0), // 48: google.cloud.compute.v1.BfdPacket.Diagnostic - (BfdPacket_State)(0), // 49: google.cloud.compute.v1.BfdPacket.State - (BfdStatus_BfdSessionInitializationMode)(0), // 50: google.cloud.compute.v1.BfdStatus.BfdSessionInitializationMode - (BfdStatus_LocalDiagnostic)(0), // 51: google.cloud.compute.v1.BfdStatus.LocalDiagnostic - (BfdStatus_LocalState)(0), // 52: google.cloud.compute.v1.BfdStatus.LocalState - (BgpRoute_Origin)(0), // 53: google.cloud.compute.v1.BgpRoute.Origin - (BgpRouteAsPath_Type)(0), // 54: google.cloud.compute.v1.BgpRouteAsPath.Type - (BulkInsertOperationStatus_Status)(0), // 55: google.cloud.compute.v1.BulkInsertOperationStatus.Status - (Commitment_Category)(0), // 56: google.cloud.compute.v1.Commitment.Category - (Commitment_Plan)(0), // 57: google.cloud.compute.v1.Commitment.Plan - (Commitment_Status)(0), // 58: google.cloud.compute.v1.Commitment.Status - (Commitment_Type)(0), // 59: google.cloud.compute.v1.Commitment.Type - (ConfidentialInstanceConfig_ConfidentialInstanceType)(0), // 60: google.cloud.compute.v1.ConfidentialInstanceConfig.ConfidentialInstanceType - (DeprecationStatus_State)(0), // 61: google.cloud.compute.v1.DeprecationStatus.State - (Disk_AccessMode)(0), // 62: google.cloud.compute.v1.Disk.AccessMode - (Disk_Architecture)(0), // 63: google.cloud.compute.v1.Disk.Architecture - (Disk_Status)(0), // 64: google.cloud.compute.v1.Disk.Status - (DiskInstantiationConfig_InstantiateFrom)(0), // 65: google.cloud.compute.v1.DiskInstantiationConfig.InstantiateFrom - (DiskResourceStatusAsyncReplicationStatus_State)(0), // 66: google.cloud.compute.v1.DiskResourceStatusAsyncReplicationStatus.State - (DistributionPolicy_TargetShape)(0), // 67: google.cloud.compute.v1.DistributionPolicy.TargetShape - (ExchangedPeeringRoute_Type)(0), // 68: google.cloud.compute.v1.ExchangedPeeringRoute.Type - (ExternalVpnGateway_RedundancyType)(0), // 69: google.cloud.compute.v1.ExternalVpnGateway.RedundancyType - (FileContentBuffer_FileType)(0), // 70: google.cloud.compute.v1.FileContentBuffer.FileType - (Firewall_Direction)(0), // 71: google.cloud.compute.v1.Firewall.Direction - (FirewallLogConfig_Metadata)(0), // 72: google.cloud.compute.v1.FirewallLogConfig.Metadata - (FirewallPolicy_PolicyType)(0), // 73: google.cloud.compute.v1.FirewallPolicy.PolicyType - (FirewallPolicyRule_Direction)(0), // 74: google.cloud.compute.v1.FirewallPolicyRule.Direction - (FirewallPolicyRuleMatcher_DestNetworkContext)(0), // 75: google.cloud.compute.v1.FirewallPolicyRuleMatcher.DestNetworkContext - (FirewallPolicyRuleMatcher_DestNetworkType)(0), // 76: google.cloud.compute.v1.FirewallPolicyRuleMatcher.DestNetworkType - (FirewallPolicyRuleMatcher_SrcNetworkContext)(0), // 77: google.cloud.compute.v1.FirewallPolicyRuleMatcher.SrcNetworkContext - (FirewallPolicyRuleMatcher_SrcNetworkType)(0), // 78: google.cloud.compute.v1.FirewallPolicyRuleMatcher.SrcNetworkType - (FirewallPolicyRuleSecureTag_State)(0), // 79: google.cloud.compute.v1.FirewallPolicyRuleSecureTag.State - (ForwardingRule_ExternalManagedBackendBucketMigrationState)(0), // 80: google.cloud.compute.v1.ForwardingRule.ExternalManagedBackendBucketMigrationState - (ForwardingRule_IPProtocolEnum)(0), // 81: google.cloud.compute.v1.ForwardingRule.IPProtocolEnum - (ForwardingRule_IpVersion)(0), // 82: google.cloud.compute.v1.ForwardingRule.IpVersion - (ForwardingRule_LoadBalancingScheme)(0), // 83: google.cloud.compute.v1.ForwardingRule.LoadBalancingScheme - (ForwardingRule_NetworkTier)(0), // 84: google.cloud.compute.v1.ForwardingRule.NetworkTier - (ForwardingRule_PscConnectionStatus)(0), // 85: google.cloud.compute.v1.ForwardingRule.PscConnectionStatus - (FutureReservation_DeploymentType)(0), // 86: google.cloud.compute.v1.FutureReservation.DeploymentType - (FutureReservation_PlanningStatus)(0), // 87: google.cloud.compute.v1.FutureReservation.PlanningStatus - (FutureReservation_ReservationMode)(0), // 88: google.cloud.compute.v1.FutureReservation.ReservationMode - (FutureReservation_SchedulingType)(0), // 89: google.cloud.compute.v1.FutureReservation.SchedulingType - (FutureReservationCommitmentInfo_CommitmentPlan)(0), // 90: google.cloud.compute.v1.FutureReservationCommitmentInfo.CommitmentPlan - (FutureReservationCommitmentInfo_PreviousCommitmentTerms)(0), // 91: google.cloud.compute.v1.FutureReservationCommitmentInfo.PreviousCommitmentTerms - (FutureReservationStatus_AmendmentStatus)(0), // 92: google.cloud.compute.v1.FutureReservationStatus.AmendmentStatus - (FutureReservationStatus_ProcurementStatus)(0), // 93: google.cloud.compute.v1.FutureReservationStatus.ProcurementStatus - (FutureReservationStatusLastKnownGoodState_ProcurementStatus)(0), // 94: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodState.ProcurementStatus - (FutureResourcesRecommendation_RecommendationType)(0), // 95: google.cloud.compute.v1.FutureResourcesRecommendation.RecommendationType - (FutureResourcesRecommendationOtherLocation_Status)(0), // 96: google.cloud.compute.v1.FutureResourcesRecommendationOtherLocation.Status - (FutureResourcesSpec_DeploymentType)(0), // 97: google.cloud.compute.v1.FutureResourcesSpec.DeploymentType - (FutureResourcesSpecAggregateResources_VmFamily)(0), // 98: google.cloud.compute.v1.FutureResourcesSpecAggregateResources.VmFamily - (FutureResourcesSpecAggregateResources_WorkloadType)(0), // 99: google.cloud.compute.v1.FutureResourcesSpecAggregateResources.WorkloadType - (FutureResourcesSpecLocalSsdPartition_DiskInterface)(0), // 100: google.cloud.compute.v1.FutureResourcesSpecLocalSsdPartition.DiskInterface - (FutureResourcesSpecLocationPolicyLocation_Preference)(0), // 101: google.cloud.compute.v1.FutureResourcesSpecLocationPolicyLocation.Preference - (GRPCHealthCheck_PortSpecification)(0), // 102: google.cloud.compute.v1.GRPCHealthCheck.PortSpecification - (GRPCTLSHealthCheck_PortSpecification)(0), // 103: google.cloud.compute.v1.GRPCTLSHealthCheck.PortSpecification - (GetReservationBlockRequest_View)(0), // 104: google.cloud.compute.v1.GetReservationBlockRequest.View - (GetReservationSubBlockRequest_View)(0), // 105: google.cloud.compute.v1.GetReservationSubBlockRequest.View - (GetSubnetworkRequest_Views)(0), // 106: google.cloud.compute.v1.GetSubnetworkRequest.Views - (GroupMaintenanceInfo_SchedulingType)(0), // 107: google.cloud.compute.v1.GroupMaintenanceInfo.SchedulingType - (GuestOsFeature_Type)(0), // 108: google.cloud.compute.v1.GuestOsFeature.Type - (HTTP2HealthCheck_PortSpecification)(0), // 109: google.cloud.compute.v1.HTTP2HealthCheck.PortSpecification - (HTTP2HealthCheck_ProxyHeader)(0), // 110: google.cloud.compute.v1.HTTP2HealthCheck.ProxyHeader - (HTTPHealthCheck_PortSpecification)(0), // 111: google.cloud.compute.v1.HTTPHealthCheck.PortSpecification - (HTTPHealthCheck_ProxyHeader)(0), // 112: google.cloud.compute.v1.HTTPHealthCheck.ProxyHeader - (HTTPSHealthCheck_PortSpecification)(0), // 113: google.cloud.compute.v1.HTTPSHealthCheck.PortSpecification - (HTTPSHealthCheck_ProxyHeader)(0), // 114: google.cloud.compute.v1.HTTPSHealthCheck.ProxyHeader - (HealthAggregationPolicy_PolicyType)(0), // 115: google.cloud.compute.v1.HealthAggregationPolicy.PolicyType - (HealthCheck_Type)(0), // 116: google.cloud.compute.v1.HealthCheck.Type - (HealthCheckService_HealthStatusAggregationPolicy)(0), // 117: google.cloud.compute.v1.HealthCheckService.HealthStatusAggregationPolicy - (HealthSource_SourceType)(0), // 118: google.cloud.compute.v1.HealthSource.SourceType - (HealthStatus_HealthState)(0), // 119: google.cloud.compute.v1.HealthStatus.HealthState - (HealthStatus_Ipv6HealthState)(0), // 120: google.cloud.compute.v1.HealthStatus.Ipv6HealthState - (HealthStatus_WeightError)(0), // 121: google.cloud.compute.v1.HealthStatus.WeightError - (HealthStatusForNetworkEndpoint_HealthState)(0), // 122: google.cloud.compute.v1.HealthStatusForNetworkEndpoint.HealthState - (HealthStatusForNetworkEndpoint_Ipv6HealthState)(0), // 123: google.cloud.compute.v1.HealthStatusForNetworkEndpoint.Ipv6HealthState - (HttpRedirectAction_RedirectResponseCode)(0), // 124: google.cloud.compute.v1.HttpRedirectAction.RedirectResponseCode - (Image_Architecture)(0), // 125: google.cloud.compute.v1.Image.Architecture - (Image_SourceType)(0), // 126: google.cloud.compute.v1.Image.SourceType - (Image_Status)(0), // 127: google.cloud.compute.v1.Image.Status - (Instance_KeyRevocationActionType)(0), // 128: google.cloud.compute.v1.Instance.KeyRevocationActionType - (Instance_PrivateIpv6GoogleAccess)(0), // 129: google.cloud.compute.v1.Instance.PrivateIpv6GoogleAccess - (Instance_Status)(0), // 130: google.cloud.compute.v1.Instance.Status - (InstanceGroupManager_ListManagedInstancesResults)(0), // 131: google.cloud.compute.v1.InstanceGroupManager.ListManagedInstancesResults - (InstanceGroupManagerInstanceLifecyclePolicy_DefaultActionOnFailure)(0), // 132: google.cloud.compute.v1.InstanceGroupManagerInstanceLifecyclePolicy.DefaultActionOnFailure - (InstanceGroupManagerInstanceLifecyclePolicy_ForceUpdateOnRepair)(0), // 133: google.cloud.compute.v1.InstanceGroupManagerInstanceLifecyclePolicy.ForceUpdateOnRepair - (InstanceGroupManagerInstanceLifecyclePolicy_OnFailedHealthCheck)(0), // 134: google.cloud.compute.v1.InstanceGroupManagerInstanceLifecyclePolicy.OnFailedHealthCheck - (InstanceGroupManagerResizeRequest_State)(0), // 135: google.cloud.compute.v1.InstanceGroupManagerResizeRequest.State - (InstanceGroupManagerStandbyPolicy_Mode)(0), // 136: google.cloud.compute.v1.InstanceGroupManagerStandbyPolicy.Mode - (InstanceGroupManagerStatusAcceleratorTopology_State)(0), // 137: google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopology.State - (InstanceGroupManagerTargetSizePolicy_Mode)(0), // 138: google.cloud.compute.v1.InstanceGroupManagerTargetSizePolicy.Mode - (InstanceGroupManagerUpdatePolicy_InstanceRedistributionType)(0), // 139: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.InstanceRedistributionType - (InstanceGroupManagerUpdatePolicy_MinimalAction)(0), // 140: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.MinimalAction - (InstanceGroupManagerUpdatePolicy_MostDisruptiveAllowedAction)(0), // 141: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.MostDisruptiveAllowedAction - (InstanceGroupManagerUpdatePolicy_ReplacementMethod)(0), // 142: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.ReplacementMethod - (InstanceGroupManagerUpdatePolicy_Type)(0), // 143: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.Type - (InstanceGroupManagersApplyUpdatesRequest_MinimalAction)(0), // 144: google.cloud.compute.v1.InstanceGroupManagersApplyUpdatesRequest.MinimalAction - (InstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction)(0), // 145: google.cloud.compute.v1.InstanceGroupManagersApplyUpdatesRequest.MostDisruptiveAllowedAction - (InstanceGroupsListInstancesRequest_InstanceState)(0), // 146: google.cloud.compute.v1.InstanceGroupsListInstancesRequest.InstanceState - (InstanceManagedByIgmErrorInstanceActionDetails_Action)(0), // 147: google.cloud.compute.v1.InstanceManagedByIgmErrorInstanceActionDetails.Action - (InstanceProperties_KeyRevocationActionType)(0), // 148: google.cloud.compute.v1.InstanceProperties.KeyRevocationActionType - (InstanceProperties_PrivateIpv6GoogleAccess)(0), // 149: google.cloud.compute.v1.InstanceProperties.PrivateIpv6GoogleAccess - (InstanceWithNamedPorts_Status)(0), // 150: google.cloud.compute.v1.InstanceWithNamedPorts.Status - (InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type)(0), // 151: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.Type - (InstancesReportHostAsFaultyRequest_DisruptionSchedule)(0), // 152: google.cloud.compute.v1.InstancesReportHostAsFaultyRequest.DisruptionSchedule - (InstancesReportHostAsFaultyRequestFaultReason_Behavior)(0), // 153: google.cloud.compute.v1.InstancesReportHostAsFaultyRequestFaultReason.Behavior - (InstantSnapshot_Architecture)(0), // 154: google.cloud.compute.v1.InstantSnapshot.Architecture - (InstantSnapshot_Status)(0), // 155: google.cloud.compute.v1.InstantSnapshot.Status - (Interconnect_AvailableFeatures)(0), // 156: google.cloud.compute.v1.Interconnect.AvailableFeatures - (Interconnect_InterconnectType)(0), // 157: google.cloud.compute.v1.Interconnect.InterconnectType - (Interconnect_LinkType)(0), // 158: google.cloud.compute.v1.Interconnect.LinkType - (Interconnect_OperationalStatus)(0), // 159: google.cloud.compute.v1.Interconnect.OperationalStatus - (Interconnect_RequestedFeatures)(0), // 160: google.cloud.compute.v1.Interconnect.RequestedFeatures - (Interconnect_State)(0), // 161: google.cloud.compute.v1.Interconnect.State - (Interconnect_Subzone)(0), // 162: google.cloud.compute.v1.Interconnect.Subzone - (InterconnectApplicationAwareInterconnectBandwidthPercentage_TrafficClass)(0), // 163: google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentage.TrafficClass - (InterconnectAttachment_Bandwidth)(0), // 164: google.cloud.compute.v1.InterconnectAttachment.Bandwidth - (InterconnectAttachment_EdgeAvailabilityDomain)(0), // 165: google.cloud.compute.v1.InterconnectAttachment.EdgeAvailabilityDomain - (InterconnectAttachment_Encryption)(0), // 166: google.cloud.compute.v1.InterconnectAttachment.Encryption - (InterconnectAttachment_OperationalStatus)(0), // 167: google.cloud.compute.v1.InterconnectAttachment.OperationalStatus - (InterconnectAttachment_StackType)(0), // 168: google.cloud.compute.v1.InterconnectAttachment.StackType - (InterconnectAttachment_State)(0), // 169: google.cloud.compute.v1.InterconnectAttachment.State - (InterconnectAttachment_Type)(0), // 170: google.cloud.compute.v1.InterconnectAttachment.Type - (InterconnectAttachmentConfigurationConstraints_BgpMd5)(0), // 171: google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints.BgpMd5 - (InterconnectAttachmentGroupConfiguredAvailabilitySLA_EffectiveSla)(0), // 172: google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLA.EffectiveSla - (InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers_BlockerType)(0), // 173: google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers.BlockerType - (InterconnectAttachmentGroupIntent_AvailabilitySla)(0), // 174: google.cloud.compute.v1.InterconnectAttachmentGroupIntent.AvailabilitySla - (InterconnectAttachmentGroupsOperationalStatus_GroupStatus)(0), // 175: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus.GroupStatus - (InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_IsActive)(0), // 176: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatusAttachmentStatus.IsActive - (InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_Status)(0), // 177: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatusAttachmentStatus.Status - (InterconnectDiagnostics_BundleAggregationType)(0), // 178: google.cloud.compute.v1.InterconnectDiagnostics.BundleAggregationType - (InterconnectDiagnostics_BundleOperationalStatus)(0), // 179: google.cloud.compute.v1.InterconnectDiagnostics.BundleOperationalStatus - (InterconnectDiagnosticsLinkLACPStatus_State)(0), // 180: google.cloud.compute.v1.InterconnectDiagnosticsLinkLACPStatus.State - (InterconnectDiagnosticsLinkOpticalPower_State)(0), // 181: google.cloud.compute.v1.InterconnectDiagnosticsLinkOpticalPower.State - (InterconnectDiagnosticsLinkStatus_OperationalStatus)(0), // 182: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus.OperationalStatus - (InterconnectGroupConfiguredTopologyCapability_SupportedSla)(0), // 183: google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapability.SupportedSla - (InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers_BlockerType)(0), // 184: google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers.BlockerType - (InterconnectGroupIntent_TopologyCapability)(0), // 185: google.cloud.compute.v1.InterconnectGroupIntent.TopologyCapability - (InterconnectGroupsCreateMembers_IntentMismatchBehavior)(0), // 186: google.cloud.compute.v1.InterconnectGroupsCreateMembers.IntentMismatchBehavior - (InterconnectGroupsCreateMembersInterconnectInput_InterconnectType)(0), // 187: google.cloud.compute.v1.InterconnectGroupsCreateMembersInterconnectInput.InterconnectType - (InterconnectGroupsCreateMembersInterconnectInput_LinkType)(0), // 188: google.cloud.compute.v1.InterconnectGroupsCreateMembersInterconnectInput.LinkType - (InterconnectGroupsCreateMembersInterconnectInput_RequestedFeatures)(0), // 189: google.cloud.compute.v1.InterconnectGroupsCreateMembersInterconnectInput.RequestedFeatures - (InterconnectGroupsOperationalStatus_GroupStatus)(0), // 190: google.cloud.compute.v1.InterconnectGroupsOperationalStatus.GroupStatus - (InterconnectGroupsOperationalStatusInterconnectStatus_IsActive)(0), // 191: google.cloud.compute.v1.InterconnectGroupsOperationalStatusInterconnectStatus.IsActive - (InterconnectLocation_AvailableFeatures)(0), // 192: google.cloud.compute.v1.InterconnectLocation.AvailableFeatures - (InterconnectLocation_AvailableLinkTypes)(0), // 193: google.cloud.compute.v1.InterconnectLocation.AvailableLinkTypes - (InterconnectLocation_Continent)(0), // 194: google.cloud.compute.v1.InterconnectLocation.Continent - (InterconnectLocation_Status)(0), // 195: google.cloud.compute.v1.InterconnectLocation.Status - (InterconnectLocationRegionInfo_LocationPresence)(0), // 196: google.cloud.compute.v1.InterconnectLocationRegionInfo.LocationPresence - (InterconnectOutageNotification_IssueType)(0), // 197: google.cloud.compute.v1.InterconnectOutageNotification.IssueType - (InterconnectOutageNotification_Source)(0), // 198: google.cloud.compute.v1.InterconnectOutageNotification.Source - (InterconnectOutageNotification_State)(0), // 199: google.cloud.compute.v1.InterconnectOutageNotification.State - (InterconnectRemoteLocation_Continent)(0), // 200: google.cloud.compute.v1.InterconnectRemoteLocation.Continent - (InterconnectRemoteLocation_Lacp)(0), // 201: google.cloud.compute.v1.InterconnectRemoteLocation.Lacp - (InterconnectRemoteLocation_Status)(0), // 202: google.cloud.compute.v1.InterconnectRemoteLocation.Status - (InterconnectRemoteLocationConstraints_PortPairRemoteLocation)(0), // 203: google.cloud.compute.v1.InterconnectRemoteLocationConstraints.PortPairRemoteLocation - (InterconnectRemoteLocationConstraints_PortPairVlan)(0), // 204: google.cloud.compute.v1.InterconnectRemoteLocationConstraints.PortPairVlan - (LicenseCode_State)(0), // 205: google.cloud.compute.v1.LicenseCode.State - (ListBgpRoutesRoutersRequest_AddressFamily)(0), // 206: google.cloud.compute.v1.ListBgpRoutesRoutersRequest.AddressFamily - (ListBgpRoutesRoutersRequest_RouteType)(0), // 207: google.cloud.compute.v1.ListBgpRoutesRoutersRequest.RouteType - (ListPeeringRoutesNetworksRequest_Direction)(0), // 208: google.cloud.compute.v1.ListPeeringRoutesNetworksRequest.Direction - (ListSubnetworksRequest_Views)(0), // 209: google.cloud.compute.v1.ListSubnetworksRequest.Views - (LocationPolicy_TargetShape)(0), // 210: google.cloud.compute.v1.LocationPolicy.TargetShape - (LocationPolicyLocation_Preference)(0), // 211: google.cloud.compute.v1.LocationPolicyLocation.Preference - (MachineImage_Status)(0), // 212: google.cloud.compute.v1.MachineImage.Status - (MachineType_Architecture)(0), // 213: google.cloud.compute.v1.MachineType.Architecture - (ManagedInstance_CurrentAction)(0), // 214: google.cloud.compute.v1.ManagedInstance.CurrentAction - (ManagedInstance_InstanceStatus)(0), // 215: google.cloud.compute.v1.ManagedInstance.InstanceStatus - (ManagedInstanceInstanceHealth_DetailedHealthState)(0), // 216: google.cloud.compute.v1.ManagedInstanceInstanceHealth.DetailedHealthState - (MetadataFilter_FilterMatchCriteria)(0), // 217: google.cloud.compute.v1.MetadataFilter.FilterMatchCriteria - (NatIpInfoNatIpInfoMapping_Mode)(0), // 218: google.cloud.compute.v1.NatIpInfoNatIpInfoMapping.Mode - (NatIpInfoNatIpInfoMapping_Usage)(0), // 219: google.cloud.compute.v1.NatIpInfoNatIpInfoMapping.Usage - (Network_NetworkFirewallPolicyEnforcementOrder)(0), // 220: google.cloud.compute.v1.Network.NetworkFirewallPolicyEnforcementOrder - (NetworkAttachment_ConnectionPreference)(0), // 221: google.cloud.compute.v1.NetworkAttachment.ConnectionPreference - (NetworkAttachmentConnectedEndpoint_Status)(0), // 222: google.cloud.compute.v1.NetworkAttachmentConnectedEndpoint.Status - (NetworkEndpointGroup_NetworkEndpointType)(0), // 223: google.cloud.compute.v1.NetworkEndpointGroup.NetworkEndpointType - (NetworkEndpointGroupPscData_PscConnectionStatus)(0), // 224: google.cloud.compute.v1.NetworkEndpointGroupPscData.PscConnectionStatus - (NetworkEndpointGroupsListEndpointsRequest_HealthStatus)(0), // 225: google.cloud.compute.v1.NetworkEndpointGroupsListEndpointsRequest.HealthStatus - (NetworkInterface_IgmpQuery)(0), // 226: google.cloud.compute.v1.NetworkInterface.IgmpQuery - (NetworkInterface_Ipv6AccessType)(0), // 227: google.cloud.compute.v1.NetworkInterface.Ipv6AccessType - (NetworkInterface_NicType)(0), // 228: google.cloud.compute.v1.NetworkInterface.NicType - (NetworkInterface_StackType)(0), // 229: google.cloud.compute.v1.NetworkInterface.StackType - (NetworkPeering_StackType)(0), // 230: google.cloud.compute.v1.NetworkPeering.StackType - (NetworkPeering_State)(0), // 231: google.cloud.compute.v1.NetworkPeering.State - (NetworkPeering_UpdateStrategy)(0), // 232: google.cloud.compute.v1.NetworkPeering.UpdateStrategy - (NetworkPeeringConnectionStatus_UpdateStrategy)(0), // 233: google.cloud.compute.v1.NetworkPeeringConnectionStatus.UpdateStrategy - (NetworkPeeringConnectionStatusConsensusState_DeleteStatus)(0), // 234: google.cloud.compute.v1.NetworkPeeringConnectionStatusConsensusState.DeleteStatus - (NetworkPeeringConnectionStatusConsensusState_UpdateStatus)(0), // 235: google.cloud.compute.v1.NetworkPeeringConnectionStatusConsensusState.UpdateStatus - (NetworkPeeringConnectionStatusTrafficConfiguration_StackType)(0), // 236: google.cloud.compute.v1.NetworkPeeringConnectionStatusTrafficConfiguration.StackType - (NetworkPerformanceConfig_TotalEgressBandwidthTier)(0), // 237: google.cloud.compute.v1.NetworkPerformanceConfig.TotalEgressBandwidthTier - (NetworkProfileLocation_Scope)(0), // 238: google.cloud.compute.v1.NetworkProfileLocation.Scope - (NetworkProfileNetworkFeatures_AddressPurposes)(0), // 239: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AddressPurposes - (NetworkProfileNetworkFeatures_AllowAddressCreation)(0), // 240: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowAddressCreation - (NetworkProfileNetworkFeatures_AllowAliasIpRanges)(0), // 241: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowAliasIpRanges - (NetworkProfileNetworkFeatures_AllowAutoModeSubnet)(0), // 242: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowAutoModeSubnet - (NetworkProfileNetworkFeatures_AllowClassDFirewalls)(0), // 243: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowClassDFirewalls - (NetworkProfileNetworkFeatures_AllowCloudNat)(0), // 244: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowCloudNat - (NetworkProfileNetworkFeatures_AllowCloudRouter)(0), // 245: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowCloudRouter - (NetworkProfileNetworkFeatures_AllowDefaultNicAttachment)(0), // 246: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowDefaultNicAttachment - (NetworkProfileNetworkFeatures_AllowExternalIpAccess)(0), // 247: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowExternalIpAccess - (NetworkProfileNetworkFeatures_AllowFirewallPolicy)(0), // 248: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowFirewallPolicy - (NetworkProfileNetworkFeatures_AllowInterconnect)(0), // 249: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowInterconnect - (NetworkProfileNetworkFeatures_AllowIpForwarding)(0), // 250: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowIpForwarding - (NetworkProfileNetworkFeatures_AllowLoadBalancing)(0), // 251: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowLoadBalancing - (NetworkProfileNetworkFeatures_AllowMultiNicInSameNetwork)(0), // 252: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowMultiNicInSameNetwork - (NetworkProfileNetworkFeatures_AllowMultiNicInSameSubnetwork)(0), // 253: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowMultiNicInSameSubnetwork - (NetworkProfileNetworkFeatures_AllowMulticast)(0), // 254: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowMulticast - (NetworkProfileNetworkFeatures_AllowNcc)(0), // 255: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowNcc - (NetworkProfileNetworkFeatures_AllowNetworkMigration)(0), // 256: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowNetworkMigration - (NetworkProfileNetworkFeatures_AllowPacketMirroring)(0), // 257: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowPacketMirroring - (NetworkProfileNetworkFeatures_AllowPrivateGoogleAccess)(0), // 258: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowPrivateGoogleAccess - (NetworkProfileNetworkFeatures_AllowPsc)(0), // 259: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowPsc - (NetworkProfileNetworkFeatures_AllowSameNetworkUnicast)(0), // 260: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowSameNetworkUnicast - (NetworkProfileNetworkFeatures_AllowStaticRoutes)(0), // 261: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowStaticRoutes - (NetworkProfileNetworkFeatures_AllowSubInterfaces)(0), // 262: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowSubInterfaces - (NetworkProfileNetworkFeatures_AllowSubnetworkCreation)(0), // 263: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowSubnetworkCreation - (NetworkProfileNetworkFeatures_AllowVpcFirewallRules)(0), // 264: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowVpcFirewallRules - (NetworkProfileNetworkFeatures_AllowVpcPeering)(0), // 265: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowVpcPeering - (NetworkProfileNetworkFeatures_AllowVpn)(0), // 266: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowVpn - (NetworkProfileNetworkFeatures_FirewallPolicyTypes)(0), // 267: google.cloud.compute.v1.NetworkProfileNetworkFeatures.FirewallPolicyTypes - (NetworkProfileNetworkFeatures_InterfaceTypes)(0), // 268: google.cloud.compute.v1.NetworkProfileNetworkFeatures.InterfaceTypes - (NetworkProfileNetworkFeatures_Multicast)(0), // 269: google.cloud.compute.v1.NetworkProfileNetworkFeatures.Multicast - (NetworkProfileNetworkFeatures_SubnetPurposes)(0), // 270: google.cloud.compute.v1.NetworkProfileNetworkFeatures.SubnetPurposes - (NetworkProfileNetworkFeatures_SubnetStackTypes)(0), // 271: google.cloud.compute.v1.NetworkProfileNetworkFeatures.SubnetStackTypes - (NetworkProfileNetworkFeatures_SubnetworkPurposes)(0), // 272: google.cloud.compute.v1.NetworkProfileNetworkFeatures.SubnetworkPurposes - (NetworkProfileNetworkFeatures_SubnetworkStackTypes)(0), // 273: google.cloud.compute.v1.NetworkProfileNetworkFeatures.SubnetworkStackTypes - (NetworkProfileNetworkFeatures_Unicast)(0), // 274: google.cloud.compute.v1.NetworkProfileNetworkFeatures.Unicast - (NetworkProfileProfileType_NetworkType)(0), // 275: google.cloud.compute.v1.NetworkProfileProfileType.NetworkType - (NetworkProfileProfileType_RdmaSubtype)(0), // 276: google.cloud.compute.v1.NetworkProfileProfileType.RdmaSubtype - (NetworkProfileProfileType_UllSubtype)(0), // 277: google.cloud.compute.v1.NetworkProfileProfileType.UllSubtype - (NetworkProfileProfileType_VpcSubtype)(0), // 278: google.cloud.compute.v1.NetworkProfileProfileType.VpcSubtype - (NetworkRoutingConfig_BgpBestPathSelectionMode)(0), // 279: google.cloud.compute.v1.NetworkRoutingConfig.BgpBestPathSelectionMode - (NetworkRoutingConfig_BgpInterRegionCost)(0), // 280: google.cloud.compute.v1.NetworkRoutingConfig.BgpInterRegionCost - (NetworkRoutingConfig_EffectiveBgpInterRegionCost)(0), // 281: google.cloud.compute.v1.NetworkRoutingConfig.EffectiveBgpInterRegionCost - (NetworkRoutingConfig_RoutingMode)(0), // 282: google.cloud.compute.v1.NetworkRoutingConfig.RoutingMode - (NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type)(0), // 283: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.Type - (NodeGroup_MaintenanceInterval)(0), // 284: google.cloud.compute.v1.NodeGroup.MaintenanceInterval - (NodeGroup_MaintenancePolicy)(0), // 285: google.cloud.compute.v1.NodeGroup.MaintenancePolicy - (NodeGroup_Status)(0), // 286: google.cloud.compute.v1.NodeGroup.Status - (NodeGroupAutoscalingPolicy_Mode)(0), // 287: google.cloud.compute.v1.NodeGroupAutoscalingPolicy.Mode - (NodeGroupNode_CpuOvercommitType)(0), // 288: google.cloud.compute.v1.NodeGroupNode.CpuOvercommitType - (NodeGroupNode_Status)(0), // 289: google.cloud.compute.v1.NodeGroupNode.Status - (NodeTemplate_CpuOvercommitType)(0), // 290: google.cloud.compute.v1.NodeTemplate.CpuOvercommitType - (NodeTemplate_Status)(0), // 291: google.cloud.compute.v1.NodeTemplate.Status - (Operation_Status)(0), // 292: google.cloud.compute.v1.Operation.Status - (PacketIntervals_Duration)(0), // 293: google.cloud.compute.v1.PacketIntervals.Duration - (PacketIntervals_Type)(0), // 294: google.cloud.compute.v1.PacketIntervals.Type - (PacketMirroring_Enable)(0), // 295: google.cloud.compute.v1.PacketMirroring.Enable - (PacketMirroringFilter_Direction)(0), // 296: google.cloud.compute.v1.PacketMirroringFilter.Direction - (PerInstanceConfig_Status)(0), // 297: google.cloud.compute.v1.PerInstanceConfig.Status - (PreservedStatePreservedDisk_AutoDelete)(0), // 298: google.cloud.compute.v1.PreservedStatePreservedDisk.AutoDelete - (PreservedStatePreservedDisk_Mode)(0), // 299: google.cloud.compute.v1.PreservedStatePreservedDisk.Mode - (PreservedStatePreservedNetworkIp_AutoDelete)(0), // 300: google.cloud.compute.v1.PreservedStatePreservedNetworkIp.AutoDelete - (PreviewFeature_ActivationStatus)(0), // 301: google.cloud.compute.v1.PreviewFeature.ActivationStatus - (PreviewFeatureRolloutOperationRolloutInput_PredefinedRolloutPlan)(0), // 302: google.cloud.compute.v1.PreviewFeatureRolloutOperationRolloutInput.PredefinedRolloutPlan - (PreviewFeatureStatusReleaseStatus_Stage)(0), // 303: google.cloud.compute.v1.PreviewFeatureStatusReleaseStatus.Stage - (Project_CloudArmorTier)(0), // 304: google.cloud.compute.v1.Project.CloudArmorTier - (Project_DefaultNetworkTier)(0), // 305: google.cloud.compute.v1.Project.DefaultNetworkTier - (Project_VmDnsSetting)(0), // 306: google.cloud.compute.v1.Project.VmDnsSetting - (Project_XpnProjectStatus)(0), // 307: google.cloud.compute.v1.Project.XpnProjectStatus - (ProjectsSetCloudArmorTierRequest_CloudArmorTier)(0), // 308: google.cloud.compute.v1.ProjectsSetCloudArmorTierRequest.CloudArmorTier - (ProjectsSetDefaultNetworkTierRequest_NetworkTier)(0), // 309: google.cloud.compute.v1.ProjectsSetDefaultNetworkTierRequest.NetworkTier - (PublicAdvertisedPrefix_ByoipApiVersion)(0), // 310: google.cloud.compute.v1.PublicAdvertisedPrefix.ByoipApiVersion - (PublicAdvertisedPrefix_Ipv6AccessType)(0), // 311: google.cloud.compute.v1.PublicAdvertisedPrefix.Ipv6AccessType - (PublicAdvertisedPrefix_PdpScope)(0), // 312: google.cloud.compute.v1.PublicAdvertisedPrefix.PdpScope - (PublicAdvertisedPrefix_Status)(0), // 313: google.cloud.compute.v1.PublicAdvertisedPrefix.Status - (PublicDelegatedPrefix_ByoipApiVersion)(0), // 314: google.cloud.compute.v1.PublicDelegatedPrefix.ByoipApiVersion - (PublicDelegatedPrefix_Ipv6AccessType)(0), // 315: google.cloud.compute.v1.PublicDelegatedPrefix.Ipv6AccessType - (PublicDelegatedPrefix_Mode)(0), // 316: google.cloud.compute.v1.PublicDelegatedPrefix.Mode - (PublicDelegatedPrefix_Status)(0), // 317: google.cloud.compute.v1.PublicDelegatedPrefix.Status - (PublicDelegatedPrefixPublicDelegatedSubPrefix_Ipv6AccessType)(0), // 318: google.cloud.compute.v1.PublicDelegatedPrefixPublicDelegatedSubPrefix.Ipv6AccessType - (PublicDelegatedPrefixPublicDelegatedSubPrefix_Mode)(0), // 319: google.cloud.compute.v1.PublicDelegatedPrefixPublicDelegatedSubPrefix.Mode - (PublicDelegatedPrefixPublicDelegatedSubPrefix_Status)(0), // 320: google.cloud.compute.v1.PublicDelegatedPrefixPublicDelegatedSubPrefix.Status - (Quota_Metric)(0), // 321: google.cloud.compute.v1.Quota.Metric - (QuotaExceededInfo_RolloutStatus)(0), // 322: google.cloud.compute.v1.QuotaExceededInfo.RolloutStatus - (QuotaStatusWarning_Code)(0), // 323: google.cloud.compute.v1.QuotaStatusWarning.Code - (RawDisk_ContainerType)(0), // 324: google.cloud.compute.v1.RawDisk.ContainerType - (Region_Status)(0), // 325: google.cloud.compute.v1.Region.Status - (RegionInstanceGroupManagersApplyUpdatesRequest_MinimalAction)(0), // 326: google.cloud.compute.v1.RegionInstanceGroupManagersApplyUpdatesRequest.MinimalAction - (RegionInstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction)(0), // 327: google.cloud.compute.v1.RegionInstanceGroupManagersApplyUpdatesRequest.MostDisruptiveAllowedAction - (RegionInstanceGroupsListInstancesRequest_InstanceState)(0), // 328: google.cloud.compute.v1.RegionInstanceGroupsListInstancesRequest.InstanceState - (RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type)(0), // 329: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.Type - (Reservation_DeploymentType)(0), // 330: google.cloud.compute.v1.Reservation.DeploymentType - (Reservation_EarlyAccessMaintenance)(0), // 331: google.cloud.compute.v1.Reservation.EarlyAccessMaintenance - (Reservation_ProtectionTier)(0), // 332: google.cloud.compute.v1.Reservation.ProtectionTier - (Reservation_SchedulingType)(0), // 333: google.cloud.compute.v1.Reservation.SchedulingType - (Reservation_Status)(0), // 334: google.cloud.compute.v1.Reservation.Status - (ReservationAdvancedDeploymentControl_ReservationOperationalMode)(0), // 335: google.cloud.compute.v1.ReservationAdvancedDeploymentControl.ReservationOperationalMode - (ReservationAffinity_ConsumeReservationType)(0), // 336: google.cloud.compute.v1.ReservationAffinity.ConsumeReservationType - (ReservationBlock_Status)(0), // 337: google.cloud.compute.v1.ReservationBlock.Status - (ReservationBlockHealthInfo_HealthStatus)(0), // 338: google.cloud.compute.v1.ReservationBlockHealthInfo.HealthStatus - (ReservationSlot_State)(0), // 339: google.cloud.compute.v1.ReservationSlot.State - (ReservationSlotsGetVersionRequest_SbomSelections)(0), // 340: google.cloud.compute.v1.ReservationSlotsGetVersionRequest.SbomSelections - (ReservationSubBlock_Status)(0), // 341: google.cloud.compute.v1.ReservationSubBlock.Status - (ReservationSubBlockHealthInfo_HealthStatus)(0), // 342: google.cloud.compute.v1.ReservationSubBlockHealthInfo.HealthStatus - (ReservationSubBlocksGetVersionRequest_SbomSelections)(0), // 343: google.cloud.compute.v1.ReservationSubBlocksGetVersionRequest.SbomSelections - (ReservationSubBlocksReportFaultyRequest_DisruptionSchedule)(0), // 344: google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequest.DisruptionSchedule - (ReservationSubBlocksReportFaultyRequest_FailureComponent)(0), // 345: google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequest.FailureComponent - (ReservationSubBlocksReportFaultyRequestFaultReason_Behavior)(0), // 346: google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequestFaultReason.Behavior - (ReservationsBlocksPerformMaintenanceRequest_MaintenanceScope)(0), // 347: google.cloud.compute.v1.ReservationsBlocksPerformMaintenanceRequest.MaintenanceScope - (ReservationsPerformMaintenanceRequest_MaintenanceScope)(0), // 348: google.cloud.compute.v1.ReservationsPerformMaintenanceRequest.MaintenanceScope - (ResourceCommitment_Type)(0), // 349: google.cloud.compute.v1.ResourceCommitment.Type - (ResourcePolicy_Status)(0), // 350: google.cloud.compute.v1.ResourcePolicy.Status - (ResourcePolicyGroupPlacementPolicy_AcceleratorTopologyMode)(0), // 351: google.cloud.compute.v1.ResourcePolicyGroupPlacementPolicy.AcceleratorTopologyMode - (ResourcePolicyGroupPlacementPolicy_Collocation)(0), // 352: google.cloud.compute.v1.ResourcePolicyGroupPlacementPolicy.Collocation - (ResourcePolicySnapshotSchedulePolicyRetentionPolicy_OnSourceDiskDelete)(0), // 353: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicyRetentionPolicy.OnSourceDiskDelete - (ResourcePolicyWeeklyCycleDayOfWeek_Day)(0), // 354: google.cloud.compute.v1.ResourcePolicyWeeklyCycleDayOfWeek.Day - (ResourcePolicyWorkloadPolicy_AcceleratorTopologyMode)(0), // 355: google.cloud.compute.v1.ResourcePolicyWorkloadPolicy.AcceleratorTopologyMode - (ResourcePolicyWorkloadPolicy_MaxTopologyDistance)(0), // 356: google.cloud.compute.v1.ResourcePolicyWorkloadPolicy.MaxTopologyDistance - (ResourcePolicyWorkloadPolicy_Type)(0), // 357: google.cloud.compute.v1.ResourcePolicyWorkloadPolicy.Type - (Route_NextHopOrigin)(0), // 358: google.cloud.compute.v1.Route.NextHopOrigin - (Route_RouteStatus)(0), // 359: google.cloud.compute.v1.Route.RouteStatus - (Route_RouteType)(0), // 360: google.cloud.compute.v1.Route.RouteType - (RouteAsPath_PathSegmentType)(0), // 361: google.cloud.compute.v1.RouteAsPath.PathSegmentType - (RoutePolicy_Type)(0), // 362: google.cloud.compute.v1.RoutePolicy.Type - (RouterBgp_AdvertiseMode)(0), // 363: google.cloud.compute.v1.RouterBgp.AdvertiseMode - (RouterBgp_AdvertisedGroups)(0), // 364: google.cloud.compute.v1.RouterBgp.AdvertisedGroups - (RouterBgpPeer_AdvertiseMode)(0), // 365: google.cloud.compute.v1.RouterBgpPeer.AdvertiseMode - (RouterBgpPeer_AdvertisedGroups)(0), // 366: google.cloud.compute.v1.RouterBgpPeer.AdvertisedGroups - (RouterBgpPeer_Enable)(0), // 367: google.cloud.compute.v1.RouterBgpPeer.Enable - (RouterBgpPeer_ManagementType)(0), // 368: google.cloud.compute.v1.RouterBgpPeer.ManagementType - (RouterBgpPeerBfd_SessionInitializationMode)(0), // 369: google.cloud.compute.v1.RouterBgpPeerBfd.SessionInitializationMode - (RouterInterface_IpVersion)(0), // 370: google.cloud.compute.v1.RouterInterface.IpVersion - (RouterInterface_ManagementType)(0), // 371: google.cloud.compute.v1.RouterInterface.ManagementType - (RouterNat_AutoNetworkTier)(0), // 372: google.cloud.compute.v1.RouterNat.AutoNetworkTier - (RouterNat_EndpointTypes)(0), // 373: google.cloud.compute.v1.RouterNat.EndpointTypes - (RouterNat_NatIpAllocateOption)(0), // 374: google.cloud.compute.v1.RouterNat.NatIpAllocateOption - (RouterNat_SourceSubnetworkIpRangesToNat)(0), // 375: google.cloud.compute.v1.RouterNat.SourceSubnetworkIpRangesToNat - (RouterNat_SourceSubnetworkIpRangesToNat64)(0), // 376: google.cloud.compute.v1.RouterNat.SourceSubnetworkIpRangesToNat64 - (RouterNat_Type)(0), // 377: google.cloud.compute.v1.RouterNat.Type - (RouterNatLogConfig_Filter)(0), // 378: google.cloud.compute.v1.RouterNatLogConfig.Filter - (RouterNatSubnetworkToNat_SourceIpRangesToNat)(0), // 379: google.cloud.compute.v1.RouterNatSubnetworkToNat.SourceIpRangesToNat - (RouterStatusBgpPeerStatus_Status)(0), // 380: google.cloud.compute.v1.RouterStatusBgpPeerStatus.Status - (RouterStatusBgpPeerStatus_StatusReason)(0), // 381: google.cloud.compute.v1.RouterStatusBgpPeerStatus.StatusReason - (SSLHealthCheck_PortSpecification)(0), // 382: google.cloud.compute.v1.SSLHealthCheck.PortSpecification - (SSLHealthCheck_ProxyHeader)(0), // 383: google.cloud.compute.v1.SSLHealthCheck.ProxyHeader - (SavedAttachedDisk_Interface)(0), // 384: google.cloud.compute.v1.SavedAttachedDisk.Interface - (SavedAttachedDisk_Mode)(0), // 385: google.cloud.compute.v1.SavedAttachedDisk.Mode - (SavedAttachedDisk_StorageBytesStatus)(0), // 386: google.cloud.compute.v1.SavedAttachedDisk.StorageBytesStatus - (SavedAttachedDisk_Type)(0), // 387: google.cloud.compute.v1.SavedAttachedDisk.Type - (SavedDisk_Architecture)(0), // 388: google.cloud.compute.v1.SavedDisk.Architecture - (SavedDisk_StorageBytesStatus)(0), // 389: google.cloud.compute.v1.SavedDisk.StorageBytesStatus - (ScalingScheduleStatus_State)(0), // 390: google.cloud.compute.v1.ScalingScheduleStatus.State - (Scheduling_InstanceTerminationAction)(0), // 391: google.cloud.compute.v1.Scheduling.InstanceTerminationAction - (Scheduling_OnHostMaintenance)(0), // 392: google.cloud.compute.v1.Scheduling.OnHostMaintenance - (Scheduling_ProvisioningModel)(0), // 393: google.cloud.compute.v1.Scheduling.ProvisioningModel - (SchedulingNodeAffinity_Operator)(0), // 394: google.cloud.compute.v1.SchedulingNodeAffinity.Operator - (SecurityPolicy_Type)(0), // 395: google.cloud.compute.v1.SecurityPolicy.Type - (SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig_RuleVisibility)(0), // 396: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig.RuleVisibility - (SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig_Type)(0), // 397: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig.Type - (SecurityPolicyAdvancedOptionsConfig_JsonParsing)(0), // 398: google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfig.JsonParsing - (SecurityPolicyAdvancedOptionsConfig_LogLevel)(0), // 399: google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfig.LogLevel - (SecurityPolicyDdosProtectionConfig_DdosProtection)(0), // 400: google.cloud.compute.v1.SecurityPolicyDdosProtectionConfig.DdosProtection - (SecurityPolicyRuleMatcher_VersionedExpr)(0), // 401: google.cloud.compute.v1.SecurityPolicyRuleMatcher.VersionedExpr - (SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams_Op)(0), // 402: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams.Op - (SecurityPolicyRuleRateLimitOptions_EnforceOnKey)(0), // 403: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions.EnforceOnKey - (SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig_EnforceOnKeyType)(0), // 404: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig.EnforceOnKeyType - (SecurityPolicyRuleRedirectOptions_Type)(0), // 405: google.cloud.compute.v1.SecurityPolicyRuleRedirectOptions.Type - (SecurityPolicyUserDefinedField_Base)(0), // 406: google.cloud.compute.v1.SecurityPolicyUserDefinedField.Base - (ServerBinding_Type)(0), // 407: google.cloud.compute.v1.ServerBinding.Type - (ServiceAttachment_ConnectionPreference)(0), // 408: google.cloud.compute.v1.ServiceAttachment.ConnectionPreference - (ServiceAttachmentConnectedEndpoint_Status)(0), // 409: google.cloud.compute.v1.ServiceAttachmentConnectedEndpoint.Status - (SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo_State)(0), // 410: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo.State - (ShareSettings_ShareType)(0), // 411: google.cloud.compute.v1.ShareSettings.ShareType - (Snapshot_Architecture)(0), // 412: google.cloud.compute.v1.Snapshot.Architecture - (Snapshot_SnapshotType)(0), // 413: google.cloud.compute.v1.Snapshot.SnapshotType - (Snapshot_Status)(0), // 414: google.cloud.compute.v1.Snapshot.Status - (Snapshot_StorageBytesStatus)(0), // 415: google.cloud.compute.v1.Snapshot.StorageBytesStatus - (SnapshotSettingsStorageLocationSettings_Policy)(0), // 416: google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings.Policy - (SourceInstanceProperties_KeyRevocationActionType)(0), // 417: google.cloud.compute.v1.SourceInstanceProperties.KeyRevocationActionType - (SourceInstanceProperties_PostKeyRevocationActionType)(0), // 418: google.cloud.compute.v1.SourceInstanceProperties.PostKeyRevocationActionType - (SslCertificate_Type)(0), // 419: google.cloud.compute.v1.SslCertificate.Type - (SslCertificateManagedSslCertificate_Status)(0), // 420: google.cloud.compute.v1.SslCertificateManagedSslCertificate.Status - (SslPolicy_MinTlsVersion)(0), // 421: google.cloud.compute.v1.SslPolicy.MinTlsVersion - (SslPolicy_Profile)(0), // 422: google.cloud.compute.v1.SslPolicy.Profile - (StatefulPolicyPreservedStateDiskDevice_AutoDelete)(0), // 423: google.cloud.compute.v1.StatefulPolicyPreservedStateDiskDevice.AutoDelete - (StatefulPolicyPreservedStateNetworkIp_AutoDelete)(0), // 424: google.cloud.compute.v1.StatefulPolicyPreservedStateNetworkIp.AutoDelete - (StoragePool_CapacityProvisioningType)(0), // 425: google.cloud.compute.v1.StoragePool.CapacityProvisioningType - (StoragePool_PerformanceProvisioningType)(0), // 426: google.cloud.compute.v1.StoragePool.PerformanceProvisioningType - (StoragePool_State)(0), // 427: google.cloud.compute.v1.StoragePool.State - (StoragePoolDisk_Status)(0), // 428: google.cloud.compute.v1.StoragePoolDisk.Status - (Subnetwork_Ipv6AccessType)(0), // 429: google.cloud.compute.v1.Subnetwork.Ipv6AccessType - (Subnetwork_Ipv6GceEndpoint)(0), // 430: google.cloud.compute.v1.Subnetwork.Ipv6GceEndpoint - (Subnetwork_PrivateIpv6GoogleAccess)(0), // 431: google.cloud.compute.v1.Subnetwork.PrivateIpv6GoogleAccess - (Subnetwork_Purpose)(0), // 432: google.cloud.compute.v1.Subnetwork.Purpose - (Subnetwork_ResolveSubnetMask)(0), // 433: google.cloud.compute.v1.Subnetwork.ResolveSubnetMask - (Subnetwork_Role)(0), // 434: google.cloud.compute.v1.Subnetwork.Role - (Subnetwork_StackType)(0), // 435: google.cloud.compute.v1.Subnetwork.StackType - (Subnetwork_State)(0), // 436: google.cloud.compute.v1.Subnetwork.State - (SubnetworkLogConfig_AggregationInterval)(0), // 437: google.cloud.compute.v1.SubnetworkLogConfig.AggregationInterval - (SubnetworkLogConfig_Metadata)(0), // 438: google.cloud.compute.v1.SubnetworkLogConfig.Metadata - (Subsetting_Policy)(0), // 439: google.cloud.compute.v1.Subsetting.Policy - (TCPHealthCheck_PortSpecification)(0), // 440: google.cloud.compute.v1.TCPHealthCheck.PortSpecification - (TCPHealthCheck_ProxyHeader)(0), // 441: google.cloud.compute.v1.TCPHealthCheck.ProxyHeader - (TargetHttpsProxiesSetQuicOverrideRequest_QuicOverride)(0), // 442: google.cloud.compute.v1.TargetHttpsProxiesSetQuicOverrideRequest.QuicOverride - (TargetHttpsProxy_QuicOverride)(0), // 443: google.cloud.compute.v1.TargetHttpsProxy.QuicOverride - (TargetHttpsProxy_TlsEarlyData)(0), // 444: google.cloud.compute.v1.TargetHttpsProxy.TlsEarlyData - (TargetInstance_NatPolicy)(0), // 445: google.cloud.compute.v1.TargetInstance.NatPolicy - (TargetPool_SessionAffinity)(0), // 446: google.cloud.compute.v1.TargetPool.SessionAffinity - (TargetSslProxiesSetProxyHeaderRequest_ProxyHeader)(0), // 447: google.cloud.compute.v1.TargetSslProxiesSetProxyHeaderRequest.ProxyHeader - (TargetSslProxy_ProxyHeader)(0), // 448: google.cloud.compute.v1.TargetSslProxy.ProxyHeader - (TargetTcpProxiesSetProxyHeaderRequest_ProxyHeader)(0), // 449: google.cloud.compute.v1.TargetTcpProxiesSetProxyHeaderRequest.ProxyHeader - (TargetTcpProxy_ProxyHeader)(0), // 450: google.cloud.compute.v1.TargetTcpProxy.ProxyHeader - (TargetVpnGateway_Status)(0), // 451: google.cloud.compute.v1.TargetVpnGateway.Status - (UpcomingMaintenance_MaintenanceReasons)(0), // 452: google.cloud.compute.v1.UpcomingMaintenance.MaintenanceReasons - (UpcomingMaintenance_MaintenanceStatus)(0), // 453: google.cloud.compute.v1.UpcomingMaintenance.MaintenanceStatus - (UpcomingMaintenance_Type)(0), // 454: google.cloud.compute.v1.UpcomingMaintenance.Type - (UpdateInstanceRequest_MinimalAction)(0), // 455: google.cloud.compute.v1.UpdateInstanceRequest.MinimalAction - (UpdateInstanceRequest_MostDisruptiveAllowedAction)(0), // 456: google.cloud.compute.v1.UpdateInstanceRequest.MostDisruptiveAllowedAction - (UrlMapsValidateRequest_LoadBalancingSchemes)(0), // 457: google.cloud.compute.v1.UrlMapsValidateRequest.LoadBalancingSchemes - (UsableSubnetwork_Ipv6AccessType)(0), // 458: google.cloud.compute.v1.UsableSubnetwork.Ipv6AccessType - (UsableSubnetwork_Purpose)(0), // 459: google.cloud.compute.v1.UsableSubnetwork.Purpose - (UsableSubnetwork_Role)(0), // 460: google.cloud.compute.v1.UsableSubnetwork.Role - (UsableSubnetwork_StackType)(0), // 461: google.cloud.compute.v1.UsableSubnetwork.StackType - (VpnGateway_GatewayIpVersion)(0), // 462: google.cloud.compute.v1.VpnGateway.GatewayIpVersion - (VpnGateway_StackType)(0), // 463: google.cloud.compute.v1.VpnGateway.StackType - (VpnGatewayStatusHighAvailabilityRequirementState_State)(0), // 464: google.cloud.compute.v1.VpnGatewayStatusHighAvailabilityRequirementState.State - (VpnGatewayStatusHighAvailabilityRequirementState_UnsatisfiedReason)(0), // 465: google.cloud.compute.v1.VpnGatewayStatusHighAvailabilityRequirementState.UnsatisfiedReason - (VpnTunnel_Status)(0), // 466: google.cloud.compute.v1.VpnTunnel.Status - (Warning_Code)(0), // 467: google.cloud.compute.v1.Warning.Code - (Warnings_Code)(0), // 468: google.cloud.compute.v1.Warnings.Code - (WireProperties_BandwidthAllocation)(0), // 469: google.cloud.compute.v1.WireProperties.BandwidthAllocation - (WireProperties_FaultResponse)(0), // 470: google.cloud.compute.v1.WireProperties.FaultResponse - (XpnResourceId_Type)(0), // 471: google.cloud.compute.v1.XpnResourceId.Type - (Zone_Status)(0), // 472: google.cloud.compute.v1.Zone.Status - (*AWSV4Signature)(nil), // 473: google.cloud.compute.v1.AWSV4Signature - (*AbandonInstancesInstanceGroupManagerRequest)(nil), // 474: google.cloud.compute.v1.AbandonInstancesInstanceGroupManagerRequest - (*AbandonInstancesRegionInstanceGroupManagerRequest)(nil), // 475: google.cloud.compute.v1.AbandonInstancesRegionInstanceGroupManagerRequest - (*AcceleratorConfig)(nil), // 476: google.cloud.compute.v1.AcceleratorConfig - (*AcceleratorTopologiesInfo)(nil), // 477: google.cloud.compute.v1.AcceleratorTopologiesInfo - (*AcceleratorTopologiesInfoAcceleratorTopologyInfo)(nil), // 478: google.cloud.compute.v1.AcceleratorTopologiesInfoAcceleratorTopologyInfo - (*AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState)(nil), // 479: google.cloud.compute.v1.AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState - (*AcceleratorType)(nil), // 480: google.cloud.compute.v1.AcceleratorType - (*AcceleratorTypeAggregatedList)(nil), // 481: google.cloud.compute.v1.AcceleratorTypeAggregatedList - (*AcceleratorTypeList)(nil), // 482: google.cloud.compute.v1.AcceleratorTypeList - (*AcceleratorTypesScopedList)(nil), // 483: google.cloud.compute.v1.AcceleratorTypesScopedList - (*Accelerators)(nil), // 484: google.cloud.compute.v1.Accelerators - (*AccessConfig)(nil), // 485: google.cloud.compute.v1.AccessConfig - (*AddAccessConfigInstanceRequest)(nil), // 486: google.cloud.compute.v1.AddAccessConfigInstanceRequest - (*AddAssociationFirewallPolicyRequest)(nil), // 487: google.cloud.compute.v1.AddAssociationFirewallPolicyRequest - (*AddAssociationNetworkFirewallPolicyRequest)(nil), // 488: google.cloud.compute.v1.AddAssociationNetworkFirewallPolicyRequest - (*AddAssociationOrganizationSecurityPolicyRequest)(nil), // 489: google.cloud.compute.v1.AddAssociationOrganizationSecurityPolicyRequest - (*AddAssociationRegionNetworkFirewallPolicyRequest)(nil), // 490: google.cloud.compute.v1.AddAssociationRegionNetworkFirewallPolicyRequest - (*AddHealthCheckTargetPoolRequest)(nil), // 491: google.cloud.compute.v1.AddHealthCheckTargetPoolRequest - (*AddInstanceTargetPoolRequest)(nil), // 492: google.cloud.compute.v1.AddInstanceTargetPoolRequest - (*AddInstancesInstanceGroupRequest)(nil), // 493: google.cloud.compute.v1.AddInstancesInstanceGroupRequest - (*AddNetworkInterfaceInstanceRequest)(nil), // 494: google.cloud.compute.v1.AddNetworkInterfaceInstanceRequest - (*AddNodesNodeGroupRequest)(nil), // 495: google.cloud.compute.v1.AddNodesNodeGroupRequest - (*AddPacketMirroringRuleNetworkFirewallPolicyRequest)(nil), // 496: google.cloud.compute.v1.AddPacketMirroringRuleNetworkFirewallPolicyRequest - (*AddPeeringNetworkRequest)(nil), // 497: google.cloud.compute.v1.AddPeeringNetworkRequest - (*AddResourcePoliciesDiskRequest)(nil), // 498: google.cloud.compute.v1.AddResourcePoliciesDiskRequest - (*AddResourcePoliciesInstanceRequest)(nil), // 499: google.cloud.compute.v1.AddResourcePoliciesInstanceRequest - (*AddResourcePoliciesRegionDiskRequest)(nil), // 500: google.cloud.compute.v1.AddResourcePoliciesRegionDiskRequest - (*AddRuleFirewallPolicyRequest)(nil), // 501: google.cloud.compute.v1.AddRuleFirewallPolicyRequest - (*AddRuleNetworkFirewallPolicyRequest)(nil), // 502: google.cloud.compute.v1.AddRuleNetworkFirewallPolicyRequest - (*AddRuleOrganizationSecurityPolicyRequest)(nil), // 503: google.cloud.compute.v1.AddRuleOrganizationSecurityPolicyRequest - (*AddRuleRegionNetworkFirewallPolicyRequest)(nil), // 504: google.cloud.compute.v1.AddRuleRegionNetworkFirewallPolicyRequest - (*AddRuleRegionSecurityPolicyRequest)(nil), // 505: google.cloud.compute.v1.AddRuleRegionSecurityPolicyRequest - (*AddRuleSecurityPolicyRequest)(nil), // 506: google.cloud.compute.v1.AddRuleSecurityPolicyRequest - (*AddSignedUrlKeyBackendBucketRequest)(nil), // 507: google.cloud.compute.v1.AddSignedUrlKeyBackendBucketRequest - (*AddSignedUrlKeyBackendServiceRequest)(nil), // 508: google.cloud.compute.v1.AddSignedUrlKeyBackendServiceRequest - (*Address)(nil), // 509: google.cloud.compute.v1.Address - (*AddressAggregatedList)(nil), // 510: google.cloud.compute.v1.AddressAggregatedList - (*AddressList)(nil), // 511: google.cloud.compute.v1.AddressList - (*AddressesScopedList)(nil), // 512: google.cloud.compute.v1.AddressesScopedList - (*AdvancedMachineFeatures)(nil), // 513: google.cloud.compute.v1.AdvancedMachineFeatures - (*AggregatedListAcceleratorTypesRequest)(nil), // 514: google.cloud.compute.v1.AggregatedListAcceleratorTypesRequest - (*AggregatedListAddressesRequest)(nil), // 515: google.cloud.compute.v1.AggregatedListAddressesRequest - (*AggregatedListAutoscalersRequest)(nil), // 516: google.cloud.compute.v1.AggregatedListAutoscalersRequest - (*AggregatedListBackendServicesRequest)(nil), // 517: google.cloud.compute.v1.AggregatedListBackendServicesRequest - (*AggregatedListDiskTypesRequest)(nil), // 518: google.cloud.compute.v1.AggregatedListDiskTypesRequest - (*AggregatedListDisksRequest)(nil), // 519: google.cloud.compute.v1.AggregatedListDisksRequest - (*AggregatedListForwardingRulesRequest)(nil), // 520: google.cloud.compute.v1.AggregatedListForwardingRulesRequest - (*AggregatedListFutureReservationsRequest)(nil), // 521: google.cloud.compute.v1.AggregatedListFutureReservationsRequest - (*AggregatedListGlobalOperationsRequest)(nil), // 522: google.cloud.compute.v1.AggregatedListGlobalOperationsRequest - (*AggregatedListHealthChecksRequest)(nil), // 523: google.cloud.compute.v1.AggregatedListHealthChecksRequest - (*AggregatedListInstanceGroupManagersRequest)(nil), // 524: google.cloud.compute.v1.AggregatedListInstanceGroupManagersRequest - (*AggregatedListInstanceGroupsRequest)(nil), // 525: google.cloud.compute.v1.AggregatedListInstanceGroupsRequest - (*AggregatedListInstanceTemplatesRequest)(nil), // 526: google.cloud.compute.v1.AggregatedListInstanceTemplatesRequest - (*AggregatedListInstancesRequest)(nil), // 527: google.cloud.compute.v1.AggregatedListInstancesRequest - (*AggregatedListInstantSnapshotsRequest)(nil), // 528: google.cloud.compute.v1.AggregatedListInstantSnapshotsRequest - (*AggregatedListInterconnectAttachmentsRequest)(nil), // 529: google.cloud.compute.v1.AggregatedListInterconnectAttachmentsRequest - (*AggregatedListMachineTypesRequest)(nil), // 530: google.cloud.compute.v1.AggregatedListMachineTypesRequest - (*AggregatedListNetworkAttachmentsRequest)(nil), // 531: google.cloud.compute.v1.AggregatedListNetworkAttachmentsRequest - (*AggregatedListNetworkEdgeSecurityServicesRequest)(nil), // 532: google.cloud.compute.v1.AggregatedListNetworkEdgeSecurityServicesRequest - (*AggregatedListNetworkEndpointGroupsRequest)(nil), // 533: google.cloud.compute.v1.AggregatedListNetworkEndpointGroupsRequest - (*AggregatedListNetworkFirewallPoliciesRequest)(nil), // 534: google.cloud.compute.v1.AggregatedListNetworkFirewallPoliciesRequest - (*AggregatedListNodeGroupsRequest)(nil), // 535: google.cloud.compute.v1.AggregatedListNodeGroupsRequest - (*AggregatedListNodeTemplatesRequest)(nil), // 536: google.cloud.compute.v1.AggregatedListNodeTemplatesRequest - (*AggregatedListNodeTypesRequest)(nil), // 537: google.cloud.compute.v1.AggregatedListNodeTypesRequest - (*AggregatedListPacketMirroringsRequest)(nil), // 538: google.cloud.compute.v1.AggregatedListPacketMirroringsRequest - (*AggregatedListPublicDelegatedPrefixesRequest)(nil), // 539: google.cloud.compute.v1.AggregatedListPublicDelegatedPrefixesRequest - (*AggregatedListRegionCommitmentsRequest)(nil), // 540: google.cloud.compute.v1.AggregatedListRegionCommitmentsRequest - (*AggregatedListRegionCompositeHealthChecksRequest)(nil), // 541: google.cloud.compute.v1.AggregatedListRegionCompositeHealthChecksRequest - (*AggregatedListRegionHealthAggregationPoliciesRequest)(nil), // 542: google.cloud.compute.v1.AggregatedListRegionHealthAggregationPoliciesRequest - (*AggregatedListRegionHealthCheckServicesRequest)(nil), // 543: google.cloud.compute.v1.AggregatedListRegionHealthCheckServicesRequest - (*AggregatedListRegionHealthSourcesRequest)(nil), // 544: google.cloud.compute.v1.AggregatedListRegionHealthSourcesRequest - (*AggregatedListRegionNotificationEndpointsRequest)(nil), // 545: google.cloud.compute.v1.AggregatedListRegionNotificationEndpointsRequest - (*AggregatedListReservationsRequest)(nil), // 546: google.cloud.compute.v1.AggregatedListReservationsRequest - (*AggregatedListResourcePoliciesRequest)(nil), // 547: google.cloud.compute.v1.AggregatedListResourcePoliciesRequest - (*AggregatedListRoutersRequest)(nil), // 548: google.cloud.compute.v1.AggregatedListRoutersRequest - (*AggregatedListSecurityPoliciesRequest)(nil), // 549: google.cloud.compute.v1.AggregatedListSecurityPoliciesRequest - (*AggregatedListServiceAttachmentsRequest)(nil), // 550: google.cloud.compute.v1.AggregatedListServiceAttachmentsRequest - (*AggregatedListSslCertificatesRequest)(nil), // 551: google.cloud.compute.v1.AggregatedListSslCertificatesRequest - (*AggregatedListSslPoliciesRequest)(nil), // 552: google.cloud.compute.v1.AggregatedListSslPoliciesRequest - (*AggregatedListStoragePoolTypesRequest)(nil), // 553: google.cloud.compute.v1.AggregatedListStoragePoolTypesRequest - (*AggregatedListStoragePoolsRequest)(nil), // 554: google.cloud.compute.v1.AggregatedListStoragePoolsRequest - (*AggregatedListSubnetworksRequest)(nil), // 555: google.cloud.compute.v1.AggregatedListSubnetworksRequest - (*AggregatedListTargetHttpProxiesRequest)(nil), // 556: google.cloud.compute.v1.AggregatedListTargetHttpProxiesRequest - (*AggregatedListTargetHttpsProxiesRequest)(nil), // 557: google.cloud.compute.v1.AggregatedListTargetHttpsProxiesRequest - (*AggregatedListTargetInstancesRequest)(nil), // 558: google.cloud.compute.v1.AggregatedListTargetInstancesRequest - (*AggregatedListTargetPoolsRequest)(nil), // 559: google.cloud.compute.v1.AggregatedListTargetPoolsRequest - (*AggregatedListTargetTcpProxiesRequest)(nil), // 560: google.cloud.compute.v1.AggregatedListTargetTcpProxiesRequest - (*AggregatedListTargetVpnGatewaysRequest)(nil), // 561: google.cloud.compute.v1.AggregatedListTargetVpnGatewaysRequest - (*AggregatedListUrlMapsRequest)(nil), // 562: google.cloud.compute.v1.AggregatedListUrlMapsRequest - (*AggregatedListVpnGatewaysRequest)(nil), // 563: google.cloud.compute.v1.AggregatedListVpnGatewaysRequest - (*AggregatedListVpnTunnelsRequest)(nil), // 564: google.cloud.compute.v1.AggregatedListVpnTunnelsRequest - (*AliasIpRange)(nil), // 565: google.cloud.compute.v1.AliasIpRange - (*AllocationAggregateReservation)(nil), // 566: google.cloud.compute.v1.AllocationAggregateReservation - (*AllocationAggregateReservationReservedResourceInfo)(nil), // 567: google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfo - (*AllocationAggregateReservationReservedResourceInfoAccelerator)(nil), // 568: google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfoAccelerator - (*AllocationReservationSharingPolicy)(nil), // 569: google.cloud.compute.v1.AllocationReservationSharingPolicy - (*AllocationResourceStatus)(nil), // 570: google.cloud.compute.v1.AllocationResourceStatus - (*AllocationResourceStatusHealthInfo)(nil), // 571: google.cloud.compute.v1.AllocationResourceStatusHealthInfo - (*AllocationResourceStatusSpecificSKUAllocation)(nil), // 572: google.cloud.compute.v1.AllocationResourceStatusSpecificSKUAllocation - (*AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk)(nil), // 573: google.cloud.compute.v1.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk - (*AllocationSpecificSKUAllocationReservedInstanceProperties)(nil), // 574: google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties - (*AllocationSpecificSKUReservation)(nil), // 575: google.cloud.compute.v1.AllocationSpecificSKUReservation - (*Allowed)(nil), // 576: google.cloud.compute.v1.Allowed - (*AnnouncePublicAdvertisedPrefixeRequest)(nil), // 577: google.cloud.compute.v1.AnnouncePublicAdvertisedPrefixeRequest - (*AnnouncePublicDelegatedPrefixeRequest)(nil), // 578: google.cloud.compute.v1.AnnouncePublicDelegatedPrefixeRequest - (*ApplyUpdatesToInstancesInstanceGroupManagerRequest)(nil), // 579: google.cloud.compute.v1.ApplyUpdatesToInstancesInstanceGroupManagerRequest - (*ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest)(nil), // 580: google.cloud.compute.v1.ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest - (*AttachDiskInstanceRequest)(nil), // 581: google.cloud.compute.v1.AttachDiskInstanceRequest - (*AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest)(nil), // 582: google.cloud.compute.v1.AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest - (*AttachNetworkEndpointsNetworkEndpointGroupRequest)(nil), // 583: google.cloud.compute.v1.AttachNetworkEndpointsNetworkEndpointGroupRequest - (*AttachNetworkEndpointsRegionNetworkEndpointGroupRequest)(nil), // 584: google.cloud.compute.v1.AttachNetworkEndpointsRegionNetworkEndpointGroupRequest - (*AttachedDisk)(nil), // 585: google.cloud.compute.v1.AttachedDisk - (*AttachedDiskInitializeParams)(nil), // 586: google.cloud.compute.v1.AttachedDiskInitializeParams - (*AuditConfig)(nil), // 587: google.cloud.compute.v1.AuditConfig - (*AuditLogConfig)(nil), // 588: google.cloud.compute.v1.AuditLogConfig - (*Autoscaler)(nil), // 589: google.cloud.compute.v1.Autoscaler - (*AutoscalerAggregatedList)(nil), // 590: google.cloud.compute.v1.AutoscalerAggregatedList - (*AutoscalerList)(nil), // 591: google.cloud.compute.v1.AutoscalerList - (*AutoscalerStatusDetails)(nil), // 592: google.cloud.compute.v1.AutoscalerStatusDetails - (*AutoscalersScopedList)(nil), // 593: google.cloud.compute.v1.AutoscalersScopedList - (*AutoscalingPolicy)(nil), // 594: google.cloud.compute.v1.AutoscalingPolicy - (*AutoscalingPolicyCpuUtilization)(nil), // 595: google.cloud.compute.v1.AutoscalingPolicyCpuUtilization - (*AutoscalingPolicyCustomMetricUtilization)(nil), // 596: google.cloud.compute.v1.AutoscalingPolicyCustomMetricUtilization - (*AutoscalingPolicyLoadBalancingUtilization)(nil), // 597: google.cloud.compute.v1.AutoscalingPolicyLoadBalancingUtilization - (*AutoscalingPolicyScaleInControl)(nil), // 598: google.cloud.compute.v1.AutoscalingPolicyScaleInControl - (*AutoscalingPolicyScalingSchedule)(nil), // 599: google.cloud.compute.v1.AutoscalingPolicyScalingSchedule - (*Backend)(nil), // 600: google.cloud.compute.v1.Backend - (*BackendBackendOrchestrationInfo)(nil), // 601: google.cloud.compute.v1.BackendBackendOrchestrationInfo - (*BackendBucket)(nil), // 602: google.cloud.compute.v1.BackendBucket - (*BackendBucketCdnPolicy)(nil), // 603: google.cloud.compute.v1.BackendBucketCdnPolicy - (*BackendBucketCdnPolicyBypassCacheOnRequestHeader)(nil), // 604: google.cloud.compute.v1.BackendBucketCdnPolicyBypassCacheOnRequestHeader - (*BackendBucketCdnPolicyCacheKeyPolicy)(nil), // 605: google.cloud.compute.v1.BackendBucketCdnPolicyCacheKeyPolicy - (*BackendBucketCdnPolicyNegativeCachingPolicy)(nil), // 606: google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicy - (*BackendBucketList)(nil), // 607: google.cloud.compute.v1.BackendBucketList - (*BackendBucketParams)(nil), // 608: google.cloud.compute.v1.BackendBucketParams - (*BackendBucketUsedBy)(nil), // 609: google.cloud.compute.v1.BackendBucketUsedBy - (*BackendCustomMetric)(nil), // 610: google.cloud.compute.v1.BackendCustomMetric - (*BackendService)(nil), // 611: google.cloud.compute.v1.BackendService - (*BackendServiceAggregatedList)(nil), // 612: google.cloud.compute.v1.BackendServiceAggregatedList - (*BackendServiceCdnPolicy)(nil), // 613: google.cloud.compute.v1.BackendServiceCdnPolicy - (*BackendServiceCdnPolicyBypassCacheOnRequestHeader)(nil), // 614: google.cloud.compute.v1.BackendServiceCdnPolicyBypassCacheOnRequestHeader - (*BackendServiceCdnPolicyNegativeCachingPolicy)(nil), // 615: google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicy - (*BackendServiceConnectionTrackingPolicy)(nil), // 616: google.cloud.compute.v1.BackendServiceConnectionTrackingPolicy - (*BackendServiceCustomMetric)(nil), // 617: google.cloud.compute.v1.BackendServiceCustomMetric - (*BackendServiceFailoverPolicy)(nil), // 618: google.cloud.compute.v1.BackendServiceFailoverPolicy - (*BackendServiceGroupHealth)(nil), // 619: google.cloud.compute.v1.BackendServiceGroupHealth - (*BackendServiceHAPolicy)(nil), // 620: google.cloud.compute.v1.BackendServiceHAPolicy - (*BackendServiceHAPolicyLeader)(nil), // 621: google.cloud.compute.v1.BackendServiceHAPolicyLeader - (*BackendServiceHAPolicyLeaderNetworkEndpoint)(nil), // 622: google.cloud.compute.v1.BackendServiceHAPolicyLeaderNetworkEndpoint - (*BackendServiceHttpCookie)(nil), // 623: google.cloud.compute.v1.BackendServiceHttpCookie - (*BackendServiceIAP)(nil), // 624: google.cloud.compute.v1.BackendServiceIAP - (*BackendServiceList)(nil), // 625: google.cloud.compute.v1.BackendServiceList - (*BackendServiceListUsable)(nil), // 626: google.cloud.compute.v1.BackendServiceListUsable - (*BackendServiceLocalityLoadBalancingPolicyConfig)(nil), // 627: google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfig - (*BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy)(nil), // 628: google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy - (*BackendServiceLocalityLoadBalancingPolicyConfigPolicy)(nil), // 629: google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfigPolicy - (*BackendServiceLogConfig)(nil), // 630: google.cloud.compute.v1.BackendServiceLogConfig - (*BackendServiceNetworkPassThroughLbTrafficPolicy)(nil), // 631: google.cloud.compute.v1.BackendServiceNetworkPassThroughLbTrafficPolicy - (*BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity)(nil), // 632: google.cloud.compute.v1.BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity - (*BackendServiceOrchestrationInfo)(nil), // 633: google.cloud.compute.v1.BackendServiceOrchestrationInfo - (*BackendServiceParams)(nil), // 634: google.cloud.compute.v1.BackendServiceParams - (*BackendServiceReference)(nil), // 635: google.cloud.compute.v1.BackendServiceReference - (*BackendServiceTlsSettings)(nil), // 636: google.cloud.compute.v1.BackendServiceTlsSettings - (*BackendServiceTlsSettingsSubjectAltName)(nil), // 637: google.cloud.compute.v1.BackendServiceTlsSettingsSubjectAltName - (*BackendServiceUsedBy)(nil), // 638: google.cloud.compute.v1.BackendServiceUsedBy - (*BackendServicesScopedList)(nil), // 639: google.cloud.compute.v1.BackendServicesScopedList - (*BfdPacket)(nil), // 640: google.cloud.compute.v1.BfdPacket - (*BfdStatus)(nil), // 641: google.cloud.compute.v1.BfdStatus - (*BfdStatusPacketCounts)(nil), // 642: google.cloud.compute.v1.BfdStatusPacketCounts - (*BgpRoute)(nil), // 643: google.cloud.compute.v1.BgpRoute - (*BgpRouteAsPath)(nil), // 644: google.cloud.compute.v1.BgpRouteAsPath - (*BgpRouteNetworkLayerReachabilityInformation)(nil), // 645: google.cloud.compute.v1.BgpRouteNetworkLayerReachabilityInformation - (*Binding)(nil), // 646: google.cloud.compute.v1.Binding - (*BulkInsertDiskRequest)(nil), // 647: google.cloud.compute.v1.BulkInsertDiskRequest - (*BulkInsertDiskResource)(nil), // 648: google.cloud.compute.v1.BulkInsertDiskResource - (*BulkInsertInstanceRequest)(nil), // 649: google.cloud.compute.v1.BulkInsertInstanceRequest - (*BulkInsertInstanceResource)(nil), // 650: google.cloud.compute.v1.BulkInsertInstanceResource - (*BulkInsertInstanceResourcePerInstanceProperties)(nil), // 651: google.cloud.compute.v1.BulkInsertInstanceResourcePerInstanceProperties - (*BulkInsertOperationStatus)(nil), // 652: google.cloud.compute.v1.BulkInsertOperationStatus - (*BulkInsertRegionDiskRequest)(nil), // 653: google.cloud.compute.v1.BulkInsertRegionDiskRequest - (*BulkInsertRegionInstanceRequest)(nil), // 654: google.cloud.compute.v1.BulkInsertRegionInstanceRequest - (*BulkSetLabelsDiskRequest)(nil), // 655: google.cloud.compute.v1.BulkSetLabelsDiskRequest - (*BulkSetLabelsRequest)(nil), // 656: google.cloud.compute.v1.BulkSetLabelsRequest - (*BulkZoneSetLabelsRequest)(nil), // 657: google.cloud.compute.v1.BulkZoneSetLabelsRequest - (*BundledLocalSsds)(nil), // 658: google.cloud.compute.v1.BundledLocalSsds - (*CacheInvalidationRule)(nil), // 659: google.cloud.compute.v1.CacheInvalidationRule - (*CacheKeyPolicy)(nil), // 660: google.cloud.compute.v1.CacheKeyPolicy - (*CalendarModeAdviceRequest)(nil), // 661: google.cloud.compute.v1.CalendarModeAdviceRequest - (*CalendarModeAdviceResponse)(nil), // 662: google.cloud.compute.v1.CalendarModeAdviceResponse - (*CalendarModeAdviceRpcRequest)(nil), // 663: google.cloud.compute.v1.CalendarModeAdviceRpcRequest - (*CalendarModeRecommendation)(nil), // 664: google.cloud.compute.v1.CalendarModeRecommendation - (*CancelFutureReservationRequest)(nil), // 665: google.cloud.compute.v1.CancelFutureReservationRequest - (*CancelInstanceGroupManagerResizeRequestRequest)(nil), // 666: google.cloud.compute.v1.CancelInstanceGroupManagerResizeRequestRequest - (*CircuitBreakers)(nil), // 667: google.cloud.compute.v1.CircuitBreakers - (*CloneRulesFirewallPolicyRequest)(nil), // 668: google.cloud.compute.v1.CloneRulesFirewallPolicyRequest - (*CloneRulesNetworkFirewallPolicyRequest)(nil), // 669: google.cloud.compute.v1.CloneRulesNetworkFirewallPolicyRequest - (*CloneRulesRegionNetworkFirewallPolicyRequest)(nil), // 670: google.cloud.compute.v1.CloneRulesRegionNetworkFirewallPolicyRequest - (*Commitment)(nil), // 671: google.cloud.compute.v1.Commitment - (*CommitmentAggregatedList)(nil), // 672: google.cloud.compute.v1.CommitmentAggregatedList - (*CommitmentList)(nil), // 673: google.cloud.compute.v1.CommitmentList - (*CommitmentResourceStatus)(nil), // 674: google.cloud.compute.v1.CommitmentResourceStatus - (*CommitmentsScopedList)(nil), // 675: google.cloud.compute.v1.CommitmentsScopedList - (*CompositeHealthCheck)(nil), // 676: google.cloud.compute.v1.CompositeHealthCheck - (*CompositeHealthCheckAggregatedList)(nil), // 677: google.cloud.compute.v1.CompositeHealthCheckAggregatedList - (*CompositeHealthCheckList)(nil), // 678: google.cloud.compute.v1.CompositeHealthCheckList - (*CompositeHealthChecksScopedList)(nil), // 679: google.cloud.compute.v1.CompositeHealthChecksScopedList - (*ConfidentialInstanceConfig)(nil), // 680: google.cloud.compute.v1.ConfidentialInstanceConfig - (*ConnectionDraining)(nil), // 681: google.cloud.compute.v1.ConnectionDraining - (*ConsistentHashLoadBalancerSettings)(nil), // 682: google.cloud.compute.v1.ConsistentHashLoadBalancerSettings - (*ConsistentHashLoadBalancerSettingsHttpCookie)(nil), // 683: google.cloud.compute.v1.ConsistentHashLoadBalancerSettingsHttpCookie - (*CopyRulesOrganizationSecurityPolicyRequest)(nil), // 684: google.cloud.compute.v1.CopyRulesOrganizationSecurityPolicyRequest - (*CorsPolicy)(nil), // 685: google.cloud.compute.v1.CorsPolicy - (*CreateInstancesInstanceGroupManagerRequest)(nil), // 686: google.cloud.compute.v1.CreateInstancesInstanceGroupManagerRequest - (*CreateInstancesRegionInstanceGroupManagerRequest)(nil), // 687: google.cloud.compute.v1.CreateInstancesRegionInstanceGroupManagerRequest - (*CreateMembersInterconnectGroupRequest)(nil), // 688: google.cloud.compute.v1.CreateMembersInterconnectGroupRequest - (*CreateSnapshotDiskRequest)(nil), // 689: google.cloud.compute.v1.CreateSnapshotDiskRequest - (*CreateSnapshotRegionDiskRequest)(nil), // 690: google.cloud.compute.v1.CreateSnapshotRegionDiskRequest - (*CrossSiteNetwork)(nil), // 691: google.cloud.compute.v1.CrossSiteNetwork - (*CrossSiteNetworkList)(nil), // 692: google.cloud.compute.v1.CrossSiteNetworkList - (*CustomErrorResponsePolicy)(nil), // 693: google.cloud.compute.v1.CustomErrorResponsePolicy - (*CustomErrorResponsePolicyCustomErrorResponseRule)(nil), // 694: google.cloud.compute.v1.CustomErrorResponsePolicyCustomErrorResponseRule - (*CustomerEncryptionKey)(nil), // 695: google.cloud.compute.v1.CustomerEncryptionKey - (*CustomerEncryptionKeyProtectedDisk)(nil), // 696: google.cloud.compute.v1.CustomerEncryptionKeyProtectedDisk - (*Data)(nil), // 697: google.cloud.compute.v1.Data - (*Date)(nil), // 698: google.cloud.compute.v1.Date - (*DeleteAccessConfigInstanceRequest)(nil), // 699: google.cloud.compute.v1.DeleteAccessConfigInstanceRequest - (*DeleteAddressRequest)(nil), // 700: google.cloud.compute.v1.DeleteAddressRequest - (*DeleteAutoscalerRequest)(nil), // 701: google.cloud.compute.v1.DeleteAutoscalerRequest - (*DeleteBackendBucketRequest)(nil), // 702: google.cloud.compute.v1.DeleteBackendBucketRequest - (*DeleteBackendServiceRequest)(nil), // 703: google.cloud.compute.v1.DeleteBackendServiceRequest - (*DeleteCrossSiteNetworkRequest)(nil), // 704: google.cloud.compute.v1.DeleteCrossSiteNetworkRequest - (*DeleteDiskRequest)(nil), // 705: google.cloud.compute.v1.DeleteDiskRequest - (*DeleteExternalVpnGatewayRequest)(nil), // 706: google.cloud.compute.v1.DeleteExternalVpnGatewayRequest - (*DeleteFirewallPolicyRequest)(nil), // 707: google.cloud.compute.v1.DeleteFirewallPolicyRequest - (*DeleteFirewallRequest)(nil), // 708: google.cloud.compute.v1.DeleteFirewallRequest - (*DeleteForwardingRuleRequest)(nil), // 709: google.cloud.compute.v1.DeleteForwardingRuleRequest - (*DeleteFutureReservationRequest)(nil), // 710: google.cloud.compute.v1.DeleteFutureReservationRequest - (*DeleteGlobalAddressRequest)(nil), // 711: google.cloud.compute.v1.DeleteGlobalAddressRequest - (*DeleteGlobalForwardingRuleRequest)(nil), // 712: google.cloud.compute.v1.DeleteGlobalForwardingRuleRequest - (*DeleteGlobalNetworkEndpointGroupRequest)(nil), // 713: google.cloud.compute.v1.DeleteGlobalNetworkEndpointGroupRequest - (*DeleteGlobalOperationRequest)(nil), // 714: google.cloud.compute.v1.DeleteGlobalOperationRequest - (*DeleteGlobalOperationResponse)(nil), // 715: google.cloud.compute.v1.DeleteGlobalOperationResponse - (*DeleteGlobalOrganizationOperationRequest)(nil), // 716: google.cloud.compute.v1.DeleteGlobalOrganizationOperationRequest - (*DeleteGlobalOrganizationOperationResponse)(nil), // 717: google.cloud.compute.v1.DeleteGlobalOrganizationOperationResponse - (*DeleteGlobalPublicDelegatedPrefixeRequest)(nil), // 718: google.cloud.compute.v1.DeleteGlobalPublicDelegatedPrefixeRequest - (*DeleteHealthCheckRequest)(nil), // 719: google.cloud.compute.v1.DeleteHealthCheckRequest - (*DeleteImageRequest)(nil), // 720: google.cloud.compute.v1.DeleteImageRequest - (*DeleteInstanceGroupManagerRequest)(nil), // 721: google.cloud.compute.v1.DeleteInstanceGroupManagerRequest - (*DeleteInstanceGroupManagerResizeRequestRequest)(nil), // 722: google.cloud.compute.v1.DeleteInstanceGroupManagerResizeRequestRequest - (*DeleteInstanceGroupRequest)(nil), // 723: google.cloud.compute.v1.DeleteInstanceGroupRequest - (*DeleteInstanceRequest)(nil), // 724: google.cloud.compute.v1.DeleteInstanceRequest - (*DeleteInstanceTemplateRequest)(nil), // 725: google.cloud.compute.v1.DeleteInstanceTemplateRequest - (*DeleteInstancesInstanceGroupManagerRequest)(nil), // 726: google.cloud.compute.v1.DeleteInstancesInstanceGroupManagerRequest - (*DeleteInstancesRegionInstanceGroupManagerRequest)(nil), // 727: google.cloud.compute.v1.DeleteInstancesRegionInstanceGroupManagerRequest - (*DeleteInstantSnapshotRequest)(nil), // 728: google.cloud.compute.v1.DeleteInstantSnapshotRequest - (*DeleteInterconnectAttachmentGroupRequest)(nil), // 729: google.cloud.compute.v1.DeleteInterconnectAttachmentGroupRequest - (*DeleteInterconnectAttachmentRequest)(nil), // 730: google.cloud.compute.v1.DeleteInterconnectAttachmentRequest - (*DeleteInterconnectGroupRequest)(nil), // 731: google.cloud.compute.v1.DeleteInterconnectGroupRequest - (*DeleteInterconnectRequest)(nil), // 732: google.cloud.compute.v1.DeleteInterconnectRequest - (*DeleteLicenseRequest)(nil), // 733: google.cloud.compute.v1.DeleteLicenseRequest - (*DeleteMachineImageRequest)(nil), // 734: google.cloud.compute.v1.DeleteMachineImageRequest - (*DeleteNetworkAttachmentRequest)(nil), // 735: google.cloud.compute.v1.DeleteNetworkAttachmentRequest - (*DeleteNetworkEdgeSecurityServiceRequest)(nil), // 736: google.cloud.compute.v1.DeleteNetworkEdgeSecurityServiceRequest - (*DeleteNetworkEndpointGroupRequest)(nil), // 737: google.cloud.compute.v1.DeleteNetworkEndpointGroupRequest - (*DeleteNetworkFirewallPolicyRequest)(nil), // 738: google.cloud.compute.v1.DeleteNetworkFirewallPolicyRequest - (*DeleteNetworkInterfaceInstanceRequest)(nil), // 739: google.cloud.compute.v1.DeleteNetworkInterfaceInstanceRequest - (*DeleteNetworkRequest)(nil), // 740: google.cloud.compute.v1.DeleteNetworkRequest - (*DeleteNodeGroupRequest)(nil), // 741: google.cloud.compute.v1.DeleteNodeGroupRequest - (*DeleteNodeTemplateRequest)(nil), // 742: google.cloud.compute.v1.DeleteNodeTemplateRequest - (*DeleteNodesNodeGroupRequest)(nil), // 743: google.cloud.compute.v1.DeleteNodesNodeGroupRequest - (*DeleteOrganizationSecurityPolicyRequest)(nil), // 744: google.cloud.compute.v1.DeleteOrganizationSecurityPolicyRequest - (*DeletePacketMirroringRequest)(nil), // 745: google.cloud.compute.v1.DeletePacketMirroringRequest - (*DeletePerInstanceConfigsInstanceGroupManagerRequest)(nil), // 746: google.cloud.compute.v1.DeletePerInstanceConfigsInstanceGroupManagerRequest - (*DeletePerInstanceConfigsRegionInstanceGroupManagerRequest)(nil), // 747: google.cloud.compute.v1.DeletePerInstanceConfigsRegionInstanceGroupManagerRequest - (*DeletePublicAdvertisedPrefixeRequest)(nil), // 748: google.cloud.compute.v1.DeletePublicAdvertisedPrefixeRequest - (*DeletePublicDelegatedPrefixeRequest)(nil), // 749: google.cloud.compute.v1.DeletePublicDelegatedPrefixeRequest - (*DeleteRegionAutoscalerRequest)(nil), // 750: google.cloud.compute.v1.DeleteRegionAutoscalerRequest - (*DeleteRegionBackendServiceRequest)(nil), // 751: google.cloud.compute.v1.DeleteRegionBackendServiceRequest - (*DeleteRegionCompositeHealthCheckRequest)(nil), // 752: google.cloud.compute.v1.DeleteRegionCompositeHealthCheckRequest - (*DeleteRegionDiskRequest)(nil), // 753: google.cloud.compute.v1.DeleteRegionDiskRequest - (*DeleteRegionHealthAggregationPolicyRequest)(nil), // 754: google.cloud.compute.v1.DeleteRegionHealthAggregationPolicyRequest - (*DeleteRegionHealthCheckRequest)(nil), // 755: google.cloud.compute.v1.DeleteRegionHealthCheckRequest - (*DeleteRegionHealthCheckServiceRequest)(nil), // 756: google.cloud.compute.v1.DeleteRegionHealthCheckServiceRequest - (*DeleteRegionHealthSourceRequest)(nil), // 757: google.cloud.compute.v1.DeleteRegionHealthSourceRequest - (*DeleteRegionInstanceGroupManagerRequest)(nil), // 758: google.cloud.compute.v1.DeleteRegionInstanceGroupManagerRequest - (*DeleteRegionInstanceTemplateRequest)(nil), // 759: google.cloud.compute.v1.DeleteRegionInstanceTemplateRequest - (*DeleteRegionInstantSnapshotRequest)(nil), // 760: google.cloud.compute.v1.DeleteRegionInstantSnapshotRequest - (*DeleteRegionNetworkEndpointGroupRequest)(nil), // 761: google.cloud.compute.v1.DeleteRegionNetworkEndpointGroupRequest - (*DeleteRegionNetworkFirewallPolicyRequest)(nil), // 762: google.cloud.compute.v1.DeleteRegionNetworkFirewallPolicyRequest - (*DeleteRegionNotificationEndpointRequest)(nil), // 763: google.cloud.compute.v1.DeleteRegionNotificationEndpointRequest - (*DeleteRegionOperationRequest)(nil), // 764: google.cloud.compute.v1.DeleteRegionOperationRequest - (*DeleteRegionOperationResponse)(nil), // 765: google.cloud.compute.v1.DeleteRegionOperationResponse - (*DeleteRegionSecurityPolicyRequest)(nil), // 766: google.cloud.compute.v1.DeleteRegionSecurityPolicyRequest - (*DeleteRegionSslCertificateRequest)(nil), // 767: google.cloud.compute.v1.DeleteRegionSslCertificateRequest - (*DeleteRegionSslPolicyRequest)(nil), // 768: google.cloud.compute.v1.DeleteRegionSslPolicyRequest - (*DeleteRegionTargetHttpProxyRequest)(nil), // 769: google.cloud.compute.v1.DeleteRegionTargetHttpProxyRequest - (*DeleteRegionTargetHttpsProxyRequest)(nil), // 770: google.cloud.compute.v1.DeleteRegionTargetHttpsProxyRequest - (*DeleteRegionTargetTcpProxyRequest)(nil), // 771: google.cloud.compute.v1.DeleteRegionTargetTcpProxyRequest - (*DeleteRegionUrlMapRequest)(nil), // 772: google.cloud.compute.v1.DeleteRegionUrlMapRequest - (*DeleteReservationRequest)(nil), // 773: google.cloud.compute.v1.DeleteReservationRequest - (*DeleteResourcePolicyRequest)(nil), // 774: google.cloud.compute.v1.DeleteResourcePolicyRequest - (*DeleteRoutePolicyRouterRequest)(nil), // 775: google.cloud.compute.v1.DeleteRoutePolicyRouterRequest - (*DeleteRouteRequest)(nil), // 776: google.cloud.compute.v1.DeleteRouteRequest - (*DeleteRouterRequest)(nil), // 777: google.cloud.compute.v1.DeleteRouterRequest - (*DeleteSecurityPolicyRequest)(nil), // 778: google.cloud.compute.v1.DeleteSecurityPolicyRequest - (*DeleteServiceAttachmentRequest)(nil), // 779: google.cloud.compute.v1.DeleteServiceAttachmentRequest - (*DeleteSignedUrlKeyBackendBucketRequest)(nil), // 780: google.cloud.compute.v1.DeleteSignedUrlKeyBackendBucketRequest - (*DeleteSignedUrlKeyBackendServiceRequest)(nil), // 781: google.cloud.compute.v1.DeleteSignedUrlKeyBackendServiceRequest - (*DeleteSnapshotRequest)(nil), // 782: google.cloud.compute.v1.DeleteSnapshotRequest - (*DeleteSslCertificateRequest)(nil), // 783: google.cloud.compute.v1.DeleteSslCertificateRequest - (*DeleteSslPolicyRequest)(nil), // 784: google.cloud.compute.v1.DeleteSslPolicyRequest - (*DeleteStoragePoolRequest)(nil), // 785: google.cloud.compute.v1.DeleteStoragePoolRequest - (*DeleteSubnetworkRequest)(nil), // 786: google.cloud.compute.v1.DeleteSubnetworkRequest - (*DeleteTargetGrpcProxyRequest)(nil), // 787: google.cloud.compute.v1.DeleteTargetGrpcProxyRequest - (*DeleteTargetHttpProxyRequest)(nil), // 788: google.cloud.compute.v1.DeleteTargetHttpProxyRequest - (*DeleteTargetHttpsProxyRequest)(nil), // 789: google.cloud.compute.v1.DeleteTargetHttpsProxyRequest - (*DeleteTargetInstanceRequest)(nil), // 790: google.cloud.compute.v1.DeleteTargetInstanceRequest - (*DeleteTargetPoolRequest)(nil), // 791: google.cloud.compute.v1.DeleteTargetPoolRequest - (*DeleteTargetSslProxyRequest)(nil), // 792: google.cloud.compute.v1.DeleteTargetSslProxyRequest - (*DeleteTargetTcpProxyRequest)(nil), // 793: google.cloud.compute.v1.DeleteTargetTcpProxyRequest - (*DeleteTargetVpnGatewayRequest)(nil), // 794: google.cloud.compute.v1.DeleteTargetVpnGatewayRequest - (*DeleteUrlMapRequest)(nil), // 795: google.cloud.compute.v1.DeleteUrlMapRequest - (*DeleteVpnGatewayRequest)(nil), // 796: google.cloud.compute.v1.DeleteVpnGatewayRequest - (*DeleteVpnTunnelRequest)(nil), // 797: google.cloud.compute.v1.DeleteVpnTunnelRequest - (*DeleteWireGroupRequest)(nil), // 798: google.cloud.compute.v1.DeleteWireGroupRequest - (*DeleteZoneOperationRequest)(nil), // 799: google.cloud.compute.v1.DeleteZoneOperationRequest - (*DeleteZoneOperationResponse)(nil), // 800: google.cloud.compute.v1.DeleteZoneOperationResponse - (*Denied)(nil), // 801: google.cloud.compute.v1.Denied - (*DeprecateImageRequest)(nil), // 802: google.cloud.compute.v1.DeprecateImageRequest - (*DeprecationStatus)(nil), // 803: google.cloud.compute.v1.DeprecationStatus - (*DetachDiskInstanceRequest)(nil), // 804: google.cloud.compute.v1.DetachDiskInstanceRequest - (*DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest)(nil), // 805: google.cloud.compute.v1.DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest - (*DetachNetworkEndpointsNetworkEndpointGroupRequest)(nil), // 806: google.cloud.compute.v1.DetachNetworkEndpointsNetworkEndpointGroupRequest - (*DetachNetworkEndpointsRegionNetworkEndpointGroupRequest)(nil), // 807: google.cloud.compute.v1.DetachNetworkEndpointsRegionNetworkEndpointGroupRequest - (*DisableXpnHostProjectRequest)(nil), // 808: google.cloud.compute.v1.DisableXpnHostProjectRequest - (*DisableXpnResourceProjectRequest)(nil), // 809: google.cloud.compute.v1.DisableXpnResourceProjectRequest - (*Disk)(nil), // 810: google.cloud.compute.v1.Disk - (*DiskAggregatedList)(nil), // 811: google.cloud.compute.v1.DiskAggregatedList - (*DiskAsyncReplication)(nil), // 812: google.cloud.compute.v1.DiskAsyncReplication - (*DiskAsyncReplicationList)(nil), // 813: google.cloud.compute.v1.DiskAsyncReplicationList - (*DiskInstantiationConfig)(nil), // 814: google.cloud.compute.v1.DiskInstantiationConfig - (*DiskList)(nil), // 815: google.cloud.compute.v1.DiskList - (*DiskMoveRequest)(nil), // 816: google.cloud.compute.v1.DiskMoveRequest - (*DiskParams)(nil), // 817: google.cloud.compute.v1.DiskParams - (*DiskResourceStatus)(nil), // 818: google.cloud.compute.v1.DiskResourceStatus - (*DiskResourceStatusAsyncReplicationStatus)(nil), // 819: google.cloud.compute.v1.DiskResourceStatusAsyncReplicationStatus - (*DiskType)(nil), // 820: google.cloud.compute.v1.DiskType - (*DiskTypeAggregatedList)(nil), // 821: google.cloud.compute.v1.DiskTypeAggregatedList - (*DiskTypeList)(nil), // 822: google.cloud.compute.v1.DiskTypeList - (*DiskTypesScopedList)(nil), // 823: google.cloud.compute.v1.DiskTypesScopedList - (*DisksAddResourcePoliciesRequest)(nil), // 824: google.cloud.compute.v1.DisksAddResourcePoliciesRequest - (*DisksRemoveResourcePoliciesRequest)(nil), // 825: google.cloud.compute.v1.DisksRemoveResourcePoliciesRequest - (*DisksResizeRequest)(nil), // 826: google.cloud.compute.v1.DisksResizeRequest - (*DisksScopedList)(nil), // 827: google.cloud.compute.v1.DisksScopedList - (*DisksStartAsyncReplicationRequest)(nil), // 828: google.cloud.compute.v1.DisksStartAsyncReplicationRequest - (*DisksStopGroupAsyncReplicationResource)(nil), // 829: google.cloud.compute.v1.DisksStopGroupAsyncReplicationResource - (*DisplayDevice)(nil), // 830: google.cloud.compute.v1.DisplayDevice - (*DistributionPolicy)(nil), // 831: google.cloud.compute.v1.DistributionPolicy - (*DistributionPolicyZoneConfiguration)(nil), // 832: google.cloud.compute.v1.DistributionPolicyZoneConfiguration - (*Duration)(nil), // 833: google.cloud.compute.v1.Duration - (*EnableXpnHostProjectRequest)(nil), // 834: google.cloud.compute.v1.EnableXpnHostProjectRequest - (*EnableXpnResourceProjectRequest)(nil), // 835: google.cloud.compute.v1.EnableXpnResourceProjectRequest - (*Error)(nil), // 836: google.cloud.compute.v1.Error - (*ErrorDetails)(nil), // 837: google.cloud.compute.v1.ErrorDetails - (*ErrorInfo)(nil), // 838: google.cloud.compute.v1.ErrorInfo - (*Errors)(nil), // 839: google.cloud.compute.v1.Errors - (*ExchangedPeeringRoute)(nil), // 840: google.cloud.compute.v1.ExchangedPeeringRoute - (*ExchangedPeeringRoutesList)(nil), // 841: google.cloud.compute.v1.ExchangedPeeringRoutesList - (*ExpandIpCidrRangeSubnetworkRequest)(nil), // 842: google.cloud.compute.v1.ExpandIpCidrRangeSubnetworkRequest - (*Expr)(nil), // 843: google.cloud.compute.v1.Expr - (*ExternalVpnGateway)(nil), // 844: google.cloud.compute.v1.ExternalVpnGateway - (*ExternalVpnGatewayInterface)(nil), // 845: google.cloud.compute.v1.ExternalVpnGatewayInterface - (*ExternalVpnGatewayList)(nil), // 846: google.cloud.compute.v1.ExternalVpnGatewayList - (*ExternalVpnGatewayParams)(nil), // 847: google.cloud.compute.v1.ExternalVpnGatewayParams - (*FileContentBuffer)(nil), // 848: google.cloud.compute.v1.FileContentBuffer - (*Firewall)(nil), // 849: google.cloud.compute.v1.Firewall - (*FirewallList)(nil), // 850: google.cloud.compute.v1.FirewallList - (*FirewallLogConfig)(nil), // 851: google.cloud.compute.v1.FirewallLogConfig - (*FirewallParams)(nil), // 852: google.cloud.compute.v1.FirewallParams - (*FirewallPoliciesListAssociationsResponse)(nil), // 853: google.cloud.compute.v1.FirewallPoliciesListAssociationsResponse - (*FirewallPoliciesScopedList)(nil), // 854: google.cloud.compute.v1.FirewallPoliciesScopedList - (*FirewallPolicy)(nil), // 855: google.cloud.compute.v1.FirewallPolicy - (*FirewallPolicyAssociation)(nil), // 856: google.cloud.compute.v1.FirewallPolicyAssociation - (*FirewallPolicyList)(nil), // 857: google.cloud.compute.v1.FirewallPolicyList - (*FirewallPolicyRule)(nil), // 858: google.cloud.compute.v1.FirewallPolicyRule - (*FirewallPolicyRuleMatcher)(nil), // 859: google.cloud.compute.v1.FirewallPolicyRuleMatcher - (*FirewallPolicyRuleMatcherLayer4Config)(nil), // 860: google.cloud.compute.v1.FirewallPolicyRuleMatcherLayer4Config - (*FirewallPolicyRuleSecureTag)(nil), // 861: google.cloud.compute.v1.FirewallPolicyRuleSecureTag - (*FixedOrPercent)(nil), // 862: google.cloud.compute.v1.FixedOrPercent - (*FlexibleTimeRange)(nil), // 863: google.cloud.compute.v1.FlexibleTimeRange - (*ForwardingRule)(nil), // 864: google.cloud.compute.v1.ForwardingRule - (*ForwardingRuleAggregatedList)(nil), // 865: google.cloud.compute.v1.ForwardingRuleAggregatedList - (*ForwardingRuleList)(nil), // 866: google.cloud.compute.v1.ForwardingRuleList - (*ForwardingRuleReference)(nil), // 867: google.cloud.compute.v1.ForwardingRuleReference - (*ForwardingRuleServiceDirectoryRegistration)(nil), // 868: google.cloud.compute.v1.ForwardingRuleServiceDirectoryRegistration - (*ForwardingRulesScopedList)(nil), // 869: google.cloud.compute.v1.ForwardingRulesScopedList - (*FutureReservation)(nil), // 870: google.cloud.compute.v1.FutureReservation - (*FutureReservationCommitmentInfo)(nil), // 871: google.cloud.compute.v1.FutureReservationCommitmentInfo - (*FutureReservationSpecificSKUProperties)(nil), // 872: google.cloud.compute.v1.FutureReservationSpecificSKUProperties - (*FutureReservationStatus)(nil), // 873: google.cloud.compute.v1.FutureReservationStatus - (*FutureReservationStatusExistingMatchingUsageInfo)(nil), // 874: google.cloud.compute.v1.FutureReservationStatusExistingMatchingUsageInfo - (*FutureReservationStatusLastKnownGoodState)(nil), // 875: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodState - (*FutureReservationStatusLastKnownGoodStateFutureReservationSpecs)(nil), // 876: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodStateFutureReservationSpecs - (*FutureReservationStatusSpecificSKUProperties)(nil), // 877: google.cloud.compute.v1.FutureReservationStatusSpecificSKUProperties - (*FutureReservationTimeWindow)(nil), // 878: google.cloud.compute.v1.FutureReservationTimeWindow - (*FutureReservationsAggregatedListResponse)(nil), // 879: google.cloud.compute.v1.FutureReservationsAggregatedListResponse - (*FutureReservationsListResponse)(nil), // 880: google.cloud.compute.v1.FutureReservationsListResponse - (*FutureReservationsScopedList)(nil), // 881: google.cloud.compute.v1.FutureReservationsScopedList - (*FutureResourcesRecommendation)(nil), // 882: google.cloud.compute.v1.FutureResourcesRecommendation - (*FutureResourcesRecommendationOtherLocation)(nil), // 883: google.cloud.compute.v1.FutureResourcesRecommendationOtherLocation - (*FutureResourcesSpec)(nil), // 884: google.cloud.compute.v1.FutureResourcesSpec - (*FutureResourcesSpecAggregateResources)(nil), // 885: google.cloud.compute.v1.FutureResourcesSpecAggregateResources - (*FutureResourcesSpecLocalSsdPartition)(nil), // 886: google.cloud.compute.v1.FutureResourcesSpecLocalSsdPartition - (*FutureResourcesSpecLocationPolicy)(nil), // 887: google.cloud.compute.v1.FutureResourcesSpecLocationPolicy - (*FutureResourcesSpecLocationPolicyLocation)(nil), // 888: google.cloud.compute.v1.FutureResourcesSpecLocationPolicyLocation - (*FutureResourcesSpecSpecificSKUResources)(nil), // 889: google.cloud.compute.v1.FutureResourcesSpecSpecificSKUResources - (*FutureResourcesSpecTargetResources)(nil), // 890: google.cloud.compute.v1.FutureResourcesSpecTargetResources - (*GRPCHealthCheck)(nil), // 891: google.cloud.compute.v1.GRPCHealthCheck - (*GRPCTLSHealthCheck)(nil), // 892: google.cloud.compute.v1.GRPCTLSHealthCheck - (*GetAcceleratorTypeRequest)(nil), // 893: google.cloud.compute.v1.GetAcceleratorTypeRequest - (*GetAddressRequest)(nil), // 894: google.cloud.compute.v1.GetAddressRequest - (*GetAssociationFirewallPolicyRequest)(nil), // 895: google.cloud.compute.v1.GetAssociationFirewallPolicyRequest - (*GetAssociationNetworkFirewallPolicyRequest)(nil), // 896: google.cloud.compute.v1.GetAssociationNetworkFirewallPolicyRequest - (*GetAssociationOrganizationSecurityPolicyRequest)(nil), // 897: google.cloud.compute.v1.GetAssociationOrganizationSecurityPolicyRequest - (*GetAssociationRegionNetworkFirewallPolicyRequest)(nil), // 898: google.cloud.compute.v1.GetAssociationRegionNetworkFirewallPolicyRequest - (*GetAutoscalerRequest)(nil), // 899: google.cloud.compute.v1.GetAutoscalerRequest - (*GetBackendBucketRequest)(nil), // 900: google.cloud.compute.v1.GetBackendBucketRequest - (*GetBackendServiceRequest)(nil), // 901: google.cloud.compute.v1.GetBackendServiceRequest - (*GetCrossSiteNetworkRequest)(nil), // 902: google.cloud.compute.v1.GetCrossSiteNetworkRequest - (*GetDiagnosticsInterconnectRequest)(nil), // 903: google.cloud.compute.v1.GetDiagnosticsInterconnectRequest - (*GetDiskRequest)(nil), // 904: google.cloud.compute.v1.GetDiskRequest - (*GetDiskTypeRequest)(nil), // 905: google.cloud.compute.v1.GetDiskTypeRequest - (*GetEffectiveFirewallsInstanceRequest)(nil), // 906: google.cloud.compute.v1.GetEffectiveFirewallsInstanceRequest - (*GetEffectiveFirewallsNetworkRequest)(nil), // 907: google.cloud.compute.v1.GetEffectiveFirewallsNetworkRequest - (*GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest)(nil), // 908: google.cloud.compute.v1.GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest - (*GetEffectiveSecurityPoliciesBackendServiceRequest)(nil), // 909: google.cloud.compute.v1.GetEffectiveSecurityPoliciesBackendServiceRequest - (*GetEffectiveSecurityPoliciesBackendServiceResponse)(nil), // 910: google.cloud.compute.v1.GetEffectiveSecurityPoliciesBackendServiceResponse - (*GetExternalVpnGatewayRequest)(nil), // 911: google.cloud.compute.v1.GetExternalVpnGatewayRequest - (*GetFirewallPolicyRequest)(nil), // 912: google.cloud.compute.v1.GetFirewallPolicyRequest - (*GetFirewallRequest)(nil), // 913: google.cloud.compute.v1.GetFirewallRequest - (*GetForwardingRuleRequest)(nil), // 914: google.cloud.compute.v1.GetForwardingRuleRequest - (*GetFromFamilyImageRequest)(nil), // 915: google.cloud.compute.v1.GetFromFamilyImageRequest - (*GetFutureReservationRequest)(nil), // 916: google.cloud.compute.v1.GetFutureReservationRequest - (*GetGlobalAddressRequest)(nil), // 917: google.cloud.compute.v1.GetGlobalAddressRequest - (*GetGlobalForwardingRuleRequest)(nil), // 918: google.cloud.compute.v1.GetGlobalForwardingRuleRequest - (*GetGlobalNetworkEndpointGroupRequest)(nil), // 919: google.cloud.compute.v1.GetGlobalNetworkEndpointGroupRequest - (*GetGlobalOperationRequest)(nil), // 920: google.cloud.compute.v1.GetGlobalOperationRequest - (*GetGlobalOrganizationOperationRequest)(nil), // 921: google.cloud.compute.v1.GetGlobalOrganizationOperationRequest - (*GetGlobalPublicDelegatedPrefixeRequest)(nil), // 922: google.cloud.compute.v1.GetGlobalPublicDelegatedPrefixeRequest - (*GetGuestAttributesInstanceRequest)(nil), // 923: google.cloud.compute.v1.GetGuestAttributesInstanceRequest - (*GetHealthBackendServiceRequest)(nil), // 924: google.cloud.compute.v1.GetHealthBackendServiceRequest - (*GetHealthCheckRequest)(nil), // 925: google.cloud.compute.v1.GetHealthCheckRequest - (*GetHealthRegionBackendServiceRequest)(nil), // 926: google.cloud.compute.v1.GetHealthRegionBackendServiceRequest - (*GetHealthTargetPoolRequest)(nil), // 927: google.cloud.compute.v1.GetHealthTargetPoolRequest - (*GetIamPolicyBackendBucketRequest)(nil), // 928: google.cloud.compute.v1.GetIamPolicyBackendBucketRequest - (*GetIamPolicyBackendServiceRequest)(nil), // 929: google.cloud.compute.v1.GetIamPolicyBackendServiceRequest - (*GetIamPolicyDiskRequest)(nil), // 930: google.cloud.compute.v1.GetIamPolicyDiskRequest - (*GetIamPolicyFirewallPolicyRequest)(nil), // 931: google.cloud.compute.v1.GetIamPolicyFirewallPolicyRequest - (*GetIamPolicyImageRequest)(nil), // 932: google.cloud.compute.v1.GetIamPolicyImageRequest - (*GetIamPolicyInstanceRequest)(nil), // 933: google.cloud.compute.v1.GetIamPolicyInstanceRequest - (*GetIamPolicyInstanceTemplateRequest)(nil), // 934: google.cloud.compute.v1.GetIamPolicyInstanceTemplateRequest - (*GetIamPolicyInstantSnapshotRequest)(nil), // 935: google.cloud.compute.v1.GetIamPolicyInstantSnapshotRequest - (*GetIamPolicyInterconnectAttachmentGroupRequest)(nil), // 936: google.cloud.compute.v1.GetIamPolicyInterconnectAttachmentGroupRequest - (*GetIamPolicyInterconnectGroupRequest)(nil), // 937: google.cloud.compute.v1.GetIamPolicyInterconnectGroupRequest - (*GetIamPolicyLicenseRequest)(nil), // 938: google.cloud.compute.v1.GetIamPolicyLicenseRequest - (*GetIamPolicyMachineImageRequest)(nil), // 939: google.cloud.compute.v1.GetIamPolicyMachineImageRequest - (*GetIamPolicyNetworkAttachmentRequest)(nil), // 940: google.cloud.compute.v1.GetIamPolicyNetworkAttachmentRequest - (*GetIamPolicyNetworkFirewallPolicyRequest)(nil), // 941: google.cloud.compute.v1.GetIamPolicyNetworkFirewallPolicyRequest - (*GetIamPolicyNodeGroupRequest)(nil), // 942: google.cloud.compute.v1.GetIamPolicyNodeGroupRequest - (*GetIamPolicyNodeTemplateRequest)(nil), // 943: google.cloud.compute.v1.GetIamPolicyNodeTemplateRequest - (*GetIamPolicyRegionBackendServiceRequest)(nil), // 944: google.cloud.compute.v1.GetIamPolicyRegionBackendServiceRequest - (*GetIamPolicyRegionDiskRequest)(nil), // 945: google.cloud.compute.v1.GetIamPolicyRegionDiskRequest - (*GetIamPolicyRegionInstantSnapshotRequest)(nil), // 946: google.cloud.compute.v1.GetIamPolicyRegionInstantSnapshotRequest - (*GetIamPolicyRegionNetworkFirewallPolicyRequest)(nil), // 947: google.cloud.compute.v1.GetIamPolicyRegionNetworkFirewallPolicyRequest - (*GetIamPolicyReservationBlockRequest)(nil), // 948: google.cloud.compute.v1.GetIamPolicyReservationBlockRequest - (*GetIamPolicyReservationRequest)(nil), // 949: google.cloud.compute.v1.GetIamPolicyReservationRequest - (*GetIamPolicyReservationSubBlockRequest)(nil), // 950: google.cloud.compute.v1.GetIamPolicyReservationSubBlockRequest - (*GetIamPolicyResourcePolicyRequest)(nil), // 951: google.cloud.compute.v1.GetIamPolicyResourcePolicyRequest - (*GetIamPolicyServiceAttachmentRequest)(nil), // 952: google.cloud.compute.v1.GetIamPolicyServiceAttachmentRequest - (*GetIamPolicySnapshotRequest)(nil), // 953: google.cloud.compute.v1.GetIamPolicySnapshotRequest - (*GetIamPolicyStoragePoolRequest)(nil), // 954: google.cloud.compute.v1.GetIamPolicyStoragePoolRequest - (*GetIamPolicySubnetworkRequest)(nil), // 955: google.cloud.compute.v1.GetIamPolicySubnetworkRequest - (*GetImageFamilyViewRequest)(nil), // 956: google.cloud.compute.v1.GetImageFamilyViewRequest - (*GetImageRequest)(nil), // 957: google.cloud.compute.v1.GetImageRequest - (*GetInstanceGroupManagerRequest)(nil), // 958: google.cloud.compute.v1.GetInstanceGroupManagerRequest - (*GetInstanceGroupManagerResizeRequestRequest)(nil), // 959: google.cloud.compute.v1.GetInstanceGroupManagerResizeRequestRequest - (*GetInstanceGroupRequest)(nil), // 960: google.cloud.compute.v1.GetInstanceGroupRequest - (*GetInstanceRequest)(nil), // 961: google.cloud.compute.v1.GetInstanceRequest - (*GetInstanceSettingRequest)(nil), // 962: google.cloud.compute.v1.GetInstanceSettingRequest - (*GetInstanceTemplateRequest)(nil), // 963: google.cloud.compute.v1.GetInstanceTemplateRequest - (*GetInstantSnapshotRequest)(nil), // 964: google.cloud.compute.v1.GetInstantSnapshotRequest - (*GetInterconnectAttachmentGroupRequest)(nil), // 965: google.cloud.compute.v1.GetInterconnectAttachmentGroupRequest - (*GetInterconnectAttachmentRequest)(nil), // 966: google.cloud.compute.v1.GetInterconnectAttachmentRequest - (*GetInterconnectGroupRequest)(nil), // 967: google.cloud.compute.v1.GetInterconnectGroupRequest - (*GetInterconnectLocationRequest)(nil), // 968: google.cloud.compute.v1.GetInterconnectLocationRequest - (*GetInterconnectRemoteLocationRequest)(nil), // 969: google.cloud.compute.v1.GetInterconnectRemoteLocationRequest - (*GetInterconnectRequest)(nil), // 970: google.cloud.compute.v1.GetInterconnectRequest - (*GetLicenseCodeRequest)(nil), // 971: google.cloud.compute.v1.GetLicenseCodeRequest - (*GetLicenseRequest)(nil), // 972: google.cloud.compute.v1.GetLicenseRequest - (*GetMachineImageRequest)(nil), // 973: google.cloud.compute.v1.GetMachineImageRequest - (*GetMachineTypeRequest)(nil), // 974: google.cloud.compute.v1.GetMachineTypeRequest - (*GetMacsecConfigInterconnectRequest)(nil), // 975: google.cloud.compute.v1.GetMacsecConfigInterconnectRequest - (*GetNatIpInfoRouterRequest)(nil), // 976: google.cloud.compute.v1.GetNatIpInfoRouterRequest - (*GetNatMappingInfoRoutersRequest)(nil), // 977: google.cloud.compute.v1.GetNatMappingInfoRoutersRequest - (*GetNetworkAttachmentRequest)(nil), // 978: google.cloud.compute.v1.GetNetworkAttachmentRequest - (*GetNetworkEdgeSecurityServiceRequest)(nil), // 979: google.cloud.compute.v1.GetNetworkEdgeSecurityServiceRequest - (*GetNetworkEndpointGroupRequest)(nil), // 980: google.cloud.compute.v1.GetNetworkEndpointGroupRequest - (*GetNetworkFirewallPolicyRequest)(nil), // 981: google.cloud.compute.v1.GetNetworkFirewallPolicyRequest - (*GetNetworkProfileRequest)(nil), // 982: google.cloud.compute.v1.GetNetworkProfileRequest - (*GetNetworkRequest)(nil), // 983: google.cloud.compute.v1.GetNetworkRequest - (*GetNodeGroupRequest)(nil), // 984: google.cloud.compute.v1.GetNodeGroupRequest - (*GetNodeTemplateRequest)(nil), // 985: google.cloud.compute.v1.GetNodeTemplateRequest - (*GetNodeTypeRequest)(nil), // 986: google.cloud.compute.v1.GetNodeTypeRequest - (*GetOperationalStatusInterconnectAttachmentGroupRequest)(nil), // 987: google.cloud.compute.v1.GetOperationalStatusInterconnectAttachmentGroupRequest - (*GetOperationalStatusInterconnectGroupRequest)(nil), // 988: google.cloud.compute.v1.GetOperationalStatusInterconnectGroupRequest - (*GetOrganizationSecurityPolicyRequest)(nil), // 989: google.cloud.compute.v1.GetOrganizationSecurityPolicyRequest - (*GetPacketMirroringRequest)(nil), // 990: google.cloud.compute.v1.GetPacketMirroringRequest - (*GetPacketMirroringRuleNetworkFirewallPolicyRequest)(nil), // 991: google.cloud.compute.v1.GetPacketMirroringRuleNetworkFirewallPolicyRequest - (*GetPreviewFeatureRequest)(nil), // 992: google.cloud.compute.v1.GetPreviewFeatureRequest - (*GetProjectRequest)(nil), // 993: google.cloud.compute.v1.GetProjectRequest - (*GetPublicAdvertisedPrefixeRequest)(nil), // 994: google.cloud.compute.v1.GetPublicAdvertisedPrefixeRequest - (*GetPublicDelegatedPrefixeRequest)(nil), // 995: google.cloud.compute.v1.GetPublicDelegatedPrefixeRequest - (*GetRegionAutoscalerRequest)(nil), // 996: google.cloud.compute.v1.GetRegionAutoscalerRequest - (*GetRegionBackendServiceRequest)(nil), // 997: google.cloud.compute.v1.GetRegionBackendServiceRequest - (*GetRegionCommitmentRequest)(nil), // 998: google.cloud.compute.v1.GetRegionCommitmentRequest - (*GetRegionCompositeHealthCheckRequest)(nil), // 999: google.cloud.compute.v1.GetRegionCompositeHealthCheckRequest - (*GetRegionDiskRequest)(nil), // 1000: google.cloud.compute.v1.GetRegionDiskRequest - (*GetRegionDiskTypeRequest)(nil), // 1001: google.cloud.compute.v1.GetRegionDiskTypeRequest - (*GetRegionHealthAggregationPolicyRequest)(nil), // 1002: google.cloud.compute.v1.GetRegionHealthAggregationPolicyRequest - (*GetRegionHealthCheckRequest)(nil), // 1003: google.cloud.compute.v1.GetRegionHealthCheckRequest - (*GetRegionHealthCheckServiceRequest)(nil), // 1004: google.cloud.compute.v1.GetRegionHealthCheckServiceRequest - (*GetRegionHealthSourceRequest)(nil), // 1005: google.cloud.compute.v1.GetRegionHealthSourceRequest - (*GetRegionInstanceGroupManagerRequest)(nil), // 1006: google.cloud.compute.v1.GetRegionInstanceGroupManagerRequest - (*GetRegionInstanceGroupRequest)(nil), // 1007: google.cloud.compute.v1.GetRegionInstanceGroupRequest - (*GetRegionInstanceTemplateRequest)(nil), // 1008: google.cloud.compute.v1.GetRegionInstanceTemplateRequest - (*GetRegionInstantSnapshotRequest)(nil), // 1009: google.cloud.compute.v1.GetRegionInstantSnapshotRequest - (*GetRegionNetworkEndpointGroupRequest)(nil), // 1010: google.cloud.compute.v1.GetRegionNetworkEndpointGroupRequest - (*GetRegionNetworkFirewallPolicyRequest)(nil), // 1011: google.cloud.compute.v1.GetRegionNetworkFirewallPolicyRequest - (*GetRegionNotificationEndpointRequest)(nil), // 1012: google.cloud.compute.v1.GetRegionNotificationEndpointRequest - (*GetRegionOperationRequest)(nil), // 1013: google.cloud.compute.v1.GetRegionOperationRequest - (*GetRegionRequest)(nil), // 1014: google.cloud.compute.v1.GetRegionRequest - (*GetRegionSecurityPolicyRequest)(nil), // 1015: google.cloud.compute.v1.GetRegionSecurityPolicyRequest - (*GetRegionSslCertificateRequest)(nil), // 1016: google.cloud.compute.v1.GetRegionSslCertificateRequest - (*GetRegionSslPolicyRequest)(nil), // 1017: google.cloud.compute.v1.GetRegionSslPolicyRequest - (*GetRegionTargetHttpProxyRequest)(nil), // 1018: google.cloud.compute.v1.GetRegionTargetHttpProxyRequest - (*GetRegionTargetHttpsProxyRequest)(nil), // 1019: google.cloud.compute.v1.GetRegionTargetHttpsProxyRequest - (*GetRegionTargetTcpProxyRequest)(nil), // 1020: google.cloud.compute.v1.GetRegionTargetTcpProxyRequest - (*GetRegionUrlMapRequest)(nil), // 1021: google.cloud.compute.v1.GetRegionUrlMapRequest - (*GetReservationBlockRequest)(nil), // 1022: google.cloud.compute.v1.GetReservationBlockRequest - (*GetReservationRequest)(nil), // 1023: google.cloud.compute.v1.GetReservationRequest - (*GetReservationSlotRequest)(nil), // 1024: google.cloud.compute.v1.GetReservationSlotRequest - (*GetReservationSubBlockRequest)(nil), // 1025: google.cloud.compute.v1.GetReservationSubBlockRequest - (*GetResourcePolicyRequest)(nil), // 1026: google.cloud.compute.v1.GetResourcePolicyRequest - (*GetRoutePolicyRouterRequest)(nil), // 1027: google.cloud.compute.v1.GetRoutePolicyRouterRequest - (*GetRouteRequest)(nil), // 1028: google.cloud.compute.v1.GetRouteRequest - (*GetRouterRequest)(nil), // 1029: google.cloud.compute.v1.GetRouterRequest - (*GetRouterStatusRouterRequest)(nil), // 1030: google.cloud.compute.v1.GetRouterStatusRouterRequest - (*GetRuleFirewallPolicyRequest)(nil), // 1031: google.cloud.compute.v1.GetRuleFirewallPolicyRequest - (*GetRuleNetworkFirewallPolicyRequest)(nil), // 1032: google.cloud.compute.v1.GetRuleNetworkFirewallPolicyRequest - (*GetRuleOrganizationSecurityPolicyRequest)(nil), // 1033: google.cloud.compute.v1.GetRuleOrganizationSecurityPolicyRequest - (*GetRuleRegionNetworkFirewallPolicyRequest)(nil), // 1034: google.cloud.compute.v1.GetRuleRegionNetworkFirewallPolicyRequest - (*GetRuleRegionSecurityPolicyRequest)(nil), // 1035: google.cloud.compute.v1.GetRuleRegionSecurityPolicyRequest - (*GetRuleSecurityPolicyRequest)(nil), // 1036: google.cloud.compute.v1.GetRuleSecurityPolicyRequest - (*GetScreenshotInstanceRequest)(nil), // 1037: google.cloud.compute.v1.GetScreenshotInstanceRequest - (*GetSecurityPolicyRequest)(nil), // 1038: google.cloud.compute.v1.GetSecurityPolicyRequest - (*GetSerialPortOutputInstanceRequest)(nil), // 1039: google.cloud.compute.v1.GetSerialPortOutputInstanceRequest - (*GetServiceAttachmentRequest)(nil), // 1040: google.cloud.compute.v1.GetServiceAttachmentRequest - (*GetShieldedInstanceIdentityInstanceRequest)(nil), // 1041: google.cloud.compute.v1.GetShieldedInstanceIdentityInstanceRequest - (*GetSnapshotRequest)(nil), // 1042: google.cloud.compute.v1.GetSnapshotRequest - (*GetSnapshotSettingRequest)(nil), // 1043: google.cloud.compute.v1.GetSnapshotSettingRequest - (*GetSslCertificateRequest)(nil), // 1044: google.cloud.compute.v1.GetSslCertificateRequest - (*GetSslPolicyRequest)(nil), // 1045: google.cloud.compute.v1.GetSslPolicyRequest - (*GetStatusVpnGatewayRequest)(nil), // 1046: google.cloud.compute.v1.GetStatusVpnGatewayRequest - (*GetStoragePoolRequest)(nil), // 1047: google.cloud.compute.v1.GetStoragePoolRequest - (*GetStoragePoolTypeRequest)(nil), // 1048: google.cloud.compute.v1.GetStoragePoolTypeRequest - (*GetSubnetworkRequest)(nil), // 1049: google.cloud.compute.v1.GetSubnetworkRequest - (*GetTargetGrpcProxyRequest)(nil), // 1050: google.cloud.compute.v1.GetTargetGrpcProxyRequest - (*GetTargetHttpProxyRequest)(nil), // 1051: google.cloud.compute.v1.GetTargetHttpProxyRequest - (*GetTargetHttpsProxyRequest)(nil), // 1052: google.cloud.compute.v1.GetTargetHttpsProxyRequest - (*GetTargetInstanceRequest)(nil), // 1053: google.cloud.compute.v1.GetTargetInstanceRequest - (*GetTargetPoolRequest)(nil), // 1054: google.cloud.compute.v1.GetTargetPoolRequest - (*GetTargetSslProxyRequest)(nil), // 1055: google.cloud.compute.v1.GetTargetSslProxyRequest - (*GetTargetTcpProxyRequest)(nil), // 1056: google.cloud.compute.v1.GetTargetTcpProxyRequest - (*GetTargetVpnGatewayRequest)(nil), // 1057: google.cloud.compute.v1.GetTargetVpnGatewayRequest - (*GetUrlMapRequest)(nil), // 1058: google.cloud.compute.v1.GetUrlMapRequest - (*GetVersionOperationMetadata)(nil), // 1059: google.cloud.compute.v1.GetVersionOperationMetadata - (*GetVersionOperationMetadataSbomInfo)(nil), // 1060: google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo - (*GetVersionReservationSlotRequest)(nil), // 1061: google.cloud.compute.v1.GetVersionReservationSlotRequest - (*GetVersionReservationSubBlockRequest)(nil), // 1062: google.cloud.compute.v1.GetVersionReservationSubBlockRequest - (*GetVpnGatewayRequest)(nil), // 1063: google.cloud.compute.v1.GetVpnGatewayRequest - (*GetVpnTunnelRequest)(nil), // 1064: google.cloud.compute.v1.GetVpnTunnelRequest - (*GetWireGroupRequest)(nil), // 1065: google.cloud.compute.v1.GetWireGroupRequest - (*GetXpnHostProjectRequest)(nil), // 1066: google.cloud.compute.v1.GetXpnHostProjectRequest - (*GetXpnResourcesProjectsRequest)(nil), // 1067: google.cloud.compute.v1.GetXpnResourcesProjectsRequest - (*GetZoneOperationRequest)(nil), // 1068: google.cloud.compute.v1.GetZoneOperationRequest - (*GetZoneRequest)(nil), // 1069: google.cloud.compute.v1.GetZoneRequest - (*GlobalAddressesMoveRequest)(nil), // 1070: google.cloud.compute.v1.GlobalAddressesMoveRequest - (*GlobalNetworkEndpointGroupsAttachEndpointsRequest)(nil), // 1071: google.cloud.compute.v1.GlobalNetworkEndpointGroupsAttachEndpointsRequest - (*GlobalNetworkEndpointGroupsDetachEndpointsRequest)(nil), // 1072: google.cloud.compute.v1.GlobalNetworkEndpointGroupsDetachEndpointsRequest - (*GlobalOrganizationSetPolicyRequest)(nil), // 1073: google.cloud.compute.v1.GlobalOrganizationSetPolicyRequest - (*GlobalSetLabelsRequest)(nil), // 1074: google.cloud.compute.v1.GlobalSetLabelsRequest - (*GlobalSetPolicyRequest)(nil), // 1075: google.cloud.compute.v1.GlobalSetPolicyRequest - (*GroupMaintenanceInfo)(nil), // 1076: google.cloud.compute.v1.GroupMaintenanceInfo - (*GuestAttributes)(nil), // 1077: google.cloud.compute.v1.GuestAttributes - (*GuestAttributesEntry)(nil), // 1078: google.cloud.compute.v1.GuestAttributesEntry - (*GuestAttributesValue)(nil), // 1079: google.cloud.compute.v1.GuestAttributesValue - (*GuestOsFeature)(nil), // 1080: google.cloud.compute.v1.GuestOsFeature - (*HTTP2HealthCheck)(nil), // 1081: google.cloud.compute.v1.HTTP2HealthCheck - (*HTTPHealthCheck)(nil), // 1082: google.cloud.compute.v1.HTTPHealthCheck - (*HTTPSHealthCheck)(nil), // 1083: google.cloud.compute.v1.HTTPSHealthCheck - (*HealthAggregationPoliciesScopedList)(nil), // 1084: google.cloud.compute.v1.HealthAggregationPoliciesScopedList - (*HealthAggregationPolicy)(nil), // 1085: google.cloud.compute.v1.HealthAggregationPolicy - (*HealthAggregationPolicyAggregatedList)(nil), // 1086: google.cloud.compute.v1.HealthAggregationPolicyAggregatedList - (*HealthAggregationPolicyList)(nil), // 1087: google.cloud.compute.v1.HealthAggregationPolicyList - (*HealthCheck)(nil), // 1088: google.cloud.compute.v1.HealthCheck - (*HealthCheckList)(nil), // 1089: google.cloud.compute.v1.HealthCheckList - (*HealthCheckLogConfig)(nil), // 1090: google.cloud.compute.v1.HealthCheckLogConfig - (*HealthCheckReference)(nil), // 1091: google.cloud.compute.v1.HealthCheckReference - (*HealthCheckService)(nil), // 1092: google.cloud.compute.v1.HealthCheckService - (*HealthCheckServiceAggregatedList)(nil), // 1093: google.cloud.compute.v1.HealthCheckServiceAggregatedList - (*HealthCheckServiceReference)(nil), // 1094: google.cloud.compute.v1.HealthCheckServiceReference - (*HealthCheckServicesList)(nil), // 1095: google.cloud.compute.v1.HealthCheckServicesList - (*HealthCheckServicesScopedList)(nil), // 1096: google.cloud.compute.v1.HealthCheckServicesScopedList - (*HealthChecksAggregatedList)(nil), // 1097: google.cloud.compute.v1.HealthChecksAggregatedList - (*HealthChecksScopedList)(nil), // 1098: google.cloud.compute.v1.HealthChecksScopedList - (*HealthSource)(nil), // 1099: google.cloud.compute.v1.HealthSource - (*HealthSourceAggregatedList)(nil), // 1100: google.cloud.compute.v1.HealthSourceAggregatedList - (*HealthSourceList)(nil), // 1101: google.cloud.compute.v1.HealthSourceList - (*HealthSourcesScopedList)(nil), // 1102: google.cloud.compute.v1.HealthSourcesScopedList - (*HealthStatus)(nil), // 1103: google.cloud.compute.v1.HealthStatus - (*HealthStatusForNetworkEndpoint)(nil), // 1104: google.cloud.compute.v1.HealthStatusForNetworkEndpoint - (*Help)(nil), // 1105: google.cloud.compute.v1.Help - (*HelpLink)(nil), // 1106: google.cloud.compute.v1.HelpLink - (*HostRule)(nil), // 1107: google.cloud.compute.v1.HostRule - (*HttpFaultAbort)(nil), // 1108: google.cloud.compute.v1.HttpFaultAbort - (*HttpFaultDelay)(nil), // 1109: google.cloud.compute.v1.HttpFaultDelay - (*HttpFaultInjection)(nil), // 1110: google.cloud.compute.v1.HttpFaultInjection - (*HttpHeaderAction)(nil), // 1111: google.cloud.compute.v1.HttpHeaderAction - (*HttpHeaderMatch)(nil), // 1112: google.cloud.compute.v1.HttpHeaderMatch - (*HttpHeaderOption)(nil), // 1113: google.cloud.compute.v1.HttpHeaderOption - (*HttpQueryParameterMatch)(nil), // 1114: google.cloud.compute.v1.HttpQueryParameterMatch - (*HttpRedirectAction)(nil), // 1115: google.cloud.compute.v1.HttpRedirectAction - (*HttpRetryPolicy)(nil), // 1116: google.cloud.compute.v1.HttpRetryPolicy - (*HttpRouteAction)(nil), // 1117: google.cloud.compute.v1.HttpRouteAction - (*HttpRouteRule)(nil), // 1118: google.cloud.compute.v1.HttpRouteRule - (*HttpRouteRuleMatch)(nil), // 1119: google.cloud.compute.v1.HttpRouteRuleMatch - (*Image)(nil), // 1120: google.cloud.compute.v1.Image - (*ImageFamilyView)(nil), // 1121: google.cloud.compute.v1.ImageFamilyView - (*ImageList)(nil), // 1122: google.cloud.compute.v1.ImageList - (*ImageParams)(nil), // 1123: google.cloud.compute.v1.ImageParams - (*InitialStateConfig)(nil), // 1124: google.cloud.compute.v1.InitialStateConfig - (*InsertAddressRequest)(nil), // 1125: google.cloud.compute.v1.InsertAddressRequest - (*InsertAutoscalerRequest)(nil), // 1126: google.cloud.compute.v1.InsertAutoscalerRequest - (*InsertBackendBucketRequest)(nil), // 1127: google.cloud.compute.v1.InsertBackendBucketRequest - (*InsertBackendServiceRequest)(nil), // 1128: google.cloud.compute.v1.InsertBackendServiceRequest - (*InsertCrossSiteNetworkRequest)(nil), // 1129: google.cloud.compute.v1.InsertCrossSiteNetworkRequest - (*InsertDiskRequest)(nil), // 1130: google.cloud.compute.v1.InsertDiskRequest - (*InsertExternalVpnGatewayRequest)(nil), // 1131: google.cloud.compute.v1.InsertExternalVpnGatewayRequest - (*InsertFirewallPolicyRequest)(nil), // 1132: google.cloud.compute.v1.InsertFirewallPolicyRequest - (*InsertFirewallRequest)(nil), // 1133: google.cloud.compute.v1.InsertFirewallRequest - (*InsertForwardingRuleRequest)(nil), // 1134: google.cloud.compute.v1.InsertForwardingRuleRequest - (*InsertFutureReservationRequest)(nil), // 1135: google.cloud.compute.v1.InsertFutureReservationRequest - (*InsertGlobalAddressRequest)(nil), // 1136: google.cloud.compute.v1.InsertGlobalAddressRequest - (*InsertGlobalForwardingRuleRequest)(nil), // 1137: google.cloud.compute.v1.InsertGlobalForwardingRuleRequest - (*InsertGlobalNetworkEndpointGroupRequest)(nil), // 1138: google.cloud.compute.v1.InsertGlobalNetworkEndpointGroupRequest - (*InsertGlobalPublicDelegatedPrefixeRequest)(nil), // 1139: google.cloud.compute.v1.InsertGlobalPublicDelegatedPrefixeRequest - (*InsertHealthCheckRequest)(nil), // 1140: google.cloud.compute.v1.InsertHealthCheckRequest - (*InsertImageRequest)(nil), // 1141: google.cloud.compute.v1.InsertImageRequest - (*InsertInstanceGroupManagerRequest)(nil), // 1142: google.cloud.compute.v1.InsertInstanceGroupManagerRequest - (*InsertInstanceGroupManagerResizeRequestRequest)(nil), // 1143: google.cloud.compute.v1.InsertInstanceGroupManagerResizeRequestRequest - (*InsertInstanceGroupRequest)(nil), // 1144: google.cloud.compute.v1.InsertInstanceGroupRequest - (*InsertInstanceRequest)(nil), // 1145: google.cloud.compute.v1.InsertInstanceRequest - (*InsertInstanceTemplateRequest)(nil), // 1146: google.cloud.compute.v1.InsertInstanceTemplateRequest - (*InsertInstantSnapshotRequest)(nil), // 1147: google.cloud.compute.v1.InsertInstantSnapshotRequest - (*InsertInterconnectAttachmentGroupRequest)(nil), // 1148: google.cloud.compute.v1.InsertInterconnectAttachmentGroupRequest - (*InsertInterconnectAttachmentRequest)(nil), // 1149: google.cloud.compute.v1.InsertInterconnectAttachmentRequest - (*InsertInterconnectGroupRequest)(nil), // 1150: google.cloud.compute.v1.InsertInterconnectGroupRequest - (*InsertInterconnectRequest)(nil), // 1151: google.cloud.compute.v1.InsertInterconnectRequest - (*InsertLicenseRequest)(nil), // 1152: google.cloud.compute.v1.InsertLicenseRequest - (*InsertMachineImageRequest)(nil), // 1153: google.cloud.compute.v1.InsertMachineImageRequest - (*InsertNetworkAttachmentRequest)(nil), // 1154: google.cloud.compute.v1.InsertNetworkAttachmentRequest - (*InsertNetworkEdgeSecurityServiceRequest)(nil), // 1155: google.cloud.compute.v1.InsertNetworkEdgeSecurityServiceRequest - (*InsertNetworkEndpointGroupRequest)(nil), // 1156: google.cloud.compute.v1.InsertNetworkEndpointGroupRequest - (*InsertNetworkFirewallPolicyRequest)(nil), // 1157: google.cloud.compute.v1.InsertNetworkFirewallPolicyRequest - (*InsertNetworkRequest)(nil), // 1158: google.cloud.compute.v1.InsertNetworkRequest - (*InsertNodeGroupRequest)(nil), // 1159: google.cloud.compute.v1.InsertNodeGroupRequest - (*InsertNodeTemplateRequest)(nil), // 1160: google.cloud.compute.v1.InsertNodeTemplateRequest - (*InsertOrganizationSecurityPolicyRequest)(nil), // 1161: google.cloud.compute.v1.InsertOrganizationSecurityPolicyRequest - (*InsertPacketMirroringRequest)(nil), // 1162: google.cloud.compute.v1.InsertPacketMirroringRequest - (*InsertPublicAdvertisedPrefixeRequest)(nil), // 1163: google.cloud.compute.v1.InsertPublicAdvertisedPrefixeRequest - (*InsertPublicDelegatedPrefixeRequest)(nil), // 1164: google.cloud.compute.v1.InsertPublicDelegatedPrefixeRequest - (*InsertRegionAutoscalerRequest)(nil), // 1165: google.cloud.compute.v1.InsertRegionAutoscalerRequest - (*InsertRegionBackendServiceRequest)(nil), // 1166: google.cloud.compute.v1.InsertRegionBackendServiceRequest - (*InsertRegionCommitmentRequest)(nil), // 1167: google.cloud.compute.v1.InsertRegionCommitmentRequest - (*InsertRegionCompositeHealthCheckRequest)(nil), // 1168: google.cloud.compute.v1.InsertRegionCompositeHealthCheckRequest - (*InsertRegionDiskRequest)(nil), // 1169: google.cloud.compute.v1.InsertRegionDiskRequest - (*InsertRegionHealthAggregationPolicyRequest)(nil), // 1170: google.cloud.compute.v1.InsertRegionHealthAggregationPolicyRequest - (*InsertRegionHealthCheckRequest)(nil), // 1171: google.cloud.compute.v1.InsertRegionHealthCheckRequest - (*InsertRegionHealthCheckServiceRequest)(nil), // 1172: google.cloud.compute.v1.InsertRegionHealthCheckServiceRequest - (*InsertRegionHealthSourceRequest)(nil), // 1173: google.cloud.compute.v1.InsertRegionHealthSourceRequest - (*InsertRegionInstanceGroupManagerRequest)(nil), // 1174: google.cloud.compute.v1.InsertRegionInstanceGroupManagerRequest - (*InsertRegionInstanceTemplateRequest)(nil), // 1175: google.cloud.compute.v1.InsertRegionInstanceTemplateRequest - (*InsertRegionInstantSnapshotRequest)(nil), // 1176: google.cloud.compute.v1.InsertRegionInstantSnapshotRequest - (*InsertRegionNetworkEndpointGroupRequest)(nil), // 1177: google.cloud.compute.v1.InsertRegionNetworkEndpointGroupRequest - (*InsertRegionNetworkFirewallPolicyRequest)(nil), // 1178: google.cloud.compute.v1.InsertRegionNetworkFirewallPolicyRequest - (*InsertRegionNotificationEndpointRequest)(nil), // 1179: google.cloud.compute.v1.InsertRegionNotificationEndpointRequest - (*InsertRegionSecurityPolicyRequest)(nil), // 1180: google.cloud.compute.v1.InsertRegionSecurityPolicyRequest - (*InsertRegionSslCertificateRequest)(nil), // 1181: google.cloud.compute.v1.InsertRegionSslCertificateRequest - (*InsertRegionSslPolicyRequest)(nil), // 1182: google.cloud.compute.v1.InsertRegionSslPolicyRequest - (*InsertRegionTargetHttpProxyRequest)(nil), // 1183: google.cloud.compute.v1.InsertRegionTargetHttpProxyRequest - (*InsertRegionTargetHttpsProxyRequest)(nil), // 1184: google.cloud.compute.v1.InsertRegionTargetHttpsProxyRequest - (*InsertRegionTargetTcpProxyRequest)(nil), // 1185: google.cloud.compute.v1.InsertRegionTargetTcpProxyRequest - (*InsertRegionUrlMapRequest)(nil), // 1186: google.cloud.compute.v1.InsertRegionUrlMapRequest - (*InsertReservationRequest)(nil), // 1187: google.cloud.compute.v1.InsertReservationRequest - (*InsertResourcePolicyRequest)(nil), // 1188: google.cloud.compute.v1.InsertResourcePolicyRequest - (*InsertRouteRequest)(nil), // 1189: google.cloud.compute.v1.InsertRouteRequest - (*InsertRouterRequest)(nil), // 1190: google.cloud.compute.v1.InsertRouterRequest - (*InsertSecurityPolicyRequest)(nil), // 1191: google.cloud.compute.v1.InsertSecurityPolicyRequest - (*InsertServiceAttachmentRequest)(nil), // 1192: google.cloud.compute.v1.InsertServiceAttachmentRequest - (*InsertSnapshotRequest)(nil), // 1193: google.cloud.compute.v1.InsertSnapshotRequest - (*InsertSslCertificateRequest)(nil), // 1194: google.cloud.compute.v1.InsertSslCertificateRequest - (*InsertSslPolicyRequest)(nil), // 1195: google.cloud.compute.v1.InsertSslPolicyRequest - (*InsertStoragePoolRequest)(nil), // 1196: google.cloud.compute.v1.InsertStoragePoolRequest - (*InsertSubnetworkRequest)(nil), // 1197: google.cloud.compute.v1.InsertSubnetworkRequest - (*InsertTargetGrpcProxyRequest)(nil), // 1198: google.cloud.compute.v1.InsertTargetGrpcProxyRequest - (*InsertTargetHttpProxyRequest)(nil), // 1199: google.cloud.compute.v1.InsertTargetHttpProxyRequest - (*InsertTargetHttpsProxyRequest)(nil), // 1200: google.cloud.compute.v1.InsertTargetHttpsProxyRequest - (*InsertTargetInstanceRequest)(nil), // 1201: google.cloud.compute.v1.InsertTargetInstanceRequest - (*InsertTargetPoolRequest)(nil), // 1202: google.cloud.compute.v1.InsertTargetPoolRequest - (*InsertTargetSslProxyRequest)(nil), // 1203: google.cloud.compute.v1.InsertTargetSslProxyRequest - (*InsertTargetTcpProxyRequest)(nil), // 1204: google.cloud.compute.v1.InsertTargetTcpProxyRequest - (*InsertTargetVpnGatewayRequest)(nil), // 1205: google.cloud.compute.v1.InsertTargetVpnGatewayRequest - (*InsertUrlMapRequest)(nil), // 1206: google.cloud.compute.v1.InsertUrlMapRequest - (*InsertVpnGatewayRequest)(nil), // 1207: google.cloud.compute.v1.InsertVpnGatewayRequest - (*InsertVpnTunnelRequest)(nil), // 1208: google.cloud.compute.v1.InsertVpnTunnelRequest - (*InsertWireGroupRequest)(nil), // 1209: google.cloud.compute.v1.InsertWireGroupRequest - (*Instance)(nil), // 1210: google.cloud.compute.v1.Instance - (*InstanceAggregatedList)(nil), // 1211: google.cloud.compute.v1.InstanceAggregatedList - (*InstanceConsumptionData)(nil), // 1212: google.cloud.compute.v1.InstanceConsumptionData - (*InstanceConsumptionInfo)(nil), // 1213: google.cloud.compute.v1.InstanceConsumptionInfo - (*InstanceFlexibilityPolicy)(nil), // 1214: google.cloud.compute.v1.InstanceFlexibilityPolicy - (*InstanceFlexibilityPolicyInstanceSelection)(nil), // 1215: google.cloud.compute.v1.InstanceFlexibilityPolicyInstanceSelection - (*InstanceGroup)(nil), // 1216: google.cloud.compute.v1.InstanceGroup - (*InstanceGroupAggregatedList)(nil), // 1217: google.cloud.compute.v1.InstanceGroupAggregatedList - (*InstanceGroupList)(nil), // 1218: google.cloud.compute.v1.InstanceGroupList - (*InstanceGroupManager)(nil), // 1219: google.cloud.compute.v1.InstanceGroupManager - (*InstanceGroupManagerActionsSummary)(nil), // 1220: google.cloud.compute.v1.InstanceGroupManagerActionsSummary - (*InstanceGroupManagerAggregatedList)(nil), // 1221: google.cloud.compute.v1.InstanceGroupManagerAggregatedList - (*InstanceGroupManagerAllInstancesConfig)(nil), // 1222: google.cloud.compute.v1.InstanceGroupManagerAllInstancesConfig - (*InstanceGroupManagerAutoHealingPolicy)(nil), // 1223: google.cloud.compute.v1.InstanceGroupManagerAutoHealingPolicy - (*InstanceGroupManagerInstanceFlexibilityPolicy)(nil), // 1224: google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicy - (*InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection)(nil), // 1225: google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection - (*InstanceGroupManagerInstanceLifecyclePolicy)(nil), // 1226: google.cloud.compute.v1.InstanceGroupManagerInstanceLifecyclePolicy - (*InstanceGroupManagerList)(nil), // 1227: google.cloud.compute.v1.InstanceGroupManagerList - (*InstanceGroupManagerResizeRequest)(nil), // 1228: google.cloud.compute.v1.InstanceGroupManagerResizeRequest - (*InstanceGroupManagerResizeRequestStatus)(nil), // 1229: google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatus - (*InstanceGroupManagerResizeRequestStatusLastAttempt)(nil), // 1230: google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatusLastAttempt - (*InstanceGroupManagerResizeRequestsListResponse)(nil), // 1231: google.cloud.compute.v1.InstanceGroupManagerResizeRequestsListResponse - (*InstanceGroupManagerResourcePolicies)(nil), // 1232: google.cloud.compute.v1.InstanceGroupManagerResourcePolicies - (*InstanceGroupManagerStandbyPolicy)(nil), // 1233: google.cloud.compute.v1.InstanceGroupManagerStandbyPolicy - (*InstanceGroupManagerStatus)(nil), // 1234: google.cloud.compute.v1.InstanceGroupManagerStatus - (*InstanceGroupManagerStatusAcceleratorTopology)(nil), // 1235: google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopology - (*InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails)(nil), // 1236: google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails - (*InstanceGroupManagerStatusAllInstancesConfig)(nil), // 1237: google.cloud.compute.v1.InstanceGroupManagerStatusAllInstancesConfig - (*InstanceGroupManagerStatusBulkInstanceOperation)(nil), // 1238: google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperation - (*InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck)(nil), // 1239: google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck - (*InstanceGroupManagerStatusStateful)(nil), // 1240: google.cloud.compute.v1.InstanceGroupManagerStatusStateful - (*InstanceGroupManagerStatusStatefulPerInstanceConfigs)(nil), // 1241: google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigs - (*InstanceGroupManagerStatusVersionTarget)(nil), // 1242: google.cloud.compute.v1.InstanceGroupManagerStatusVersionTarget - (*InstanceGroupManagerTargetSizePolicy)(nil), // 1243: google.cloud.compute.v1.InstanceGroupManagerTargetSizePolicy - (*InstanceGroupManagerUpdatePolicy)(nil), // 1244: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy - (*InstanceGroupManagerVersion)(nil), // 1245: google.cloud.compute.v1.InstanceGroupManagerVersion - (*InstanceGroupManagersAbandonInstancesRequest)(nil), // 1246: google.cloud.compute.v1.InstanceGroupManagersAbandonInstancesRequest - (*InstanceGroupManagersApplyUpdatesRequest)(nil), // 1247: google.cloud.compute.v1.InstanceGroupManagersApplyUpdatesRequest - (*InstanceGroupManagersCreateInstancesRequest)(nil), // 1248: google.cloud.compute.v1.InstanceGroupManagersCreateInstancesRequest - (*InstanceGroupManagersDeleteInstancesRequest)(nil), // 1249: google.cloud.compute.v1.InstanceGroupManagersDeleteInstancesRequest - (*InstanceGroupManagersDeletePerInstanceConfigsReq)(nil), // 1250: google.cloud.compute.v1.InstanceGroupManagersDeletePerInstanceConfigsReq - (*InstanceGroupManagersListErrorsResponse)(nil), // 1251: google.cloud.compute.v1.InstanceGroupManagersListErrorsResponse - (*InstanceGroupManagersListManagedInstancesResponse)(nil), // 1252: google.cloud.compute.v1.InstanceGroupManagersListManagedInstancesResponse - (*InstanceGroupManagersListPerInstanceConfigsResp)(nil), // 1253: google.cloud.compute.v1.InstanceGroupManagersListPerInstanceConfigsResp - (*InstanceGroupManagersPatchPerInstanceConfigsReq)(nil), // 1254: google.cloud.compute.v1.InstanceGroupManagersPatchPerInstanceConfigsReq - (*InstanceGroupManagersRecreateInstancesRequest)(nil), // 1255: google.cloud.compute.v1.InstanceGroupManagersRecreateInstancesRequest - (*InstanceGroupManagersResumeInstancesRequest)(nil), // 1256: google.cloud.compute.v1.InstanceGroupManagersResumeInstancesRequest - (*InstanceGroupManagersScopedList)(nil), // 1257: google.cloud.compute.v1.InstanceGroupManagersScopedList - (*InstanceGroupManagersSetInstanceTemplateRequest)(nil), // 1258: google.cloud.compute.v1.InstanceGroupManagersSetInstanceTemplateRequest - (*InstanceGroupManagersSetTargetPoolsRequest)(nil), // 1259: google.cloud.compute.v1.InstanceGroupManagersSetTargetPoolsRequest - (*InstanceGroupManagersStartInstancesRequest)(nil), // 1260: google.cloud.compute.v1.InstanceGroupManagersStartInstancesRequest - (*InstanceGroupManagersStopInstancesRequest)(nil), // 1261: google.cloud.compute.v1.InstanceGroupManagersStopInstancesRequest - (*InstanceGroupManagersSuspendInstancesRequest)(nil), // 1262: google.cloud.compute.v1.InstanceGroupManagersSuspendInstancesRequest - (*InstanceGroupManagersUpdatePerInstanceConfigsReq)(nil), // 1263: google.cloud.compute.v1.InstanceGroupManagersUpdatePerInstanceConfigsReq - (*InstanceGroupsAddInstancesRequest)(nil), // 1264: google.cloud.compute.v1.InstanceGroupsAddInstancesRequest - (*InstanceGroupsListInstances)(nil), // 1265: google.cloud.compute.v1.InstanceGroupsListInstances - (*InstanceGroupsListInstancesRequest)(nil), // 1266: google.cloud.compute.v1.InstanceGroupsListInstancesRequest - (*InstanceGroupsRemoveInstancesRequest)(nil), // 1267: google.cloud.compute.v1.InstanceGroupsRemoveInstancesRequest - (*InstanceGroupsScopedList)(nil), // 1268: google.cloud.compute.v1.InstanceGroupsScopedList - (*InstanceGroupsSetNamedPortsRequest)(nil), // 1269: google.cloud.compute.v1.InstanceGroupsSetNamedPortsRequest - (*InstanceList)(nil), // 1270: google.cloud.compute.v1.InstanceList - (*InstanceListReferrers)(nil), // 1271: google.cloud.compute.v1.InstanceListReferrers - (*InstanceManagedByIgmError)(nil), // 1272: google.cloud.compute.v1.InstanceManagedByIgmError - (*InstanceManagedByIgmErrorInstanceActionDetails)(nil), // 1273: google.cloud.compute.v1.InstanceManagedByIgmErrorInstanceActionDetails - (*InstanceManagedByIgmErrorManagedInstanceError)(nil), // 1274: google.cloud.compute.v1.InstanceManagedByIgmErrorManagedInstanceError - (*InstanceMoveRequest)(nil), // 1275: google.cloud.compute.v1.InstanceMoveRequest - (*InstanceParams)(nil), // 1276: google.cloud.compute.v1.InstanceParams - (*InstanceProperties)(nil), // 1277: google.cloud.compute.v1.InstanceProperties - (*InstancePropertiesPatch)(nil), // 1278: google.cloud.compute.v1.InstancePropertiesPatch - (*InstanceReference)(nil), // 1279: google.cloud.compute.v1.InstanceReference - (*InstanceSettings)(nil), // 1280: google.cloud.compute.v1.InstanceSettings - (*InstanceSettingsMetadata)(nil), // 1281: google.cloud.compute.v1.InstanceSettingsMetadata - (*InstanceTemplate)(nil), // 1282: google.cloud.compute.v1.InstanceTemplate - (*InstanceTemplateAggregatedList)(nil), // 1283: google.cloud.compute.v1.InstanceTemplateAggregatedList - (*InstanceTemplateList)(nil), // 1284: google.cloud.compute.v1.InstanceTemplateList - (*InstanceTemplatesScopedList)(nil), // 1285: google.cloud.compute.v1.InstanceTemplatesScopedList - (*InstanceWithNamedPorts)(nil), // 1286: google.cloud.compute.v1.InstanceWithNamedPorts - (*InstancesAddResourcePoliciesRequest)(nil), // 1287: google.cloud.compute.v1.InstancesAddResourcePoliciesRequest - (*InstancesBulkInsertOperationMetadata)(nil), // 1288: google.cloud.compute.v1.InstancesBulkInsertOperationMetadata - (*InstancesGetEffectiveFirewallsResponse)(nil), // 1289: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponse - (*InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy)(nil), // 1290: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy - (*InstancesRemoveResourcePoliciesRequest)(nil), // 1291: google.cloud.compute.v1.InstancesRemoveResourcePoliciesRequest - (*InstancesReportHostAsFaultyRequest)(nil), // 1292: google.cloud.compute.v1.InstancesReportHostAsFaultyRequest - (*InstancesReportHostAsFaultyRequestFaultReason)(nil), // 1293: google.cloud.compute.v1.InstancesReportHostAsFaultyRequestFaultReason - (*InstancesScopedList)(nil), // 1294: google.cloud.compute.v1.InstancesScopedList - (*InstancesSetLabelsRequest)(nil), // 1295: google.cloud.compute.v1.InstancesSetLabelsRequest - (*InstancesSetMachineResourcesRequest)(nil), // 1296: google.cloud.compute.v1.InstancesSetMachineResourcesRequest - (*InstancesSetMachineTypeRequest)(nil), // 1297: google.cloud.compute.v1.InstancesSetMachineTypeRequest - (*InstancesSetMinCpuPlatformRequest)(nil), // 1298: google.cloud.compute.v1.InstancesSetMinCpuPlatformRequest - (*InstancesSetNameRequest)(nil), // 1299: google.cloud.compute.v1.InstancesSetNameRequest - (*InstancesSetSecurityPolicyRequest)(nil), // 1300: google.cloud.compute.v1.InstancesSetSecurityPolicyRequest - (*InstancesSetServiceAccountRequest)(nil), // 1301: google.cloud.compute.v1.InstancesSetServiceAccountRequest - (*InstancesStartWithEncryptionKeyRequest)(nil), // 1302: google.cloud.compute.v1.InstancesStartWithEncryptionKeyRequest - (*InstantSnapshot)(nil), // 1303: google.cloud.compute.v1.InstantSnapshot - (*InstantSnapshotAggregatedList)(nil), // 1304: google.cloud.compute.v1.InstantSnapshotAggregatedList - (*InstantSnapshotList)(nil), // 1305: google.cloud.compute.v1.InstantSnapshotList - (*InstantSnapshotParams)(nil), // 1306: google.cloud.compute.v1.InstantSnapshotParams - (*InstantSnapshotResourceStatus)(nil), // 1307: google.cloud.compute.v1.InstantSnapshotResourceStatus - (*InstantSnapshotsScopedList)(nil), // 1308: google.cloud.compute.v1.InstantSnapshotsScopedList - (*Int64RangeMatch)(nil), // 1309: google.cloud.compute.v1.Int64RangeMatch - (*Interconnect)(nil), // 1310: google.cloud.compute.v1.Interconnect - (*InterconnectApplicationAwareInterconnect)(nil), // 1311: google.cloud.compute.v1.InterconnectApplicationAwareInterconnect - (*InterconnectApplicationAwareInterconnectBandwidthPercentage)(nil), // 1312: google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentage - (*InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy)(nil), // 1313: google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy - (*InterconnectApplicationAwareInterconnectStrictPriorityPolicy)(nil), // 1314: google.cloud.compute.v1.InterconnectApplicationAwareInterconnectStrictPriorityPolicy - (*InterconnectAttachment)(nil), // 1315: google.cloud.compute.v1.InterconnectAttachment - (*InterconnectAttachmentAggregatedList)(nil), // 1316: google.cloud.compute.v1.InterconnectAttachmentAggregatedList - (*InterconnectAttachmentConfigurationConstraints)(nil), // 1317: google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints - (*InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange)(nil), // 1318: google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange - (*InterconnectAttachmentGroup)(nil), // 1319: google.cloud.compute.v1.InterconnectAttachmentGroup - (*InterconnectAttachmentGroupAttachment)(nil), // 1320: google.cloud.compute.v1.InterconnectAttachmentGroupAttachment - (*InterconnectAttachmentGroupConfigured)(nil), // 1321: google.cloud.compute.v1.InterconnectAttachmentGroupConfigured - (*InterconnectAttachmentGroupConfiguredAvailabilitySLA)(nil), // 1322: google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLA - (*InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers)(nil), // 1323: google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers - (*InterconnectAttachmentGroupIntent)(nil), // 1324: google.cloud.compute.v1.InterconnectAttachmentGroupIntent - (*InterconnectAttachmentGroupLogicalStructure)(nil), // 1325: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructure - (*InterconnectAttachmentGroupLogicalStructureRegion)(nil), // 1326: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegion - (*InterconnectAttachmentGroupLogicalStructureRegionMetro)(nil), // 1327: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetro - (*InterconnectAttachmentGroupLogicalStructureRegionMetroFacility)(nil), // 1328: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetroFacility - (*InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone)(nil), // 1329: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone - (*InterconnectAttachmentGroupsGetOperationalStatusResponse)(nil), // 1330: google.cloud.compute.v1.InterconnectAttachmentGroupsGetOperationalStatusResponse - (*InterconnectAttachmentGroupsListResponse)(nil), // 1331: google.cloud.compute.v1.InterconnectAttachmentGroupsListResponse - (*InterconnectAttachmentGroupsOperationalStatus)(nil), // 1332: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus - (*InterconnectAttachmentGroupsOperationalStatusAttachmentStatus)(nil), // 1333: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatusAttachmentStatus - (*InterconnectAttachmentL2Forwarding)(nil), // 1334: google.cloud.compute.v1.InterconnectAttachmentL2Forwarding - (*InterconnectAttachmentL2ForwardingApplianceMapping)(nil), // 1335: google.cloud.compute.v1.InterconnectAttachmentL2ForwardingApplianceMapping - (*InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMapping)(nil), // 1336: google.cloud.compute.v1.InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMapping - (*InterconnectAttachmentL2ForwardingGeneveHeader)(nil), // 1337: google.cloud.compute.v1.InterconnectAttachmentL2ForwardingGeneveHeader - (*InterconnectAttachmentList)(nil), // 1338: google.cloud.compute.v1.InterconnectAttachmentList - (*InterconnectAttachmentParams)(nil), // 1339: google.cloud.compute.v1.InterconnectAttachmentParams - (*InterconnectAttachmentPartnerMetadata)(nil), // 1340: google.cloud.compute.v1.InterconnectAttachmentPartnerMetadata - (*InterconnectAttachmentPrivateInfo)(nil), // 1341: google.cloud.compute.v1.InterconnectAttachmentPrivateInfo - (*InterconnectAttachmentsScopedList)(nil), // 1342: google.cloud.compute.v1.InterconnectAttachmentsScopedList - (*InterconnectCircuitInfo)(nil), // 1343: google.cloud.compute.v1.InterconnectCircuitInfo - (*InterconnectDiagnostics)(nil), // 1344: google.cloud.compute.v1.InterconnectDiagnostics - (*InterconnectDiagnosticsARPEntry)(nil), // 1345: google.cloud.compute.v1.InterconnectDiagnosticsARPEntry - (*InterconnectDiagnosticsLinkLACPStatus)(nil), // 1346: google.cloud.compute.v1.InterconnectDiagnosticsLinkLACPStatus - (*InterconnectDiagnosticsLinkOpticalPower)(nil), // 1347: google.cloud.compute.v1.InterconnectDiagnosticsLinkOpticalPower - (*InterconnectDiagnosticsLinkStatus)(nil), // 1348: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus - (*InterconnectDiagnosticsMacsecStatus)(nil), // 1349: google.cloud.compute.v1.InterconnectDiagnosticsMacsecStatus - (*InterconnectGroup)(nil), // 1350: google.cloud.compute.v1.InterconnectGroup - (*InterconnectGroupConfigured)(nil), // 1351: google.cloud.compute.v1.InterconnectGroupConfigured - (*InterconnectGroupConfiguredTopologyCapability)(nil), // 1352: google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapability - (*InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers)(nil), // 1353: google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers - (*InterconnectGroupIntent)(nil), // 1354: google.cloud.compute.v1.InterconnectGroupIntent - (*InterconnectGroupInterconnect)(nil), // 1355: google.cloud.compute.v1.InterconnectGroupInterconnect - (*InterconnectGroupPhysicalStructure)(nil), // 1356: google.cloud.compute.v1.InterconnectGroupPhysicalStructure - (*InterconnectGroupPhysicalStructureMetros)(nil), // 1357: google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetros - (*InterconnectGroupPhysicalStructureMetrosFacilities)(nil), // 1358: google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetrosFacilities - (*InterconnectGroupPhysicalStructureMetrosFacilitiesZones)(nil), // 1359: google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetrosFacilitiesZones - (*InterconnectGroupsCreateMembers)(nil), // 1360: google.cloud.compute.v1.InterconnectGroupsCreateMembers - (*InterconnectGroupsCreateMembersInterconnectInput)(nil), // 1361: google.cloud.compute.v1.InterconnectGroupsCreateMembersInterconnectInput - (*InterconnectGroupsCreateMembersRequest)(nil), // 1362: google.cloud.compute.v1.InterconnectGroupsCreateMembersRequest - (*InterconnectGroupsGetOperationalStatusResponse)(nil), // 1363: google.cloud.compute.v1.InterconnectGroupsGetOperationalStatusResponse - (*InterconnectGroupsListResponse)(nil), // 1364: google.cloud.compute.v1.InterconnectGroupsListResponse - (*InterconnectGroupsOperationalStatus)(nil), // 1365: google.cloud.compute.v1.InterconnectGroupsOperationalStatus - (*InterconnectGroupsOperationalStatusInterconnectStatus)(nil), // 1366: google.cloud.compute.v1.InterconnectGroupsOperationalStatusInterconnectStatus - (*InterconnectList)(nil), // 1367: google.cloud.compute.v1.InterconnectList - (*InterconnectLocation)(nil), // 1368: google.cloud.compute.v1.InterconnectLocation - (*InterconnectLocationCrossSiteInterconnectInfo)(nil), // 1369: google.cloud.compute.v1.InterconnectLocationCrossSiteInterconnectInfo - (*InterconnectLocationList)(nil), // 1370: google.cloud.compute.v1.InterconnectLocationList - (*InterconnectLocationRegionInfo)(nil), // 1371: google.cloud.compute.v1.InterconnectLocationRegionInfo - (*InterconnectMacsec)(nil), // 1372: google.cloud.compute.v1.InterconnectMacsec - (*InterconnectMacsecConfig)(nil), // 1373: google.cloud.compute.v1.InterconnectMacsecConfig - (*InterconnectMacsecConfigPreSharedKey)(nil), // 1374: google.cloud.compute.v1.InterconnectMacsecConfigPreSharedKey - (*InterconnectMacsecPreSharedKey)(nil), // 1375: google.cloud.compute.v1.InterconnectMacsecPreSharedKey - (*InterconnectOutageNotification)(nil), // 1376: google.cloud.compute.v1.InterconnectOutageNotification - (*InterconnectParams)(nil), // 1377: google.cloud.compute.v1.InterconnectParams - (*InterconnectRemoteLocation)(nil), // 1378: google.cloud.compute.v1.InterconnectRemoteLocation - (*InterconnectRemoteLocationConstraints)(nil), // 1379: google.cloud.compute.v1.InterconnectRemoteLocationConstraints - (*InterconnectRemoteLocationConstraintsSubnetLengthRange)(nil), // 1380: google.cloud.compute.v1.InterconnectRemoteLocationConstraintsSubnetLengthRange - (*InterconnectRemoteLocationList)(nil), // 1381: google.cloud.compute.v1.InterconnectRemoteLocationList - (*InterconnectRemoteLocationPermittedConnections)(nil), // 1382: google.cloud.compute.v1.InterconnectRemoteLocationPermittedConnections - (*InterconnectsGetDiagnosticsResponse)(nil), // 1383: google.cloud.compute.v1.InterconnectsGetDiagnosticsResponse - (*InterconnectsGetMacsecConfigResponse)(nil), // 1384: google.cloud.compute.v1.InterconnectsGetMacsecConfigResponse - (*InvalidateCacheUrlMapRequest)(nil), // 1385: google.cloud.compute.v1.InvalidateCacheUrlMapRequest - (*Items)(nil), // 1386: google.cloud.compute.v1.Items - (*License)(nil), // 1387: google.cloud.compute.v1.License - (*LicenseCode)(nil), // 1388: google.cloud.compute.v1.LicenseCode - (*LicenseCodeLicenseAlias)(nil), // 1389: google.cloud.compute.v1.LicenseCodeLicenseAlias - (*LicenseParams)(nil), // 1390: google.cloud.compute.v1.LicenseParams - (*LicenseResourceCommitment)(nil), // 1391: google.cloud.compute.v1.LicenseResourceCommitment - (*LicenseResourceRequirements)(nil), // 1392: google.cloud.compute.v1.LicenseResourceRequirements - (*LicensesListResponse)(nil), // 1393: google.cloud.compute.v1.LicensesListResponse - (*ListAcceleratorTypesRequest)(nil), // 1394: google.cloud.compute.v1.ListAcceleratorTypesRequest - (*ListAddressesRequest)(nil), // 1395: google.cloud.compute.v1.ListAddressesRequest - (*ListAssociationsFirewallPolicyRequest)(nil), // 1396: google.cloud.compute.v1.ListAssociationsFirewallPolicyRequest - (*ListAssociationsOrganizationSecurityPolicyRequest)(nil), // 1397: google.cloud.compute.v1.ListAssociationsOrganizationSecurityPolicyRequest - (*ListAutoscalersRequest)(nil), // 1398: google.cloud.compute.v1.ListAutoscalersRequest - (*ListAvailableFeaturesRegionSslPoliciesRequest)(nil), // 1399: google.cloud.compute.v1.ListAvailableFeaturesRegionSslPoliciesRequest - (*ListAvailableFeaturesSslPoliciesRequest)(nil), // 1400: google.cloud.compute.v1.ListAvailableFeaturesSslPoliciesRequest - (*ListBackendBucketsRequest)(nil), // 1401: google.cloud.compute.v1.ListBackendBucketsRequest - (*ListBackendServicesRequest)(nil), // 1402: google.cloud.compute.v1.ListBackendServicesRequest - (*ListBgpRoutesRoutersRequest)(nil), // 1403: google.cloud.compute.v1.ListBgpRoutesRoutersRequest - (*ListCrossSiteNetworksRequest)(nil), // 1404: google.cloud.compute.v1.ListCrossSiteNetworksRequest - (*ListDiskTypesRequest)(nil), // 1405: google.cloud.compute.v1.ListDiskTypesRequest - (*ListDisksRequest)(nil), // 1406: google.cloud.compute.v1.ListDisksRequest - (*ListDisksStoragePoolsRequest)(nil), // 1407: google.cloud.compute.v1.ListDisksStoragePoolsRequest - (*ListErrorsInstanceGroupManagersRequest)(nil), // 1408: google.cloud.compute.v1.ListErrorsInstanceGroupManagersRequest - (*ListErrorsRegionInstanceGroupManagersRequest)(nil), // 1409: google.cloud.compute.v1.ListErrorsRegionInstanceGroupManagersRequest - (*ListExternalVpnGatewaysRequest)(nil), // 1410: google.cloud.compute.v1.ListExternalVpnGatewaysRequest - (*ListFirewallPoliciesRequest)(nil), // 1411: google.cloud.compute.v1.ListFirewallPoliciesRequest - (*ListFirewallsRequest)(nil), // 1412: google.cloud.compute.v1.ListFirewallsRequest - (*ListForwardingRulesRequest)(nil), // 1413: google.cloud.compute.v1.ListForwardingRulesRequest - (*ListFutureReservationsRequest)(nil), // 1414: google.cloud.compute.v1.ListFutureReservationsRequest - (*ListGlobalAddressesRequest)(nil), // 1415: google.cloud.compute.v1.ListGlobalAddressesRequest - (*ListGlobalForwardingRulesRequest)(nil), // 1416: google.cloud.compute.v1.ListGlobalForwardingRulesRequest - (*ListGlobalNetworkEndpointGroupsRequest)(nil), // 1417: google.cloud.compute.v1.ListGlobalNetworkEndpointGroupsRequest - (*ListGlobalOperationsRequest)(nil), // 1418: google.cloud.compute.v1.ListGlobalOperationsRequest - (*ListGlobalOrganizationOperationsRequest)(nil), // 1419: google.cloud.compute.v1.ListGlobalOrganizationOperationsRequest - (*ListGlobalPublicDelegatedPrefixesRequest)(nil), // 1420: google.cloud.compute.v1.ListGlobalPublicDelegatedPrefixesRequest - (*ListHealthChecksRequest)(nil), // 1421: google.cloud.compute.v1.ListHealthChecksRequest - (*ListImagesRequest)(nil), // 1422: google.cloud.compute.v1.ListImagesRequest - (*ListInstanceGroupManagerResizeRequestsRequest)(nil), // 1423: google.cloud.compute.v1.ListInstanceGroupManagerResizeRequestsRequest - (*ListInstanceGroupManagersRequest)(nil), // 1424: google.cloud.compute.v1.ListInstanceGroupManagersRequest - (*ListInstanceGroupsRequest)(nil), // 1425: google.cloud.compute.v1.ListInstanceGroupsRequest - (*ListInstanceTemplatesRequest)(nil), // 1426: google.cloud.compute.v1.ListInstanceTemplatesRequest - (*ListInstancesInstanceGroupsRequest)(nil), // 1427: google.cloud.compute.v1.ListInstancesInstanceGroupsRequest - (*ListInstancesRegionInstanceGroupsRequest)(nil), // 1428: google.cloud.compute.v1.ListInstancesRegionInstanceGroupsRequest - (*ListInstancesRequest)(nil), // 1429: google.cloud.compute.v1.ListInstancesRequest - (*ListInstantSnapshotsRequest)(nil), // 1430: google.cloud.compute.v1.ListInstantSnapshotsRequest - (*ListInterconnectAttachmentGroupsRequest)(nil), // 1431: google.cloud.compute.v1.ListInterconnectAttachmentGroupsRequest - (*ListInterconnectAttachmentsRequest)(nil), // 1432: google.cloud.compute.v1.ListInterconnectAttachmentsRequest - (*ListInterconnectGroupsRequest)(nil), // 1433: google.cloud.compute.v1.ListInterconnectGroupsRequest - (*ListInterconnectLocationsRequest)(nil), // 1434: google.cloud.compute.v1.ListInterconnectLocationsRequest - (*ListInterconnectRemoteLocationsRequest)(nil), // 1435: google.cloud.compute.v1.ListInterconnectRemoteLocationsRequest - (*ListInterconnectsRequest)(nil), // 1436: google.cloud.compute.v1.ListInterconnectsRequest - (*ListLicensesRequest)(nil), // 1437: google.cloud.compute.v1.ListLicensesRequest - (*ListMachineImagesRequest)(nil), // 1438: google.cloud.compute.v1.ListMachineImagesRequest - (*ListMachineTypesRequest)(nil), // 1439: google.cloud.compute.v1.ListMachineTypesRequest - (*ListManagedInstancesInstanceGroupManagersRequest)(nil), // 1440: google.cloud.compute.v1.ListManagedInstancesInstanceGroupManagersRequest - (*ListManagedInstancesRegionInstanceGroupManagersRequest)(nil), // 1441: google.cloud.compute.v1.ListManagedInstancesRegionInstanceGroupManagersRequest - (*ListNetworkAttachmentsRequest)(nil), // 1442: google.cloud.compute.v1.ListNetworkAttachmentsRequest - (*ListNetworkEndpointGroupsRequest)(nil), // 1443: google.cloud.compute.v1.ListNetworkEndpointGroupsRequest - (*ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest)(nil), // 1444: google.cloud.compute.v1.ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest - (*ListNetworkEndpointsNetworkEndpointGroupsRequest)(nil), // 1445: google.cloud.compute.v1.ListNetworkEndpointsNetworkEndpointGroupsRequest - (*ListNetworkEndpointsRegionNetworkEndpointGroupsRequest)(nil), // 1446: google.cloud.compute.v1.ListNetworkEndpointsRegionNetworkEndpointGroupsRequest - (*ListNetworkFirewallPoliciesRequest)(nil), // 1447: google.cloud.compute.v1.ListNetworkFirewallPoliciesRequest - (*ListNetworkProfilesRequest)(nil), // 1448: google.cloud.compute.v1.ListNetworkProfilesRequest - (*ListNetworksRequest)(nil), // 1449: google.cloud.compute.v1.ListNetworksRequest - (*ListNodeGroupsRequest)(nil), // 1450: google.cloud.compute.v1.ListNodeGroupsRequest - (*ListNodeTemplatesRequest)(nil), // 1451: google.cloud.compute.v1.ListNodeTemplatesRequest - (*ListNodeTypesRequest)(nil), // 1452: google.cloud.compute.v1.ListNodeTypesRequest - (*ListNodesNodeGroupsRequest)(nil), // 1453: google.cloud.compute.v1.ListNodesNodeGroupsRequest - (*ListOrganizationSecurityPoliciesRequest)(nil), // 1454: google.cloud.compute.v1.ListOrganizationSecurityPoliciesRequest - (*ListPacketMirroringsRequest)(nil), // 1455: google.cloud.compute.v1.ListPacketMirroringsRequest - (*ListPeeringRoutesNetworksRequest)(nil), // 1456: google.cloud.compute.v1.ListPeeringRoutesNetworksRequest - (*ListPerInstanceConfigsInstanceGroupManagersRequest)(nil), // 1457: google.cloud.compute.v1.ListPerInstanceConfigsInstanceGroupManagersRequest - (*ListPerInstanceConfigsRegionInstanceGroupManagersRequest)(nil), // 1458: google.cloud.compute.v1.ListPerInstanceConfigsRegionInstanceGroupManagersRequest - (*ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest)(nil), // 1459: google.cloud.compute.v1.ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest - (*ListPreconfiguredExpressionSetsSecurityPoliciesRequest)(nil), // 1460: google.cloud.compute.v1.ListPreconfiguredExpressionSetsSecurityPoliciesRequest - (*ListPreviewFeaturesRequest)(nil), // 1461: google.cloud.compute.v1.ListPreviewFeaturesRequest - (*ListPublicAdvertisedPrefixesRequest)(nil), // 1462: google.cloud.compute.v1.ListPublicAdvertisedPrefixesRequest - (*ListPublicDelegatedPrefixesRequest)(nil), // 1463: google.cloud.compute.v1.ListPublicDelegatedPrefixesRequest - (*ListReferrersInstancesRequest)(nil), // 1464: google.cloud.compute.v1.ListReferrersInstancesRequest - (*ListRegionAutoscalersRequest)(nil), // 1465: google.cloud.compute.v1.ListRegionAutoscalersRequest - (*ListRegionBackendServicesRequest)(nil), // 1466: google.cloud.compute.v1.ListRegionBackendServicesRequest - (*ListRegionCommitmentsRequest)(nil), // 1467: google.cloud.compute.v1.ListRegionCommitmentsRequest - (*ListRegionCompositeHealthChecksRequest)(nil), // 1468: google.cloud.compute.v1.ListRegionCompositeHealthChecksRequest - (*ListRegionDiskTypesRequest)(nil), // 1469: google.cloud.compute.v1.ListRegionDiskTypesRequest - (*ListRegionDisksRequest)(nil), // 1470: google.cloud.compute.v1.ListRegionDisksRequest - (*ListRegionHealthAggregationPoliciesRequest)(nil), // 1471: google.cloud.compute.v1.ListRegionHealthAggregationPoliciesRequest - (*ListRegionHealthCheckServicesRequest)(nil), // 1472: google.cloud.compute.v1.ListRegionHealthCheckServicesRequest - (*ListRegionHealthChecksRequest)(nil), // 1473: google.cloud.compute.v1.ListRegionHealthChecksRequest - (*ListRegionHealthSourcesRequest)(nil), // 1474: google.cloud.compute.v1.ListRegionHealthSourcesRequest - (*ListRegionInstanceGroupManagersRequest)(nil), // 1475: google.cloud.compute.v1.ListRegionInstanceGroupManagersRequest - (*ListRegionInstanceGroupsRequest)(nil), // 1476: google.cloud.compute.v1.ListRegionInstanceGroupsRequest - (*ListRegionInstanceTemplatesRequest)(nil), // 1477: google.cloud.compute.v1.ListRegionInstanceTemplatesRequest - (*ListRegionInstantSnapshotsRequest)(nil), // 1478: google.cloud.compute.v1.ListRegionInstantSnapshotsRequest - (*ListRegionNetworkEndpointGroupsRequest)(nil), // 1479: google.cloud.compute.v1.ListRegionNetworkEndpointGroupsRequest - (*ListRegionNetworkFirewallPoliciesRequest)(nil), // 1480: google.cloud.compute.v1.ListRegionNetworkFirewallPoliciesRequest - (*ListRegionNotificationEndpointsRequest)(nil), // 1481: google.cloud.compute.v1.ListRegionNotificationEndpointsRequest - (*ListRegionOperationsRequest)(nil), // 1482: google.cloud.compute.v1.ListRegionOperationsRequest - (*ListRegionSecurityPoliciesRequest)(nil), // 1483: google.cloud.compute.v1.ListRegionSecurityPoliciesRequest - (*ListRegionSslCertificatesRequest)(nil), // 1484: google.cloud.compute.v1.ListRegionSslCertificatesRequest - (*ListRegionSslPoliciesRequest)(nil), // 1485: google.cloud.compute.v1.ListRegionSslPoliciesRequest - (*ListRegionTargetHttpProxiesRequest)(nil), // 1486: google.cloud.compute.v1.ListRegionTargetHttpProxiesRequest - (*ListRegionTargetHttpsProxiesRequest)(nil), // 1487: google.cloud.compute.v1.ListRegionTargetHttpsProxiesRequest - (*ListRegionTargetTcpProxiesRequest)(nil), // 1488: google.cloud.compute.v1.ListRegionTargetTcpProxiesRequest - (*ListRegionUrlMapsRequest)(nil), // 1489: google.cloud.compute.v1.ListRegionUrlMapsRequest - (*ListRegionZonesRequest)(nil), // 1490: google.cloud.compute.v1.ListRegionZonesRequest - (*ListRegionsRequest)(nil), // 1491: google.cloud.compute.v1.ListRegionsRequest - (*ListReservationBlocksRequest)(nil), // 1492: google.cloud.compute.v1.ListReservationBlocksRequest - (*ListReservationSlotsRequest)(nil), // 1493: google.cloud.compute.v1.ListReservationSlotsRequest - (*ListReservationSubBlocksRequest)(nil), // 1494: google.cloud.compute.v1.ListReservationSubBlocksRequest - (*ListReservationsRequest)(nil), // 1495: google.cloud.compute.v1.ListReservationsRequest - (*ListResourcePoliciesRequest)(nil), // 1496: google.cloud.compute.v1.ListResourcePoliciesRequest - (*ListRoutePoliciesRoutersRequest)(nil), // 1497: google.cloud.compute.v1.ListRoutePoliciesRoutersRequest - (*ListRoutersRequest)(nil), // 1498: google.cloud.compute.v1.ListRoutersRequest - (*ListRoutesRequest)(nil), // 1499: google.cloud.compute.v1.ListRoutesRequest - (*ListSecurityPoliciesRequest)(nil), // 1500: google.cloud.compute.v1.ListSecurityPoliciesRequest - (*ListServiceAttachmentsRequest)(nil), // 1501: google.cloud.compute.v1.ListServiceAttachmentsRequest - (*ListSnapshotsRequest)(nil), // 1502: google.cloud.compute.v1.ListSnapshotsRequest - (*ListSslCertificatesRequest)(nil), // 1503: google.cloud.compute.v1.ListSslCertificatesRequest - (*ListSslPoliciesRequest)(nil), // 1504: google.cloud.compute.v1.ListSslPoliciesRequest - (*ListStoragePoolTypesRequest)(nil), // 1505: google.cloud.compute.v1.ListStoragePoolTypesRequest - (*ListStoragePoolsRequest)(nil), // 1506: google.cloud.compute.v1.ListStoragePoolsRequest - (*ListSubnetworksRequest)(nil), // 1507: google.cloud.compute.v1.ListSubnetworksRequest - (*ListTargetGrpcProxiesRequest)(nil), // 1508: google.cloud.compute.v1.ListTargetGrpcProxiesRequest - (*ListTargetHttpProxiesRequest)(nil), // 1509: google.cloud.compute.v1.ListTargetHttpProxiesRequest - (*ListTargetHttpsProxiesRequest)(nil), // 1510: google.cloud.compute.v1.ListTargetHttpsProxiesRequest - (*ListTargetInstancesRequest)(nil), // 1511: google.cloud.compute.v1.ListTargetInstancesRequest - (*ListTargetPoolsRequest)(nil), // 1512: google.cloud.compute.v1.ListTargetPoolsRequest - (*ListTargetSslProxiesRequest)(nil), // 1513: google.cloud.compute.v1.ListTargetSslProxiesRequest - (*ListTargetTcpProxiesRequest)(nil), // 1514: google.cloud.compute.v1.ListTargetTcpProxiesRequest - (*ListTargetVpnGatewaysRequest)(nil), // 1515: google.cloud.compute.v1.ListTargetVpnGatewaysRequest - (*ListUrlMapsRequest)(nil), // 1516: google.cloud.compute.v1.ListUrlMapsRequest - (*ListUsableBackendServicesRequest)(nil), // 1517: google.cloud.compute.v1.ListUsableBackendServicesRequest - (*ListUsableRegionBackendServicesRequest)(nil), // 1518: google.cloud.compute.v1.ListUsableRegionBackendServicesRequest - (*ListUsableSubnetworksRequest)(nil), // 1519: google.cloud.compute.v1.ListUsableSubnetworksRequest - (*ListVpnGatewaysRequest)(nil), // 1520: google.cloud.compute.v1.ListVpnGatewaysRequest - (*ListVpnTunnelsRequest)(nil), // 1521: google.cloud.compute.v1.ListVpnTunnelsRequest - (*ListWireGroupsRequest)(nil), // 1522: google.cloud.compute.v1.ListWireGroupsRequest - (*ListXpnHostsProjectsRequest)(nil), // 1523: google.cloud.compute.v1.ListXpnHostsProjectsRequest - (*ListZoneOperationsRequest)(nil), // 1524: google.cloud.compute.v1.ListZoneOperationsRequest - (*ListZonesRequest)(nil), // 1525: google.cloud.compute.v1.ListZonesRequest - (*LocalDisk)(nil), // 1526: google.cloud.compute.v1.LocalDisk - (*LocalizedMessage)(nil), // 1527: google.cloud.compute.v1.LocalizedMessage - (*LocationPolicy)(nil), // 1528: google.cloud.compute.v1.LocationPolicy - (*LocationPolicyLocation)(nil), // 1529: google.cloud.compute.v1.LocationPolicyLocation - (*LocationPolicyLocationConstraints)(nil), // 1530: google.cloud.compute.v1.LocationPolicyLocationConstraints - (*LocationPolicyZoneConfiguration)(nil), // 1531: google.cloud.compute.v1.LocationPolicyZoneConfiguration - (*MachineImage)(nil), // 1532: google.cloud.compute.v1.MachineImage - (*MachineImageList)(nil), // 1533: google.cloud.compute.v1.MachineImageList - (*MachineImageParams)(nil), // 1534: google.cloud.compute.v1.MachineImageParams - (*MachineType)(nil), // 1535: google.cloud.compute.v1.MachineType - (*MachineTypeAggregatedList)(nil), // 1536: google.cloud.compute.v1.MachineTypeAggregatedList - (*MachineTypeList)(nil), // 1537: google.cloud.compute.v1.MachineTypeList - (*MachineTypesScopedList)(nil), // 1538: google.cloud.compute.v1.MachineTypesScopedList - (*ManagedInstance)(nil), // 1539: google.cloud.compute.v1.ManagedInstance - (*ManagedInstanceInstanceHealth)(nil), // 1540: google.cloud.compute.v1.ManagedInstanceInstanceHealth - (*ManagedInstanceLastAttempt)(nil), // 1541: google.cloud.compute.v1.ManagedInstanceLastAttempt - (*ManagedInstanceLastAttemptErrors)(nil), // 1542: google.cloud.compute.v1.ManagedInstanceLastAttemptErrors - (*ManagedInstancePropertiesFromFlexibilityPolicy)(nil), // 1543: google.cloud.compute.v1.ManagedInstancePropertiesFromFlexibilityPolicy - (*ManagedInstanceVersion)(nil), // 1544: google.cloud.compute.v1.ManagedInstanceVersion - (*Metadata)(nil), // 1545: google.cloud.compute.v1.Metadata - (*MetadataFilter)(nil), // 1546: google.cloud.compute.v1.MetadataFilter - (*MetadataFilterLabelMatch)(nil), // 1547: google.cloud.compute.v1.MetadataFilterLabelMatch - (*MoveAddressRequest)(nil), // 1548: google.cloud.compute.v1.MoveAddressRequest - (*MoveDiskProjectRequest)(nil), // 1549: google.cloud.compute.v1.MoveDiskProjectRequest - (*MoveFirewallPolicyRequest)(nil), // 1550: google.cloud.compute.v1.MoveFirewallPolicyRequest - (*MoveGlobalAddressRequest)(nil), // 1551: google.cloud.compute.v1.MoveGlobalAddressRequest - (*MoveInstanceProjectRequest)(nil), // 1552: google.cloud.compute.v1.MoveInstanceProjectRequest - (*MoveOrganizationSecurityPolicyRequest)(nil), // 1553: google.cloud.compute.v1.MoveOrganizationSecurityPolicyRequest - (*NamedPort)(nil), // 1554: google.cloud.compute.v1.NamedPort - (*NatIpInfo)(nil), // 1555: google.cloud.compute.v1.NatIpInfo - (*NatIpInfoNatIpInfoMapping)(nil), // 1556: google.cloud.compute.v1.NatIpInfoNatIpInfoMapping - (*NatIpInfoResponse)(nil), // 1557: google.cloud.compute.v1.NatIpInfoResponse - (*Network)(nil), // 1558: google.cloud.compute.v1.Network - (*NetworkAttachment)(nil), // 1559: google.cloud.compute.v1.NetworkAttachment - (*NetworkAttachmentAggregatedList)(nil), // 1560: google.cloud.compute.v1.NetworkAttachmentAggregatedList - (*NetworkAttachmentConnectedEndpoint)(nil), // 1561: google.cloud.compute.v1.NetworkAttachmentConnectedEndpoint - (*NetworkAttachmentList)(nil), // 1562: google.cloud.compute.v1.NetworkAttachmentList - (*NetworkAttachmentsScopedList)(nil), // 1563: google.cloud.compute.v1.NetworkAttachmentsScopedList - (*NetworkEdgeSecurityService)(nil), // 1564: google.cloud.compute.v1.NetworkEdgeSecurityService - (*NetworkEdgeSecurityServiceAggregatedList)(nil), // 1565: google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList - (*NetworkEdgeSecurityServicesScopedList)(nil), // 1566: google.cloud.compute.v1.NetworkEdgeSecurityServicesScopedList - (*NetworkEndpoint)(nil), // 1567: google.cloud.compute.v1.NetworkEndpoint - (*NetworkEndpointGroup)(nil), // 1568: google.cloud.compute.v1.NetworkEndpointGroup - (*NetworkEndpointGroupAggregatedList)(nil), // 1569: google.cloud.compute.v1.NetworkEndpointGroupAggregatedList - (*NetworkEndpointGroupAppEngine)(nil), // 1570: google.cloud.compute.v1.NetworkEndpointGroupAppEngine - (*NetworkEndpointGroupCloudFunction)(nil), // 1571: google.cloud.compute.v1.NetworkEndpointGroupCloudFunction - (*NetworkEndpointGroupCloudRun)(nil), // 1572: google.cloud.compute.v1.NetworkEndpointGroupCloudRun - (*NetworkEndpointGroupList)(nil), // 1573: google.cloud.compute.v1.NetworkEndpointGroupList - (*NetworkEndpointGroupPscData)(nil), // 1574: google.cloud.compute.v1.NetworkEndpointGroupPscData - (*NetworkEndpointGroupsAttachEndpointsRequest)(nil), // 1575: google.cloud.compute.v1.NetworkEndpointGroupsAttachEndpointsRequest - (*NetworkEndpointGroupsDetachEndpointsRequest)(nil), // 1576: google.cloud.compute.v1.NetworkEndpointGroupsDetachEndpointsRequest - (*NetworkEndpointGroupsListEndpointsRequest)(nil), // 1577: google.cloud.compute.v1.NetworkEndpointGroupsListEndpointsRequest - (*NetworkEndpointGroupsListNetworkEndpoints)(nil), // 1578: google.cloud.compute.v1.NetworkEndpointGroupsListNetworkEndpoints - (*NetworkEndpointGroupsScopedList)(nil), // 1579: google.cloud.compute.v1.NetworkEndpointGroupsScopedList - (*NetworkEndpointWithHealthStatus)(nil), // 1580: google.cloud.compute.v1.NetworkEndpointWithHealthStatus - (*NetworkFirewallPolicyAggregatedList)(nil), // 1581: google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList - (*NetworkInterface)(nil), // 1582: google.cloud.compute.v1.NetworkInterface - (*NetworkList)(nil), // 1583: google.cloud.compute.v1.NetworkList - (*NetworkParams)(nil), // 1584: google.cloud.compute.v1.NetworkParams - (*NetworkPeering)(nil), // 1585: google.cloud.compute.v1.NetworkPeering - (*NetworkPeeringConnectionStatus)(nil), // 1586: google.cloud.compute.v1.NetworkPeeringConnectionStatus - (*NetworkPeeringConnectionStatusConsensusState)(nil), // 1587: google.cloud.compute.v1.NetworkPeeringConnectionStatusConsensusState - (*NetworkPeeringConnectionStatusTrafficConfiguration)(nil), // 1588: google.cloud.compute.v1.NetworkPeeringConnectionStatusTrafficConfiguration - (*NetworkPerformanceConfig)(nil), // 1589: google.cloud.compute.v1.NetworkPerformanceConfig - (*NetworkProfile)(nil), // 1590: google.cloud.compute.v1.NetworkProfile - (*NetworkProfileLocation)(nil), // 1591: google.cloud.compute.v1.NetworkProfileLocation - (*NetworkProfileNetworkFeatures)(nil), // 1592: google.cloud.compute.v1.NetworkProfileNetworkFeatures - (*NetworkProfileNetworkFeaturesPredefinedSubnetworkRange)(nil), // 1593: google.cloud.compute.v1.NetworkProfileNetworkFeaturesPredefinedSubnetworkRange - (*NetworkProfileProfileType)(nil), // 1594: google.cloud.compute.v1.NetworkProfileProfileType - (*NetworkProfilesListResponse)(nil), // 1595: google.cloud.compute.v1.NetworkProfilesListResponse - (*NetworkRoutingConfig)(nil), // 1596: google.cloud.compute.v1.NetworkRoutingConfig - (*NetworksAddPeeringRequest)(nil), // 1597: google.cloud.compute.v1.NetworksAddPeeringRequest - (*NetworksGetEffectiveFirewallsResponse)(nil), // 1598: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponse - (*NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy)(nil), // 1599: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy - (*NetworksRemovePeeringRequest)(nil), // 1600: google.cloud.compute.v1.NetworksRemovePeeringRequest - (*NetworksRequestRemovePeeringRequest)(nil), // 1601: google.cloud.compute.v1.NetworksRequestRemovePeeringRequest - (*NetworksUpdatePeeringRequest)(nil), // 1602: google.cloud.compute.v1.NetworksUpdatePeeringRequest - (*NodeGroup)(nil), // 1603: google.cloud.compute.v1.NodeGroup - (*NodeGroupAggregatedList)(nil), // 1604: google.cloud.compute.v1.NodeGroupAggregatedList - (*NodeGroupAutoscalingPolicy)(nil), // 1605: google.cloud.compute.v1.NodeGroupAutoscalingPolicy - (*NodeGroupList)(nil), // 1606: google.cloud.compute.v1.NodeGroupList - (*NodeGroupMaintenanceWindow)(nil), // 1607: google.cloud.compute.v1.NodeGroupMaintenanceWindow - (*NodeGroupNode)(nil), // 1608: google.cloud.compute.v1.NodeGroupNode - (*NodeGroupsAddNodesRequest)(nil), // 1609: google.cloud.compute.v1.NodeGroupsAddNodesRequest - (*NodeGroupsDeleteNodesRequest)(nil), // 1610: google.cloud.compute.v1.NodeGroupsDeleteNodesRequest - (*NodeGroupsListNodes)(nil), // 1611: google.cloud.compute.v1.NodeGroupsListNodes - (*NodeGroupsPerformMaintenanceRequest)(nil), // 1612: google.cloud.compute.v1.NodeGroupsPerformMaintenanceRequest - (*NodeGroupsScopedList)(nil), // 1613: google.cloud.compute.v1.NodeGroupsScopedList - (*NodeGroupsSetNodeTemplateRequest)(nil), // 1614: google.cloud.compute.v1.NodeGroupsSetNodeTemplateRequest - (*NodeGroupsSimulateMaintenanceEventRequest)(nil), // 1615: google.cloud.compute.v1.NodeGroupsSimulateMaintenanceEventRequest - (*NodeTemplate)(nil), // 1616: google.cloud.compute.v1.NodeTemplate - (*NodeTemplateAggregatedList)(nil), // 1617: google.cloud.compute.v1.NodeTemplateAggregatedList - (*NodeTemplateList)(nil), // 1618: google.cloud.compute.v1.NodeTemplateList - (*NodeTemplateNodeTypeFlexibility)(nil), // 1619: google.cloud.compute.v1.NodeTemplateNodeTypeFlexibility - (*NodeTemplatesScopedList)(nil), // 1620: google.cloud.compute.v1.NodeTemplatesScopedList - (*NodeType)(nil), // 1621: google.cloud.compute.v1.NodeType - (*NodeTypeAggregatedList)(nil), // 1622: google.cloud.compute.v1.NodeTypeAggregatedList - (*NodeTypeList)(nil), // 1623: google.cloud.compute.v1.NodeTypeList - (*NodeTypesScopedList)(nil), // 1624: google.cloud.compute.v1.NodeTypesScopedList - (*NotificationEndpoint)(nil), // 1625: google.cloud.compute.v1.NotificationEndpoint - (*NotificationEndpointAggregatedList)(nil), // 1626: google.cloud.compute.v1.NotificationEndpointAggregatedList - (*NotificationEndpointGrpcSettings)(nil), // 1627: google.cloud.compute.v1.NotificationEndpointGrpcSettings - (*NotificationEndpointList)(nil), // 1628: google.cloud.compute.v1.NotificationEndpointList - (*NotificationEndpointsScopedList)(nil), // 1629: google.cloud.compute.v1.NotificationEndpointsScopedList - (*Operation)(nil), // 1630: google.cloud.compute.v1.Operation - (*OperationAggregatedList)(nil), // 1631: google.cloud.compute.v1.OperationAggregatedList - (*OperationList)(nil), // 1632: google.cloud.compute.v1.OperationList - (*OperationsScopedList)(nil), // 1633: google.cloud.compute.v1.OperationsScopedList - (*OrganizationSecurityPoliciesListAssociationsResponse)(nil), // 1634: google.cloud.compute.v1.OrganizationSecurityPoliciesListAssociationsResponse - (*OutlierDetection)(nil), // 1635: google.cloud.compute.v1.OutlierDetection - (*PacketIntervals)(nil), // 1636: google.cloud.compute.v1.PacketIntervals - (*PacketMirroring)(nil), // 1637: google.cloud.compute.v1.PacketMirroring - (*PacketMirroringAggregatedList)(nil), // 1638: google.cloud.compute.v1.PacketMirroringAggregatedList - (*PacketMirroringFilter)(nil), // 1639: google.cloud.compute.v1.PacketMirroringFilter - (*PacketMirroringForwardingRuleInfo)(nil), // 1640: google.cloud.compute.v1.PacketMirroringForwardingRuleInfo - (*PacketMirroringList)(nil), // 1641: google.cloud.compute.v1.PacketMirroringList - (*PacketMirroringMirroredResourceInfo)(nil), // 1642: google.cloud.compute.v1.PacketMirroringMirroredResourceInfo - (*PacketMirroringMirroredResourceInfoInstanceInfo)(nil), // 1643: google.cloud.compute.v1.PacketMirroringMirroredResourceInfoInstanceInfo - (*PacketMirroringMirroredResourceInfoSubnetInfo)(nil), // 1644: google.cloud.compute.v1.PacketMirroringMirroredResourceInfoSubnetInfo - (*PacketMirroringNetworkInfo)(nil), // 1645: google.cloud.compute.v1.PacketMirroringNetworkInfo - (*PacketMirroringsScopedList)(nil), // 1646: google.cloud.compute.v1.PacketMirroringsScopedList - (*PatchAutoscalerRequest)(nil), // 1647: google.cloud.compute.v1.PatchAutoscalerRequest - (*PatchBackendBucketRequest)(nil), // 1648: google.cloud.compute.v1.PatchBackendBucketRequest - (*PatchBackendServiceRequest)(nil), // 1649: google.cloud.compute.v1.PatchBackendServiceRequest - (*PatchCrossSiteNetworkRequest)(nil), // 1650: google.cloud.compute.v1.PatchCrossSiteNetworkRequest - (*PatchFirewallPolicyRequest)(nil), // 1651: google.cloud.compute.v1.PatchFirewallPolicyRequest - (*PatchFirewallRequest)(nil), // 1652: google.cloud.compute.v1.PatchFirewallRequest - (*PatchForwardingRuleRequest)(nil), // 1653: google.cloud.compute.v1.PatchForwardingRuleRequest - (*PatchGlobalForwardingRuleRequest)(nil), // 1654: google.cloud.compute.v1.PatchGlobalForwardingRuleRequest - (*PatchGlobalPublicDelegatedPrefixeRequest)(nil), // 1655: google.cloud.compute.v1.PatchGlobalPublicDelegatedPrefixeRequest - (*PatchHealthCheckRequest)(nil), // 1656: google.cloud.compute.v1.PatchHealthCheckRequest - (*PatchImageRequest)(nil), // 1657: google.cloud.compute.v1.PatchImageRequest - (*PatchInstanceGroupManagerRequest)(nil), // 1658: google.cloud.compute.v1.PatchInstanceGroupManagerRequest - (*PatchInstanceSettingRequest)(nil), // 1659: google.cloud.compute.v1.PatchInstanceSettingRequest - (*PatchInterconnectAttachmentGroupRequest)(nil), // 1660: google.cloud.compute.v1.PatchInterconnectAttachmentGroupRequest - (*PatchInterconnectAttachmentRequest)(nil), // 1661: google.cloud.compute.v1.PatchInterconnectAttachmentRequest - (*PatchInterconnectGroupRequest)(nil), // 1662: google.cloud.compute.v1.PatchInterconnectGroupRequest - (*PatchInterconnectRequest)(nil), // 1663: google.cloud.compute.v1.PatchInterconnectRequest - (*PatchNetworkAttachmentRequest)(nil), // 1664: google.cloud.compute.v1.PatchNetworkAttachmentRequest - (*PatchNetworkEdgeSecurityServiceRequest)(nil), // 1665: google.cloud.compute.v1.PatchNetworkEdgeSecurityServiceRequest - (*PatchNetworkFirewallPolicyRequest)(nil), // 1666: google.cloud.compute.v1.PatchNetworkFirewallPolicyRequest - (*PatchNetworkRequest)(nil), // 1667: google.cloud.compute.v1.PatchNetworkRequest - (*PatchNodeGroupRequest)(nil), // 1668: google.cloud.compute.v1.PatchNodeGroupRequest - (*PatchOrganizationSecurityPolicyRequest)(nil), // 1669: google.cloud.compute.v1.PatchOrganizationSecurityPolicyRequest - (*PatchPacketMirroringRequest)(nil), // 1670: google.cloud.compute.v1.PatchPacketMirroringRequest - (*PatchPacketMirroringRuleNetworkFirewallPolicyRequest)(nil), // 1671: google.cloud.compute.v1.PatchPacketMirroringRuleNetworkFirewallPolicyRequest - (*PatchPerInstanceConfigsInstanceGroupManagerRequest)(nil), // 1672: google.cloud.compute.v1.PatchPerInstanceConfigsInstanceGroupManagerRequest - (*PatchPerInstanceConfigsRegionInstanceGroupManagerRequest)(nil), // 1673: google.cloud.compute.v1.PatchPerInstanceConfigsRegionInstanceGroupManagerRequest - (*PatchPublicAdvertisedPrefixeRequest)(nil), // 1674: google.cloud.compute.v1.PatchPublicAdvertisedPrefixeRequest - (*PatchPublicDelegatedPrefixeRequest)(nil), // 1675: google.cloud.compute.v1.PatchPublicDelegatedPrefixeRequest - (*PatchRegionAutoscalerRequest)(nil), // 1676: google.cloud.compute.v1.PatchRegionAutoscalerRequest - (*PatchRegionBackendServiceRequest)(nil), // 1677: google.cloud.compute.v1.PatchRegionBackendServiceRequest - (*PatchRegionCompositeHealthCheckRequest)(nil), // 1678: google.cloud.compute.v1.PatchRegionCompositeHealthCheckRequest - (*PatchRegionHealthAggregationPolicyRequest)(nil), // 1679: google.cloud.compute.v1.PatchRegionHealthAggregationPolicyRequest - (*PatchRegionHealthCheckRequest)(nil), // 1680: google.cloud.compute.v1.PatchRegionHealthCheckRequest - (*PatchRegionHealthCheckServiceRequest)(nil), // 1681: google.cloud.compute.v1.PatchRegionHealthCheckServiceRequest - (*PatchRegionHealthSourceRequest)(nil), // 1682: google.cloud.compute.v1.PatchRegionHealthSourceRequest - (*PatchRegionInstanceGroupManagerRequest)(nil), // 1683: google.cloud.compute.v1.PatchRegionInstanceGroupManagerRequest - (*PatchRegionNetworkFirewallPolicyRequest)(nil), // 1684: google.cloud.compute.v1.PatchRegionNetworkFirewallPolicyRequest - (*PatchRegionSecurityPolicyRequest)(nil), // 1685: google.cloud.compute.v1.PatchRegionSecurityPolicyRequest - (*PatchRegionSslPolicyRequest)(nil), // 1686: google.cloud.compute.v1.PatchRegionSslPolicyRequest - (*PatchRegionTargetHttpsProxyRequest)(nil), // 1687: google.cloud.compute.v1.PatchRegionTargetHttpsProxyRequest - (*PatchRegionUrlMapRequest)(nil), // 1688: google.cloud.compute.v1.PatchRegionUrlMapRequest - (*PatchResourcePolicyRequest)(nil), // 1689: google.cloud.compute.v1.PatchResourcePolicyRequest - (*PatchRoutePolicyRouterRequest)(nil), // 1690: google.cloud.compute.v1.PatchRoutePolicyRouterRequest - (*PatchRouterRequest)(nil), // 1691: google.cloud.compute.v1.PatchRouterRequest - (*PatchRuleFirewallPolicyRequest)(nil), // 1692: google.cloud.compute.v1.PatchRuleFirewallPolicyRequest - (*PatchRuleNetworkFirewallPolicyRequest)(nil), // 1693: google.cloud.compute.v1.PatchRuleNetworkFirewallPolicyRequest - (*PatchRuleOrganizationSecurityPolicyRequest)(nil), // 1694: google.cloud.compute.v1.PatchRuleOrganizationSecurityPolicyRequest - (*PatchRuleRegionNetworkFirewallPolicyRequest)(nil), // 1695: google.cloud.compute.v1.PatchRuleRegionNetworkFirewallPolicyRequest - (*PatchRuleRegionSecurityPolicyRequest)(nil), // 1696: google.cloud.compute.v1.PatchRuleRegionSecurityPolicyRequest - (*PatchRuleSecurityPolicyRequest)(nil), // 1697: google.cloud.compute.v1.PatchRuleSecurityPolicyRequest - (*PatchSecurityPolicyRequest)(nil), // 1698: google.cloud.compute.v1.PatchSecurityPolicyRequest - (*PatchServiceAttachmentRequest)(nil), // 1699: google.cloud.compute.v1.PatchServiceAttachmentRequest - (*PatchSnapshotSettingRequest)(nil), // 1700: google.cloud.compute.v1.PatchSnapshotSettingRequest - (*PatchSslPolicyRequest)(nil), // 1701: google.cloud.compute.v1.PatchSslPolicyRequest - (*PatchSubnetworkRequest)(nil), // 1702: google.cloud.compute.v1.PatchSubnetworkRequest - (*PatchTargetGrpcProxyRequest)(nil), // 1703: google.cloud.compute.v1.PatchTargetGrpcProxyRequest - (*PatchTargetHttpProxyRequest)(nil), // 1704: google.cloud.compute.v1.PatchTargetHttpProxyRequest - (*PatchTargetHttpsProxyRequest)(nil), // 1705: google.cloud.compute.v1.PatchTargetHttpsProxyRequest - (*PatchUrlMapRequest)(nil), // 1706: google.cloud.compute.v1.PatchUrlMapRequest - (*PatchWireGroupRequest)(nil), // 1707: google.cloud.compute.v1.PatchWireGroupRequest - (*PathMatcher)(nil), // 1708: google.cloud.compute.v1.PathMatcher - (*PathRule)(nil), // 1709: google.cloud.compute.v1.PathRule - (*PerInstanceConfig)(nil), // 1710: google.cloud.compute.v1.PerInstanceConfig - (*PerformMaintenanceInstanceRequest)(nil), // 1711: google.cloud.compute.v1.PerformMaintenanceInstanceRequest - (*PerformMaintenanceNodeGroupRequest)(nil), // 1712: google.cloud.compute.v1.PerformMaintenanceNodeGroupRequest - (*PerformMaintenanceReservationBlockRequest)(nil), // 1713: google.cloud.compute.v1.PerformMaintenanceReservationBlockRequest - (*PerformMaintenanceReservationRequest)(nil), // 1714: google.cloud.compute.v1.PerformMaintenanceReservationRequest - (*PerformMaintenanceReservationSubBlockRequest)(nil), // 1715: google.cloud.compute.v1.PerformMaintenanceReservationSubBlockRequest - (*Policy)(nil), // 1716: google.cloud.compute.v1.Policy - (*PreconfiguredWafSet)(nil), // 1717: google.cloud.compute.v1.PreconfiguredWafSet - (*PreservedState)(nil), // 1718: google.cloud.compute.v1.PreservedState - (*PreservedStatePreservedDisk)(nil), // 1719: google.cloud.compute.v1.PreservedStatePreservedDisk - (*PreservedStatePreservedNetworkIp)(nil), // 1720: google.cloud.compute.v1.PreservedStatePreservedNetworkIp - (*PreservedStatePreservedNetworkIpIpAddress)(nil), // 1721: google.cloud.compute.v1.PreservedStatePreservedNetworkIpIpAddress - (*PreviewFeature)(nil), // 1722: google.cloud.compute.v1.PreviewFeature - (*PreviewFeatureList)(nil), // 1723: google.cloud.compute.v1.PreviewFeatureList - (*PreviewFeatureRolloutOperation)(nil), // 1724: google.cloud.compute.v1.PreviewFeatureRolloutOperation - (*PreviewFeatureRolloutOperationRolloutInput)(nil), // 1725: google.cloud.compute.v1.PreviewFeatureRolloutOperationRolloutInput - (*PreviewFeatureStatus)(nil), // 1726: google.cloud.compute.v1.PreviewFeatureStatus - (*PreviewFeatureStatusReleaseStatus)(nil), // 1727: google.cloud.compute.v1.PreviewFeatureStatusReleaseStatus - (*PreviewRouterRequest)(nil), // 1728: google.cloud.compute.v1.PreviewRouterRequest - (*Project)(nil), // 1729: google.cloud.compute.v1.Project - (*ProjectsDisableXpnResourceRequest)(nil), // 1730: google.cloud.compute.v1.ProjectsDisableXpnResourceRequest - (*ProjectsEnableXpnResourceRequest)(nil), // 1731: google.cloud.compute.v1.ProjectsEnableXpnResourceRequest - (*ProjectsGetXpnResources)(nil), // 1732: google.cloud.compute.v1.ProjectsGetXpnResources - (*ProjectsListXpnHostsRequest)(nil), // 1733: google.cloud.compute.v1.ProjectsListXpnHostsRequest - (*ProjectsSetCloudArmorTierRequest)(nil), // 1734: google.cloud.compute.v1.ProjectsSetCloudArmorTierRequest - (*ProjectsSetDefaultNetworkTierRequest)(nil), // 1735: google.cloud.compute.v1.ProjectsSetDefaultNetworkTierRequest - (*PublicAdvertisedPrefix)(nil), // 1736: google.cloud.compute.v1.PublicAdvertisedPrefix - (*PublicAdvertisedPrefixList)(nil), // 1737: google.cloud.compute.v1.PublicAdvertisedPrefixList - (*PublicAdvertisedPrefixPublicDelegatedPrefix)(nil), // 1738: google.cloud.compute.v1.PublicAdvertisedPrefixPublicDelegatedPrefix - (*PublicDelegatedPrefix)(nil), // 1739: google.cloud.compute.v1.PublicDelegatedPrefix - (*PublicDelegatedPrefixAggregatedList)(nil), // 1740: google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList - (*PublicDelegatedPrefixList)(nil), // 1741: google.cloud.compute.v1.PublicDelegatedPrefixList - (*PublicDelegatedPrefixPublicDelegatedSubPrefix)(nil), // 1742: google.cloud.compute.v1.PublicDelegatedPrefixPublicDelegatedSubPrefix - (*PublicDelegatedPrefixesScopedList)(nil), // 1743: google.cloud.compute.v1.PublicDelegatedPrefixesScopedList - (*Quota)(nil), // 1744: google.cloud.compute.v1.Quota - (*QuotaExceededInfo)(nil), // 1745: google.cloud.compute.v1.QuotaExceededInfo - (*QuotaStatusWarning)(nil), // 1746: google.cloud.compute.v1.QuotaStatusWarning - (*RawDisk)(nil), // 1747: google.cloud.compute.v1.RawDisk - (*RecreateInstancesInstanceGroupManagerRequest)(nil), // 1748: google.cloud.compute.v1.RecreateInstancesInstanceGroupManagerRequest - (*RecreateInstancesRegionInstanceGroupManagerRequest)(nil), // 1749: google.cloud.compute.v1.RecreateInstancesRegionInstanceGroupManagerRequest - (*Reference)(nil), // 1750: google.cloud.compute.v1.Reference - (*Region)(nil), // 1751: google.cloud.compute.v1.Region - (*RegionAddressesMoveRequest)(nil), // 1752: google.cloud.compute.v1.RegionAddressesMoveRequest - (*RegionAutoscalerList)(nil), // 1753: google.cloud.compute.v1.RegionAutoscalerList - (*RegionDiskTypeList)(nil), // 1754: google.cloud.compute.v1.RegionDiskTypeList - (*RegionDisksAddResourcePoliciesRequest)(nil), // 1755: google.cloud.compute.v1.RegionDisksAddResourcePoliciesRequest - (*RegionDisksRemoveResourcePoliciesRequest)(nil), // 1756: google.cloud.compute.v1.RegionDisksRemoveResourcePoliciesRequest - (*RegionDisksResizeRequest)(nil), // 1757: google.cloud.compute.v1.RegionDisksResizeRequest - (*RegionDisksStartAsyncReplicationRequest)(nil), // 1758: google.cloud.compute.v1.RegionDisksStartAsyncReplicationRequest - (*RegionInstanceGroupList)(nil), // 1759: google.cloud.compute.v1.RegionInstanceGroupList - (*RegionInstanceGroupManagerDeleteInstanceConfigReq)(nil), // 1760: google.cloud.compute.v1.RegionInstanceGroupManagerDeleteInstanceConfigReq - (*RegionInstanceGroupManagerList)(nil), // 1761: google.cloud.compute.v1.RegionInstanceGroupManagerList - (*RegionInstanceGroupManagerPatchInstanceConfigReq)(nil), // 1762: google.cloud.compute.v1.RegionInstanceGroupManagerPatchInstanceConfigReq - (*RegionInstanceGroupManagerUpdateInstanceConfigReq)(nil), // 1763: google.cloud.compute.v1.RegionInstanceGroupManagerUpdateInstanceConfigReq - (*RegionInstanceGroupManagersAbandonInstancesRequest)(nil), // 1764: google.cloud.compute.v1.RegionInstanceGroupManagersAbandonInstancesRequest - (*RegionInstanceGroupManagersApplyUpdatesRequest)(nil), // 1765: google.cloud.compute.v1.RegionInstanceGroupManagersApplyUpdatesRequest - (*RegionInstanceGroupManagersCreateInstancesRequest)(nil), // 1766: google.cloud.compute.v1.RegionInstanceGroupManagersCreateInstancesRequest - (*RegionInstanceGroupManagersDeleteInstancesRequest)(nil), // 1767: google.cloud.compute.v1.RegionInstanceGroupManagersDeleteInstancesRequest - (*RegionInstanceGroupManagersListErrorsResponse)(nil), // 1768: google.cloud.compute.v1.RegionInstanceGroupManagersListErrorsResponse - (*RegionInstanceGroupManagersListInstanceConfigsResp)(nil), // 1769: google.cloud.compute.v1.RegionInstanceGroupManagersListInstanceConfigsResp - (*RegionInstanceGroupManagersListInstancesResponse)(nil), // 1770: google.cloud.compute.v1.RegionInstanceGroupManagersListInstancesResponse - (*RegionInstanceGroupManagersRecreateRequest)(nil), // 1771: google.cloud.compute.v1.RegionInstanceGroupManagersRecreateRequest - (*RegionInstanceGroupManagersResumeInstancesRequest)(nil), // 1772: google.cloud.compute.v1.RegionInstanceGroupManagersResumeInstancesRequest - (*RegionInstanceGroupManagersSetTargetPoolsRequest)(nil), // 1773: google.cloud.compute.v1.RegionInstanceGroupManagersSetTargetPoolsRequest - (*RegionInstanceGroupManagersSetTemplateRequest)(nil), // 1774: google.cloud.compute.v1.RegionInstanceGroupManagersSetTemplateRequest - (*RegionInstanceGroupManagersStartInstancesRequest)(nil), // 1775: google.cloud.compute.v1.RegionInstanceGroupManagersStartInstancesRequest - (*RegionInstanceGroupManagersStopInstancesRequest)(nil), // 1776: google.cloud.compute.v1.RegionInstanceGroupManagersStopInstancesRequest - (*RegionInstanceGroupManagersSuspendInstancesRequest)(nil), // 1777: google.cloud.compute.v1.RegionInstanceGroupManagersSuspendInstancesRequest - (*RegionInstanceGroupsListInstances)(nil), // 1778: google.cloud.compute.v1.RegionInstanceGroupsListInstances - (*RegionInstanceGroupsListInstancesRequest)(nil), // 1779: google.cloud.compute.v1.RegionInstanceGroupsListInstancesRequest - (*RegionInstanceGroupsSetNamedPortsRequest)(nil), // 1780: google.cloud.compute.v1.RegionInstanceGroupsSetNamedPortsRequest - (*RegionList)(nil), // 1781: google.cloud.compute.v1.RegionList - (*RegionNetworkEndpointGroupsAttachEndpointsRequest)(nil), // 1782: google.cloud.compute.v1.RegionNetworkEndpointGroupsAttachEndpointsRequest - (*RegionNetworkEndpointGroupsDetachEndpointsRequest)(nil), // 1783: google.cloud.compute.v1.RegionNetworkEndpointGroupsDetachEndpointsRequest - (*RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse)(nil), // 1784: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse - (*RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy)(nil), // 1785: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy - (*RegionSetLabelsRequest)(nil), // 1786: google.cloud.compute.v1.RegionSetLabelsRequest - (*RegionSetPolicyRequest)(nil), // 1787: google.cloud.compute.v1.RegionSetPolicyRequest - (*RegionTargetHttpsProxiesSetSslCertificatesRequest)(nil), // 1788: google.cloud.compute.v1.RegionTargetHttpsProxiesSetSslCertificatesRequest - (*RegionUrlMapsValidateRequest)(nil), // 1789: google.cloud.compute.v1.RegionUrlMapsValidateRequest - (*RemoveAssociationFirewallPolicyRequest)(nil), // 1790: google.cloud.compute.v1.RemoveAssociationFirewallPolicyRequest - (*RemoveAssociationNetworkFirewallPolicyRequest)(nil), // 1791: google.cloud.compute.v1.RemoveAssociationNetworkFirewallPolicyRequest - (*RemoveAssociationOrganizationSecurityPolicyRequest)(nil), // 1792: google.cloud.compute.v1.RemoveAssociationOrganizationSecurityPolicyRequest - (*RemoveAssociationRegionNetworkFirewallPolicyRequest)(nil), // 1793: google.cloud.compute.v1.RemoveAssociationRegionNetworkFirewallPolicyRequest - (*RemoveHealthCheckTargetPoolRequest)(nil), // 1794: google.cloud.compute.v1.RemoveHealthCheckTargetPoolRequest - (*RemoveInstanceTargetPoolRequest)(nil), // 1795: google.cloud.compute.v1.RemoveInstanceTargetPoolRequest - (*RemoveInstancesInstanceGroupRequest)(nil), // 1796: google.cloud.compute.v1.RemoveInstancesInstanceGroupRequest - (*RemovePacketMirroringRuleNetworkFirewallPolicyRequest)(nil), // 1797: google.cloud.compute.v1.RemovePacketMirroringRuleNetworkFirewallPolicyRequest - (*RemovePeeringNetworkRequest)(nil), // 1798: google.cloud.compute.v1.RemovePeeringNetworkRequest - (*RemoveResourcePoliciesDiskRequest)(nil), // 1799: google.cloud.compute.v1.RemoveResourcePoliciesDiskRequest - (*RemoveResourcePoliciesInstanceRequest)(nil), // 1800: google.cloud.compute.v1.RemoveResourcePoliciesInstanceRequest - (*RemoveResourcePoliciesRegionDiskRequest)(nil), // 1801: google.cloud.compute.v1.RemoveResourcePoliciesRegionDiskRequest - (*RemoveRuleFirewallPolicyRequest)(nil), // 1802: google.cloud.compute.v1.RemoveRuleFirewallPolicyRequest - (*RemoveRuleNetworkFirewallPolicyRequest)(nil), // 1803: google.cloud.compute.v1.RemoveRuleNetworkFirewallPolicyRequest - (*RemoveRuleOrganizationSecurityPolicyRequest)(nil), // 1804: google.cloud.compute.v1.RemoveRuleOrganizationSecurityPolicyRequest - (*RemoveRuleRegionNetworkFirewallPolicyRequest)(nil), // 1805: google.cloud.compute.v1.RemoveRuleRegionNetworkFirewallPolicyRequest - (*RemoveRuleRegionSecurityPolicyRequest)(nil), // 1806: google.cloud.compute.v1.RemoveRuleRegionSecurityPolicyRequest - (*RemoveRuleSecurityPolicyRequest)(nil), // 1807: google.cloud.compute.v1.RemoveRuleSecurityPolicyRequest - (*ReportFaultyReservationSubBlockRequest)(nil), // 1808: google.cloud.compute.v1.ReportFaultyReservationSubBlockRequest - (*ReportHostAsFaultyInstanceRequest)(nil), // 1809: google.cloud.compute.v1.ReportHostAsFaultyInstanceRequest - (*RequestMirrorPolicy)(nil), // 1810: google.cloud.compute.v1.RequestMirrorPolicy - (*RequestRemovePeeringNetworkRequest)(nil), // 1811: google.cloud.compute.v1.RequestRemovePeeringNetworkRequest - (*Reservation)(nil), // 1812: google.cloud.compute.v1.Reservation - (*ReservationAdvancedDeploymentControl)(nil), // 1813: google.cloud.compute.v1.ReservationAdvancedDeploymentControl - (*ReservationAffinity)(nil), // 1814: google.cloud.compute.v1.ReservationAffinity - (*ReservationAggregatedList)(nil), // 1815: google.cloud.compute.v1.ReservationAggregatedList - (*ReservationBlock)(nil), // 1816: google.cloud.compute.v1.ReservationBlock - (*ReservationBlockHealthInfo)(nil), // 1817: google.cloud.compute.v1.ReservationBlockHealthInfo - (*ReservationBlockPhysicalTopology)(nil), // 1818: google.cloud.compute.v1.ReservationBlockPhysicalTopology - (*ReservationBlockPhysicalTopologyInstance)(nil), // 1819: google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstance - (*ReservationBlockPhysicalTopologyInstancePhysicalHostTopology)(nil), // 1820: google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstancePhysicalHostTopology - (*ReservationBlocksGetResponse)(nil), // 1821: google.cloud.compute.v1.ReservationBlocksGetResponse - (*ReservationBlocksListResponse)(nil), // 1822: google.cloud.compute.v1.ReservationBlocksListResponse - (*ReservationList)(nil), // 1823: google.cloud.compute.v1.ReservationList - (*ReservationParams)(nil), // 1824: google.cloud.compute.v1.ReservationParams - (*ReservationSlot)(nil), // 1825: google.cloud.compute.v1.ReservationSlot - (*ReservationSlotPhysicalTopology)(nil), // 1826: google.cloud.compute.v1.ReservationSlotPhysicalTopology - (*ReservationSlotStatus)(nil), // 1827: google.cloud.compute.v1.ReservationSlotStatus - (*ReservationSlotsGetResponse)(nil), // 1828: google.cloud.compute.v1.ReservationSlotsGetResponse - (*ReservationSlotsGetVersionRequest)(nil), // 1829: google.cloud.compute.v1.ReservationSlotsGetVersionRequest - (*ReservationSlotsListResponse)(nil), // 1830: google.cloud.compute.v1.ReservationSlotsListResponse - (*ReservationSubBlock)(nil), // 1831: google.cloud.compute.v1.ReservationSubBlock - (*ReservationSubBlockHealthInfo)(nil), // 1832: google.cloud.compute.v1.ReservationSubBlockHealthInfo - (*ReservationSubBlockPhysicalTopology)(nil), // 1833: google.cloud.compute.v1.ReservationSubBlockPhysicalTopology - (*ReservationSubBlocksGetResponse)(nil), // 1834: google.cloud.compute.v1.ReservationSubBlocksGetResponse - (*ReservationSubBlocksGetVersionRequest)(nil), // 1835: google.cloud.compute.v1.ReservationSubBlocksGetVersionRequest - (*ReservationSubBlocksListResponse)(nil), // 1836: google.cloud.compute.v1.ReservationSubBlocksListResponse - (*ReservationSubBlocksReportFaultyRequest)(nil), // 1837: google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequest - (*ReservationSubBlocksReportFaultyRequestFaultReason)(nil), // 1838: google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequestFaultReason - (*ReservationsBlocksPerformMaintenanceRequest)(nil), // 1839: google.cloud.compute.v1.ReservationsBlocksPerformMaintenanceRequest - (*ReservationsPerformMaintenanceRequest)(nil), // 1840: google.cloud.compute.v1.ReservationsPerformMaintenanceRequest - (*ReservationsResizeRequest)(nil), // 1841: google.cloud.compute.v1.ReservationsResizeRequest - (*ReservationsScopedList)(nil), // 1842: google.cloud.compute.v1.ReservationsScopedList - (*ResetInstanceRequest)(nil), // 1843: google.cloud.compute.v1.ResetInstanceRequest - (*ResizeDiskRequest)(nil), // 1844: google.cloud.compute.v1.ResizeDiskRequest - (*ResizeInstanceGroupManagerRequest)(nil), // 1845: google.cloud.compute.v1.ResizeInstanceGroupManagerRequest - (*ResizeRegionDiskRequest)(nil), // 1846: google.cloud.compute.v1.ResizeRegionDiskRequest - (*ResizeRegionInstanceGroupManagerRequest)(nil), // 1847: google.cloud.compute.v1.ResizeRegionInstanceGroupManagerRequest - (*ResizeReservationRequest)(nil), // 1848: google.cloud.compute.v1.ResizeReservationRequest - (*ResourceCommitment)(nil), // 1849: google.cloud.compute.v1.ResourceCommitment - (*ResourceGroupReference)(nil), // 1850: google.cloud.compute.v1.ResourceGroupReference - (*ResourcePoliciesScopedList)(nil), // 1851: google.cloud.compute.v1.ResourcePoliciesScopedList - (*ResourcePolicy)(nil), // 1852: google.cloud.compute.v1.ResourcePolicy - (*ResourcePolicyAggregatedList)(nil), // 1853: google.cloud.compute.v1.ResourcePolicyAggregatedList - (*ResourcePolicyDailyCycle)(nil), // 1854: google.cloud.compute.v1.ResourcePolicyDailyCycle - (*ResourcePolicyDiskConsistencyGroupPolicy)(nil), // 1855: google.cloud.compute.v1.ResourcePolicyDiskConsistencyGroupPolicy - (*ResourcePolicyGroupPlacementPolicy)(nil), // 1856: google.cloud.compute.v1.ResourcePolicyGroupPlacementPolicy - (*ResourcePolicyHourlyCycle)(nil), // 1857: google.cloud.compute.v1.ResourcePolicyHourlyCycle - (*ResourcePolicyInstanceSchedulePolicy)(nil), // 1858: google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicy - (*ResourcePolicyInstanceSchedulePolicySchedule)(nil), // 1859: google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicySchedule - (*ResourcePolicyList)(nil), // 1860: google.cloud.compute.v1.ResourcePolicyList - (*ResourcePolicyResourceStatus)(nil), // 1861: google.cloud.compute.v1.ResourcePolicyResourceStatus - (*ResourcePolicyResourceStatusInstanceSchedulePolicyStatus)(nil), // 1862: google.cloud.compute.v1.ResourcePolicyResourceStatusInstanceSchedulePolicyStatus - (*ResourcePolicySnapshotSchedulePolicy)(nil), // 1863: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicy - (*ResourcePolicySnapshotSchedulePolicyRetentionPolicy)(nil), // 1864: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicyRetentionPolicy - (*ResourcePolicySnapshotSchedulePolicySchedule)(nil), // 1865: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySchedule - (*ResourcePolicySnapshotSchedulePolicySnapshotProperties)(nil), // 1866: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySnapshotProperties - (*ResourcePolicyWeeklyCycle)(nil), // 1867: google.cloud.compute.v1.ResourcePolicyWeeklyCycle - (*ResourcePolicyWeeklyCycleDayOfWeek)(nil), // 1868: google.cloud.compute.v1.ResourcePolicyWeeklyCycleDayOfWeek - (*ResourcePolicyWorkloadPolicy)(nil), // 1869: google.cloud.compute.v1.ResourcePolicyWorkloadPolicy - (*ResourceStatus)(nil), // 1870: google.cloud.compute.v1.ResourceStatus - (*ResourceStatusEffectiveInstanceMetadata)(nil), // 1871: google.cloud.compute.v1.ResourceStatusEffectiveInstanceMetadata - (*ResourceStatusPhysicalHostTopology)(nil), // 1872: google.cloud.compute.v1.ResourceStatusPhysicalHostTopology - (*ResourceStatusReservationConsumptionInfo)(nil), // 1873: google.cloud.compute.v1.ResourceStatusReservationConsumptionInfo - (*ResourceStatusScheduling)(nil), // 1874: google.cloud.compute.v1.ResourceStatusScheduling - (*ResumeInstanceRequest)(nil), // 1875: google.cloud.compute.v1.ResumeInstanceRequest - (*ResumeInstancesInstanceGroupManagerRequest)(nil), // 1876: google.cloud.compute.v1.ResumeInstancesInstanceGroupManagerRequest - (*ResumeInstancesRegionInstanceGroupManagerRequest)(nil), // 1877: google.cloud.compute.v1.ResumeInstancesRegionInstanceGroupManagerRequest - (*Route)(nil), // 1878: google.cloud.compute.v1.Route - (*RouteAsPath)(nil), // 1879: google.cloud.compute.v1.RouteAsPath - (*RouteList)(nil), // 1880: google.cloud.compute.v1.RouteList - (*RouteParams)(nil), // 1881: google.cloud.compute.v1.RouteParams - (*RoutePolicy)(nil), // 1882: google.cloud.compute.v1.RoutePolicy - (*RoutePolicyPolicyTerm)(nil), // 1883: google.cloud.compute.v1.RoutePolicyPolicyTerm - (*Router)(nil), // 1884: google.cloud.compute.v1.Router - (*RouterAdvertisedIpRange)(nil), // 1885: google.cloud.compute.v1.RouterAdvertisedIpRange - (*RouterAggregatedList)(nil), // 1886: google.cloud.compute.v1.RouterAggregatedList - (*RouterBgp)(nil), // 1887: google.cloud.compute.v1.RouterBgp - (*RouterBgpPeer)(nil), // 1888: google.cloud.compute.v1.RouterBgpPeer - (*RouterBgpPeerBfd)(nil), // 1889: google.cloud.compute.v1.RouterBgpPeerBfd - (*RouterBgpPeerCustomLearnedIpRange)(nil), // 1890: google.cloud.compute.v1.RouterBgpPeerCustomLearnedIpRange - (*RouterInterface)(nil), // 1891: google.cloud.compute.v1.RouterInterface - (*RouterList)(nil), // 1892: google.cloud.compute.v1.RouterList - (*RouterMd5AuthenticationKey)(nil), // 1893: google.cloud.compute.v1.RouterMd5AuthenticationKey - (*RouterNat)(nil), // 1894: google.cloud.compute.v1.RouterNat - (*RouterNatLogConfig)(nil), // 1895: google.cloud.compute.v1.RouterNatLogConfig - (*RouterNatRule)(nil), // 1896: google.cloud.compute.v1.RouterNatRule - (*RouterNatRuleAction)(nil), // 1897: google.cloud.compute.v1.RouterNatRuleAction - (*RouterNatSubnetworkToNat)(nil), // 1898: google.cloud.compute.v1.RouterNatSubnetworkToNat - (*RouterNatSubnetworkToNat64)(nil), // 1899: google.cloud.compute.v1.RouterNatSubnetworkToNat64 - (*RouterParams)(nil), // 1900: google.cloud.compute.v1.RouterParams - (*RouterStatus)(nil), // 1901: google.cloud.compute.v1.RouterStatus - (*RouterStatusBgpPeerStatus)(nil), // 1902: google.cloud.compute.v1.RouterStatusBgpPeerStatus - (*RouterStatusNatStatus)(nil), // 1903: google.cloud.compute.v1.RouterStatusNatStatus - (*RouterStatusNatStatusNatRuleStatus)(nil), // 1904: google.cloud.compute.v1.RouterStatusNatStatusNatRuleStatus - (*RouterStatusResponse)(nil), // 1905: google.cloud.compute.v1.RouterStatusResponse - (*RoutersGetRoutePolicyResponse)(nil), // 1906: google.cloud.compute.v1.RoutersGetRoutePolicyResponse - (*RoutersListBgpRoutes)(nil), // 1907: google.cloud.compute.v1.RoutersListBgpRoutes - (*RoutersListRoutePolicies)(nil), // 1908: google.cloud.compute.v1.RoutersListRoutePolicies - (*RoutersPreviewResponse)(nil), // 1909: google.cloud.compute.v1.RoutersPreviewResponse - (*RoutersScopedList)(nil), // 1910: google.cloud.compute.v1.RoutersScopedList - (*SSLHealthCheck)(nil), // 1911: google.cloud.compute.v1.SSLHealthCheck - (*SavedAttachedDisk)(nil), // 1912: google.cloud.compute.v1.SavedAttachedDisk - (*SavedDisk)(nil), // 1913: google.cloud.compute.v1.SavedDisk - (*ScalingScheduleStatus)(nil), // 1914: google.cloud.compute.v1.ScalingScheduleStatus - (*Scheduling)(nil), // 1915: google.cloud.compute.v1.Scheduling - (*SchedulingNodeAffinity)(nil), // 1916: google.cloud.compute.v1.SchedulingNodeAffinity - (*SchedulingOnInstanceStopAction)(nil), // 1917: google.cloud.compute.v1.SchedulingOnInstanceStopAction - (*Screenshot)(nil), // 1918: google.cloud.compute.v1.Screenshot - (*SecurityPoliciesAggregatedList)(nil), // 1919: google.cloud.compute.v1.SecurityPoliciesAggregatedList - (*SecurityPoliciesListPreconfiguredExpressionSetsResponse)(nil), // 1920: google.cloud.compute.v1.SecurityPoliciesListPreconfiguredExpressionSetsResponse - (*SecurityPoliciesScopedList)(nil), // 1921: google.cloud.compute.v1.SecurityPoliciesScopedList - (*SecurityPoliciesWafConfig)(nil), // 1922: google.cloud.compute.v1.SecurityPoliciesWafConfig - (*SecurityPolicy)(nil), // 1923: google.cloud.compute.v1.SecurityPolicy - (*SecurityPolicyAdaptiveProtectionConfig)(nil), // 1924: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfig - (*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig)(nil), // 1925: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig - (*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig)(nil), // 1926: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig - (*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig)(nil), // 1927: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig - (*SecurityPolicyAdvancedOptionsConfig)(nil), // 1928: google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfig - (*SecurityPolicyAdvancedOptionsConfigJsonCustomConfig)(nil), // 1929: google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfigJsonCustomConfig - (*SecurityPolicyAssociation)(nil), // 1930: google.cloud.compute.v1.SecurityPolicyAssociation - (*SecurityPolicyDdosProtectionConfig)(nil), // 1931: google.cloud.compute.v1.SecurityPolicyDdosProtectionConfig - (*SecurityPolicyList)(nil), // 1932: google.cloud.compute.v1.SecurityPolicyList - (*SecurityPolicyRecaptchaOptionsConfig)(nil), // 1933: google.cloud.compute.v1.SecurityPolicyRecaptchaOptionsConfig - (*SecurityPolicyReference)(nil), // 1934: google.cloud.compute.v1.SecurityPolicyReference - (*SecurityPolicyRule)(nil), // 1935: google.cloud.compute.v1.SecurityPolicyRule - (*SecurityPolicyRuleHttpHeaderAction)(nil), // 1936: google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderAction - (*SecurityPolicyRuleHttpHeaderActionHttpHeaderOption)(nil), // 1937: google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderActionHttpHeaderOption - (*SecurityPolicyRuleMatcher)(nil), // 1938: google.cloud.compute.v1.SecurityPolicyRuleMatcher - (*SecurityPolicyRuleMatcherConfig)(nil), // 1939: google.cloud.compute.v1.SecurityPolicyRuleMatcherConfig - (*SecurityPolicyRuleMatcherExprOptions)(nil), // 1940: google.cloud.compute.v1.SecurityPolicyRuleMatcherExprOptions - (*SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions)(nil), // 1941: google.cloud.compute.v1.SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions - (*SecurityPolicyRuleNetworkMatcher)(nil), // 1942: google.cloud.compute.v1.SecurityPolicyRuleNetworkMatcher - (*SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch)(nil), // 1943: google.cloud.compute.v1.SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch - (*SecurityPolicyRulePreconfiguredWafConfig)(nil), // 1944: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfig - (*SecurityPolicyRulePreconfiguredWafConfigExclusion)(nil), // 1945: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion - (*SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams)(nil), // 1946: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams - (*SecurityPolicyRuleRateLimitOptions)(nil), // 1947: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions - (*SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig)(nil), // 1948: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig - (*SecurityPolicyRuleRateLimitOptionsThreshold)(nil), // 1949: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptionsThreshold - (*SecurityPolicyRuleRedirectOptions)(nil), // 1950: google.cloud.compute.v1.SecurityPolicyRuleRedirectOptions - (*SecurityPolicyUserDefinedField)(nil), // 1951: google.cloud.compute.v1.SecurityPolicyUserDefinedField - (*SecuritySettings)(nil), // 1952: google.cloud.compute.v1.SecuritySettings - (*SendDiagnosticInterruptInstanceRequest)(nil), // 1953: google.cloud.compute.v1.SendDiagnosticInterruptInstanceRequest - (*SendDiagnosticInterruptInstanceResponse)(nil), // 1954: google.cloud.compute.v1.SendDiagnosticInterruptInstanceResponse - (*SerialPortOutput)(nil), // 1955: google.cloud.compute.v1.SerialPortOutput - (*ServerBinding)(nil), // 1956: google.cloud.compute.v1.ServerBinding - (*ServiceAccount)(nil), // 1957: google.cloud.compute.v1.ServiceAccount - (*ServiceAttachment)(nil), // 1958: google.cloud.compute.v1.ServiceAttachment - (*ServiceAttachmentAggregatedList)(nil), // 1959: google.cloud.compute.v1.ServiceAttachmentAggregatedList - (*ServiceAttachmentConnectedEndpoint)(nil), // 1960: google.cloud.compute.v1.ServiceAttachmentConnectedEndpoint - (*ServiceAttachmentConsumerProjectLimit)(nil), // 1961: google.cloud.compute.v1.ServiceAttachmentConsumerProjectLimit - (*ServiceAttachmentList)(nil), // 1962: google.cloud.compute.v1.ServiceAttachmentList - (*ServiceAttachmentsScopedList)(nil), // 1963: google.cloud.compute.v1.ServiceAttachmentsScopedList - (*SetBackendServiceTargetSslProxyRequest)(nil), // 1964: google.cloud.compute.v1.SetBackendServiceTargetSslProxyRequest - (*SetBackendServiceTargetTcpProxyRequest)(nil), // 1965: google.cloud.compute.v1.SetBackendServiceTargetTcpProxyRequest - (*SetBackupTargetPoolRequest)(nil), // 1966: google.cloud.compute.v1.SetBackupTargetPoolRequest - (*SetCertificateMapTargetHttpsProxyRequest)(nil), // 1967: google.cloud.compute.v1.SetCertificateMapTargetHttpsProxyRequest - (*SetCertificateMapTargetSslProxyRequest)(nil), // 1968: google.cloud.compute.v1.SetCertificateMapTargetSslProxyRequest - (*SetCloudArmorTierProjectRequest)(nil), // 1969: google.cloud.compute.v1.SetCloudArmorTierProjectRequest - (*SetCommonInstanceMetadataOperationMetadata)(nil), // 1970: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadata - (*SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo)(nil), // 1971: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo - (*SetCommonInstanceMetadataProjectRequest)(nil), // 1972: google.cloud.compute.v1.SetCommonInstanceMetadataProjectRequest - (*SetDefaultNetworkTierProjectRequest)(nil), // 1973: google.cloud.compute.v1.SetDefaultNetworkTierProjectRequest - (*SetDeletionProtectionInstanceRequest)(nil), // 1974: google.cloud.compute.v1.SetDeletionProtectionInstanceRequest - (*SetDiskAutoDeleteInstanceRequest)(nil), // 1975: google.cloud.compute.v1.SetDiskAutoDeleteInstanceRequest - (*SetEdgeSecurityPolicyBackendBucketRequest)(nil), // 1976: google.cloud.compute.v1.SetEdgeSecurityPolicyBackendBucketRequest - (*SetEdgeSecurityPolicyBackendServiceRequest)(nil), // 1977: google.cloud.compute.v1.SetEdgeSecurityPolicyBackendServiceRequest - (*SetIamPolicyBackendBucketRequest)(nil), // 1978: google.cloud.compute.v1.SetIamPolicyBackendBucketRequest - (*SetIamPolicyBackendServiceRequest)(nil), // 1979: google.cloud.compute.v1.SetIamPolicyBackendServiceRequest - (*SetIamPolicyDiskRequest)(nil), // 1980: google.cloud.compute.v1.SetIamPolicyDiskRequest - (*SetIamPolicyFirewallPolicyRequest)(nil), // 1981: google.cloud.compute.v1.SetIamPolicyFirewallPolicyRequest - (*SetIamPolicyImageRequest)(nil), // 1982: google.cloud.compute.v1.SetIamPolicyImageRequest - (*SetIamPolicyInstanceRequest)(nil), // 1983: google.cloud.compute.v1.SetIamPolicyInstanceRequest - (*SetIamPolicyInstanceTemplateRequest)(nil), // 1984: google.cloud.compute.v1.SetIamPolicyInstanceTemplateRequest - (*SetIamPolicyInstantSnapshotRequest)(nil), // 1985: google.cloud.compute.v1.SetIamPolicyInstantSnapshotRequest - (*SetIamPolicyInterconnectAttachmentGroupRequest)(nil), // 1986: google.cloud.compute.v1.SetIamPolicyInterconnectAttachmentGroupRequest - (*SetIamPolicyInterconnectGroupRequest)(nil), // 1987: google.cloud.compute.v1.SetIamPolicyInterconnectGroupRequest - (*SetIamPolicyLicenseRequest)(nil), // 1988: google.cloud.compute.v1.SetIamPolicyLicenseRequest - (*SetIamPolicyMachineImageRequest)(nil), // 1989: google.cloud.compute.v1.SetIamPolicyMachineImageRequest - (*SetIamPolicyNetworkAttachmentRequest)(nil), // 1990: google.cloud.compute.v1.SetIamPolicyNetworkAttachmentRequest - (*SetIamPolicyNetworkFirewallPolicyRequest)(nil), // 1991: google.cloud.compute.v1.SetIamPolicyNetworkFirewallPolicyRequest - (*SetIamPolicyNodeGroupRequest)(nil), // 1992: google.cloud.compute.v1.SetIamPolicyNodeGroupRequest - (*SetIamPolicyNodeTemplateRequest)(nil), // 1993: google.cloud.compute.v1.SetIamPolicyNodeTemplateRequest - (*SetIamPolicyRegionBackendServiceRequest)(nil), // 1994: google.cloud.compute.v1.SetIamPolicyRegionBackendServiceRequest - (*SetIamPolicyRegionDiskRequest)(nil), // 1995: google.cloud.compute.v1.SetIamPolicyRegionDiskRequest - (*SetIamPolicyRegionInstantSnapshotRequest)(nil), // 1996: google.cloud.compute.v1.SetIamPolicyRegionInstantSnapshotRequest - (*SetIamPolicyRegionNetworkFirewallPolicyRequest)(nil), // 1997: google.cloud.compute.v1.SetIamPolicyRegionNetworkFirewallPolicyRequest - (*SetIamPolicyReservationBlockRequest)(nil), // 1998: google.cloud.compute.v1.SetIamPolicyReservationBlockRequest - (*SetIamPolicyReservationRequest)(nil), // 1999: google.cloud.compute.v1.SetIamPolicyReservationRequest - (*SetIamPolicyReservationSubBlockRequest)(nil), // 2000: google.cloud.compute.v1.SetIamPolicyReservationSubBlockRequest - (*SetIamPolicyResourcePolicyRequest)(nil), // 2001: google.cloud.compute.v1.SetIamPolicyResourcePolicyRequest - (*SetIamPolicyServiceAttachmentRequest)(nil), // 2002: google.cloud.compute.v1.SetIamPolicyServiceAttachmentRequest - (*SetIamPolicySnapshotRequest)(nil), // 2003: google.cloud.compute.v1.SetIamPolicySnapshotRequest - (*SetIamPolicyStoragePoolRequest)(nil), // 2004: google.cloud.compute.v1.SetIamPolicyStoragePoolRequest - (*SetIamPolicySubnetworkRequest)(nil), // 2005: google.cloud.compute.v1.SetIamPolicySubnetworkRequest - (*SetInstanceTemplateInstanceGroupManagerRequest)(nil), // 2006: google.cloud.compute.v1.SetInstanceTemplateInstanceGroupManagerRequest - (*SetInstanceTemplateRegionInstanceGroupManagerRequest)(nil), // 2007: google.cloud.compute.v1.SetInstanceTemplateRegionInstanceGroupManagerRequest - (*SetLabelsAddressRequest)(nil), // 2008: google.cloud.compute.v1.SetLabelsAddressRequest - (*SetLabelsDiskRequest)(nil), // 2009: google.cloud.compute.v1.SetLabelsDiskRequest - (*SetLabelsExternalVpnGatewayRequest)(nil), // 2010: google.cloud.compute.v1.SetLabelsExternalVpnGatewayRequest - (*SetLabelsForwardingRuleRequest)(nil), // 2011: google.cloud.compute.v1.SetLabelsForwardingRuleRequest - (*SetLabelsGlobalAddressRequest)(nil), // 2012: google.cloud.compute.v1.SetLabelsGlobalAddressRequest - (*SetLabelsGlobalForwardingRuleRequest)(nil), // 2013: google.cloud.compute.v1.SetLabelsGlobalForwardingRuleRequest - (*SetLabelsImageRequest)(nil), // 2014: google.cloud.compute.v1.SetLabelsImageRequest - (*SetLabelsInstanceRequest)(nil), // 2015: google.cloud.compute.v1.SetLabelsInstanceRequest - (*SetLabelsInstantSnapshotRequest)(nil), // 2016: google.cloud.compute.v1.SetLabelsInstantSnapshotRequest - (*SetLabelsInterconnectAttachmentRequest)(nil), // 2017: google.cloud.compute.v1.SetLabelsInterconnectAttachmentRequest - (*SetLabelsInterconnectRequest)(nil), // 2018: google.cloud.compute.v1.SetLabelsInterconnectRequest - (*SetLabelsMachineImageRequest)(nil), // 2019: google.cloud.compute.v1.SetLabelsMachineImageRequest - (*SetLabelsRegionDiskRequest)(nil), // 2020: google.cloud.compute.v1.SetLabelsRegionDiskRequest - (*SetLabelsRegionInstantSnapshotRequest)(nil), // 2021: google.cloud.compute.v1.SetLabelsRegionInstantSnapshotRequest - (*SetLabelsRegionSecurityPolicyRequest)(nil), // 2022: google.cloud.compute.v1.SetLabelsRegionSecurityPolicyRequest - (*SetLabelsSecurityPolicyRequest)(nil), // 2023: google.cloud.compute.v1.SetLabelsSecurityPolicyRequest - (*SetLabelsSnapshotRequest)(nil), // 2024: google.cloud.compute.v1.SetLabelsSnapshotRequest - (*SetLabelsTargetVpnGatewayRequest)(nil), // 2025: google.cloud.compute.v1.SetLabelsTargetVpnGatewayRequest - (*SetLabelsVpnGatewayRequest)(nil), // 2026: google.cloud.compute.v1.SetLabelsVpnGatewayRequest - (*SetLabelsVpnTunnelRequest)(nil), // 2027: google.cloud.compute.v1.SetLabelsVpnTunnelRequest - (*SetMachineResourcesInstanceRequest)(nil), // 2028: google.cloud.compute.v1.SetMachineResourcesInstanceRequest - (*SetMachineTypeInstanceRequest)(nil), // 2029: google.cloud.compute.v1.SetMachineTypeInstanceRequest - (*SetMetadataInstanceRequest)(nil), // 2030: google.cloud.compute.v1.SetMetadataInstanceRequest - (*SetMinCpuPlatformInstanceRequest)(nil), // 2031: google.cloud.compute.v1.SetMinCpuPlatformInstanceRequest - (*SetNameInstanceRequest)(nil), // 2032: google.cloud.compute.v1.SetNameInstanceRequest - (*SetNamedPortsInstanceGroupRequest)(nil), // 2033: google.cloud.compute.v1.SetNamedPortsInstanceGroupRequest - (*SetNamedPortsRegionInstanceGroupRequest)(nil), // 2034: google.cloud.compute.v1.SetNamedPortsRegionInstanceGroupRequest - (*SetNodeTemplateNodeGroupRequest)(nil), // 2035: google.cloud.compute.v1.SetNodeTemplateNodeGroupRequest - (*SetPrivateIpGoogleAccessSubnetworkRequest)(nil), // 2036: google.cloud.compute.v1.SetPrivateIpGoogleAccessSubnetworkRequest - (*SetProxyHeaderTargetSslProxyRequest)(nil), // 2037: google.cloud.compute.v1.SetProxyHeaderTargetSslProxyRequest - (*SetProxyHeaderTargetTcpProxyRequest)(nil), // 2038: google.cloud.compute.v1.SetProxyHeaderTargetTcpProxyRequest - (*SetQuicOverrideTargetHttpsProxyRequest)(nil), // 2039: google.cloud.compute.v1.SetQuicOverrideTargetHttpsProxyRequest - (*SetSchedulingInstanceRequest)(nil), // 2040: google.cloud.compute.v1.SetSchedulingInstanceRequest - (*SetSecurityPolicyBackendServiceRequest)(nil), // 2041: google.cloud.compute.v1.SetSecurityPolicyBackendServiceRequest - (*SetSecurityPolicyInstanceRequest)(nil), // 2042: google.cloud.compute.v1.SetSecurityPolicyInstanceRequest - (*SetSecurityPolicyRegionBackendServiceRequest)(nil), // 2043: google.cloud.compute.v1.SetSecurityPolicyRegionBackendServiceRequest - (*SetSecurityPolicyTargetInstanceRequest)(nil), // 2044: google.cloud.compute.v1.SetSecurityPolicyTargetInstanceRequest - (*SetSecurityPolicyTargetPoolRequest)(nil), // 2045: google.cloud.compute.v1.SetSecurityPolicyTargetPoolRequest - (*SetServiceAccountInstanceRequest)(nil), // 2046: google.cloud.compute.v1.SetServiceAccountInstanceRequest - (*SetShieldedInstanceIntegrityPolicyInstanceRequest)(nil), // 2047: google.cloud.compute.v1.SetShieldedInstanceIntegrityPolicyInstanceRequest - (*SetSslCertificatesRegionTargetHttpsProxyRequest)(nil), // 2048: google.cloud.compute.v1.SetSslCertificatesRegionTargetHttpsProxyRequest - (*SetSslCertificatesTargetHttpsProxyRequest)(nil), // 2049: google.cloud.compute.v1.SetSslCertificatesTargetHttpsProxyRequest - (*SetSslCertificatesTargetSslProxyRequest)(nil), // 2050: google.cloud.compute.v1.SetSslCertificatesTargetSslProxyRequest - (*SetSslPolicyTargetHttpsProxyRequest)(nil), // 2051: google.cloud.compute.v1.SetSslPolicyTargetHttpsProxyRequest - (*SetSslPolicyTargetSslProxyRequest)(nil), // 2052: google.cloud.compute.v1.SetSslPolicyTargetSslProxyRequest - (*SetTagsInstanceRequest)(nil), // 2053: google.cloud.compute.v1.SetTagsInstanceRequest - (*SetTargetForwardingRuleRequest)(nil), // 2054: google.cloud.compute.v1.SetTargetForwardingRuleRequest - (*SetTargetGlobalForwardingRuleRequest)(nil), // 2055: google.cloud.compute.v1.SetTargetGlobalForwardingRuleRequest - (*SetTargetPoolsInstanceGroupManagerRequest)(nil), // 2056: google.cloud.compute.v1.SetTargetPoolsInstanceGroupManagerRequest - (*SetTargetPoolsRegionInstanceGroupManagerRequest)(nil), // 2057: google.cloud.compute.v1.SetTargetPoolsRegionInstanceGroupManagerRequest - (*SetUrlMapRegionTargetHttpProxyRequest)(nil), // 2058: google.cloud.compute.v1.SetUrlMapRegionTargetHttpProxyRequest - (*SetUrlMapRegionTargetHttpsProxyRequest)(nil), // 2059: google.cloud.compute.v1.SetUrlMapRegionTargetHttpsProxyRequest - (*SetUrlMapTargetHttpProxyRequest)(nil), // 2060: google.cloud.compute.v1.SetUrlMapTargetHttpProxyRequest - (*SetUrlMapTargetHttpsProxyRequest)(nil), // 2061: google.cloud.compute.v1.SetUrlMapTargetHttpsProxyRequest - (*SetUsageExportBucketProjectRequest)(nil), // 2062: google.cloud.compute.v1.SetUsageExportBucketProjectRequest - (*ShareSettings)(nil), // 2063: google.cloud.compute.v1.ShareSettings - (*ShareSettingsProjectConfig)(nil), // 2064: google.cloud.compute.v1.ShareSettingsProjectConfig - (*ShieldedInstanceConfig)(nil), // 2065: google.cloud.compute.v1.ShieldedInstanceConfig - (*ShieldedInstanceIdentity)(nil), // 2066: google.cloud.compute.v1.ShieldedInstanceIdentity - (*ShieldedInstanceIdentityEntry)(nil), // 2067: google.cloud.compute.v1.ShieldedInstanceIdentityEntry - (*ShieldedInstanceIntegrityPolicy)(nil), // 2068: google.cloud.compute.v1.ShieldedInstanceIntegrityPolicy - (*SignedUrlKey)(nil), // 2069: google.cloud.compute.v1.SignedUrlKey - (*SimulateMaintenanceEventInstanceRequest)(nil), // 2070: google.cloud.compute.v1.SimulateMaintenanceEventInstanceRequest - (*SimulateMaintenanceEventNodeGroupRequest)(nil), // 2071: google.cloud.compute.v1.SimulateMaintenanceEventNodeGroupRequest - (*Snapshot)(nil), // 2072: google.cloud.compute.v1.Snapshot - (*SnapshotList)(nil), // 2073: google.cloud.compute.v1.SnapshotList - (*SnapshotParams)(nil), // 2074: google.cloud.compute.v1.SnapshotParams - (*SnapshotSettings)(nil), // 2075: google.cloud.compute.v1.SnapshotSettings - (*SnapshotSettingsStorageLocationSettings)(nil), // 2076: google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings - (*SnapshotSettingsStorageLocationSettingsStorageLocationPreference)(nil), // 2077: google.cloud.compute.v1.SnapshotSettingsStorageLocationSettingsStorageLocationPreference - (*SourceDiskEncryptionKey)(nil), // 2078: google.cloud.compute.v1.SourceDiskEncryptionKey - (*SourceInstanceParams)(nil), // 2079: google.cloud.compute.v1.SourceInstanceParams - (*SourceInstanceProperties)(nil), // 2080: google.cloud.compute.v1.SourceInstanceProperties - (*SslCertificate)(nil), // 2081: google.cloud.compute.v1.SslCertificate - (*SslCertificateAggregatedList)(nil), // 2082: google.cloud.compute.v1.SslCertificateAggregatedList - (*SslCertificateList)(nil), // 2083: google.cloud.compute.v1.SslCertificateList - (*SslCertificateManagedSslCertificate)(nil), // 2084: google.cloud.compute.v1.SslCertificateManagedSslCertificate - (*SslCertificateSelfManagedSslCertificate)(nil), // 2085: google.cloud.compute.v1.SslCertificateSelfManagedSslCertificate - (*SslCertificatesScopedList)(nil), // 2086: google.cloud.compute.v1.SslCertificatesScopedList - (*SslPoliciesAggregatedList)(nil), // 2087: google.cloud.compute.v1.SslPoliciesAggregatedList - (*SslPoliciesList)(nil), // 2088: google.cloud.compute.v1.SslPoliciesList - (*SslPoliciesListAvailableFeaturesResponse)(nil), // 2089: google.cloud.compute.v1.SslPoliciesListAvailableFeaturesResponse - (*SslPoliciesScopedList)(nil), // 2090: google.cloud.compute.v1.SslPoliciesScopedList - (*SslPolicy)(nil), // 2091: google.cloud.compute.v1.SslPolicy - (*SslPolicyReference)(nil), // 2092: google.cloud.compute.v1.SslPolicyReference - (*StartAsyncReplicationDiskRequest)(nil), // 2093: google.cloud.compute.v1.StartAsyncReplicationDiskRequest - (*StartAsyncReplicationRegionDiskRequest)(nil), // 2094: google.cloud.compute.v1.StartAsyncReplicationRegionDiskRequest - (*StartInstanceRequest)(nil), // 2095: google.cloud.compute.v1.StartInstanceRequest - (*StartInstancesInstanceGroupManagerRequest)(nil), // 2096: google.cloud.compute.v1.StartInstancesInstanceGroupManagerRequest - (*StartInstancesRegionInstanceGroupManagerRequest)(nil), // 2097: google.cloud.compute.v1.StartInstancesRegionInstanceGroupManagerRequest - (*StartWithEncryptionKeyInstanceRequest)(nil), // 2098: google.cloud.compute.v1.StartWithEncryptionKeyInstanceRequest - (*StatefulPolicy)(nil), // 2099: google.cloud.compute.v1.StatefulPolicy - (*StatefulPolicyPreservedState)(nil), // 2100: google.cloud.compute.v1.StatefulPolicyPreservedState - (*StatefulPolicyPreservedStateDiskDevice)(nil), // 2101: google.cloud.compute.v1.StatefulPolicyPreservedStateDiskDevice - (*StatefulPolicyPreservedStateNetworkIp)(nil), // 2102: google.cloud.compute.v1.StatefulPolicyPreservedStateNetworkIp - (*Status)(nil), // 2103: google.cloud.compute.v1.Status - (*StopAsyncReplicationDiskRequest)(nil), // 2104: google.cloud.compute.v1.StopAsyncReplicationDiskRequest - (*StopAsyncReplicationRegionDiskRequest)(nil), // 2105: google.cloud.compute.v1.StopAsyncReplicationRegionDiskRequest - (*StopGroupAsyncReplicationDiskRequest)(nil), // 2106: google.cloud.compute.v1.StopGroupAsyncReplicationDiskRequest - (*StopGroupAsyncReplicationRegionDiskRequest)(nil), // 2107: google.cloud.compute.v1.StopGroupAsyncReplicationRegionDiskRequest - (*StopInstanceRequest)(nil), // 2108: google.cloud.compute.v1.StopInstanceRequest - (*StopInstancesInstanceGroupManagerRequest)(nil), // 2109: google.cloud.compute.v1.StopInstancesInstanceGroupManagerRequest - (*StopInstancesRegionInstanceGroupManagerRequest)(nil), // 2110: google.cloud.compute.v1.StopInstancesRegionInstanceGroupManagerRequest - (*StoragePool)(nil), // 2111: google.cloud.compute.v1.StoragePool - (*StoragePoolAggregatedList)(nil), // 2112: google.cloud.compute.v1.StoragePoolAggregatedList - (*StoragePoolDisk)(nil), // 2113: google.cloud.compute.v1.StoragePoolDisk - (*StoragePoolExapoolProvisionedCapacityGb)(nil), // 2114: google.cloud.compute.v1.StoragePoolExapoolProvisionedCapacityGb - (*StoragePoolList)(nil), // 2115: google.cloud.compute.v1.StoragePoolList - (*StoragePoolListDisks)(nil), // 2116: google.cloud.compute.v1.StoragePoolListDisks - (*StoragePoolParams)(nil), // 2117: google.cloud.compute.v1.StoragePoolParams - (*StoragePoolResourceStatus)(nil), // 2118: google.cloud.compute.v1.StoragePoolResourceStatus - (*StoragePoolType)(nil), // 2119: google.cloud.compute.v1.StoragePoolType - (*StoragePoolTypeAggregatedList)(nil), // 2120: google.cloud.compute.v1.StoragePoolTypeAggregatedList - (*StoragePoolTypeList)(nil), // 2121: google.cloud.compute.v1.StoragePoolTypeList - (*StoragePoolTypesScopedList)(nil), // 2122: google.cloud.compute.v1.StoragePoolTypesScopedList - (*StoragePoolsScopedList)(nil), // 2123: google.cloud.compute.v1.StoragePoolsScopedList - (*Subnetwork)(nil), // 2124: google.cloud.compute.v1.Subnetwork - (*SubnetworkAggregatedList)(nil), // 2125: google.cloud.compute.v1.SubnetworkAggregatedList - (*SubnetworkList)(nil), // 2126: google.cloud.compute.v1.SubnetworkList - (*SubnetworkLogConfig)(nil), // 2127: google.cloud.compute.v1.SubnetworkLogConfig - (*SubnetworkParams)(nil), // 2128: google.cloud.compute.v1.SubnetworkParams - (*SubnetworkSecondaryRange)(nil), // 2129: google.cloud.compute.v1.SubnetworkSecondaryRange - (*SubnetworkUtilizationDetails)(nil), // 2130: google.cloud.compute.v1.SubnetworkUtilizationDetails - (*SubnetworkUtilizationDetailsIPV4Utilization)(nil), // 2131: google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV4Utilization - (*SubnetworkUtilizationDetailsIPV6Utilization)(nil), // 2132: google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV6Utilization - (*SubnetworksExpandIpCidrRangeRequest)(nil), // 2133: google.cloud.compute.v1.SubnetworksExpandIpCidrRangeRequest - (*SubnetworksScopedList)(nil), // 2134: google.cloud.compute.v1.SubnetworksScopedList - (*SubnetworksScopedWarning)(nil), // 2135: google.cloud.compute.v1.SubnetworksScopedWarning - (*SubnetworksSetPrivateIpGoogleAccessRequest)(nil), // 2136: google.cloud.compute.v1.SubnetworksSetPrivateIpGoogleAccessRequest - (*Subsetting)(nil), // 2137: google.cloud.compute.v1.Subsetting - (*SuspendInstanceRequest)(nil), // 2138: google.cloud.compute.v1.SuspendInstanceRequest - (*SuspendInstancesInstanceGroupManagerRequest)(nil), // 2139: google.cloud.compute.v1.SuspendInstancesInstanceGroupManagerRequest - (*SuspendInstancesRegionInstanceGroupManagerRequest)(nil), // 2140: google.cloud.compute.v1.SuspendInstancesRegionInstanceGroupManagerRequest - (*SwitchToCustomModeNetworkRequest)(nil), // 2141: google.cloud.compute.v1.SwitchToCustomModeNetworkRequest - (*TCPHealthCheck)(nil), // 2142: google.cloud.compute.v1.TCPHealthCheck - (*Tags)(nil), // 2143: google.cloud.compute.v1.Tags - (*TargetGrpcProxy)(nil), // 2144: google.cloud.compute.v1.TargetGrpcProxy - (*TargetGrpcProxyList)(nil), // 2145: google.cloud.compute.v1.TargetGrpcProxyList - (*TargetHttpProxiesScopedList)(nil), // 2146: google.cloud.compute.v1.TargetHttpProxiesScopedList - (*TargetHttpProxy)(nil), // 2147: google.cloud.compute.v1.TargetHttpProxy - (*TargetHttpProxyAggregatedList)(nil), // 2148: google.cloud.compute.v1.TargetHttpProxyAggregatedList - (*TargetHttpProxyList)(nil), // 2149: google.cloud.compute.v1.TargetHttpProxyList - (*TargetHttpsProxiesScopedList)(nil), // 2150: google.cloud.compute.v1.TargetHttpsProxiesScopedList - (*TargetHttpsProxiesSetCertificateMapRequest)(nil), // 2151: google.cloud.compute.v1.TargetHttpsProxiesSetCertificateMapRequest - (*TargetHttpsProxiesSetQuicOverrideRequest)(nil), // 2152: google.cloud.compute.v1.TargetHttpsProxiesSetQuicOverrideRequest - (*TargetHttpsProxiesSetSslCertificatesRequest)(nil), // 2153: google.cloud.compute.v1.TargetHttpsProxiesSetSslCertificatesRequest - (*TargetHttpsProxy)(nil), // 2154: google.cloud.compute.v1.TargetHttpsProxy - (*TargetHttpsProxyAggregatedList)(nil), // 2155: google.cloud.compute.v1.TargetHttpsProxyAggregatedList - (*TargetHttpsProxyList)(nil), // 2156: google.cloud.compute.v1.TargetHttpsProxyList - (*TargetInstance)(nil), // 2157: google.cloud.compute.v1.TargetInstance - (*TargetInstanceAggregatedList)(nil), // 2158: google.cloud.compute.v1.TargetInstanceAggregatedList - (*TargetInstanceList)(nil), // 2159: google.cloud.compute.v1.TargetInstanceList - (*TargetInstancesScopedList)(nil), // 2160: google.cloud.compute.v1.TargetInstancesScopedList - (*TargetPool)(nil), // 2161: google.cloud.compute.v1.TargetPool - (*TargetPoolAggregatedList)(nil), // 2162: google.cloud.compute.v1.TargetPoolAggregatedList - (*TargetPoolInstanceHealth)(nil), // 2163: google.cloud.compute.v1.TargetPoolInstanceHealth - (*TargetPoolList)(nil), // 2164: google.cloud.compute.v1.TargetPoolList - (*TargetPoolsAddHealthCheckRequest)(nil), // 2165: google.cloud.compute.v1.TargetPoolsAddHealthCheckRequest - (*TargetPoolsAddInstanceRequest)(nil), // 2166: google.cloud.compute.v1.TargetPoolsAddInstanceRequest - (*TargetPoolsRemoveHealthCheckRequest)(nil), // 2167: google.cloud.compute.v1.TargetPoolsRemoveHealthCheckRequest - (*TargetPoolsRemoveInstanceRequest)(nil), // 2168: google.cloud.compute.v1.TargetPoolsRemoveInstanceRequest - (*TargetPoolsScopedList)(nil), // 2169: google.cloud.compute.v1.TargetPoolsScopedList - (*TargetReference)(nil), // 2170: google.cloud.compute.v1.TargetReference - (*TargetSslProxiesSetBackendServiceRequest)(nil), // 2171: google.cloud.compute.v1.TargetSslProxiesSetBackendServiceRequest - (*TargetSslProxiesSetCertificateMapRequest)(nil), // 2172: google.cloud.compute.v1.TargetSslProxiesSetCertificateMapRequest - (*TargetSslProxiesSetProxyHeaderRequest)(nil), // 2173: google.cloud.compute.v1.TargetSslProxiesSetProxyHeaderRequest - (*TargetSslProxiesSetSslCertificatesRequest)(nil), // 2174: google.cloud.compute.v1.TargetSslProxiesSetSslCertificatesRequest - (*TargetSslProxy)(nil), // 2175: google.cloud.compute.v1.TargetSslProxy - (*TargetSslProxyList)(nil), // 2176: google.cloud.compute.v1.TargetSslProxyList - (*TargetTcpProxiesScopedList)(nil), // 2177: google.cloud.compute.v1.TargetTcpProxiesScopedList - (*TargetTcpProxiesSetBackendServiceRequest)(nil), // 2178: google.cloud.compute.v1.TargetTcpProxiesSetBackendServiceRequest - (*TargetTcpProxiesSetProxyHeaderRequest)(nil), // 2179: google.cloud.compute.v1.TargetTcpProxiesSetProxyHeaderRequest - (*TargetTcpProxy)(nil), // 2180: google.cloud.compute.v1.TargetTcpProxy - (*TargetTcpProxyAggregatedList)(nil), // 2181: google.cloud.compute.v1.TargetTcpProxyAggregatedList - (*TargetTcpProxyList)(nil), // 2182: google.cloud.compute.v1.TargetTcpProxyList - (*TargetVpnGateway)(nil), // 2183: google.cloud.compute.v1.TargetVpnGateway - (*TargetVpnGatewayAggregatedList)(nil), // 2184: google.cloud.compute.v1.TargetVpnGatewayAggregatedList - (*TargetVpnGatewayList)(nil), // 2185: google.cloud.compute.v1.TargetVpnGatewayList - (*TargetVpnGatewayParams)(nil), // 2186: google.cloud.compute.v1.TargetVpnGatewayParams - (*TargetVpnGatewaysScopedList)(nil), // 2187: google.cloud.compute.v1.TargetVpnGatewaysScopedList - (*TestFailure)(nil), // 2188: google.cloud.compute.v1.TestFailure - (*TestIamPermissionsAddressRequest)(nil), // 2189: google.cloud.compute.v1.TestIamPermissionsAddressRequest - (*TestIamPermissionsAutoscalerRequest)(nil), // 2190: google.cloud.compute.v1.TestIamPermissionsAutoscalerRequest - (*TestIamPermissionsBackendBucketRequest)(nil), // 2191: google.cloud.compute.v1.TestIamPermissionsBackendBucketRequest - (*TestIamPermissionsBackendServiceRequest)(nil), // 2192: google.cloud.compute.v1.TestIamPermissionsBackendServiceRequest - (*TestIamPermissionsDiskRequest)(nil), // 2193: google.cloud.compute.v1.TestIamPermissionsDiskRequest - (*TestIamPermissionsExternalVpnGatewayRequest)(nil), // 2194: google.cloud.compute.v1.TestIamPermissionsExternalVpnGatewayRequest - (*TestIamPermissionsFirewallPolicyRequest)(nil), // 2195: google.cloud.compute.v1.TestIamPermissionsFirewallPolicyRequest - (*TestIamPermissionsFirewallRequest)(nil), // 2196: google.cloud.compute.v1.TestIamPermissionsFirewallRequest - (*TestIamPermissionsGlobalAddressRequest)(nil), // 2197: google.cloud.compute.v1.TestIamPermissionsGlobalAddressRequest - (*TestIamPermissionsHealthCheckRequest)(nil), // 2198: google.cloud.compute.v1.TestIamPermissionsHealthCheckRequest - (*TestIamPermissionsImageRequest)(nil), // 2199: google.cloud.compute.v1.TestIamPermissionsImageRequest - (*TestIamPermissionsInstanceGroupRequest)(nil), // 2200: google.cloud.compute.v1.TestIamPermissionsInstanceGroupRequest - (*TestIamPermissionsInstanceRequest)(nil), // 2201: google.cloud.compute.v1.TestIamPermissionsInstanceRequest - (*TestIamPermissionsInstanceTemplateRequest)(nil), // 2202: google.cloud.compute.v1.TestIamPermissionsInstanceTemplateRequest - (*TestIamPermissionsInstantSnapshotRequest)(nil), // 2203: google.cloud.compute.v1.TestIamPermissionsInstantSnapshotRequest - (*TestIamPermissionsInterconnectAttachmentGroupRequest)(nil), // 2204: google.cloud.compute.v1.TestIamPermissionsInterconnectAttachmentGroupRequest - (*TestIamPermissionsInterconnectGroupRequest)(nil), // 2205: google.cloud.compute.v1.TestIamPermissionsInterconnectGroupRequest - (*TestIamPermissionsLicenseCodeRequest)(nil), // 2206: google.cloud.compute.v1.TestIamPermissionsLicenseCodeRequest - (*TestIamPermissionsLicenseRequest)(nil), // 2207: google.cloud.compute.v1.TestIamPermissionsLicenseRequest - (*TestIamPermissionsMachineImageRequest)(nil), // 2208: google.cloud.compute.v1.TestIamPermissionsMachineImageRequest - (*TestIamPermissionsNetworkAttachmentRequest)(nil), // 2209: google.cloud.compute.v1.TestIamPermissionsNetworkAttachmentRequest - (*TestIamPermissionsNetworkEndpointGroupRequest)(nil), // 2210: google.cloud.compute.v1.TestIamPermissionsNetworkEndpointGroupRequest - (*TestIamPermissionsNetworkFirewallPolicyRequest)(nil), // 2211: google.cloud.compute.v1.TestIamPermissionsNetworkFirewallPolicyRequest - (*TestIamPermissionsNodeGroupRequest)(nil), // 2212: google.cloud.compute.v1.TestIamPermissionsNodeGroupRequest - (*TestIamPermissionsNodeTemplateRequest)(nil), // 2213: google.cloud.compute.v1.TestIamPermissionsNodeTemplateRequest - (*TestIamPermissionsPacketMirroringRequest)(nil), // 2214: google.cloud.compute.v1.TestIamPermissionsPacketMirroringRequest - (*TestIamPermissionsRegionAutoscalerRequest)(nil), // 2215: google.cloud.compute.v1.TestIamPermissionsRegionAutoscalerRequest - (*TestIamPermissionsRegionBackendServiceRequest)(nil), // 2216: google.cloud.compute.v1.TestIamPermissionsRegionBackendServiceRequest - (*TestIamPermissionsRegionCompositeHealthCheckRequest)(nil), // 2217: google.cloud.compute.v1.TestIamPermissionsRegionCompositeHealthCheckRequest - (*TestIamPermissionsRegionDiskRequest)(nil), // 2218: google.cloud.compute.v1.TestIamPermissionsRegionDiskRequest - (*TestIamPermissionsRegionHealthAggregationPolicyRequest)(nil), // 2219: google.cloud.compute.v1.TestIamPermissionsRegionHealthAggregationPolicyRequest - (*TestIamPermissionsRegionHealthCheckRequest)(nil), // 2220: google.cloud.compute.v1.TestIamPermissionsRegionHealthCheckRequest - (*TestIamPermissionsRegionHealthCheckServiceRequest)(nil), // 2221: google.cloud.compute.v1.TestIamPermissionsRegionHealthCheckServiceRequest - (*TestIamPermissionsRegionHealthSourceRequest)(nil), // 2222: google.cloud.compute.v1.TestIamPermissionsRegionHealthSourceRequest - (*TestIamPermissionsRegionInstanceGroupRequest)(nil), // 2223: google.cloud.compute.v1.TestIamPermissionsRegionInstanceGroupRequest - (*TestIamPermissionsRegionInstantSnapshotRequest)(nil), // 2224: google.cloud.compute.v1.TestIamPermissionsRegionInstantSnapshotRequest - (*TestIamPermissionsRegionNetworkFirewallPolicyRequest)(nil), // 2225: google.cloud.compute.v1.TestIamPermissionsRegionNetworkFirewallPolicyRequest - (*TestIamPermissionsRegionNotificationEndpointRequest)(nil), // 2226: google.cloud.compute.v1.TestIamPermissionsRegionNotificationEndpointRequest - (*TestIamPermissionsReservationBlockRequest)(nil), // 2227: google.cloud.compute.v1.TestIamPermissionsReservationBlockRequest - (*TestIamPermissionsReservationRequest)(nil), // 2228: google.cloud.compute.v1.TestIamPermissionsReservationRequest - (*TestIamPermissionsReservationSubBlockRequest)(nil), // 2229: google.cloud.compute.v1.TestIamPermissionsReservationSubBlockRequest - (*TestIamPermissionsResourcePolicyRequest)(nil), // 2230: google.cloud.compute.v1.TestIamPermissionsResourcePolicyRequest - (*TestIamPermissionsRouteRequest)(nil), // 2231: google.cloud.compute.v1.TestIamPermissionsRouteRequest - (*TestIamPermissionsServiceAttachmentRequest)(nil), // 2232: google.cloud.compute.v1.TestIamPermissionsServiceAttachmentRequest - (*TestIamPermissionsSnapshotRequest)(nil), // 2233: google.cloud.compute.v1.TestIamPermissionsSnapshotRequest - (*TestIamPermissionsStoragePoolRequest)(nil), // 2234: google.cloud.compute.v1.TestIamPermissionsStoragePoolRequest - (*TestIamPermissionsSubnetworkRequest)(nil), // 2235: google.cloud.compute.v1.TestIamPermissionsSubnetworkRequest - (*TestIamPermissionsTargetInstanceRequest)(nil), // 2236: google.cloud.compute.v1.TestIamPermissionsTargetInstanceRequest - (*TestIamPermissionsTargetPoolRequest)(nil), // 2237: google.cloud.compute.v1.TestIamPermissionsTargetPoolRequest - (*TestIamPermissionsTargetSslProxyRequest)(nil), // 2238: google.cloud.compute.v1.TestIamPermissionsTargetSslProxyRequest - (*TestIamPermissionsTargetTcpProxyRequest)(nil), // 2239: google.cloud.compute.v1.TestIamPermissionsTargetTcpProxyRequest - (*TestIamPermissionsUrlMapRequest)(nil), // 2240: google.cloud.compute.v1.TestIamPermissionsUrlMapRequest - (*TestIamPermissionsVpnGatewayRequest)(nil), // 2241: google.cloud.compute.v1.TestIamPermissionsVpnGatewayRequest - (*TestPermissionsRequest)(nil), // 2242: google.cloud.compute.v1.TestPermissionsRequest - (*TestPermissionsResponse)(nil), // 2243: google.cloud.compute.v1.TestPermissionsResponse - (*Uint128)(nil), // 2244: google.cloud.compute.v1.Uint128 - (*UpcomingMaintenance)(nil), // 2245: google.cloud.compute.v1.UpcomingMaintenance - (*UpdateAccessConfigInstanceRequest)(nil), // 2246: google.cloud.compute.v1.UpdateAccessConfigInstanceRequest - (*UpdateAutoscalerRequest)(nil), // 2247: google.cloud.compute.v1.UpdateAutoscalerRequest - (*UpdateBackendBucketRequest)(nil), // 2248: google.cloud.compute.v1.UpdateBackendBucketRequest - (*UpdateBackendServiceRequest)(nil), // 2249: google.cloud.compute.v1.UpdateBackendServiceRequest - (*UpdateDiskRequest)(nil), // 2250: google.cloud.compute.v1.UpdateDiskRequest - (*UpdateDisplayDeviceInstanceRequest)(nil), // 2251: google.cloud.compute.v1.UpdateDisplayDeviceInstanceRequest - (*UpdateFirewallRequest)(nil), // 2252: google.cloud.compute.v1.UpdateFirewallRequest - (*UpdateFutureReservationRequest)(nil), // 2253: google.cloud.compute.v1.UpdateFutureReservationRequest - (*UpdateHealthCheckRequest)(nil), // 2254: google.cloud.compute.v1.UpdateHealthCheckRequest - (*UpdateInstanceRequest)(nil), // 2255: google.cloud.compute.v1.UpdateInstanceRequest - (*UpdateLicenseRequest)(nil), // 2256: google.cloud.compute.v1.UpdateLicenseRequest - (*UpdateNetworkInterfaceInstanceRequest)(nil), // 2257: google.cloud.compute.v1.UpdateNetworkInterfaceInstanceRequest - (*UpdatePeeringNetworkRequest)(nil), // 2258: google.cloud.compute.v1.UpdatePeeringNetworkRequest - (*UpdatePerInstanceConfigsInstanceGroupManagerRequest)(nil), // 2259: google.cloud.compute.v1.UpdatePerInstanceConfigsInstanceGroupManagerRequest - (*UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest)(nil), // 2260: google.cloud.compute.v1.UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest - (*UpdatePreviewFeatureRequest)(nil), // 2261: google.cloud.compute.v1.UpdatePreviewFeatureRequest - (*UpdateRegionAutoscalerRequest)(nil), // 2262: google.cloud.compute.v1.UpdateRegionAutoscalerRequest - (*UpdateRegionBackendServiceRequest)(nil), // 2263: google.cloud.compute.v1.UpdateRegionBackendServiceRequest - (*UpdateRegionCommitmentRequest)(nil), // 2264: google.cloud.compute.v1.UpdateRegionCommitmentRequest - (*UpdateRegionDiskRequest)(nil), // 2265: google.cloud.compute.v1.UpdateRegionDiskRequest - (*UpdateRegionHealthCheckRequest)(nil), // 2266: google.cloud.compute.v1.UpdateRegionHealthCheckRequest - (*UpdateRegionUrlMapRequest)(nil), // 2267: google.cloud.compute.v1.UpdateRegionUrlMapRequest - (*UpdateReservationRequest)(nil), // 2268: google.cloud.compute.v1.UpdateReservationRequest - (*UpdateReservationSlotRequest)(nil), // 2269: google.cloud.compute.v1.UpdateReservationSlotRequest - (*UpdateRoutePolicyRouterRequest)(nil), // 2270: google.cloud.compute.v1.UpdateRoutePolicyRouterRequest - (*UpdateRouterRequest)(nil), // 2271: google.cloud.compute.v1.UpdateRouterRequest - (*UpdateShieldedInstanceConfigInstanceRequest)(nil), // 2272: google.cloud.compute.v1.UpdateShieldedInstanceConfigInstanceRequest - (*UpdateStoragePoolRequest)(nil), // 2273: google.cloud.compute.v1.UpdateStoragePoolRequest - (*UpdateUrlMapRequest)(nil), // 2274: google.cloud.compute.v1.UpdateUrlMapRequest - (*UrlMap)(nil), // 2275: google.cloud.compute.v1.UrlMap - (*UrlMapList)(nil), // 2276: google.cloud.compute.v1.UrlMapList - (*UrlMapReference)(nil), // 2277: google.cloud.compute.v1.UrlMapReference - (*UrlMapTest)(nil), // 2278: google.cloud.compute.v1.UrlMapTest - (*UrlMapTestHeader)(nil), // 2279: google.cloud.compute.v1.UrlMapTestHeader - (*UrlMapValidationResult)(nil), // 2280: google.cloud.compute.v1.UrlMapValidationResult - (*UrlMapsAggregatedList)(nil), // 2281: google.cloud.compute.v1.UrlMapsAggregatedList - (*UrlMapsScopedList)(nil), // 2282: google.cloud.compute.v1.UrlMapsScopedList - (*UrlMapsValidateRequest)(nil), // 2283: google.cloud.compute.v1.UrlMapsValidateRequest - (*UrlMapsValidateResponse)(nil), // 2284: google.cloud.compute.v1.UrlMapsValidateResponse - (*UrlRewrite)(nil), // 2285: google.cloud.compute.v1.UrlRewrite - (*UsableSubnetwork)(nil), // 2286: google.cloud.compute.v1.UsableSubnetwork - (*UsableSubnetworkSecondaryRange)(nil), // 2287: google.cloud.compute.v1.UsableSubnetworkSecondaryRange - (*UsableSubnetworksAggregatedList)(nil), // 2288: google.cloud.compute.v1.UsableSubnetworksAggregatedList - (*UsageExportLocation)(nil), // 2289: google.cloud.compute.v1.UsageExportLocation - (*ValidateRegionUrlMapRequest)(nil), // 2290: google.cloud.compute.v1.ValidateRegionUrlMapRequest - (*ValidateUrlMapRequest)(nil), // 2291: google.cloud.compute.v1.ValidateUrlMapRequest - (*VmEndpointNatMappings)(nil), // 2292: google.cloud.compute.v1.VmEndpointNatMappings - (*VmEndpointNatMappingsInterfaceNatMappings)(nil), // 2293: google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappings - (*VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings)(nil), // 2294: google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings - (*VmEndpointNatMappingsList)(nil), // 2295: google.cloud.compute.v1.VmEndpointNatMappingsList - (*VpnGateway)(nil), // 2296: google.cloud.compute.v1.VpnGateway - (*VpnGatewayAggregatedList)(nil), // 2297: google.cloud.compute.v1.VpnGatewayAggregatedList - (*VpnGatewayList)(nil), // 2298: google.cloud.compute.v1.VpnGatewayList - (*VpnGatewayParams)(nil), // 2299: google.cloud.compute.v1.VpnGatewayParams - (*VpnGatewayStatus)(nil), // 2300: google.cloud.compute.v1.VpnGatewayStatus - (*VpnGatewayStatusHighAvailabilityRequirementState)(nil), // 2301: google.cloud.compute.v1.VpnGatewayStatusHighAvailabilityRequirementState - (*VpnGatewayStatusTunnel)(nil), // 2302: google.cloud.compute.v1.VpnGatewayStatusTunnel - (*VpnGatewayStatusVpnConnection)(nil), // 2303: google.cloud.compute.v1.VpnGatewayStatusVpnConnection - (*VpnGatewayVpnGatewayInterface)(nil), // 2304: google.cloud.compute.v1.VpnGatewayVpnGatewayInterface - (*VpnGatewaysGetStatusResponse)(nil), // 2305: google.cloud.compute.v1.VpnGatewaysGetStatusResponse - (*VpnGatewaysScopedList)(nil), // 2306: google.cloud.compute.v1.VpnGatewaysScopedList - (*VpnTunnel)(nil), // 2307: google.cloud.compute.v1.VpnTunnel - (*VpnTunnelAggregatedList)(nil), // 2308: google.cloud.compute.v1.VpnTunnelAggregatedList - (*VpnTunnelCipherSuite)(nil), // 2309: google.cloud.compute.v1.VpnTunnelCipherSuite - (*VpnTunnelList)(nil), // 2310: google.cloud.compute.v1.VpnTunnelList - (*VpnTunnelParams)(nil), // 2311: google.cloud.compute.v1.VpnTunnelParams - (*VpnTunnelPhase1Algorithms)(nil), // 2312: google.cloud.compute.v1.VpnTunnelPhase1Algorithms - (*VpnTunnelPhase2Algorithms)(nil), // 2313: google.cloud.compute.v1.VpnTunnelPhase2Algorithms - (*VpnTunnelsScopedList)(nil), // 2314: google.cloud.compute.v1.VpnTunnelsScopedList - (*WafExpressionSet)(nil), // 2315: google.cloud.compute.v1.WafExpressionSet - (*WafExpressionSetExpression)(nil), // 2316: google.cloud.compute.v1.WafExpressionSetExpression - (*WaitGlobalOperationRequest)(nil), // 2317: google.cloud.compute.v1.WaitGlobalOperationRequest - (*WaitRegionOperationRequest)(nil), // 2318: google.cloud.compute.v1.WaitRegionOperationRequest - (*WaitZoneOperationRequest)(nil), // 2319: google.cloud.compute.v1.WaitZoneOperationRequest - (*Warning)(nil), // 2320: google.cloud.compute.v1.Warning - (*Warnings)(nil), // 2321: google.cloud.compute.v1.Warnings - (*WeightedBackendService)(nil), // 2322: google.cloud.compute.v1.WeightedBackendService - (*Wire)(nil), // 2323: google.cloud.compute.v1.Wire - (*WireEndpoint)(nil), // 2324: google.cloud.compute.v1.WireEndpoint - (*WireGroup)(nil), // 2325: google.cloud.compute.v1.WireGroup - (*WireGroupEndpoint)(nil), // 2326: google.cloud.compute.v1.WireGroupEndpoint - (*WireGroupEndpointInterconnect)(nil), // 2327: google.cloud.compute.v1.WireGroupEndpointInterconnect - (*WireGroupList)(nil), // 2328: google.cloud.compute.v1.WireGroupList - (*WireGroupTopology)(nil), // 2329: google.cloud.compute.v1.WireGroupTopology - (*WireGroupTopologyEndpoint)(nil), // 2330: google.cloud.compute.v1.WireGroupTopologyEndpoint - (*WireProperties)(nil), // 2331: google.cloud.compute.v1.WireProperties - (*WithdrawPublicAdvertisedPrefixeRequest)(nil), // 2332: google.cloud.compute.v1.WithdrawPublicAdvertisedPrefixeRequest - (*WithdrawPublicDelegatedPrefixeRequest)(nil), // 2333: google.cloud.compute.v1.WithdrawPublicDelegatedPrefixeRequest - (*WorkloadIdentityConfig)(nil), // 2334: google.cloud.compute.v1.WorkloadIdentityConfig - (*XpnHostList)(nil), // 2335: google.cloud.compute.v1.XpnHostList - (*XpnResourceId)(nil), // 2336: google.cloud.compute.v1.XpnResourceId - (*Zone)(nil), // 2337: google.cloud.compute.v1.Zone - (*ZoneList)(nil), // 2338: google.cloud.compute.v1.ZoneList - (*ZoneSetLabelsRequest)(nil), // 2339: google.cloud.compute.v1.ZoneSetLabelsRequest - (*ZoneSetNestedPolicyRequest)(nil), // 2340: google.cloud.compute.v1.ZoneSetNestedPolicyRequest - (*ZoneSetPolicyRequest)(nil), // 2341: google.cloud.compute.v1.ZoneSetPolicyRequest - nil, // 2342: google.cloud.compute.v1.AcceleratorTypeAggregatedList.ItemsEntry - nil, // 2343: google.cloud.compute.v1.Address.LabelsEntry - nil, // 2344: google.cloud.compute.v1.AddressAggregatedList.ItemsEntry - nil, // 2345: google.cloud.compute.v1.AllocationResourceStatusSpecificSKUAllocation.UtilizationsEntry - nil, // 2346: google.cloud.compute.v1.AttachedDiskInitializeParams.LabelsEntry - nil, // 2347: google.cloud.compute.v1.AttachedDiskInitializeParams.ResourceManagerTagsEntry - nil, // 2348: google.cloud.compute.v1.Autoscaler.ScalingScheduleStatusEntry - nil, // 2349: google.cloud.compute.v1.AutoscalerAggregatedList.ItemsEntry - nil, // 2350: google.cloud.compute.v1.AutoscalingPolicy.ScalingSchedulesEntry - nil, // 2351: google.cloud.compute.v1.BackendBucketParams.ResourceManagerTagsEntry - nil, // 2352: google.cloud.compute.v1.BackendService.MetadatasEntry - nil, // 2353: google.cloud.compute.v1.BackendServiceAggregatedList.ItemsEntry - nil, // 2354: google.cloud.compute.v1.BackendServiceGroupHealth.AnnotationsEntry - nil, // 2355: google.cloud.compute.v1.BackendServiceParams.ResourceManagerTagsEntry - nil, // 2356: google.cloud.compute.v1.BulkInsertInstanceResource.PerInstancePropertiesEntry - nil, // 2357: google.cloud.compute.v1.BulkSetLabelsRequest.LabelsEntry - nil, // 2358: google.cloud.compute.v1.CalendarModeAdviceRequest.FutureResourcesSpecsEntry - nil, // 2359: google.cloud.compute.v1.CalendarModeRecommendation.RecommendationsPerSpecEntry - nil, // 2360: google.cloud.compute.v1.CommitmentAggregatedList.ItemsEntry - nil, // 2361: google.cloud.compute.v1.CompositeHealthCheckAggregatedList.ItemsEntry - nil, // 2362: google.cloud.compute.v1.Disk.AsyncSecondaryDisksEntry - nil, // 2363: google.cloud.compute.v1.Disk.LabelsEntry - nil, // 2364: google.cloud.compute.v1.DiskAggregatedList.ItemsEntry - nil, // 2365: google.cloud.compute.v1.DiskParams.ResourceManagerTagsEntry - nil, // 2366: google.cloud.compute.v1.DiskResourceStatus.AsyncSecondaryDisksEntry - nil, // 2367: google.cloud.compute.v1.DiskTypeAggregatedList.ItemsEntry - nil, // 2368: google.cloud.compute.v1.ErrorInfo.MetadatasEntry - nil, // 2369: google.cloud.compute.v1.ExternalVpnGateway.LabelsEntry - nil, // 2370: google.cloud.compute.v1.ExternalVpnGatewayParams.ResourceManagerTagsEntry - nil, // 2371: google.cloud.compute.v1.FirewallParams.ResourceManagerTagsEntry - nil, // 2372: google.cloud.compute.v1.ForwardingRule.LabelsEntry - nil, // 2373: google.cloud.compute.v1.ForwardingRuleAggregatedList.ItemsEntry - nil, // 2374: google.cloud.compute.v1.FutureReservationsAggregatedListResponse.ItemsEntry - nil, // 2375: google.cloud.compute.v1.FutureResourcesRecommendation.OtherLocationsEntry - nil, // 2376: google.cloud.compute.v1.FutureResourcesSpecLocationPolicy.LocationsEntry - nil, // 2377: google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo.CurrentComponentVersionsEntry - nil, // 2378: google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo.TargetComponentVersionsEntry - nil, // 2379: google.cloud.compute.v1.GlobalSetLabelsRequest.LabelsEntry - nil, // 2380: google.cloud.compute.v1.HealthAggregationPolicyAggregatedList.ItemsEntry - nil, // 2381: google.cloud.compute.v1.HealthCheckServiceAggregatedList.ItemsEntry - nil, // 2382: google.cloud.compute.v1.HealthChecksAggregatedList.ItemsEntry - nil, // 2383: google.cloud.compute.v1.HealthSourceAggregatedList.ItemsEntry - nil, // 2384: google.cloud.compute.v1.HealthStatus.AnnotationsEntry - nil, // 2385: google.cloud.compute.v1.Image.LabelsEntry - nil, // 2386: google.cloud.compute.v1.ImageParams.ResourceManagerTagsEntry - nil, // 2387: google.cloud.compute.v1.Instance.LabelsEntry - nil, // 2388: google.cloud.compute.v1.InstanceAggregatedList.ItemsEntry - nil, // 2389: google.cloud.compute.v1.InstanceFlexibilityPolicy.InstanceSelectionsEntry - nil, // 2390: google.cloud.compute.v1.InstanceGroupAggregatedList.ItemsEntry - nil, // 2391: google.cloud.compute.v1.InstanceGroupManagerAggregatedList.ItemsEntry - nil, // 2392: google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicy.InstanceSelectionsEntry - nil, // 2393: google.cloud.compute.v1.InstanceParams.ResourceManagerTagsEntry - nil, // 2394: google.cloud.compute.v1.InstanceProperties.LabelsEntry - nil, // 2395: google.cloud.compute.v1.InstanceProperties.ResourceManagerTagsEntry - nil, // 2396: google.cloud.compute.v1.InstancePropertiesPatch.LabelsEntry - nil, // 2397: google.cloud.compute.v1.InstancePropertiesPatch.MetadataEntry - nil, // 2398: google.cloud.compute.v1.InstanceSettingsMetadata.ItemsEntry - nil, // 2399: google.cloud.compute.v1.InstanceTemplateAggregatedList.ItemsEntry - nil, // 2400: google.cloud.compute.v1.InstancesBulkInsertOperationMetadata.PerLocationStatusEntry - nil, // 2401: google.cloud.compute.v1.InstancesSetLabelsRequest.LabelsEntry - nil, // 2402: google.cloud.compute.v1.InstantSnapshot.LabelsEntry - nil, // 2403: google.cloud.compute.v1.InstantSnapshotAggregatedList.ItemsEntry - nil, // 2404: google.cloud.compute.v1.InstantSnapshotParams.ResourceManagerTagsEntry - nil, // 2405: google.cloud.compute.v1.Interconnect.LabelsEntry - nil, // 2406: google.cloud.compute.v1.InterconnectAttachment.LabelsEntry - nil, // 2407: google.cloud.compute.v1.InterconnectAttachmentAggregatedList.ItemsEntry - nil, // 2408: google.cloud.compute.v1.InterconnectAttachmentGroup.AttachmentsEntry - nil, // 2409: google.cloud.compute.v1.InterconnectAttachmentL2Forwarding.ApplianceMappingsEntry - nil, // 2410: google.cloud.compute.v1.InterconnectAttachmentParams.ResourceManagerTagsEntry - nil, // 2411: google.cloud.compute.v1.InterconnectGroup.InterconnectsEntry - nil, // 2412: google.cloud.compute.v1.InterconnectParams.ResourceManagerTagsEntry - nil, // 2413: google.cloud.compute.v1.LicenseParams.ResourceManagerTagsEntry - nil, // 2414: google.cloud.compute.v1.LocationPolicy.LocationsEntry - nil, // 2415: google.cloud.compute.v1.MachineImage.LabelsEntry - nil, // 2416: google.cloud.compute.v1.MachineImageParams.ResourceManagerTagsEntry - nil, // 2417: google.cloud.compute.v1.MachineTypeAggregatedList.ItemsEntry - nil, // 2418: google.cloud.compute.v1.NetworkAttachmentAggregatedList.ItemsEntry - nil, // 2419: google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList.ItemsEntry - nil, // 2420: google.cloud.compute.v1.NetworkEndpoint.AnnotationsEntry - nil, // 2421: google.cloud.compute.v1.NetworkEndpointGroup.AnnotationsEntry - nil, // 2422: google.cloud.compute.v1.NetworkEndpointGroupAggregatedList.ItemsEntry - nil, // 2423: google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList.ItemsEntry - nil, // 2424: google.cloud.compute.v1.NetworkParams.ResourceManagerTagsEntry - nil, // 2425: google.cloud.compute.v1.NodeGroupAggregatedList.ItemsEntry - nil, // 2426: google.cloud.compute.v1.NodeTemplate.NodeAffinityLabelsEntry - nil, // 2427: google.cloud.compute.v1.NodeTemplateAggregatedList.ItemsEntry - nil, // 2428: google.cloud.compute.v1.NodeTypeAggregatedList.ItemsEntry - nil, // 2429: google.cloud.compute.v1.NotificationEndpointAggregatedList.ItemsEntry - nil, // 2430: google.cloud.compute.v1.OperationAggregatedList.ItemsEntry - nil, // 2431: google.cloud.compute.v1.PacketMirroringAggregatedList.ItemsEntry - nil, // 2432: google.cloud.compute.v1.PreservedState.DisksEntry - nil, // 2433: google.cloud.compute.v1.PreservedState.ExternalIPsEntry - nil, // 2434: google.cloud.compute.v1.PreservedState.InternalIPsEntry - nil, // 2435: google.cloud.compute.v1.PreservedState.MetadataEntry - nil, // 2436: google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList.ItemsEntry - nil, // 2437: google.cloud.compute.v1.QuotaExceededInfo.DimensionsEntry - nil, // 2438: google.cloud.compute.v1.RegionSetLabelsRequest.LabelsEntry - nil, // 2439: google.cloud.compute.v1.Reservation.ResourcePoliciesEntry - nil, // 2440: google.cloud.compute.v1.ReservationAggregatedList.ItemsEntry - nil, // 2441: google.cloud.compute.v1.ReservationParams.ResourceManagerTagsEntry - nil, // 2442: google.cloud.compute.v1.ResourcePolicyAggregatedList.ItemsEntry - nil, // 2443: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySnapshotProperties.LabelsEntry - nil, // 2444: google.cloud.compute.v1.RouteParams.ResourceManagerTagsEntry - nil, // 2445: google.cloud.compute.v1.RouterAggregatedList.ItemsEntry - nil, // 2446: google.cloud.compute.v1.RouterParams.ResourceManagerTagsEntry - nil, // 2447: google.cloud.compute.v1.SecurityPoliciesAggregatedList.ItemsEntry - nil, // 2448: google.cloud.compute.v1.SecurityPolicy.LabelsEntry - nil, // 2449: google.cloud.compute.v1.ServiceAttachment.MetadataEntry - nil, // 2450: google.cloud.compute.v1.ServiceAttachmentAggregatedList.ItemsEntry - nil, // 2451: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadata.PerLocationOperationsEntry - nil, // 2452: google.cloud.compute.v1.ShareSettings.ProjectMapEntry - nil, // 2453: google.cloud.compute.v1.Snapshot.LabelsEntry - nil, // 2454: google.cloud.compute.v1.SnapshotParams.ResourceManagerTagsEntry - nil, // 2455: google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings.LocationsEntry - nil, // 2456: google.cloud.compute.v1.SourceInstanceProperties.LabelsEntry - nil, // 2457: google.cloud.compute.v1.SslCertificateAggregatedList.ItemsEntry - nil, // 2458: google.cloud.compute.v1.SslCertificateManagedSslCertificate.DomainStatusEntry - nil, // 2459: google.cloud.compute.v1.SslPoliciesAggregatedList.ItemsEntry - nil, // 2460: google.cloud.compute.v1.StatefulPolicyPreservedState.DisksEntry - nil, // 2461: google.cloud.compute.v1.StatefulPolicyPreservedState.ExternalIPsEntry - nil, // 2462: google.cloud.compute.v1.StatefulPolicyPreservedState.InternalIPsEntry - nil, // 2463: google.cloud.compute.v1.StoragePool.LabelsEntry - nil, // 2464: google.cloud.compute.v1.StoragePoolAggregatedList.ItemsEntry - nil, // 2465: google.cloud.compute.v1.StoragePoolParams.ResourceManagerTagsEntry - nil, // 2466: google.cloud.compute.v1.StoragePoolTypeAggregatedList.ItemsEntry - nil, // 2467: google.cloud.compute.v1.SubnetworkAggregatedList.ItemsEntry - nil, // 2468: google.cloud.compute.v1.SubnetworkParams.ResourceManagerTagsEntry - nil, // 2469: google.cloud.compute.v1.TargetHttpProxyAggregatedList.ItemsEntry - nil, // 2470: google.cloud.compute.v1.TargetHttpsProxyAggregatedList.ItemsEntry - nil, // 2471: google.cloud.compute.v1.TargetInstanceAggregatedList.ItemsEntry - nil, // 2472: google.cloud.compute.v1.TargetPoolAggregatedList.ItemsEntry - nil, // 2473: google.cloud.compute.v1.TargetTcpProxyAggregatedList.ItemsEntry - nil, // 2474: google.cloud.compute.v1.TargetVpnGateway.LabelsEntry - nil, // 2475: google.cloud.compute.v1.TargetVpnGatewayAggregatedList.ItemsEntry - nil, // 2476: google.cloud.compute.v1.TargetVpnGatewayParams.ResourceManagerTagsEntry - nil, // 2477: google.cloud.compute.v1.UrlMapsAggregatedList.ItemsEntry - nil, // 2478: google.cloud.compute.v1.VpnGateway.LabelsEntry - nil, // 2479: google.cloud.compute.v1.VpnGatewayAggregatedList.ItemsEntry - nil, // 2480: google.cloud.compute.v1.VpnGatewayParams.ResourceManagerTagsEntry - nil, // 2481: google.cloud.compute.v1.VpnTunnel.LabelsEntry - nil, // 2482: google.cloud.compute.v1.VpnTunnelAggregatedList.ItemsEntry - nil, // 2483: google.cloud.compute.v1.VpnTunnelParams.ResourceManagerTagsEntry - nil, // 2484: google.cloud.compute.v1.WireGroup.EndpointsEntry - nil, // 2485: google.cloud.compute.v1.WireGroupEndpoint.InterconnectsEntry - nil, // 2486: google.cloud.compute.v1.ZoneSetLabelsRequest.LabelsEntry - (*anypb.Any)(nil), // 2487: google.protobuf.Any + (AttachedDisk_Architecture)(0), // 16: google.cloud.compute.v1.AttachedDisk.Architecture + (AttachedDisk_Interface)(0), // 17: google.cloud.compute.v1.AttachedDisk.Interface + (AttachedDisk_Mode)(0), // 18: google.cloud.compute.v1.AttachedDisk.Mode + (AttachedDisk_SavedState)(0), // 19: google.cloud.compute.v1.AttachedDisk.SavedState + (AttachedDisk_Type)(0), // 20: google.cloud.compute.v1.AttachedDisk.Type + (AttachedDiskInitializeParams_Architecture)(0), // 21: google.cloud.compute.v1.AttachedDiskInitializeParams.Architecture + (AttachedDiskInitializeParams_OnUpdateAction)(0), // 22: google.cloud.compute.v1.AttachedDiskInitializeParams.OnUpdateAction + (AuditLogConfig_LogType)(0), // 23: google.cloud.compute.v1.AuditLogConfig.LogType + (Autoscaler_Status)(0), // 24: google.cloud.compute.v1.Autoscaler.Status + (AutoscalerStatusDetails_Type)(0), // 25: google.cloud.compute.v1.AutoscalerStatusDetails.Type + (AutoscalingPolicy_Mode)(0), // 26: google.cloud.compute.v1.AutoscalingPolicy.Mode + (AutoscalingPolicyCpuUtilization_PredictiveMethod)(0), // 27: google.cloud.compute.v1.AutoscalingPolicyCpuUtilization.PredictiveMethod + (AutoscalingPolicyCustomMetricUtilization_UtilizationTargetType)(0), // 28: google.cloud.compute.v1.AutoscalingPolicyCustomMetricUtilization.UtilizationTargetType + (Backend_BalancingMode)(0), // 29: google.cloud.compute.v1.Backend.BalancingMode + (Backend_Preference)(0), // 30: google.cloud.compute.v1.Backend.Preference + (Backend_TrafficDuration)(0), // 31: google.cloud.compute.v1.Backend.TrafficDuration + (BackendBucket_CompressionMode)(0), // 32: google.cloud.compute.v1.BackendBucket.CompressionMode + (BackendBucket_LoadBalancingScheme)(0), // 33: google.cloud.compute.v1.BackendBucket.LoadBalancingScheme + (BackendBucketCdnPolicy_CacheMode)(0), // 34: google.cloud.compute.v1.BackendBucketCdnPolicy.CacheMode + (BackendService_CompressionMode)(0), // 35: google.cloud.compute.v1.BackendService.CompressionMode + (BackendService_ExternalManagedMigrationState)(0), // 36: google.cloud.compute.v1.BackendService.ExternalManagedMigrationState + (BackendService_IpAddressSelectionPolicy)(0), // 37: google.cloud.compute.v1.BackendService.IpAddressSelectionPolicy + (BackendService_LoadBalancingScheme)(0), // 38: google.cloud.compute.v1.BackendService.LoadBalancingScheme + (BackendService_LocalityLbPolicy)(0), // 39: google.cloud.compute.v1.BackendService.LocalityLbPolicy + (BackendService_Protocol)(0), // 40: google.cloud.compute.v1.BackendService.Protocol + (BackendService_SessionAffinity)(0), // 41: google.cloud.compute.v1.BackendService.SessionAffinity + (BackendServiceCdnPolicy_CacheMode)(0), // 42: google.cloud.compute.v1.BackendServiceCdnPolicy.CacheMode + (BackendServiceConnectionTrackingPolicy_ConnectionPersistenceOnUnhealthyBackends)(0), // 43: google.cloud.compute.v1.BackendServiceConnectionTrackingPolicy.ConnectionPersistenceOnUnhealthyBackends + (BackendServiceConnectionTrackingPolicy_TrackingMode)(0), // 44: google.cloud.compute.v1.BackendServiceConnectionTrackingPolicy.TrackingMode + (BackendServiceHAPolicy_FastIPMove)(0), // 45: google.cloud.compute.v1.BackendServiceHAPolicy.FastIPMove + (BackendServiceLocalityLoadBalancingPolicyConfigPolicy_Name)(0), // 46: google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfigPolicy.Name + (BackendServiceLogConfig_OptionalMode)(0), // 47: google.cloud.compute.v1.BackendServiceLogConfig.OptionalMode + (BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity_Spillover)(0), // 48: google.cloud.compute.v1.BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity.Spillover + (BfdPacket_Diagnostic)(0), // 49: google.cloud.compute.v1.BfdPacket.Diagnostic + (BfdPacket_State)(0), // 50: google.cloud.compute.v1.BfdPacket.State + (BfdStatus_BfdSessionInitializationMode)(0), // 51: google.cloud.compute.v1.BfdStatus.BfdSessionInitializationMode + (BfdStatus_LocalDiagnostic)(0), // 52: google.cloud.compute.v1.BfdStatus.LocalDiagnostic + (BfdStatus_LocalState)(0), // 53: google.cloud.compute.v1.BfdStatus.LocalState + (BgpRoute_Origin)(0), // 54: google.cloud.compute.v1.BgpRoute.Origin + (BgpRouteAsPath_Type)(0), // 55: google.cloud.compute.v1.BgpRouteAsPath.Type + (BulkInsertOperationStatus_Status)(0), // 56: google.cloud.compute.v1.BulkInsertOperationStatus.Status + (CachePolicy_CacheMode)(0), // 57: google.cloud.compute.v1.CachePolicy.CacheMode + (Commitment_Category)(0), // 58: google.cloud.compute.v1.Commitment.Category + (Commitment_Plan)(0), // 59: google.cloud.compute.v1.Commitment.Plan + (Commitment_Status)(0), // 60: google.cloud.compute.v1.Commitment.Status + (Commitment_Type)(0), // 61: google.cloud.compute.v1.Commitment.Type + (CompositeHealthCheckHealth_HealthState)(0), // 62: google.cloud.compute.v1.CompositeHealthCheckHealth.HealthState + (CompositeHealthChecksGetHealthResponseHealthSourceHealth_HealthState)(0), // 63: google.cloud.compute.v1.CompositeHealthChecksGetHealthResponseHealthSourceHealth.HealthState + (ConfidentialInstanceConfig_ConfidentialInstanceType)(0), // 64: google.cloud.compute.v1.ConfidentialInstanceConfig.ConfidentialInstanceType + (DeprecationStatus_State)(0), // 65: google.cloud.compute.v1.DeprecationStatus.State + (Disk_AccessMode)(0), // 66: google.cloud.compute.v1.Disk.AccessMode + (Disk_Architecture)(0), // 67: google.cloud.compute.v1.Disk.Architecture + (Disk_Status)(0), // 68: google.cloud.compute.v1.Disk.Status + (DiskInstantiationConfig_InstantiateFrom)(0), // 69: google.cloud.compute.v1.DiskInstantiationConfig.InstantiateFrom + (DiskResourceStatusAsyncReplicationStatus_State)(0), // 70: google.cloud.compute.v1.DiskResourceStatusAsyncReplicationStatus.State + (DistributionPolicy_TargetShape)(0), // 71: google.cloud.compute.v1.DistributionPolicy.TargetShape + (ExchangedPeeringRoute_Type)(0), // 72: google.cloud.compute.v1.ExchangedPeeringRoute.Type + (ExternalVpnGateway_RedundancyType)(0), // 73: google.cloud.compute.v1.ExternalVpnGateway.RedundancyType + (FileContentBuffer_FileType)(0), // 74: google.cloud.compute.v1.FileContentBuffer.FileType + (Firewall_Direction)(0), // 75: google.cloud.compute.v1.Firewall.Direction + (FirewallLogConfig_Metadata)(0), // 76: google.cloud.compute.v1.FirewallLogConfig.Metadata + (FirewallPolicy_PolicyType)(0), // 77: google.cloud.compute.v1.FirewallPolicy.PolicyType + (FirewallPolicyRule_Direction)(0), // 78: google.cloud.compute.v1.FirewallPolicyRule.Direction + (FirewallPolicyRuleMatcher_DestNetworkContext)(0), // 79: google.cloud.compute.v1.FirewallPolicyRuleMatcher.DestNetworkContext + (FirewallPolicyRuleMatcher_DestNetworkType)(0), // 80: google.cloud.compute.v1.FirewallPolicyRuleMatcher.DestNetworkType + (FirewallPolicyRuleMatcher_SrcNetworkContext)(0), // 81: google.cloud.compute.v1.FirewallPolicyRuleMatcher.SrcNetworkContext + (FirewallPolicyRuleMatcher_SrcNetworkType)(0), // 82: google.cloud.compute.v1.FirewallPolicyRuleMatcher.SrcNetworkType + (FirewallPolicyRuleSecureTag_State)(0), // 83: google.cloud.compute.v1.FirewallPolicyRuleSecureTag.State + (ForwardingRule_ExternalManagedBackendBucketMigrationState)(0), // 84: google.cloud.compute.v1.ForwardingRule.ExternalManagedBackendBucketMigrationState + (ForwardingRule_IPProtocolEnum)(0), // 85: google.cloud.compute.v1.ForwardingRule.IPProtocolEnum + (ForwardingRule_IpVersion)(0), // 86: google.cloud.compute.v1.ForwardingRule.IpVersion + (ForwardingRule_LoadBalancingScheme)(0), // 87: google.cloud.compute.v1.ForwardingRule.LoadBalancingScheme + (ForwardingRule_NetworkTier)(0), // 88: google.cloud.compute.v1.ForwardingRule.NetworkTier + (ForwardingRule_PscConnectionStatus)(0), // 89: google.cloud.compute.v1.ForwardingRule.PscConnectionStatus + (FutureReservation_ConfidentialComputeType)(0), // 90: google.cloud.compute.v1.FutureReservation.ConfidentialComputeType + (FutureReservation_DeploymentType)(0), // 91: google.cloud.compute.v1.FutureReservation.DeploymentType + (FutureReservation_PlanningStatus)(0), // 92: google.cloud.compute.v1.FutureReservation.PlanningStatus + (FutureReservation_ReservationMode)(0), // 93: google.cloud.compute.v1.FutureReservation.ReservationMode + (FutureReservation_SchedulingType)(0), // 94: google.cloud.compute.v1.FutureReservation.SchedulingType + (FutureReservationCommitmentInfo_CommitmentPlan)(0), // 95: google.cloud.compute.v1.FutureReservationCommitmentInfo.CommitmentPlan + (FutureReservationCommitmentInfo_PreviousCommitmentTerms)(0), // 96: google.cloud.compute.v1.FutureReservationCommitmentInfo.PreviousCommitmentTerms + (FutureReservationStatus_AmendmentStatus)(0), // 97: google.cloud.compute.v1.FutureReservationStatus.AmendmentStatus + (FutureReservationStatus_ProcurementStatus)(0), // 98: google.cloud.compute.v1.FutureReservationStatus.ProcurementStatus + (FutureReservationStatusLastKnownGoodState_ProcurementStatus)(0), // 99: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodState.ProcurementStatus + (FutureResourcesRecommendation_RecommendationType)(0), // 100: google.cloud.compute.v1.FutureResourcesRecommendation.RecommendationType + (FutureResourcesRecommendationOtherLocation_Status)(0), // 101: google.cloud.compute.v1.FutureResourcesRecommendationOtherLocation.Status + (FutureResourcesSpec_DeploymentType)(0), // 102: google.cloud.compute.v1.FutureResourcesSpec.DeploymentType + (FutureResourcesSpecAggregateResources_VmFamily)(0), // 103: google.cloud.compute.v1.FutureResourcesSpecAggregateResources.VmFamily + (FutureResourcesSpecAggregateResources_WorkloadType)(0), // 104: google.cloud.compute.v1.FutureResourcesSpecAggregateResources.WorkloadType + (FutureResourcesSpecLocalSsdPartition_DiskInterface)(0), // 105: google.cloud.compute.v1.FutureResourcesSpecLocalSsdPartition.DiskInterface + (FutureResourcesSpecLocationPolicyLocation_Preference)(0), // 106: google.cloud.compute.v1.FutureResourcesSpecLocationPolicyLocation.Preference + (GRPCHealthCheck_PortSpecification)(0), // 107: google.cloud.compute.v1.GRPCHealthCheck.PortSpecification + (GRPCTLSHealthCheck_PortSpecification)(0), // 108: google.cloud.compute.v1.GRPCTLSHealthCheck.PortSpecification + (GetReservationBlockRequest_View)(0), // 109: google.cloud.compute.v1.GetReservationBlockRequest.View + (GetReservationSubBlockRequest_View)(0), // 110: google.cloud.compute.v1.GetReservationSubBlockRequest.View + (GetSubnetworkRequest_Views)(0), // 111: google.cloud.compute.v1.GetSubnetworkRequest.Views + (GroupMaintenanceInfo_SchedulingType)(0), // 112: google.cloud.compute.v1.GroupMaintenanceInfo.SchedulingType + (GuestOsFeature_Type)(0), // 113: google.cloud.compute.v1.GuestOsFeature.Type + (HTTP2HealthCheck_PortSpecification)(0), // 114: google.cloud.compute.v1.HTTP2HealthCheck.PortSpecification + (HTTP2HealthCheck_ProxyHeader)(0), // 115: google.cloud.compute.v1.HTTP2HealthCheck.ProxyHeader + (HTTPHealthCheck_PortSpecification)(0), // 116: google.cloud.compute.v1.HTTPHealthCheck.PortSpecification + (HTTPHealthCheck_ProxyHeader)(0), // 117: google.cloud.compute.v1.HTTPHealthCheck.ProxyHeader + (HTTPSHealthCheck_PortSpecification)(0), // 118: google.cloud.compute.v1.HTTPSHealthCheck.PortSpecification + (HTTPSHealthCheck_ProxyHeader)(0), // 119: google.cloud.compute.v1.HTTPSHealthCheck.ProxyHeader + (HealthAggregationPolicy_PolicyType)(0), // 120: google.cloud.compute.v1.HealthAggregationPolicy.PolicyType + (HealthCheck_Type)(0), // 121: google.cloud.compute.v1.HealthCheck.Type + (HealthCheckService_HealthStatusAggregationPolicy)(0), // 122: google.cloud.compute.v1.HealthCheckService.HealthStatusAggregationPolicy + (HealthSource_SourceType)(0), // 123: google.cloud.compute.v1.HealthSource.SourceType + (HealthSourceHealth_HealthState)(0), // 124: google.cloud.compute.v1.HealthSourceHealth.HealthState + (HealthStatus_HealthState)(0), // 125: google.cloud.compute.v1.HealthStatus.HealthState + (HealthStatus_Ipv6HealthState)(0), // 126: google.cloud.compute.v1.HealthStatus.Ipv6HealthState + (HealthStatus_WeightError)(0), // 127: google.cloud.compute.v1.HealthStatus.WeightError + (HealthStatusForNetworkEndpoint_HealthState)(0), // 128: google.cloud.compute.v1.HealthStatusForNetworkEndpoint.HealthState + (HealthStatusForNetworkEndpoint_Ipv6HealthState)(0), // 129: google.cloud.compute.v1.HealthStatusForNetworkEndpoint.Ipv6HealthState + (HttpRedirectAction_RedirectResponseCode)(0), // 130: google.cloud.compute.v1.HttpRedirectAction.RedirectResponseCode + (Image_Architecture)(0), // 131: google.cloud.compute.v1.Image.Architecture + (Image_SourceType)(0), // 132: google.cloud.compute.v1.Image.SourceType + (Image_Status)(0), // 133: google.cloud.compute.v1.Image.Status + (Instance_KeyRevocationActionType)(0), // 134: google.cloud.compute.v1.Instance.KeyRevocationActionType + (Instance_PrivateIpv6GoogleAccess)(0), // 135: google.cloud.compute.v1.Instance.PrivateIpv6GoogleAccess + (Instance_Status)(0), // 136: google.cloud.compute.v1.Instance.Status + (InstanceGroupManager_ListManagedInstancesResults)(0), // 137: google.cloud.compute.v1.InstanceGroupManager.ListManagedInstancesResults + (InstanceGroupManagerInstanceLifecyclePolicy_DefaultActionOnFailure)(0), // 138: google.cloud.compute.v1.InstanceGroupManagerInstanceLifecyclePolicy.DefaultActionOnFailure + (InstanceGroupManagerInstanceLifecyclePolicy_ForceUpdateOnRepair)(0), // 139: google.cloud.compute.v1.InstanceGroupManagerInstanceLifecyclePolicy.ForceUpdateOnRepair + (InstanceGroupManagerInstanceLifecyclePolicy_OnFailedHealthCheck)(0), // 140: google.cloud.compute.v1.InstanceGroupManagerInstanceLifecyclePolicy.OnFailedHealthCheck + (InstanceGroupManagerResizeRequest_State)(0), // 141: google.cloud.compute.v1.InstanceGroupManagerResizeRequest.State + (InstanceGroupManagerStandbyPolicy_Mode)(0), // 142: google.cloud.compute.v1.InstanceGroupManagerStandbyPolicy.Mode + (InstanceGroupManagerStatusAcceleratorTopology_State)(0), // 143: google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopology.State + (InstanceGroupManagerTargetSizePolicy_Mode)(0), // 144: google.cloud.compute.v1.InstanceGroupManagerTargetSizePolicy.Mode + (InstanceGroupManagerUpdatePolicy_InstanceRedistributionType)(0), // 145: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.InstanceRedistributionType + (InstanceGroupManagerUpdatePolicy_MinimalAction)(0), // 146: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.MinimalAction + (InstanceGroupManagerUpdatePolicy_MostDisruptiveAllowedAction)(0), // 147: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.MostDisruptiveAllowedAction + (InstanceGroupManagerUpdatePolicy_ReplacementMethod)(0), // 148: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.ReplacementMethod + (InstanceGroupManagerUpdatePolicy_Type)(0), // 149: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.Type + (InstanceGroupManagersApplyUpdatesRequest_MinimalAction)(0), // 150: google.cloud.compute.v1.InstanceGroupManagersApplyUpdatesRequest.MinimalAction + (InstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction)(0), // 151: google.cloud.compute.v1.InstanceGroupManagersApplyUpdatesRequest.MostDisruptiveAllowedAction + (InstanceGroupsListInstancesRequest_InstanceState)(0), // 152: google.cloud.compute.v1.InstanceGroupsListInstancesRequest.InstanceState + (InstanceManagedByIgmErrorInstanceActionDetails_Action)(0), // 153: google.cloud.compute.v1.InstanceManagedByIgmErrorInstanceActionDetails.Action + (InstanceProperties_KeyRevocationActionType)(0), // 154: google.cloud.compute.v1.InstanceProperties.KeyRevocationActionType + (InstanceProperties_PrivateIpv6GoogleAccess)(0), // 155: google.cloud.compute.v1.InstanceProperties.PrivateIpv6GoogleAccess + (InstanceWithNamedPorts_Status)(0), // 156: google.cloud.compute.v1.InstanceWithNamedPorts.Status + (InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type)(0), // 157: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.Type + (InstancesReportHostAsFaultyRequest_DisruptionSchedule)(0), // 158: google.cloud.compute.v1.InstancesReportHostAsFaultyRequest.DisruptionSchedule + (InstancesReportHostAsFaultyRequestFaultReason_Behavior)(0), // 159: google.cloud.compute.v1.InstancesReportHostAsFaultyRequestFaultReason.Behavior + (InstantSnapshot_Architecture)(0), // 160: google.cloud.compute.v1.InstantSnapshot.Architecture + (InstantSnapshot_Status)(0), // 161: google.cloud.compute.v1.InstantSnapshot.Status + (InstantSnapshotGroup_Status)(0), // 162: google.cloud.compute.v1.InstantSnapshotGroup.Status + (Interconnect_AvailableFeatures)(0), // 163: google.cloud.compute.v1.Interconnect.AvailableFeatures + (Interconnect_InterconnectType)(0), // 164: google.cloud.compute.v1.Interconnect.InterconnectType + (Interconnect_LinkType)(0), // 165: google.cloud.compute.v1.Interconnect.LinkType + (Interconnect_OperationalStatus)(0), // 166: google.cloud.compute.v1.Interconnect.OperationalStatus + (Interconnect_RequestedFeatures)(0), // 167: google.cloud.compute.v1.Interconnect.RequestedFeatures + (Interconnect_State)(0), // 168: google.cloud.compute.v1.Interconnect.State + (Interconnect_Subzone)(0), // 169: google.cloud.compute.v1.Interconnect.Subzone + (InterconnectApplicationAwareInterconnectBandwidthPercentage_TrafficClass)(0), // 170: google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentage.TrafficClass + (InterconnectAttachment_Bandwidth)(0), // 171: google.cloud.compute.v1.InterconnectAttachment.Bandwidth + (InterconnectAttachment_EdgeAvailabilityDomain)(0), // 172: google.cloud.compute.v1.InterconnectAttachment.EdgeAvailabilityDomain + (InterconnectAttachment_Encryption)(0), // 173: google.cloud.compute.v1.InterconnectAttachment.Encryption + (InterconnectAttachment_OperationalStatus)(0), // 174: google.cloud.compute.v1.InterconnectAttachment.OperationalStatus + (InterconnectAttachment_StackType)(0), // 175: google.cloud.compute.v1.InterconnectAttachment.StackType + (InterconnectAttachment_State)(0), // 176: google.cloud.compute.v1.InterconnectAttachment.State + (InterconnectAttachment_Type)(0), // 177: google.cloud.compute.v1.InterconnectAttachment.Type + (InterconnectAttachmentConfigurationConstraints_BgpMd5)(0), // 178: google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints.BgpMd5 + (InterconnectAttachmentGroupConfiguredAvailabilitySLA_EffectiveSla)(0), // 179: google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLA.EffectiveSla + (InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers_BlockerType)(0), // 180: google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers.BlockerType + (InterconnectAttachmentGroupIntent_AvailabilitySla)(0), // 181: google.cloud.compute.v1.InterconnectAttachmentGroupIntent.AvailabilitySla + (InterconnectAttachmentGroupsOperationalStatus_GroupStatus)(0), // 182: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus.GroupStatus + (InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_IsActive)(0), // 183: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatusAttachmentStatus.IsActive + (InterconnectAttachmentGroupsOperationalStatusAttachmentStatus_Status)(0), // 184: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatusAttachmentStatus.Status + (InterconnectDiagnostics_BundleAggregationType)(0), // 185: google.cloud.compute.v1.InterconnectDiagnostics.BundleAggregationType + (InterconnectDiagnostics_BundleOperationalStatus)(0), // 186: google.cloud.compute.v1.InterconnectDiagnostics.BundleOperationalStatus + (InterconnectDiagnosticsLinkLACPStatus_State)(0), // 187: google.cloud.compute.v1.InterconnectDiagnosticsLinkLACPStatus.State + (InterconnectDiagnosticsLinkOpticalPower_State)(0), // 188: google.cloud.compute.v1.InterconnectDiagnosticsLinkOpticalPower.State + (InterconnectDiagnosticsLinkStatus_OperationalStatus)(0), // 189: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus.OperationalStatus + (InterconnectGroupConfiguredTopologyCapability_SupportedSla)(0), // 190: google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapability.SupportedSla + (InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers_BlockerType)(0), // 191: google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers.BlockerType + (InterconnectGroupIntent_TopologyCapability)(0), // 192: google.cloud.compute.v1.InterconnectGroupIntent.TopologyCapability + (InterconnectGroupsCreateMembers_IntentMismatchBehavior)(0), // 193: google.cloud.compute.v1.InterconnectGroupsCreateMembers.IntentMismatchBehavior + (InterconnectGroupsCreateMembersInterconnectInput_InterconnectType)(0), // 194: google.cloud.compute.v1.InterconnectGroupsCreateMembersInterconnectInput.InterconnectType + (InterconnectGroupsCreateMembersInterconnectInput_LinkType)(0), // 195: google.cloud.compute.v1.InterconnectGroupsCreateMembersInterconnectInput.LinkType + (InterconnectGroupsCreateMembersInterconnectInput_RequestedFeatures)(0), // 196: google.cloud.compute.v1.InterconnectGroupsCreateMembersInterconnectInput.RequestedFeatures + (InterconnectGroupsOperationalStatus_GroupStatus)(0), // 197: google.cloud.compute.v1.InterconnectGroupsOperationalStatus.GroupStatus + (InterconnectGroupsOperationalStatusInterconnectStatus_IsActive)(0), // 198: google.cloud.compute.v1.InterconnectGroupsOperationalStatusInterconnectStatus.IsActive + (InterconnectLocation_AvailableFeatures)(0), // 199: google.cloud.compute.v1.InterconnectLocation.AvailableFeatures + (InterconnectLocation_AvailableLinkTypes)(0), // 200: google.cloud.compute.v1.InterconnectLocation.AvailableLinkTypes + (InterconnectLocation_Continent)(0), // 201: google.cloud.compute.v1.InterconnectLocation.Continent + (InterconnectLocation_Status)(0), // 202: google.cloud.compute.v1.InterconnectLocation.Status + (InterconnectLocationRegionInfo_LocationPresence)(0), // 203: google.cloud.compute.v1.InterconnectLocationRegionInfo.LocationPresence + (InterconnectOutageNotification_IssueType)(0), // 204: google.cloud.compute.v1.InterconnectOutageNotification.IssueType + (InterconnectOutageNotification_Source)(0), // 205: google.cloud.compute.v1.InterconnectOutageNotification.Source + (InterconnectOutageNotification_State)(0), // 206: google.cloud.compute.v1.InterconnectOutageNotification.State + (InterconnectRemoteLocation_Continent)(0), // 207: google.cloud.compute.v1.InterconnectRemoteLocation.Continent + (InterconnectRemoteLocation_Lacp)(0), // 208: google.cloud.compute.v1.InterconnectRemoteLocation.Lacp + (InterconnectRemoteLocation_Status)(0), // 209: google.cloud.compute.v1.InterconnectRemoteLocation.Status + (InterconnectRemoteLocationConstraints_PortPairRemoteLocation)(0), // 210: google.cloud.compute.v1.InterconnectRemoteLocationConstraints.PortPairRemoteLocation + (InterconnectRemoteLocationConstraints_PortPairVlan)(0), // 211: google.cloud.compute.v1.InterconnectRemoteLocationConstraints.PortPairVlan + (LicenseCode_State)(0), // 212: google.cloud.compute.v1.LicenseCode.State + (ListBgpRoutesRoutersRequest_AddressFamily)(0), // 213: google.cloud.compute.v1.ListBgpRoutesRoutersRequest.AddressFamily + (ListBgpRoutesRoutersRequest_RouteType)(0), // 214: google.cloud.compute.v1.ListBgpRoutesRoutersRequest.RouteType + (ListPeeringRoutesNetworksRequest_Direction)(0), // 215: google.cloud.compute.v1.ListPeeringRoutesNetworksRequest.Direction + (ListSubnetworksRequest_Views)(0), // 216: google.cloud.compute.v1.ListSubnetworksRequest.Views + (LocationPolicy_TargetShape)(0), // 217: google.cloud.compute.v1.LocationPolicy.TargetShape + (LocationPolicyLocation_Preference)(0), // 218: google.cloud.compute.v1.LocationPolicyLocation.Preference + (MachineImage_Status)(0), // 219: google.cloud.compute.v1.MachineImage.Status + (MachineType_Architecture)(0), // 220: google.cloud.compute.v1.MachineType.Architecture + (ManagedInstance_CurrentAction)(0), // 221: google.cloud.compute.v1.ManagedInstance.CurrentAction + (ManagedInstance_InstanceStatus)(0), // 222: google.cloud.compute.v1.ManagedInstance.InstanceStatus + (ManagedInstanceInstanceHealth_DetailedHealthState)(0), // 223: google.cloud.compute.v1.ManagedInstanceInstanceHealth.DetailedHealthState + (MetadataFilter_FilterMatchCriteria)(0), // 224: google.cloud.compute.v1.MetadataFilter.FilterMatchCriteria + (NatIpInfoNatIpInfoMapping_Mode)(0), // 225: google.cloud.compute.v1.NatIpInfoNatIpInfoMapping.Mode + (NatIpInfoNatIpInfoMapping_Usage)(0), // 226: google.cloud.compute.v1.NatIpInfoNatIpInfoMapping.Usage + (Network_NetworkFirewallPolicyEnforcementOrder)(0), // 227: google.cloud.compute.v1.Network.NetworkFirewallPolicyEnforcementOrder + (NetworkAttachment_ConnectionPreference)(0), // 228: google.cloud.compute.v1.NetworkAttachment.ConnectionPreference + (NetworkAttachmentConnectedEndpoint_Status)(0), // 229: google.cloud.compute.v1.NetworkAttachmentConnectedEndpoint.Status + (NetworkEndpointGroup_NetworkEndpointType)(0), // 230: google.cloud.compute.v1.NetworkEndpointGroup.NetworkEndpointType + (NetworkEndpointGroupPscData_PscConnectionStatus)(0), // 231: google.cloud.compute.v1.NetworkEndpointGroupPscData.PscConnectionStatus + (NetworkEndpointGroupsListEndpointsRequest_HealthStatus)(0), // 232: google.cloud.compute.v1.NetworkEndpointGroupsListEndpointsRequest.HealthStatus + (NetworkInterface_IgmpQuery)(0), // 233: google.cloud.compute.v1.NetworkInterface.IgmpQuery + (NetworkInterface_Ipv6AccessType)(0), // 234: google.cloud.compute.v1.NetworkInterface.Ipv6AccessType + (NetworkInterface_NicType)(0), // 235: google.cloud.compute.v1.NetworkInterface.NicType + (NetworkInterface_StackType)(0), // 236: google.cloud.compute.v1.NetworkInterface.StackType + (NetworkPeering_StackType)(0), // 237: google.cloud.compute.v1.NetworkPeering.StackType + (NetworkPeering_State)(0), // 238: google.cloud.compute.v1.NetworkPeering.State + (NetworkPeering_UpdateStrategy)(0), // 239: google.cloud.compute.v1.NetworkPeering.UpdateStrategy + (NetworkPeeringConnectionStatus_UpdateStrategy)(0), // 240: google.cloud.compute.v1.NetworkPeeringConnectionStatus.UpdateStrategy + (NetworkPeeringConnectionStatusConsensusState_DeleteStatus)(0), // 241: google.cloud.compute.v1.NetworkPeeringConnectionStatusConsensusState.DeleteStatus + (NetworkPeeringConnectionStatusConsensusState_UpdateStatus)(0), // 242: google.cloud.compute.v1.NetworkPeeringConnectionStatusConsensusState.UpdateStatus + (NetworkPeeringConnectionStatusTrafficConfiguration_StackType)(0), // 243: google.cloud.compute.v1.NetworkPeeringConnectionStatusTrafficConfiguration.StackType + (NetworkPerformanceConfig_TotalEgressBandwidthTier)(0), // 244: google.cloud.compute.v1.NetworkPerformanceConfig.TotalEgressBandwidthTier + (NetworkProfileLocation_Scope)(0), // 245: google.cloud.compute.v1.NetworkProfileLocation.Scope + (NetworkProfileNetworkFeatures_AddressPurposes)(0), // 246: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AddressPurposes + (NetworkProfileNetworkFeatures_AllowAddressCreation)(0), // 247: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowAddressCreation + (NetworkProfileNetworkFeatures_AllowAliasIpRanges)(0), // 248: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowAliasIpRanges + (NetworkProfileNetworkFeatures_AllowAutoModeSubnet)(0), // 249: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowAutoModeSubnet + (NetworkProfileNetworkFeatures_AllowClassDFirewalls)(0), // 250: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowClassDFirewalls + (NetworkProfileNetworkFeatures_AllowCloudNat)(0), // 251: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowCloudNat + (NetworkProfileNetworkFeatures_AllowCloudRouter)(0), // 252: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowCloudRouter + (NetworkProfileNetworkFeatures_AllowDefaultNicAttachment)(0), // 253: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowDefaultNicAttachment + (NetworkProfileNetworkFeatures_AllowExternalIpAccess)(0), // 254: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowExternalIpAccess + (NetworkProfileNetworkFeatures_AllowFirewallPolicy)(0), // 255: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowFirewallPolicy + (NetworkProfileNetworkFeatures_AllowInterconnect)(0), // 256: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowInterconnect + (NetworkProfileNetworkFeatures_AllowIpForwarding)(0), // 257: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowIpForwarding + (NetworkProfileNetworkFeatures_AllowLoadBalancing)(0), // 258: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowLoadBalancing + (NetworkProfileNetworkFeatures_AllowMultiNicInSameNetwork)(0), // 259: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowMultiNicInSameNetwork + (NetworkProfileNetworkFeatures_AllowMultiNicInSameSubnetwork)(0), // 260: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowMultiNicInSameSubnetwork + (NetworkProfileNetworkFeatures_AllowMulticast)(0), // 261: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowMulticast + (NetworkProfileNetworkFeatures_AllowNcc)(0), // 262: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowNcc + (NetworkProfileNetworkFeatures_AllowNetworkMigration)(0), // 263: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowNetworkMigration + (NetworkProfileNetworkFeatures_AllowPacketMirroring)(0), // 264: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowPacketMirroring + (NetworkProfileNetworkFeatures_AllowPrivateGoogleAccess)(0), // 265: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowPrivateGoogleAccess + (NetworkProfileNetworkFeatures_AllowPsc)(0), // 266: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowPsc + (NetworkProfileNetworkFeatures_AllowSameNetworkUnicast)(0), // 267: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowSameNetworkUnicast + (NetworkProfileNetworkFeatures_AllowStaticRoutes)(0), // 268: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowStaticRoutes + (NetworkProfileNetworkFeatures_AllowSubInterfaces)(0), // 269: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowSubInterfaces + (NetworkProfileNetworkFeatures_AllowSubnetworkCreation)(0), // 270: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowSubnetworkCreation + (NetworkProfileNetworkFeatures_AllowVpcFirewallRules)(0), // 271: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowVpcFirewallRules + (NetworkProfileNetworkFeatures_AllowVpcPeering)(0), // 272: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowVpcPeering + (NetworkProfileNetworkFeatures_AllowVpn)(0), // 273: google.cloud.compute.v1.NetworkProfileNetworkFeatures.AllowVpn + (NetworkProfileNetworkFeatures_FirewallPolicyTypes)(0), // 274: google.cloud.compute.v1.NetworkProfileNetworkFeatures.FirewallPolicyTypes + (NetworkProfileNetworkFeatures_InterfaceTypes)(0), // 275: google.cloud.compute.v1.NetworkProfileNetworkFeatures.InterfaceTypes + (NetworkProfileNetworkFeatures_Multicast)(0), // 276: google.cloud.compute.v1.NetworkProfileNetworkFeatures.Multicast + (NetworkProfileNetworkFeatures_SubnetPurposes)(0), // 277: google.cloud.compute.v1.NetworkProfileNetworkFeatures.SubnetPurposes + (NetworkProfileNetworkFeatures_SubnetStackTypes)(0), // 278: google.cloud.compute.v1.NetworkProfileNetworkFeatures.SubnetStackTypes + (NetworkProfileNetworkFeatures_SubnetworkPurposes)(0), // 279: google.cloud.compute.v1.NetworkProfileNetworkFeatures.SubnetworkPurposes + (NetworkProfileNetworkFeatures_SubnetworkStackTypes)(0), // 280: google.cloud.compute.v1.NetworkProfileNetworkFeatures.SubnetworkStackTypes + (NetworkProfileNetworkFeatures_Unicast)(0), // 281: google.cloud.compute.v1.NetworkProfileNetworkFeatures.Unicast + (NetworkProfileProfileType_NetworkType)(0), // 282: google.cloud.compute.v1.NetworkProfileProfileType.NetworkType + (NetworkProfileProfileType_RdmaSubtype)(0), // 283: google.cloud.compute.v1.NetworkProfileProfileType.RdmaSubtype + (NetworkProfileProfileType_UllSubtype)(0), // 284: google.cloud.compute.v1.NetworkProfileProfileType.UllSubtype + (NetworkProfileProfileType_VpcSubtype)(0), // 285: google.cloud.compute.v1.NetworkProfileProfileType.VpcSubtype + (NetworkRoutingConfig_BgpBestPathSelectionMode)(0), // 286: google.cloud.compute.v1.NetworkRoutingConfig.BgpBestPathSelectionMode + (NetworkRoutingConfig_BgpInterRegionCost)(0), // 287: google.cloud.compute.v1.NetworkRoutingConfig.BgpInterRegionCost + (NetworkRoutingConfig_EffectiveBgpInterRegionCost)(0), // 288: google.cloud.compute.v1.NetworkRoutingConfig.EffectiveBgpInterRegionCost + (NetworkRoutingConfig_RoutingMode)(0), // 289: google.cloud.compute.v1.NetworkRoutingConfig.RoutingMode + (NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type)(0), // 290: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.Type + (NodeGroup_MaintenanceInterval)(0), // 291: google.cloud.compute.v1.NodeGroup.MaintenanceInterval + (NodeGroup_MaintenancePolicy)(0), // 292: google.cloud.compute.v1.NodeGroup.MaintenancePolicy + (NodeGroup_Status)(0), // 293: google.cloud.compute.v1.NodeGroup.Status + (NodeGroupAutoscalingPolicy_Mode)(0), // 294: google.cloud.compute.v1.NodeGroupAutoscalingPolicy.Mode + (NodeGroupNode_CpuOvercommitType)(0), // 295: google.cloud.compute.v1.NodeGroupNode.CpuOvercommitType + (NodeGroupNode_Status)(0), // 296: google.cloud.compute.v1.NodeGroupNode.Status + (NodeTemplate_CpuOvercommitType)(0), // 297: google.cloud.compute.v1.NodeTemplate.CpuOvercommitType + (NodeTemplate_Status)(0), // 298: google.cloud.compute.v1.NodeTemplate.Status + (Operation_Status)(0), // 299: google.cloud.compute.v1.Operation.Status + (PacketIntervals_Duration)(0), // 300: google.cloud.compute.v1.PacketIntervals.Duration + (PacketIntervals_Type)(0), // 301: google.cloud.compute.v1.PacketIntervals.Type + (PacketMirroring_Enable)(0), // 302: google.cloud.compute.v1.PacketMirroring.Enable + (PacketMirroringFilter_Direction)(0), // 303: google.cloud.compute.v1.PacketMirroringFilter.Direction + (PerInstanceConfig_Status)(0), // 304: google.cloud.compute.v1.PerInstanceConfig.Status + (PreservedStatePreservedDisk_AutoDelete)(0), // 305: google.cloud.compute.v1.PreservedStatePreservedDisk.AutoDelete + (PreservedStatePreservedDisk_Mode)(0), // 306: google.cloud.compute.v1.PreservedStatePreservedDisk.Mode + (PreservedStatePreservedNetworkIp_AutoDelete)(0), // 307: google.cloud.compute.v1.PreservedStatePreservedNetworkIp.AutoDelete + (PreviewFeature_ActivationStatus)(0), // 308: google.cloud.compute.v1.PreviewFeature.ActivationStatus + (PreviewFeatureRolloutOperationRolloutInput_PredefinedRolloutPlan)(0), // 309: google.cloud.compute.v1.PreviewFeatureRolloutOperationRolloutInput.PredefinedRolloutPlan + (PreviewFeatureStatusReleaseStatus_Stage)(0), // 310: google.cloud.compute.v1.PreviewFeatureStatusReleaseStatus.Stage + (Project_CloudArmorTier)(0), // 311: google.cloud.compute.v1.Project.CloudArmorTier + (Project_DefaultNetworkTier)(0), // 312: google.cloud.compute.v1.Project.DefaultNetworkTier + (Project_VmDnsSetting)(0), // 313: google.cloud.compute.v1.Project.VmDnsSetting + (Project_XpnProjectStatus)(0), // 314: google.cloud.compute.v1.Project.XpnProjectStatus + (ProjectsSetCloudArmorTierRequest_CloudArmorTier)(0), // 315: google.cloud.compute.v1.ProjectsSetCloudArmorTierRequest.CloudArmorTier + (ProjectsSetDefaultNetworkTierRequest_NetworkTier)(0), // 316: google.cloud.compute.v1.ProjectsSetDefaultNetworkTierRequest.NetworkTier + (PublicAdvertisedPrefix_ByoipApiVersion)(0), // 317: google.cloud.compute.v1.PublicAdvertisedPrefix.ByoipApiVersion + (PublicAdvertisedPrefix_Ipv6AccessType)(0), // 318: google.cloud.compute.v1.PublicAdvertisedPrefix.Ipv6AccessType + (PublicAdvertisedPrefix_PdpScope)(0), // 319: google.cloud.compute.v1.PublicAdvertisedPrefix.PdpScope + (PublicAdvertisedPrefix_Status)(0), // 320: google.cloud.compute.v1.PublicAdvertisedPrefix.Status + (PublicDelegatedPrefix_ByoipApiVersion)(0), // 321: google.cloud.compute.v1.PublicDelegatedPrefix.ByoipApiVersion + (PublicDelegatedPrefix_Ipv6AccessType)(0), // 322: google.cloud.compute.v1.PublicDelegatedPrefix.Ipv6AccessType + (PublicDelegatedPrefix_Mode)(0), // 323: google.cloud.compute.v1.PublicDelegatedPrefix.Mode + (PublicDelegatedPrefix_Status)(0), // 324: google.cloud.compute.v1.PublicDelegatedPrefix.Status + (PublicDelegatedPrefixPublicDelegatedSubPrefix_Ipv6AccessType)(0), // 325: google.cloud.compute.v1.PublicDelegatedPrefixPublicDelegatedSubPrefix.Ipv6AccessType + (PublicDelegatedPrefixPublicDelegatedSubPrefix_Mode)(0), // 326: google.cloud.compute.v1.PublicDelegatedPrefixPublicDelegatedSubPrefix.Mode + (PublicDelegatedPrefixPublicDelegatedSubPrefix_Status)(0), // 327: google.cloud.compute.v1.PublicDelegatedPrefixPublicDelegatedSubPrefix.Status + (Quota_Metric)(0), // 328: google.cloud.compute.v1.Quota.Metric + (QuotaExceededInfo_RolloutStatus)(0), // 329: google.cloud.compute.v1.QuotaExceededInfo.RolloutStatus + (QuotaStatusWarning_Code)(0), // 330: google.cloud.compute.v1.QuotaStatusWarning.Code + (RawDisk_ContainerType)(0), // 331: google.cloud.compute.v1.RawDisk.ContainerType + (Region_Status)(0), // 332: google.cloud.compute.v1.Region.Status + (RegionInstanceGroupManagersApplyUpdatesRequest_MinimalAction)(0), // 333: google.cloud.compute.v1.RegionInstanceGroupManagersApplyUpdatesRequest.MinimalAction + (RegionInstanceGroupManagersApplyUpdatesRequest_MostDisruptiveAllowedAction)(0), // 334: google.cloud.compute.v1.RegionInstanceGroupManagersApplyUpdatesRequest.MostDisruptiveAllowedAction + (RegionInstanceGroupsListInstancesRequest_InstanceState)(0), // 335: google.cloud.compute.v1.RegionInstanceGroupsListInstancesRequest.InstanceState + (RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy_Type)(0), // 336: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.Type + (Reservation_ConfidentialComputeType)(0), // 337: google.cloud.compute.v1.Reservation.ConfidentialComputeType + (Reservation_DeploymentType)(0), // 338: google.cloud.compute.v1.Reservation.DeploymentType + (Reservation_EarlyAccessMaintenance)(0), // 339: google.cloud.compute.v1.Reservation.EarlyAccessMaintenance + (Reservation_ProtectionTier)(0), // 340: google.cloud.compute.v1.Reservation.ProtectionTier + (Reservation_SchedulingType)(0), // 341: google.cloud.compute.v1.Reservation.SchedulingType + (Reservation_Status)(0), // 342: google.cloud.compute.v1.Reservation.Status + (ReservationAdvancedDeploymentControl_ReservationOperationalMode)(0), // 343: google.cloud.compute.v1.ReservationAdvancedDeploymentControl.ReservationOperationalMode + (ReservationAffinity_ConsumeReservationType)(0), // 344: google.cloud.compute.v1.ReservationAffinity.ConsumeReservationType + (ReservationBlock_Status)(0), // 345: google.cloud.compute.v1.ReservationBlock.Status + (ReservationBlockHealthInfo_HealthStatus)(0), // 346: google.cloud.compute.v1.ReservationBlockHealthInfo.HealthStatus + (ReservationSlot_State)(0), // 347: google.cloud.compute.v1.ReservationSlot.State + (ReservationSlotsGetVersionRequest_SbomSelections)(0), // 348: google.cloud.compute.v1.ReservationSlotsGetVersionRequest.SbomSelections + (ReservationSubBlock_Status)(0), // 349: google.cloud.compute.v1.ReservationSubBlock.Status + (ReservationSubBlockHealthInfo_HealthStatus)(0), // 350: google.cloud.compute.v1.ReservationSubBlockHealthInfo.HealthStatus + (ReservationSubBlocksGetVersionRequest_SbomSelections)(0), // 351: google.cloud.compute.v1.ReservationSubBlocksGetVersionRequest.SbomSelections + (ReservationSubBlocksReportFaultyRequest_DisruptionSchedule)(0), // 352: google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequest.DisruptionSchedule + (ReservationSubBlocksReportFaultyRequest_FailureComponent)(0), // 353: google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequest.FailureComponent + (ReservationSubBlocksReportFaultyRequestFaultReason_Behavior)(0), // 354: google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequestFaultReason.Behavior + (ReservationsBlocksPerformMaintenanceRequest_MaintenanceScope)(0), // 355: google.cloud.compute.v1.ReservationsBlocksPerformMaintenanceRequest.MaintenanceScope + (ReservationsPerformMaintenanceRequest_MaintenanceScope)(0), // 356: google.cloud.compute.v1.ReservationsPerformMaintenanceRequest.MaintenanceScope + (ResourceCommitment_Type)(0), // 357: google.cloud.compute.v1.ResourceCommitment.Type + (ResourcePolicy_Status)(0), // 358: google.cloud.compute.v1.ResourcePolicy.Status + (ResourcePolicyGroupPlacementPolicy_AcceleratorTopologyMode)(0), // 359: google.cloud.compute.v1.ResourcePolicyGroupPlacementPolicy.AcceleratorTopologyMode + (ResourcePolicyGroupPlacementPolicy_Collocation)(0), // 360: google.cloud.compute.v1.ResourcePolicyGroupPlacementPolicy.Collocation + (ResourcePolicySnapshotSchedulePolicyRetentionPolicy_OnSourceDiskDelete)(0), // 361: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicyRetentionPolicy.OnSourceDiskDelete + (ResourcePolicyWeeklyCycleDayOfWeek_Day)(0), // 362: google.cloud.compute.v1.ResourcePolicyWeeklyCycleDayOfWeek.Day + (ResourcePolicyWorkloadPolicy_AcceleratorTopologyMode)(0), // 363: google.cloud.compute.v1.ResourcePolicyWorkloadPolicy.AcceleratorTopologyMode + (ResourcePolicyWorkloadPolicy_MaxTopologyDistance)(0), // 364: google.cloud.compute.v1.ResourcePolicyWorkloadPolicy.MaxTopologyDistance + (ResourcePolicyWorkloadPolicy_Type)(0), // 365: google.cloud.compute.v1.ResourcePolicyWorkloadPolicy.Type + (Route_NextHopOrigin)(0), // 366: google.cloud.compute.v1.Route.NextHopOrigin + (Route_RouteStatus)(0), // 367: google.cloud.compute.v1.Route.RouteStatus + (Route_RouteType)(0), // 368: google.cloud.compute.v1.Route.RouteType + (RouteAsPath_PathSegmentType)(0), // 369: google.cloud.compute.v1.RouteAsPath.PathSegmentType + (RoutePolicy_Type)(0), // 370: google.cloud.compute.v1.RoutePolicy.Type + (RouterBgp_AdvertiseMode)(0), // 371: google.cloud.compute.v1.RouterBgp.AdvertiseMode + (RouterBgp_AdvertisedGroups)(0), // 372: google.cloud.compute.v1.RouterBgp.AdvertisedGroups + (RouterBgpPeer_AdvertiseMode)(0), // 373: google.cloud.compute.v1.RouterBgpPeer.AdvertiseMode + (RouterBgpPeer_AdvertisedGroups)(0), // 374: google.cloud.compute.v1.RouterBgpPeer.AdvertisedGroups + (RouterBgpPeer_Enable)(0), // 375: google.cloud.compute.v1.RouterBgpPeer.Enable + (RouterBgpPeer_ManagementType)(0), // 376: google.cloud.compute.v1.RouterBgpPeer.ManagementType + (RouterBgpPeerBfd_SessionInitializationMode)(0), // 377: google.cloud.compute.v1.RouterBgpPeerBfd.SessionInitializationMode + (RouterInterface_IpVersion)(0), // 378: google.cloud.compute.v1.RouterInterface.IpVersion + (RouterInterface_ManagementType)(0), // 379: google.cloud.compute.v1.RouterInterface.ManagementType + (RouterNat_AutoNetworkTier)(0), // 380: google.cloud.compute.v1.RouterNat.AutoNetworkTier + (RouterNat_EndpointTypes)(0), // 381: google.cloud.compute.v1.RouterNat.EndpointTypes + (RouterNat_NatIpAllocateOption)(0), // 382: google.cloud.compute.v1.RouterNat.NatIpAllocateOption + (RouterNat_SourceSubnetworkIpRangesToNat)(0), // 383: google.cloud.compute.v1.RouterNat.SourceSubnetworkIpRangesToNat + (RouterNat_SourceSubnetworkIpRangesToNat64)(0), // 384: google.cloud.compute.v1.RouterNat.SourceSubnetworkIpRangesToNat64 + (RouterNat_Type)(0), // 385: google.cloud.compute.v1.RouterNat.Type + (RouterNatLogConfig_Filter)(0), // 386: google.cloud.compute.v1.RouterNatLogConfig.Filter + (RouterNatSubnetworkToNat_SourceIpRangesToNat)(0), // 387: google.cloud.compute.v1.RouterNatSubnetworkToNat.SourceIpRangesToNat + (RouterStatusBgpPeerStatus_Status)(0), // 388: google.cloud.compute.v1.RouterStatusBgpPeerStatus.Status + (RouterStatusBgpPeerStatus_StatusReason)(0), // 389: google.cloud.compute.v1.RouterStatusBgpPeerStatus.StatusReason + (SSLHealthCheck_PortSpecification)(0), // 390: google.cloud.compute.v1.SSLHealthCheck.PortSpecification + (SSLHealthCheck_ProxyHeader)(0), // 391: google.cloud.compute.v1.SSLHealthCheck.ProxyHeader + (SavedAttachedDisk_Interface)(0), // 392: google.cloud.compute.v1.SavedAttachedDisk.Interface + (SavedAttachedDisk_Mode)(0), // 393: google.cloud.compute.v1.SavedAttachedDisk.Mode + (SavedAttachedDisk_StorageBytesStatus)(0), // 394: google.cloud.compute.v1.SavedAttachedDisk.StorageBytesStatus + (SavedAttachedDisk_Type)(0), // 395: google.cloud.compute.v1.SavedAttachedDisk.Type + (SavedDisk_Architecture)(0), // 396: google.cloud.compute.v1.SavedDisk.Architecture + (SavedDisk_StorageBytesStatus)(0), // 397: google.cloud.compute.v1.SavedDisk.StorageBytesStatus + (ScalingScheduleStatus_State)(0), // 398: google.cloud.compute.v1.ScalingScheduleStatus.State + (Scheduling_InstanceTerminationAction)(0), // 399: google.cloud.compute.v1.Scheduling.InstanceTerminationAction + (Scheduling_OnHostMaintenance)(0), // 400: google.cloud.compute.v1.Scheduling.OnHostMaintenance + (Scheduling_ProvisioningModel)(0), // 401: google.cloud.compute.v1.Scheduling.ProvisioningModel + (SchedulingNodeAffinity_Operator)(0), // 402: google.cloud.compute.v1.SchedulingNodeAffinity.Operator + (SecurityPolicy_Type)(0), // 403: google.cloud.compute.v1.SecurityPolicy.Type + (SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig_RuleVisibility)(0), // 404: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig.RuleVisibility + (SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig_Type)(0), // 405: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig.Type + (SecurityPolicyAdvancedOptionsConfig_JsonParsing)(0), // 406: google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfig.JsonParsing + (SecurityPolicyAdvancedOptionsConfig_LogLevel)(0), // 407: google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfig.LogLevel + (SecurityPolicyDdosProtectionConfig_DdosProtection)(0), // 408: google.cloud.compute.v1.SecurityPolicyDdosProtectionConfig.DdosProtection + (SecurityPolicyRuleMatcher_VersionedExpr)(0), // 409: google.cloud.compute.v1.SecurityPolicyRuleMatcher.VersionedExpr + (SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams_Op)(0), // 410: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams.Op + (SecurityPolicyRuleRateLimitOptions_EnforceOnKey)(0), // 411: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions.EnforceOnKey + (SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig_EnforceOnKeyType)(0), // 412: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig.EnforceOnKeyType + (SecurityPolicyRuleRedirectOptions_Type)(0), // 413: google.cloud.compute.v1.SecurityPolicyRuleRedirectOptions.Type + (SecurityPolicyUserDefinedField_Base)(0), // 414: google.cloud.compute.v1.SecurityPolicyUserDefinedField.Base + (ServerBinding_Type)(0), // 415: google.cloud.compute.v1.ServerBinding.Type + (ServiceAttachment_ConnectionPreference)(0), // 416: google.cloud.compute.v1.ServiceAttachment.ConnectionPreference + (ServiceAttachmentConnectedEndpoint_Status)(0), // 417: google.cloud.compute.v1.ServiceAttachmentConnectedEndpoint.Status + (SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo_State)(0), // 418: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo.State + (ShareSettings_ShareType)(0), // 419: google.cloud.compute.v1.ShareSettings.ShareType + (Snapshot_Architecture)(0), // 420: google.cloud.compute.v1.Snapshot.Architecture + (Snapshot_SnapshotType)(0), // 421: google.cloud.compute.v1.Snapshot.SnapshotType + (Snapshot_Status)(0), // 422: google.cloud.compute.v1.Snapshot.Status + (Snapshot_StorageBytesStatus)(0), // 423: google.cloud.compute.v1.Snapshot.StorageBytesStatus + (SnapshotSettingsAccessLocation_Policy)(0), // 424: google.cloud.compute.v1.SnapshotSettingsAccessLocation.Policy + (SnapshotSettingsStorageLocationSettings_Policy)(0), // 425: google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings.Policy + (SourceInstanceProperties_KeyRevocationActionType)(0), // 426: google.cloud.compute.v1.SourceInstanceProperties.KeyRevocationActionType + (SourceInstanceProperties_PostKeyRevocationActionType)(0), // 427: google.cloud.compute.v1.SourceInstanceProperties.PostKeyRevocationActionType + (SslCertificate_Type)(0), // 428: google.cloud.compute.v1.SslCertificate.Type + (SslCertificateManagedSslCertificate_Status)(0), // 429: google.cloud.compute.v1.SslCertificateManagedSslCertificate.Status + (SslPolicy_MinTlsVersion)(0), // 430: google.cloud.compute.v1.SslPolicy.MinTlsVersion + (SslPolicy_Profile)(0), // 431: google.cloud.compute.v1.SslPolicy.Profile + (StatefulPolicyPreservedStateDiskDevice_AutoDelete)(0), // 432: google.cloud.compute.v1.StatefulPolicyPreservedStateDiskDevice.AutoDelete + (StatefulPolicyPreservedStateNetworkIp_AutoDelete)(0), // 433: google.cloud.compute.v1.StatefulPolicyPreservedStateNetworkIp.AutoDelete + (StoragePool_CapacityProvisioningType)(0), // 434: google.cloud.compute.v1.StoragePool.CapacityProvisioningType + (StoragePool_PerformanceProvisioningType)(0), // 435: google.cloud.compute.v1.StoragePool.PerformanceProvisioningType + (StoragePool_State)(0), // 436: google.cloud.compute.v1.StoragePool.State + (StoragePoolDisk_Status)(0), // 437: google.cloud.compute.v1.StoragePoolDisk.Status + (Subnetwork_Ipv6AccessType)(0), // 438: google.cloud.compute.v1.Subnetwork.Ipv6AccessType + (Subnetwork_Ipv6GceEndpoint)(0), // 439: google.cloud.compute.v1.Subnetwork.Ipv6GceEndpoint + (Subnetwork_PrivateIpv6GoogleAccess)(0), // 440: google.cloud.compute.v1.Subnetwork.PrivateIpv6GoogleAccess + (Subnetwork_Purpose)(0), // 441: google.cloud.compute.v1.Subnetwork.Purpose + (Subnetwork_ResolveSubnetMask)(0), // 442: google.cloud.compute.v1.Subnetwork.ResolveSubnetMask + (Subnetwork_Role)(0), // 443: google.cloud.compute.v1.Subnetwork.Role + (Subnetwork_StackType)(0), // 444: google.cloud.compute.v1.Subnetwork.StackType + (Subnetwork_State)(0), // 445: google.cloud.compute.v1.Subnetwork.State + (SubnetworkLogConfig_AggregationInterval)(0), // 446: google.cloud.compute.v1.SubnetworkLogConfig.AggregationInterval + (SubnetworkLogConfig_Metadata)(0), // 447: google.cloud.compute.v1.SubnetworkLogConfig.Metadata + (Subsetting_Policy)(0), // 448: google.cloud.compute.v1.Subsetting.Policy + (TCPHealthCheck_PortSpecification)(0), // 449: google.cloud.compute.v1.TCPHealthCheck.PortSpecification + (TCPHealthCheck_ProxyHeader)(0), // 450: google.cloud.compute.v1.TCPHealthCheck.ProxyHeader + (TargetHttpsProxiesSetQuicOverrideRequest_QuicOverride)(0), // 451: google.cloud.compute.v1.TargetHttpsProxiesSetQuicOverrideRequest.QuicOverride + (TargetHttpsProxy_QuicOverride)(0), // 452: google.cloud.compute.v1.TargetHttpsProxy.QuicOverride + (TargetHttpsProxy_TlsEarlyData)(0), // 453: google.cloud.compute.v1.TargetHttpsProxy.TlsEarlyData + (TargetInstance_NatPolicy)(0), // 454: google.cloud.compute.v1.TargetInstance.NatPolicy + (TargetPool_SessionAffinity)(0), // 455: google.cloud.compute.v1.TargetPool.SessionAffinity + (TargetSslProxiesSetProxyHeaderRequest_ProxyHeader)(0), // 456: google.cloud.compute.v1.TargetSslProxiesSetProxyHeaderRequest.ProxyHeader + (TargetSslProxy_ProxyHeader)(0), // 457: google.cloud.compute.v1.TargetSslProxy.ProxyHeader + (TargetTcpProxiesSetProxyHeaderRequest_ProxyHeader)(0), // 458: google.cloud.compute.v1.TargetTcpProxiesSetProxyHeaderRequest.ProxyHeader + (TargetTcpProxy_ProxyHeader)(0), // 459: google.cloud.compute.v1.TargetTcpProxy.ProxyHeader + (TargetVpnGateway_Status)(0), // 460: google.cloud.compute.v1.TargetVpnGateway.Status + (UpcomingMaintenance_MaintenanceReasons)(0), // 461: google.cloud.compute.v1.UpcomingMaintenance.MaintenanceReasons + (UpcomingMaintenance_MaintenanceStatus)(0), // 462: google.cloud.compute.v1.UpcomingMaintenance.MaintenanceStatus + (UpcomingMaintenance_Type)(0), // 463: google.cloud.compute.v1.UpcomingMaintenance.Type + (UpdateInstanceRequest_MinimalAction)(0), // 464: google.cloud.compute.v1.UpdateInstanceRequest.MinimalAction + (UpdateInstanceRequest_MostDisruptiveAllowedAction)(0), // 465: google.cloud.compute.v1.UpdateInstanceRequest.MostDisruptiveAllowedAction + (UrlMapsValidateRequest_LoadBalancingSchemes)(0), // 466: google.cloud.compute.v1.UrlMapsValidateRequest.LoadBalancingSchemes + (UsableSubnetwork_Ipv6AccessType)(0), // 467: google.cloud.compute.v1.UsableSubnetwork.Ipv6AccessType + (UsableSubnetwork_Purpose)(0), // 468: google.cloud.compute.v1.UsableSubnetwork.Purpose + (UsableSubnetwork_Role)(0), // 469: google.cloud.compute.v1.UsableSubnetwork.Role + (UsableSubnetwork_StackType)(0), // 470: google.cloud.compute.v1.UsableSubnetwork.StackType + (VmExtensionPolicy_State)(0), // 471: google.cloud.compute.v1.VmExtensionPolicy.State + (VpnGateway_GatewayIpVersion)(0), // 472: google.cloud.compute.v1.VpnGateway.GatewayIpVersion + (VpnGateway_StackType)(0), // 473: google.cloud.compute.v1.VpnGateway.StackType + (VpnGatewayStatusHighAvailabilityRequirementState_State)(0), // 474: google.cloud.compute.v1.VpnGatewayStatusHighAvailabilityRequirementState.State + (VpnGatewayStatusHighAvailabilityRequirementState_UnsatisfiedReason)(0), // 475: google.cloud.compute.v1.VpnGatewayStatusHighAvailabilityRequirementState.UnsatisfiedReason + (VpnTunnel_Status)(0), // 476: google.cloud.compute.v1.VpnTunnel.Status + (Warning_Code)(0), // 477: google.cloud.compute.v1.Warning.Code + (Warnings_Code)(0), // 478: google.cloud.compute.v1.Warnings.Code + (WireProperties_BandwidthAllocation)(0), // 479: google.cloud.compute.v1.WireProperties.BandwidthAllocation + (WireProperties_FaultResponse)(0), // 480: google.cloud.compute.v1.WireProperties.FaultResponse + (XpnResourceId_Type)(0), // 481: google.cloud.compute.v1.XpnResourceId.Type + (Zone_Status)(0), // 482: google.cloud.compute.v1.Zone.Status + (*AWSV4Signature)(nil), // 483: google.cloud.compute.v1.AWSV4Signature + (*AbandonInstancesInstanceGroupManagerRequest)(nil), // 484: google.cloud.compute.v1.AbandonInstancesInstanceGroupManagerRequest + (*AbandonInstancesRegionInstanceGroupManagerRequest)(nil), // 485: google.cloud.compute.v1.AbandonInstancesRegionInstanceGroupManagerRequest + (*AcceleratorConfig)(nil), // 486: google.cloud.compute.v1.AcceleratorConfig + (*AcceleratorTopologiesInfo)(nil), // 487: google.cloud.compute.v1.AcceleratorTopologiesInfo + (*AcceleratorTopologiesInfoAcceleratorTopologyInfo)(nil), // 488: google.cloud.compute.v1.AcceleratorTopologiesInfoAcceleratorTopologyInfo + (*AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState)(nil), // 489: google.cloud.compute.v1.AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState + (*AcceleratorType)(nil), // 490: google.cloud.compute.v1.AcceleratorType + (*AcceleratorTypeAggregatedList)(nil), // 491: google.cloud.compute.v1.AcceleratorTypeAggregatedList + (*AcceleratorTypeList)(nil), // 492: google.cloud.compute.v1.AcceleratorTypeList + (*AcceleratorTypesScopedList)(nil), // 493: google.cloud.compute.v1.AcceleratorTypesScopedList + (*Accelerators)(nil), // 494: google.cloud.compute.v1.Accelerators + (*AccessConfig)(nil), // 495: google.cloud.compute.v1.AccessConfig + (*AddAccessConfigInstanceRequest)(nil), // 496: google.cloud.compute.v1.AddAccessConfigInstanceRequest + (*AddAssociationFirewallPolicyRequest)(nil), // 497: google.cloud.compute.v1.AddAssociationFirewallPolicyRequest + (*AddAssociationNetworkFirewallPolicyRequest)(nil), // 498: google.cloud.compute.v1.AddAssociationNetworkFirewallPolicyRequest + (*AddAssociationOrganizationSecurityPolicyRequest)(nil), // 499: google.cloud.compute.v1.AddAssociationOrganizationSecurityPolicyRequest + (*AddAssociationRegionNetworkFirewallPolicyRequest)(nil), // 500: google.cloud.compute.v1.AddAssociationRegionNetworkFirewallPolicyRequest + (*AddHealthCheckTargetPoolRequest)(nil), // 501: google.cloud.compute.v1.AddHealthCheckTargetPoolRequest + (*AddInstanceTargetPoolRequest)(nil), // 502: google.cloud.compute.v1.AddInstanceTargetPoolRequest + (*AddInstancesInstanceGroupRequest)(nil), // 503: google.cloud.compute.v1.AddInstancesInstanceGroupRequest + (*AddNetworkInterfaceInstanceRequest)(nil), // 504: google.cloud.compute.v1.AddNetworkInterfaceInstanceRequest + (*AddNodesNodeGroupRequest)(nil), // 505: google.cloud.compute.v1.AddNodesNodeGroupRequest + (*AddPacketMirroringRuleNetworkFirewallPolicyRequest)(nil), // 506: google.cloud.compute.v1.AddPacketMirroringRuleNetworkFirewallPolicyRequest + (*AddPeeringNetworkRequest)(nil), // 507: google.cloud.compute.v1.AddPeeringNetworkRequest + (*AddResourcePoliciesDiskRequest)(nil), // 508: google.cloud.compute.v1.AddResourcePoliciesDiskRequest + (*AddResourcePoliciesInstanceRequest)(nil), // 509: google.cloud.compute.v1.AddResourcePoliciesInstanceRequest + (*AddResourcePoliciesRegionDiskRequest)(nil), // 510: google.cloud.compute.v1.AddResourcePoliciesRegionDiskRequest + (*AddRuleFirewallPolicyRequest)(nil), // 511: google.cloud.compute.v1.AddRuleFirewallPolicyRequest + (*AddRuleNetworkFirewallPolicyRequest)(nil), // 512: google.cloud.compute.v1.AddRuleNetworkFirewallPolicyRequest + (*AddRuleOrganizationSecurityPolicyRequest)(nil), // 513: google.cloud.compute.v1.AddRuleOrganizationSecurityPolicyRequest + (*AddRuleRegionNetworkFirewallPolicyRequest)(nil), // 514: google.cloud.compute.v1.AddRuleRegionNetworkFirewallPolicyRequest + (*AddRuleRegionSecurityPolicyRequest)(nil), // 515: google.cloud.compute.v1.AddRuleRegionSecurityPolicyRequest + (*AddRuleSecurityPolicyRequest)(nil), // 516: google.cloud.compute.v1.AddRuleSecurityPolicyRequest + (*AddSignedUrlKeyBackendBucketRequest)(nil), // 517: google.cloud.compute.v1.AddSignedUrlKeyBackendBucketRequest + (*AddSignedUrlKeyBackendServiceRequest)(nil), // 518: google.cloud.compute.v1.AddSignedUrlKeyBackendServiceRequest + (*Address)(nil), // 519: google.cloud.compute.v1.Address + (*AddressAggregatedList)(nil), // 520: google.cloud.compute.v1.AddressAggregatedList + (*AddressList)(nil), // 521: google.cloud.compute.v1.AddressList + (*AddressesScopedList)(nil), // 522: google.cloud.compute.v1.AddressesScopedList + (*AdvancedMachineFeatures)(nil), // 523: google.cloud.compute.v1.AdvancedMachineFeatures + (*AggregatedListAcceleratorTypesRequest)(nil), // 524: google.cloud.compute.v1.AggregatedListAcceleratorTypesRequest + (*AggregatedListAddressesRequest)(nil), // 525: google.cloud.compute.v1.AggregatedListAddressesRequest + (*AggregatedListAutoscalersRequest)(nil), // 526: google.cloud.compute.v1.AggregatedListAutoscalersRequest + (*AggregatedListBackendBucketsRequest)(nil), // 527: google.cloud.compute.v1.AggregatedListBackendBucketsRequest + (*AggregatedListBackendServicesRequest)(nil), // 528: google.cloud.compute.v1.AggregatedListBackendServicesRequest + (*AggregatedListDiskTypesRequest)(nil), // 529: google.cloud.compute.v1.AggregatedListDiskTypesRequest + (*AggregatedListDisksRequest)(nil), // 530: google.cloud.compute.v1.AggregatedListDisksRequest + (*AggregatedListForwardingRulesRequest)(nil), // 531: google.cloud.compute.v1.AggregatedListForwardingRulesRequest + (*AggregatedListFutureReservationsRequest)(nil), // 532: google.cloud.compute.v1.AggregatedListFutureReservationsRequest + (*AggregatedListGlobalOperationsRequest)(nil), // 533: google.cloud.compute.v1.AggregatedListGlobalOperationsRequest + (*AggregatedListHealthChecksRequest)(nil), // 534: google.cloud.compute.v1.AggregatedListHealthChecksRequest + (*AggregatedListInstanceGroupManagersRequest)(nil), // 535: google.cloud.compute.v1.AggregatedListInstanceGroupManagersRequest + (*AggregatedListInstanceGroupsRequest)(nil), // 536: google.cloud.compute.v1.AggregatedListInstanceGroupsRequest + (*AggregatedListInstanceTemplatesRequest)(nil), // 537: google.cloud.compute.v1.AggregatedListInstanceTemplatesRequest + (*AggregatedListInstancesRequest)(nil), // 538: google.cloud.compute.v1.AggregatedListInstancesRequest + (*AggregatedListInstantSnapshotsRequest)(nil), // 539: google.cloud.compute.v1.AggregatedListInstantSnapshotsRequest + (*AggregatedListInterconnectAttachmentsRequest)(nil), // 540: google.cloud.compute.v1.AggregatedListInterconnectAttachmentsRequest + (*AggregatedListMachineTypesRequest)(nil), // 541: google.cloud.compute.v1.AggregatedListMachineTypesRequest + (*AggregatedListNetworkAttachmentsRequest)(nil), // 542: google.cloud.compute.v1.AggregatedListNetworkAttachmentsRequest + (*AggregatedListNetworkEdgeSecurityServicesRequest)(nil), // 543: google.cloud.compute.v1.AggregatedListNetworkEdgeSecurityServicesRequest + (*AggregatedListNetworkEndpointGroupsRequest)(nil), // 544: google.cloud.compute.v1.AggregatedListNetworkEndpointGroupsRequest + (*AggregatedListNetworkFirewallPoliciesRequest)(nil), // 545: google.cloud.compute.v1.AggregatedListNetworkFirewallPoliciesRequest + (*AggregatedListNodeGroupsRequest)(nil), // 546: google.cloud.compute.v1.AggregatedListNodeGroupsRequest + (*AggregatedListNodeTemplatesRequest)(nil), // 547: google.cloud.compute.v1.AggregatedListNodeTemplatesRequest + (*AggregatedListNodeTypesRequest)(nil), // 548: google.cloud.compute.v1.AggregatedListNodeTypesRequest + (*AggregatedListPacketMirroringsRequest)(nil), // 549: google.cloud.compute.v1.AggregatedListPacketMirroringsRequest + (*AggregatedListPublicDelegatedPrefixesRequest)(nil), // 550: google.cloud.compute.v1.AggregatedListPublicDelegatedPrefixesRequest + (*AggregatedListRegionCommitmentsRequest)(nil), // 551: google.cloud.compute.v1.AggregatedListRegionCommitmentsRequest + (*AggregatedListRegionCompositeHealthChecksRequest)(nil), // 552: google.cloud.compute.v1.AggregatedListRegionCompositeHealthChecksRequest + (*AggregatedListRegionHealthAggregationPoliciesRequest)(nil), // 553: google.cloud.compute.v1.AggregatedListRegionHealthAggregationPoliciesRequest + (*AggregatedListRegionHealthCheckServicesRequest)(nil), // 554: google.cloud.compute.v1.AggregatedListRegionHealthCheckServicesRequest + (*AggregatedListRegionHealthSourcesRequest)(nil), // 555: google.cloud.compute.v1.AggregatedListRegionHealthSourcesRequest + (*AggregatedListRegionNotificationEndpointsRequest)(nil), // 556: google.cloud.compute.v1.AggregatedListRegionNotificationEndpointsRequest + (*AggregatedListReservationsRequest)(nil), // 557: google.cloud.compute.v1.AggregatedListReservationsRequest + (*AggregatedListResourcePoliciesRequest)(nil), // 558: google.cloud.compute.v1.AggregatedListResourcePoliciesRequest + (*AggregatedListRoutersRequest)(nil), // 559: google.cloud.compute.v1.AggregatedListRoutersRequest + (*AggregatedListSecurityPoliciesRequest)(nil), // 560: google.cloud.compute.v1.AggregatedListSecurityPoliciesRequest + (*AggregatedListServiceAttachmentsRequest)(nil), // 561: google.cloud.compute.v1.AggregatedListServiceAttachmentsRequest + (*AggregatedListSslCertificatesRequest)(nil), // 562: google.cloud.compute.v1.AggregatedListSslCertificatesRequest + (*AggregatedListSslPoliciesRequest)(nil), // 563: google.cloud.compute.v1.AggregatedListSslPoliciesRequest + (*AggregatedListStoragePoolTypesRequest)(nil), // 564: google.cloud.compute.v1.AggregatedListStoragePoolTypesRequest + (*AggregatedListStoragePoolsRequest)(nil), // 565: google.cloud.compute.v1.AggregatedListStoragePoolsRequest + (*AggregatedListSubnetworksRequest)(nil), // 566: google.cloud.compute.v1.AggregatedListSubnetworksRequest + (*AggregatedListTargetHttpProxiesRequest)(nil), // 567: google.cloud.compute.v1.AggregatedListTargetHttpProxiesRequest + (*AggregatedListTargetHttpsProxiesRequest)(nil), // 568: google.cloud.compute.v1.AggregatedListTargetHttpsProxiesRequest + (*AggregatedListTargetInstancesRequest)(nil), // 569: google.cloud.compute.v1.AggregatedListTargetInstancesRequest + (*AggregatedListTargetPoolsRequest)(nil), // 570: google.cloud.compute.v1.AggregatedListTargetPoolsRequest + (*AggregatedListTargetTcpProxiesRequest)(nil), // 571: google.cloud.compute.v1.AggregatedListTargetTcpProxiesRequest + (*AggregatedListTargetVpnGatewaysRequest)(nil), // 572: google.cloud.compute.v1.AggregatedListTargetVpnGatewaysRequest + (*AggregatedListUrlMapsRequest)(nil), // 573: google.cloud.compute.v1.AggregatedListUrlMapsRequest + (*AggregatedListVpnGatewaysRequest)(nil), // 574: google.cloud.compute.v1.AggregatedListVpnGatewaysRequest + (*AggregatedListVpnTunnelsRequest)(nil), // 575: google.cloud.compute.v1.AggregatedListVpnTunnelsRequest + (*AliasIpRange)(nil), // 576: google.cloud.compute.v1.AliasIpRange + (*AllocationAggregateReservation)(nil), // 577: google.cloud.compute.v1.AllocationAggregateReservation + (*AllocationAggregateReservationReservedResourceInfo)(nil), // 578: google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfo + (*AllocationAggregateReservationReservedResourceInfoAccelerator)(nil), // 579: google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfoAccelerator + (*AllocationReservationSharingPolicy)(nil), // 580: google.cloud.compute.v1.AllocationReservationSharingPolicy + (*AllocationResourceStatus)(nil), // 581: google.cloud.compute.v1.AllocationResourceStatus + (*AllocationResourceStatusHealthInfo)(nil), // 582: google.cloud.compute.v1.AllocationResourceStatusHealthInfo + (*AllocationResourceStatusSpecificSKUAllocation)(nil), // 583: google.cloud.compute.v1.AllocationResourceStatusSpecificSKUAllocation + (*AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk)(nil), // 584: google.cloud.compute.v1.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk + (*AllocationSpecificSKUAllocationReservedInstanceProperties)(nil), // 585: google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties + (*AllocationSpecificSKUReservation)(nil), // 586: google.cloud.compute.v1.AllocationSpecificSKUReservation + (*Allowed)(nil), // 587: google.cloud.compute.v1.Allowed + (*AnnouncePublicAdvertisedPrefixeRequest)(nil), // 588: google.cloud.compute.v1.AnnouncePublicAdvertisedPrefixeRequest + (*AnnouncePublicDelegatedPrefixeRequest)(nil), // 589: google.cloud.compute.v1.AnnouncePublicDelegatedPrefixeRequest + (*ApplyUpdatesToInstancesInstanceGroupManagerRequest)(nil), // 590: google.cloud.compute.v1.ApplyUpdatesToInstancesInstanceGroupManagerRequest + (*ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest)(nil), // 591: google.cloud.compute.v1.ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest + (*AttachDiskInstanceRequest)(nil), // 592: google.cloud.compute.v1.AttachDiskInstanceRequest + (*AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest)(nil), // 593: google.cloud.compute.v1.AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest + (*AttachNetworkEndpointsNetworkEndpointGroupRequest)(nil), // 594: google.cloud.compute.v1.AttachNetworkEndpointsNetworkEndpointGroupRequest + (*AttachNetworkEndpointsRegionNetworkEndpointGroupRequest)(nil), // 595: google.cloud.compute.v1.AttachNetworkEndpointsRegionNetworkEndpointGroupRequest + (*AttachedDisk)(nil), // 596: google.cloud.compute.v1.AttachedDisk + (*AttachedDiskInitializeParams)(nil), // 597: google.cloud.compute.v1.AttachedDiskInitializeParams + (*AuditConfig)(nil), // 598: google.cloud.compute.v1.AuditConfig + (*AuditLogConfig)(nil), // 599: google.cloud.compute.v1.AuditLogConfig + (*Autoscaler)(nil), // 600: google.cloud.compute.v1.Autoscaler + (*AutoscalerAggregatedList)(nil), // 601: google.cloud.compute.v1.AutoscalerAggregatedList + (*AutoscalerList)(nil), // 602: google.cloud.compute.v1.AutoscalerList + (*AutoscalerStatusDetails)(nil), // 603: google.cloud.compute.v1.AutoscalerStatusDetails + (*AutoscalersScopedList)(nil), // 604: google.cloud.compute.v1.AutoscalersScopedList + (*AutoscalingPolicy)(nil), // 605: google.cloud.compute.v1.AutoscalingPolicy + (*AutoscalingPolicyCpuUtilization)(nil), // 606: google.cloud.compute.v1.AutoscalingPolicyCpuUtilization + (*AutoscalingPolicyCustomMetricUtilization)(nil), // 607: google.cloud.compute.v1.AutoscalingPolicyCustomMetricUtilization + (*AutoscalingPolicyLoadBalancingUtilization)(nil), // 608: google.cloud.compute.v1.AutoscalingPolicyLoadBalancingUtilization + (*AutoscalingPolicyScaleInControl)(nil), // 609: google.cloud.compute.v1.AutoscalingPolicyScaleInControl + (*AutoscalingPolicyScalingSchedule)(nil), // 610: google.cloud.compute.v1.AutoscalingPolicyScalingSchedule + (*Backend)(nil), // 611: google.cloud.compute.v1.Backend + (*BackendBackendOrchestrationInfo)(nil), // 612: google.cloud.compute.v1.BackendBackendOrchestrationInfo + (*BackendBucket)(nil), // 613: google.cloud.compute.v1.BackendBucket + (*BackendBucketAggregatedList)(nil), // 614: google.cloud.compute.v1.BackendBucketAggregatedList + (*BackendBucketCdnPolicy)(nil), // 615: google.cloud.compute.v1.BackendBucketCdnPolicy + (*BackendBucketCdnPolicyBypassCacheOnRequestHeader)(nil), // 616: google.cloud.compute.v1.BackendBucketCdnPolicyBypassCacheOnRequestHeader + (*BackendBucketCdnPolicyCacheKeyPolicy)(nil), // 617: google.cloud.compute.v1.BackendBucketCdnPolicyCacheKeyPolicy + (*BackendBucketCdnPolicyNegativeCachingPolicy)(nil), // 618: google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicy + (*BackendBucketList)(nil), // 619: google.cloud.compute.v1.BackendBucketList + (*BackendBucketListUsable)(nil), // 620: google.cloud.compute.v1.BackendBucketListUsable + (*BackendBucketParams)(nil), // 621: google.cloud.compute.v1.BackendBucketParams + (*BackendBucketUsedBy)(nil), // 622: google.cloud.compute.v1.BackendBucketUsedBy + (*BackendBucketsScopedList)(nil), // 623: google.cloud.compute.v1.BackendBucketsScopedList + (*BackendCustomMetric)(nil), // 624: google.cloud.compute.v1.BackendCustomMetric + (*BackendService)(nil), // 625: google.cloud.compute.v1.BackendService + (*BackendServiceAggregatedList)(nil), // 626: google.cloud.compute.v1.BackendServiceAggregatedList + (*BackendServiceCdnPolicy)(nil), // 627: google.cloud.compute.v1.BackendServiceCdnPolicy + (*BackendServiceCdnPolicyBypassCacheOnRequestHeader)(nil), // 628: google.cloud.compute.v1.BackendServiceCdnPolicyBypassCacheOnRequestHeader + (*BackendServiceCdnPolicyNegativeCachingPolicy)(nil), // 629: google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicy + (*BackendServiceConnectionTrackingPolicy)(nil), // 630: google.cloud.compute.v1.BackendServiceConnectionTrackingPolicy + (*BackendServiceCustomMetric)(nil), // 631: google.cloud.compute.v1.BackendServiceCustomMetric + (*BackendServiceFailoverPolicy)(nil), // 632: google.cloud.compute.v1.BackendServiceFailoverPolicy + (*BackendServiceGroupHealth)(nil), // 633: google.cloud.compute.v1.BackendServiceGroupHealth + (*BackendServiceHAPolicy)(nil), // 634: google.cloud.compute.v1.BackendServiceHAPolicy + (*BackendServiceHAPolicyLeader)(nil), // 635: google.cloud.compute.v1.BackendServiceHAPolicyLeader + (*BackendServiceHAPolicyLeaderNetworkEndpoint)(nil), // 636: google.cloud.compute.v1.BackendServiceHAPolicyLeaderNetworkEndpoint + (*BackendServiceHttpCookie)(nil), // 637: google.cloud.compute.v1.BackendServiceHttpCookie + (*BackendServiceIAP)(nil), // 638: google.cloud.compute.v1.BackendServiceIAP + (*BackendServiceList)(nil), // 639: google.cloud.compute.v1.BackendServiceList + (*BackendServiceListUsable)(nil), // 640: google.cloud.compute.v1.BackendServiceListUsable + (*BackendServiceLocalityLoadBalancingPolicyConfig)(nil), // 641: google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfig + (*BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy)(nil), // 642: google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy + (*BackendServiceLocalityLoadBalancingPolicyConfigPolicy)(nil), // 643: google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfigPolicy + (*BackendServiceLogConfig)(nil), // 644: google.cloud.compute.v1.BackendServiceLogConfig + (*BackendServiceNetworkPassThroughLbTrafficPolicy)(nil), // 645: google.cloud.compute.v1.BackendServiceNetworkPassThroughLbTrafficPolicy + (*BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity)(nil), // 646: google.cloud.compute.v1.BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity + (*BackendServiceOrchestrationInfo)(nil), // 647: google.cloud.compute.v1.BackendServiceOrchestrationInfo + (*BackendServiceParams)(nil), // 648: google.cloud.compute.v1.BackendServiceParams + (*BackendServiceReference)(nil), // 649: google.cloud.compute.v1.BackendServiceReference + (*BackendServiceTlsSettings)(nil), // 650: google.cloud.compute.v1.BackendServiceTlsSettings + (*BackendServiceTlsSettingsSubjectAltName)(nil), // 651: google.cloud.compute.v1.BackendServiceTlsSettingsSubjectAltName + (*BackendServiceUsedBy)(nil), // 652: google.cloud.compute.v1.BackendServiceUsedBy + (*BackendServicesScopedList)(nil), // 653: google.cloud.compute.v1.BackendServicesScopedList + (*BfdPacket)(nil), // 654: google.cloud.compute.v1.BfdPacket + (*BfdStatus)(nil), // 655: google.cloud.compute.v1.BfdStatus + (*BfdStatusPacketCounts)(nil), // 656: google.cloud.compute.v1.BfdStatusPacketCounts + (*BgpRoute)(nil), // 657: google.cloud.compute.v1.BgpRoute + (*BgpRouteAsPath)(nil), // 658: google.cloud.compute.v1.BgpRouteAsPath + (*BgpRouteNetworkLayerReachabilityInformation)(nil), // 659: google.cloud.compute.v1.BgpRouteNetworkLayerReachabilityInformation + (*Binding)(nil), // 660: google.cloud.compute.v1.Binding + (*BulkInsertDiskRequest)(nil), // 661: google.cloud.compute.v1.BulkInsertDiskRequest + (*BulkInsertDiskResource)(nil), // 662: google.cloud.compute.v1.BulkInsertDiskResource + (*BulkInsertInstanceRequest)(nil), // 663: google.cloud.compute.v1.BulkInsertInstanceRequest + (*BulkInsertInstanceResource)(nil), // 664: google.cloud.compute.v1.BulkInsertInstanceResource + (*BulkInsertInstanceResourcePerInstanceProperties)(nil), // 665: google.cloud.compute.v1.BulkInsertInstanceResourcePerInstanceProperties + (*BulkInsertOperationStatus)(nil), // 666: google.cloud.compute.v1.BulkInsertOperationStatus + (*BulkInsertRegionDiskRequest)(nil), // 667: google.cloud.compute.v1.BulkInsertRegionDiskRequest + (*BulkInsertRegionInstanceRequest)(nil), // 668: google.cloud.compute.v1.BulkInsertRegionInstanceRequest + (*BulkSetLabelsDiskRequest)(nil), // 669: google.cloud.compute.v1.BulkSetLabelsDiskRequest + (*BulkSetLabelsRequest)(nil), // 670: google.cloud.compute.v1.BulkSetLabelsRequest + (*BulkZoneSetLabelsRequest)(nil), // 671: google.cloud.compute.v1.BulkZoneSetLabelsRequest + (*BundledLocalSsds)(nil), // 672: google.cloud.compute.v1.BundledLocalSsds + (*CacheInvalidationRule)(nil), // 673: google.cloud.compute.v1.CacheInvalidationRule + (*CacheKeyPolicy)(nil), // 674: google.cloud.compute.v1.CacheKeyPolicy + (*CachePolicy)(nil), // 675: google.cloud.compute.v1.CachePolicy + (*CachePolicyCacheKeyPolicy)(nil), // 676: google.cloud.compute.v1.CachePolicyCacheKeyPolicy + (*CachePolicyNegativeCachingPolicy)(nil), // 677: google.cloud.compute.v1.CachePolicyNegativeCachingPolicy + (*CalendarModeAdviceRequest)(nil), // 678: google.cloud.compute.v1.CalendarModeAdviceRequest + (*CalendarModeAdviceResponse)(nil), // 679: google.cloud.compute.v1.CalendarModeAdviceResponse + (*CalendarModeAdviceRpcRequest)(nil), // 680: google.cloud.compute.v1.CalendarModeAdviceRpcRequest + (*CalendarModeRecommendation)(nil), // 681: google.cloud.compute.v1.CalendarModeRecommendation + (*CancelFutureReservationRequest)(nil), // 682: google.cloud.compute.v1.CancelFutureReservationRequest + (*CancelInstanceGroupManagerResizeRequestRequest)(nil), // 683: google.cloud.compute.v1.CancelInstanceGroupManagerResizeRequestRequest + (*CancelRegionInstanceGroupManagerResizeRequestRequest)(nil), // 684: google.cloud.compute.v1.CancelRegionInstanceGroupManagerResizeRequestRequest + (*CircuitBreakers)(nil), // 685: google.cloud.compute.v1.CircuitBreakers + (*CloneRulesFirewallPolicyRequest)(nil), // 686: google.cloud.compute.v1.CloneRulesFirewallPolicyRequest + (*CloneRulesNetworkFirewallPolicyRequest)(nil), // 687: google.cloud.compute.v1.CloneRulesNetworkFirewallPolicyRequest + (*CloneRulesRegionNetworkFirewallPolicyRequest)(nil), // 688: google.cloud.compute.v1.CloneRulesRegionNetworkFirewallPolicyRequest + (*Commitment)(nil), // 689: google.cloud.compute.v1.Commitment + (*CommitmentAggregatedList)(nil), // 690: google.cloud.compute.v1.CommitmentAggregatedList + (*CommitmentList)(nil), // 691: google.cloud.compute.v1.CommitmentList + (*CommitmentParams)(nil), // 692: google.cloud.compute.v1.CommitmentParams + (*CommitmentResourceStatus)(nil), // 693: google.cloud.compute.v1.CommitmentResourceStatus + (*CommitmentsScopedList)(nil), // 694: google.cloud.compute.v1.CommitmentsScopedList + (*CompositeHealthCheck)(nil), // 695: google.cloud.compute.v1.CompositeHealthCheck + (*CompositeHealthCheckAggregatedList)(nil), // 696: google.cloud.compute.v1.CompositeHealthCheckAggregatedList + (*CompositeHealthCheckHealth)(nil), // 697: google.cloud.compute.v1.CompositeHealthCheckHealth + (*CompositeHealthCheckList)(nil), // 698: google.cloud.compute.v1.CompositeHealthCheckList + (*CompositeHealthChecksGetHealthResponseHealthSourceHealth)(nil), // 699: google.cloud.compute.v1.CompositeHealthChecksGetHealthResponseHealthSourceHealth + (*CompositeHealthChecksScopedList)(nil), // 700: google.cloud.compute.v1.CompositeHealthChecksScopedList + (*ConfidentialInstanceConfig)(nil), // 701: google.cloud.compute.v1.ConfidentialInstanceConfig + (*ConnectionDraining)(nil), // 702: google.cloud.compute.v1.ConnectionDraining + (*ConsistentHashLoadBalancerSettings)(nil), // 703: google.cloud.compute.v1.ConsistentHashLoadBalancerSettings + (*ConsistentHashLoadBalancerSettingsHttpCookie)(nil), // 704: google.cloud.compute.v1.ConsistentHashLoadBalancerSettingsHttpCookie + (*CopyRulesOrganizationSecurityPolicyRequest)(nil), // 705: google.cloud.compute.v1.CopyRulesOrganizationSecurityPolicyRequest + (*CorsPolicy)(nil), // 706: google.cloud.compute.v1.CorsPolicy + (*CreateInstancesInstanceGroupManagerRequest)(nil), // 707: google.cloud.compute.v1.CreateInstancesInstanceGroupManagerRequest + (*CreateInstancesRegionInstanceGroupManagerRequest)(nil), // 708: google.cloud.compute.v1.CreateInstancesRegionInstanceGroupManagerRequest + (*CreateMembersInterconnectGroupRequest)(nil), // 709: google.cloud.compute.v1.CreateMembersInterconnectGroupRequest + (*CreateSnapshotDiskRequest)(nil), // 710: google.cloud.compute.v1.CreateSnapshotDiskRequest + (*CreateSnapshotRegionDiskRequest)(nil), // 711: google.cloud.compute.v1.CreateSnapshotRegionDiskRequest + (*CrossSiteNetwork)(nil), // 712: google.cloud.compute.v1.CrossSiteNetwork + (*CrossSiteNetworkList)(nil), // 713: google.cloud.compute.v1.CrossSiteNetworkList + (*CustomErrorResponsePolicy)(nil), // 714: google.cloud.compute.v1.CustomErrorResponsePolicy + (*CustomErrorResponsePolicyCustomErrorResponseRule)(nil), // 715: google.cloud.compute.v1.CustomErrorResponsePolicyCustomErrorResponseRule + (*CustomerEncryptionKey)(nil), // 716: google.cloud.compute.v1.CustomerEncryptionKey + (*CustomerEncryptionKeyProtectedDisk)(nil), // 717: google.cloud.compute.v1.CustomerEncryptionKeyProtectedDisk + (*Data)(nil), // 718: google.cloud.compute.v1.Data + (*Date)(nil), // 719: google.cloud.compute.v1.Date + (*DeleteAccessConfigInstanceRequest)(nil), // 720: google.cloud.compute.v1.DeleteAccessConfigInstanceRequest + (*DeleteAddressRequest)(nil), // 721: google.cloud.compute.v1.DeleteAddressRequest + (*DeleteAutoscalerRequest)(nil), // 722: google.cloud.compute.v1.DeleteAutoscalerRequest + (*DeleteBackendBucketRequest)(nil), // 723: google.cloud.compute.v1.DeleteBackendBucketRequest + (*DeleteBackendServiceRequest)(nil), // 724: google.cloud.compute.v1.DeleteBackendServiceRequest + (*DeleteCrossSiteNetworkRequest)(nil), // 725: google.cloud.compute.v1.DeleteCrossSiteNetworkRequest + (*DeleteDiskRequest)(nil), // 726: google.cloud.compute.v1.DeleteDiskRequest + (*DeleteExternalVpnGatewayRequest)(nil), // 727: google.cloud.compute.v1.DeleteExternalVpnGatewayRequest + (*DeleteFirewallPolicyRequest)(nil), // 728: google.cloud.compute.v1.DeleteFirewallPolicyRequest + (*DeleteFirewallRequest)(nil), // 729: google.cloud.compute.v1.DeleteFirewallRequest + (*DeleteForwardingRuleRequest)(nil), // 730: google.cloud.compute.v1.DeleteForwardingRuleRequest + (*DeleteFutureReservationRequest)(nil), // 731: google.cloud.compute.v1.DeleteFutureReservationRequest + (*DeleteGlobalAddressRequest)(nil), // 732: google.cloud.compute.v1.DeleteGlobalAddressRequest + (*DeleteGlobalForwardingRuleRequest)(nil), // 733: google.cloud.compute.v1.DeleteGlobalForwardingRuleRequest + (*DeleteGlobalNetworkEndpointGroupRequest)(nil), // 734: google.cloud.compute.v1.DeleteGlobalNetworkEndpointGroupRequest + (*DeleteGlobalOperationRequest)(nil), // 735: google.cloud.compute.v1.DeleteGlobalOperationRequest + (*DeleteGlobalOperationResponse)(nil), // 736: google.cloud.compute.v1.DeleteGlobalOperationResponse + (*DeleteGlobalOrganizationOperationRequest)(nil), // 737: google.cloud.compute.v1.DeleteGlobalOrganizationOperationRequest + (*DeleteGlobalOrganizationOperationResponse)(nil), // 738: google.cloud.compute.v1.DeleteGlobalOrganizationOperationResponse + (*DeleteGlobalPublicDelegatedPrefixeRequest)(nil), // 739: google.cloud.compute.v1.DeleteGlobalPublicDelegatedPrefixeRequest + (*DeleteHealthCheckRequest)(nil), // 740: google.cloud.compute.v1.DeleteHealthCheckRequest + (*DeleteImageRequest)(nil), // 741: google.cloud.compute.v1.DeleteImageRequest + (*DeleteInstanceGroupManagerRequest)(nil), // 742: google.cloud.compute.v1.DeleteInstanceGroupManagerRequest + (*DeleteInstanceGroupManagerResizeRequestRequest)(nil), // 743: google.cloud.compute.v1.DeleteInstanceGroupManagerResizeRequestRequest + (*DeleteInstanceGroupRequest)(nil), // 744: google.cloud.compute.v1.DeleteInstanceGroupRequest + (*DeleteInstanceRequest)(nil), // 745: google.cloud.compute.v1.DeleteInstanceRequest + (*DeleteInstanceTemplateRequest)(nil), // 746: google.cloud.compute.v1.DeleteInstanceTemplateRequest + (*DeleteInstancesInstanceGroupManagerRequest)(nil), // 747: google.cloud.compute.v1.DeleteInstancesInstanceGroupManagerRequest + (*DeleteInstancesRegionInstanceGroupManagerRequest)(nil), // 748: google.cloud.compute.v1.DeleteInstancesRegionInstanceGroupManagerRequest + (*DeleteInstantSnapshotGroupRequest)(nil), // 749: google.cloud.compute.v1.DeleteInstantSnapshotGroupRequest + (*DeleteInstantSnapshotRequest)(nil), // 750: google.cloud.compute.v1.DeleteInstantSnapshotRequest + (*DeleteInterconnectAttachmentGroupRequest)(nil), // 751: google.cloud.compute.v1.DeleteInterconnectAttachmentGroupRequest + (*DeleteInterconnectAttachmentRequest)(nil), // 752: google.cloud.compute.v1.DeleteInterconnectAttachmentRequest + (*DeleteInterconnectGroupRequest)(nil), // 753: google.cloud.compute.v1.DeleteInterconnectGroupRequest + (*DeleteInterconnectRequest)(nil), // 754: google.cloud.compute.v1.DeleteInterconnectRequest + (*DeleteLicenseRequest)(nil), // 755: google.cloud.compute.v1.DeleteLicenseRequest + (*DeleteMachineImageRequest)(nil), // 756: google.cloud.compute.v1.DeleteMachineImageRequest + (*DeleteNetworkAttachmentRequest)(nil), // 757: google.cloud.compute.v1.DeleteNetworkAttachmentRequest + (*DeleteNetworkEdgeSecurityServiceRequest)(nil), // 758: google.cloud.compute.v1.DeleteNetworkEdgeSecurityServiceRequest + (*DeleteNetworkEndpointGroupRequest)(nil), // 759: google.cloud.compute.v1.DeleteNetworkEndpointGroupRequest + (*DeleteNetworkFirewallPolicyRequest)(nil), // 760: google.cloud.compute.v1.DeleteNetworkFirewallPolicyRequest + (*DeleteNetworkInterfaceInstanceRequest)(nil), // 761: google.cloud.compute.v1.DeleteNetworkInterfaceInstanceRequest + (*DeleteNetworkRequest)(nil), // 762: google.cloud.compute.v1.DeleteNetworkRequest + (*DeleteNodeGroupRequest)(nil), // 763: google.cloud.compute.v1.DeleteNodeGroupRequest + (*DeleteNodeTemplateRequest)(nil), // 764: google.cloud.compute.v1.DeleteNodeTemplateRequest + (*DeleteNodesNodeGroupRequest)(nil), // 765: google.cloud.compute.v1.DeleteNodesNodeGroupRequest + (*DeleteOrganizationSecurityPolicyRequest)(nil), // 766: google.cloud.compute.v1.DeleteOrganizationSecurityPolicyRequest + (*DeletePacketMirroringRequest)(nil), // 767: google.cloud.compute.v1.DeletePacketMirroringRequest + (*DeletePerInstanceConfigsInstanceGroupManagerRequest)(nil), // 768: google.cloud.compute.v1.DeletePerInstanceConfigsInstanceGroupManagerRequest + (*DeletePerInstanceConfigsRegionInstanceGroupManagerRequest)(nil), // 769: google.cloud.compute.v1.DeletePerInstanceConfigsRegionInstanceGroupManagerRequest + (*DeletePublicAdvertisedPrefixeRequest)(nil), // 770: google.cloud.compute.v1.DeletePublicAdvertisedPrefixeRequest + (*DeletePublicDelegatedPrefixeRequest)(nil), // 771: google.cloud.compute.v1.DeletePublicDelegatedPrefixeRequest + (*DeleteRegionAutoscalerRequest)(nil), // 772: google.cloud.compute.v1.DeleteRegionAutoscalerRequest + (*DeleteRegionBackendBucketRequest)(nil), // 773: google.cloud.compute.v1.DeleteRegionBackendBucketRequest + (*DeleteRegionBackendServiceRequest)(nil), // 774: google.cloud.compute.v1.DeleteRegionBackendServiceRequest + (*DeleteRegionCompositeHealthCheckRequest)(nil), // 775: google.cloud.compute.v1.DeleteRegionCompositeHealthCheckRequest + (*DeleteRegionDiskRequest)(nil), // 776: google.cloud.compute.v1.DeleteRegionDiskRequest + (*DeleteRegionHealthAggregationPolicyRequest)(nil), // 777: google.cloud.compute.v1.DeleteRegionHealthAggregationPolicyRequest + (*DeleteRegionHealthCheckRequest)(nil), // 778: google.cloud.compute.v1.DeleteRegionHealthCheckRequest + (*DeleteRegionHealthCheckServiceRequest)(nil), // 779: google.cloud.compute.v1.DeleteRegionHealthCheckServiceRequest + (*DeleteRegionHealthSourceRequest)(nil), // 780: google.cloud.compute.v1.DeleteRegionHealthSourceRequest + (*DeleteRegionInstanceGroupManagerRequest)(nil), // 781: google.cloud.compute.v1.DeleteRegionInstanceGroupManagerRequest + (*DeleteRegionInstanceGroupManagerResizeRequestRequest)(nil), // 782: google.cloud.compute.v1.DeleteRegionInstanceGroupManagerResizeRequestRequest + (*DeleteRegionInstanceTemplateRequest)(nil), // 783: google.cloud.compute.v1.DeleteRegionInstanceTemplateRequest + (*DeleteRegionInstantSnapshotGroupRequest)(nil), // 784: google.cloud.compute.v1.DeleteRegionInstantSnapshotGroupRequest + (*DeleteRegionInstantSnapshotRequest)(nil), // 785: google.cloud.compute.v1.DeleteRegionInstantSnapshotRequest + (*DeleteRegionNetworkEndpointGroupRequest)(nil), // 786: google.cloud.compute.v1.DeleteRegionNetworkEndpointGroupRequest + (*DeleteRegionNetworkFirewallPolicyRequest)(nil), // 787: google.cloud.compute.v1.DeleteRegionNetworkFirewallPolicyRequest + (*DeleteRegionNotificationEndpointRequest)(nil), // 788: google.cloud.compute.v1.DeleteRegionNotificationEndpointRequest + (*DeleteRegionOperationRequest)(nil), // 789: google.cloud.compute.v1.DeleteRegionOperationRequest + (*DeleteRegionOperationResponse)(nil), // 790: google.cloud.compute.v1.DeleteRegionOperationResponse + (*DeleteRegionSecurityPolicyRequest)(nil), // 791: google.cloud.compute.v1.DeleteRegionSecurityPolicyRequest + (*DeleteRegionSnapshotRequest)(nil), // 792: google.cloud.compute.v1.DeleteRegionSnapshotRequest + (*DeleteRegionSslCertificateRequest)(nil), // 793: google.cloud.compute.v1.DeleteRegionSslCertificateRequest + (*DeleteRegionSslPolicyRequest)(nil), // 794: google.cloud.compute.v1.DeleteRegionSslPolicyRequest + (*DeleteRegionTargetHttpProxyRequest)(nil), // 795: google.cloud.compute.v1.DeleteRegionTargetHttpProxyRequest + (*DeleteRegionTargetHttpsProxyRequest)(nil), // 796: google.cloud.compute.v1.DeleteRegionTargetHttpsProxyRequest + (*DeleteRegionTargetTcpProxyRequest)(nil), // 797: google.cloud.compute.v1.DeleteRegionTargetTcpProxyRequest + (*DeleteRegionUrlMapRequest)(nil), // 798: google.cloud.compute.v1.DeleteRegionUrlMapRequest + (*DeleteReservationRequest)(nil), // 799: google.cloud.compute.v1.DeleteReservationRequest + (*DeleteResourcePolicyRequest)(nil), // 800: google.cloud.compute.v1.DeleteResourcePolicyRequest + (*DeleteRoutePolicyRouterRequest)(nil), // 801: google.cloud.compute.v1.DeleteRoutePolicyRouterRequest + (*DeleteRouteRequest)(nil), // 802: google.cloud.compute.v1.DeleteRouteRequest + (*DeleteRouterRequest)(nil), // 803: google.cloud.compute.v1.DeleteRouterRequest + (*DeleteSecurityPolicyRequest)(nil), // 804: google.cloud.compute.v1.DeleteSecurityPolicyRequest + (*DeleteServiceAttachmentRequest)(nil), // 805: google.cloud.compute.v1.DeleteServiceAttachmentRequest + (*DeleteSignedUrlKeyBackendBucketRequest)(nil), // 806: google.cloud.compute.v1.DeleteSignedUrlKeyBackendBucketRequest + (*DeleteSignedUrlKeyBackendServiceRequest)(nil), // 807: google.cloud.compute.v1.DeleteSignedUrlKeyBackendServiceRequest + (*DeleteSnapshotRequest)(nil), // 808: google.cloud.compute.v1.DeleteSnapshotRequest + (*DeleteSslCertificateRequest)(nil), // 809: google.cloud.compute.v1.DeleteSslCertificateRequest + (*DeleteSslPolicyRequest)(nil), // 810: google.cloud.compute.v1.DeleteSslPolicyRequest + (*DeleteStoragePoolRequest)(nil), // 811: google.cloud.compute.v1.DeleteStoragePoolRequest + (*DeleteSubnetworkRequest)(nil), // 812: google.cloud.compute.v1.DeleteSubnetworkRequest + (*DeleteTargetGrpcProxyRequest)(nil), // 813: google.cloud.compute.v1.DeleteTargetGrpcProxyRequest + (*DeleteTargetHttpProxyRequest)(nil), // 814: google.cloud.compute.v1.DeleteTargetHttpProxyRequest + (*DeleteTargetHttpsProxyRequest)(nil), // 815: google.cloud.compute.v1.DeleteTargetHttpsProxyRequest + (*DeleteTargetInstanceRequest)(nil), // 816: google.cloud.compute.v1.DeleteTargetInstanceRequest + (*DeleteTargetPoolRequest)(nil), // 817: google.cloud.compute.v1.DeleteTargetPoolRequest + (*DeleteTargetSslProxyRequest)(nil), // 818: google.cloud.compute.v1.DeleteTargetSslProxyRequest + (*DeleteTargetTcpProxyRequest)(nil), // 819: google.cloud.compute.v1.DeleteTargetTcpProxyRequest + (*DeleteTargetVpnGatewayRequest)(nil), // 820: google.cloud.compute.v1.DeleteTargetVpnGatewayRequest + (*DeleteUrlMapRequest)(nil), // 821: google.cloud.compute.v1.DeleteUrlMapRequest + (*DeleteVpnGatewayRequest)(nil), // 822: google.cloud.compute.v1.DeleteVpnGatewayRequest + (*DeleteVpnTunnelRequest)(nil), // 823: google.cloud.compute.v1.DeleteVpnTunnelRequest + (*DeleteWireGroupRequest)(nil), // 824: google.cloud.compute.v1.DeleteWireGroupRequest + (*DeleteZoneOperationRequest)(nil), // 825: google.cloud.compute.v1.DeleteZoneOperationRequest + (*DeleteZoneOperationResponse)(nil), // 826: google.cloud.compute.v1.DeleteZoneOperationResponse + (*DeleteZoneVmExtensionPolicyRequest)(nil), // 827: google.cloud.compute.v1.DeleteZoneVmExtensionPolicyRequest + (*Denied)(nil), // 828: google.cloud.compute.v1.Denied + (*DeprecateImageRequest)(nil), // 829: google.cloud.compute.v1.DeprecateImageRequest + (*DeprecationStatus)(nil), // 830: google.cloud.compute.v1.DeprecationStatus + (*DetachDiskInstanceRequest)(nil), // 831: google.cloud.compute.v1.DetachDiskInstanceRequest + (*DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest)(nil), // 832: google.cloud.compute.v1.DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest + (*DetachNetworkEndpointsNetworkEndpointGroupRequest)(nil), // 833: google.cloud.compute.v1.DetachNetworkEndpointsNetworkEndpointGroupRequest + (*DetachNetworkEndpointsRegionNetworkEndpointGroupRequest)(nil), // 834: google.cloud.compute.v1.DetachNetworkEndpointsRegionNetworkEndpointGroupRequest + (*DisableXpnHostProjectRequest)(nil), // 835: google.cloud.compute.v1.DisableXpnHostProjectRequest + (*DisableXpnResourceProjectRequest)(nil), // 836: google.cloud.compute.v1.DisableXpnResourceProjectRequest + (*Disk)(nil), // 837: google.cloud.compute.v1.Disk + (*DiskAggregatedList)(nil), // 838: google.cloud.compute.v1.DiskAggregatedList + (*DiskAsyncReplication)(nil), // 839: google.cloud.compute.v1.DiskAsyncReplication + (*DiskAsyncReplicationList)(nil), // 840: google.cloud.compute.v1.DiskAsyncReplicationList + (*DiskInstantiationConfig)(nil), // 841: google.cloud.compute.v1.DiskInstantiationConfig + (*DiskList)(nil), // 842: google.cloud.compute.v1.DiskList + (*DiskMoveRequest)(nil), // 843: google.cloud.compute.v1.DiskMoveRequest + (*DiskParams)(nil), // 844: google.cloud.compute.v1.DiskParams + (*DiskResourceStatus)(nil), // 845: google.cloud.compute.v1.DiskResourceStatus + (*DiskResourceStatusAsyncReplicationStatus)(nil), // 846: google.cloud.compute.v1.DiskResourceStatusAsyncReplicationStatus + (*DiskType)(nil), // 847: google.cloud.compute.v1.DiskType + (*DiskTypeAggregatedList)(nil), // 848: google.cloud.compute.v1.DiskTypeAggregatedList + (*DiskTypeList)(nil), // 849: google.cloud.compute.v1.DiskTypeList + (*DiskTypesScopedList)(nil), // 850: google.cloud.compute.v1.DiskTypesScopedList + (*DiskUpdateKmsKeyRequest)(nil), // 851: google.cloud.compute.v1.DiskUpdateKmsKeyRequest + (*DisksAddResourcePoliciesRequest)(nil), // 852: google.cloud.compute.v1.DisksAddResourcePoliciesRequest + (*DisksRemoveResourcePoliciesRequest)(nil), // 853: google.cloud.compute.v1.DisksRemoveResourcePoliciesRequest + (*DisksResizeRequest)(nil), // 854: google.cloud.compute.v1.DisksResizeRequest + (*DisksScopedList)(nil), // 855: google.cloud.compute.v1.DisksScopedList + (*DisksStartAsyncReplicationRequest)(nil), // 856: google.cloud.compute.v1.DisksStartAsyncReplicationRequest + (*DisksStopGroupAsyncReplicationResource)(nil), // 857: google.cloud.compute.v1.DisksStopGroupAsyncReplicationResource + (*DisplayDevice)(nil), // 858: google.cloud.compute.v1.DisplayDevice + (*DistributionPolicy)(nil), // 859: google.cloud.compute.v1.DistributionPolicy + (*DistributionPolicyZoneConfiguration)(nil), // 860: google.cloud.compute.v1.DistributionPolicyZoneConfiguration + (*Duration)(nil), // 861: google.cloud.compute.v1.Duration + (*EnableXpnHostProjectRequest)(nil), // 862: google.cloud.compute.v1.EnableXpnHostProjectRequest + (*EnableXpnResourceProjectRequest)(nil), // 863: google.cloud.compute.v1.EnableXpnResourceProjectRequest + (*Error)(nil), // 864: google.cloud.compute.v1.Error + (*ErrorDetails)(nil), // 865: google.cloud.compute.v1.ErrorDetails + (*ErrorInfo)(nil), // 866: google.cloud.compute.v1.ErrorInfo + (*Errors)(nil), // 867: google.cloud.compute.v1.Errors + (*ExchangedPeeringRoute)(nil), // 868: google.cloud.compute.v1.ExchangedPeeringRoute + (*ExchangedPeeringRoutesList)(nil), // 869: google.cloud.compute.v1.ExchangedPeeringRoutesList + (*ExpandIpCidrRangeSubnetworkRequest)(nil), // 870: google.cloud.compute.v1.ExpandIpCidrRangeSubnetworkRequest + (*Expr)(nil), // 871: google.cloud.compute.v1.Expr + (*ExternalVpnGateway)(nil), // 872: google.cloud.compute.v1.ExternalVpnGateway + (*ExternalVpnGatewayInterface)(nil), // 873: google.cloud.compute.v1.ExternalVpnGatewayInterface + (*ExternalVpnGatewayList)(nil), // 874: google.cloud.compute.v1.ExternalVpnGatewayList + (*ExternalVpnGatewayParams)(nil), // 875: google.cloud.compute.v1.ExternalVpnGatewayParams + (*FileContentBuffer)(nil), // 876: google.cloud.compute.v1.FileContentBuffer + (*Firewall)(nil), // 877: google.cloud.compute.v1.Firewall + (*FirewallList)(nil), // 878: google.cloud.compute.v1.FirewallList + (*FirewallLogConfig)(nil), // 879: google.cloud.compute.v1.FirewallLogConfig + (*FirewallParams)(nil), // 880: google.cloud.compute.v1.FirewallParams + (*FirewallPoliciesListAssociationsResponse)(nil), // 881: google.cloud.compute.v1.FirewallPoliciesListAssociationsResponse + (*FirewallPoliciesScopedList)(nil), // 882: google.cloud.compute.v1.FirewallPoliciesScopedList + (*FirewallPolicy)(nil), // 883: google.cloud.compute.v1.FirewallPolicy + (*FirewallPolicyAssociation)(nil), // 884: google.cloud.compute.v1.FirewallPolicyAssociation + (*FirewallPolicyList)(nil), // 885: google.cloud.compute.v1.FirewallPolicyList + (*FirewallPolicyRule)(nil), // 886: google.cloud.compute.v1.FirewallPolicyRule + (*FirewallPolicyRuleMatcher)(nil), // 887: google.cloud.compute.v1.FirewallPolicyRuleMatcher + (*FirewallPolicyRuleMatcherLayer4Config)(nil), // 888: google.cloud.compute.v1.FirewallPolicyRuleMatcherLayer4Config + (*FirewallPolicyRuleSecureTag)(nil), // 889: google.cloud.compute.v1.FirewallPolicyRuleSecureTag + (*FixedOrPercent)(nil), // 890: google.cloud.compute.v1.FixedOrPercent + (*FlexibleTimeRange)(nil), // 891: google.cloud.compute.v1.FlexibleTimeRange + (*ForwardingRule)(nil), // 892: google.cloud.compute.v1.ForwardingRule + (*ForwardingRuleAggregatedList)(nil), // 893: google.cloud.compute.v1.ForwardingRuleAggregatedList + (*ForwardingRuleList)(nil), // 894: google.cloud.compute.v1.ForwardingRuleList + (*ForwardingRuleReference)(nil), // 895: google.cloud.compute.v1.ForwardingRuleReference + (*ForwardingRuleServiceDirectoryRegistration)(nil), // 896: google.cloud.compute.v1.ForwardingRuleServiceDirectoryRegistration + (*ForwardingRulesScopedList)(nil), // 897: google.cloud.compute.v1.ForwardingRulesScopedList + (*FutureReservation)(nil), // 898: google.cloud.compute.v1.FutureReservation + (*FutureReservationCommitmentInfo)(nil), // 899: google.cloud.compute.v1.FutureReservationCommitmentInfo + (*FutureReservationParams)(nil), // 900: google.cloud.compute.v1.FutureReservationParams + (*FutureReservationSpecificSKUProperties)(nil), // 901: google.cloud.compute.v1.FutureReservationSpecificSKUProperties + (*FutureReservationStatus)(nil), // 902: google.cloud.compute.v1.FutureReservationStatus + (*FutureReservationStatusExistingMatchingUsageInfo)(nil), // 903: google.cloud.compute.v1.FutureReservationStatusExistingMatchingUsageInfo + (*FutureReservationStatusLastKnownGoodState)(nil), // 904: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodState + (*FutureReservationStatusLastKnownGoodStateFutureReservationSpecs)(nil), // 905: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodStateFutureReservationSpecs + (*FutureReservationStatusSpecificSKUProperties)(nil), // 906: google.cloud.compute.v1.FutureReservationStatusSpecificSKUProperties + (*FutureReservationTimeWindow)(nil), // 907: google.cloud.compute.v1.FutureReservationTimeWindow + (*FutureReservationsAggregatedListResponse)(nil), // 908: google.cloud.compute.v1.FutureReservationsAggregatedListResponse + (*FutureReservationsListResponse)(nil), // 909: google.cloud.compute.v1.FutureReservationsListResponse + (*FutureReservationsScopedList)(nil), // 910: google.cloud.compute.v1.FutureReservationsScopedList + (*FutureResourcesRecommendation)(nil), // 911: google.cloud.compute.v1.FutureResourcesRecommendation + (*FutureResourcesRecommendationOtherLocation)(nil), // 912: google.cloud.compute.v1.FutureResourcesRecommendationOtherLocation + (*FutureResourcesSpec)(nil), // 913: google.cloud.compute.v1.FutureResourcesSpec + (*FutureResourcesSpecAggregateResources)(nil), // 914: google.cloud.compute.v1.FutureResourcesSpecAggregateResources + (*FutureResourcesSpecLocalSsdPartition)(nil), // 915: google.cloud.compute.v1.FutureResourcesSpecLocalSsdPartition + (*FutureResourcesSpecLocationPolicy)(nil), // 916: google.cloud.compute.v1.FutureResourcesSpecLocationPolicy + (*FutureResourcesSpecLocationPolicyLocation)(nil), // 917: google.cloud.compute.v1.FutureResourcesSpecLocationPolicyLocation + (*FutureResourcesSpecSpecificSKUResources)(nil), // 918: google.cloud.compute.v1.FutureResourcesSpecSpecificSKUResources + (*FutureResourcesSpecTargetResources)(nil), // 919: google.cloud.compute.v1.FutureResourcesSpecTargetResources + (*GRPCHealthCheck)(nil), // 920: google.cloud.compute.v1.GRPCHealthCheck + (*GRPCTLSHealthCheck)(nil), // 921: google.cloud.compute.v1.GRPCTLSHealthCheck + (*GetAcceleratorTypeRequest)(nil), // 922: google.cloud.compute.v1.GetAcceleratorTypeRequest + (*GetAddressRequest)(nil), // 923: google.cloud.compute.v1.GetAddressRequest + (*GetAssociationFirewallPolicyRequest)(nil), // 924: google.cloud.compute.v1.GetAssociationFirewallPolicyRequest + (*GetAssociationNetworkFirewallPolicyRequest)(nil), // 925: google.cloud.compute.v1.GetAssociationNetworkFirewallPolicyRequest + (*GetAssociationOrganizationSecurityPolicyRequest)(nil), // 926: google.cloud.compute.v1.GetAssociationOrganizationSecurityPolicyRequest + (*GetAssociationRegionNetworkFirewallPolicyRequest)(nil), // 927: google.cloud.compute.v1.GetAssociationRegionNetworkFirewallPolicyRequest + (*GetAutoscalerRequest)(nil), // 928: google.cloud.compute.v1.GetAutoscalerRequest + (*GetBackendBucketRequest)(nil), // 929: google.cloud.compute.v1.GetBackendBucketRequest + (*GetBackendServiceRequest)(nil), // 930: google.cloud.compute.v1.GetBackendServiceRequest + (*GetCrossSiteNetworkRequest)(nil), // 931: google.cloud.compute.v1.GetCrossSiteNetworkRequest + (*GetDiagnosticsInterconnectRequest)(nil), // 932: google.cloud.compute.v1.GetDiagnosticsInterconnectRequest + (*GetDiskRequest)(nil), // 933: google.cloud.compute.v1.GetDiskRequest + (*GetDiskTypeRequest)(nil), // 934: google.cloud.compute.v1.GetDiskTypeRequest + (*GetEffectiveFirewallsInstanceRequest)(nil), // 935: google.cloud.compute.v1.GetEffectiveFirewallsInstanceRequest + (*GetEffectiveFirewallsNetworkRequest)(nil), // 936: google.cloud.compute.v1.GetEffectiveFirewallsNetworkRequest + (*GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest)(nil), // 937: google.cloud.compute.v1.GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest + (*GetEffectiveSecurityPoliciesBackendServiceRequest)(nil), // 938: google.cloud.compute.v1.GetEffectiveSecurityPoliciesBackendServiceRequest + (*GetEffectiveSecurityPoliciesBackendServiceResponse)(nil), // 939: google.cloud.compute.v1.GetEffectiveSecurityPoliciesBackendServiceResponse + (*GetExternalVpnGatewayRequest)(nil), // 940: google.cloud.compute.v1.GetExternalVpnGatewayRequest + (*GetFirewallPolicyRequest)(nil), // 941: google.cloud.compute.v1.GetFirewallPolicyRequest + (*GetFirewallRequest)(nil), // 942: google.cloud.compute.v1.GetFirewallRequest + (*GetForwardingRuleRequest)(nil), // 943: google.cloud.compute.v1.GetForwardingRuleRequest + (*GetFromFamilyImageRequest)(nil), // 944: google.cloud.compute.v1.GetFromFamilyImageRequest + (*GetFutureReservationRequest)(nil), // 945: google.cloud.compute.v1.GetFutureReservationRequest + (*GetGlobalAddressRequest)(nil), // 946: google.cloud.compute.v1.GetGlobalAddressRequest + (*GetGlobalForwardingRuleRequest)(nil), // 947: google.cloud.compute.v1.GetGlobalForwardingRuleRequest + (*GetGlobalNetworkEndpointGroupRequest)(nil), // 948: google.cloud.compute.v1.GetGlobalNetworkEndpointGroupRequest + (*GetGlobalOperationRequest)(nil), // 949: google.cloud.compute.v1.GetGlobalOperationRequest + (*GetGlobalOrganizationOperationRequest)(nil), // 950: google.cloud.compute.v1.GetGlobalOrganizationOperationRequest + (*GetGlobalPublicDelegatedPrefixeRequest)(nil), // 951: google.cloud.compute.v1.GetGlobalPublicDelegatedPrefixeRequest + (*GetGuestAttributesInstanceRequest)(nil), // 952: google.cloud.compute.v1.GetGuestAttributesInstanceRequest + (*GetHealthBackendServiceRequest)(nil), // 953: google.cloud.compute.v1.GetHealthBackendServiceRequest + (*GetHealthCheckRequest)(nil), // 954: google.cloud.compute.v1.GetHealthCheckRequest + (*GetHealthRegionBackendServiceRequest)(nil), // 955: google.cloud.compute.v1.GetHealthRegionBackendServiceRequest + (*GetHealthRegionCompositeHealthCheckRequest)(nil), // 956: google.cloud.compute.v1.GetHealthRegionCompositeHealthCheckRequest + (*GetHealthRegionHealthSourceRequest)(nil), // 957: google.cloud.compute.v1.GetHealthRegionHealthSourceRequest + (*GetHealthTargetPoolRequest)(nil), // 958: google.cloud.compute.v1.GetHealthTargetPoolRequest + (*GetIamPolicyBackendBucketRequest)(nil), // 959: google.cloud.compute.v1.GetIamPolicyBackendBucketRequest + (*GetIamPolicyBackendServiceRequest)(nil), // 960: google.cloud.compute.v1.GetIamPolicyBackendServiceRequest + (*GetIamPolicyDiskRequest)(nil), // 961: google.cloud.compute.v1.GetIamPolicyDiskRequest + (*GetIamPolicyFirewallPolicyRequest)(nil), // 962: google.cloud.compute.v1.GetIamPolicyFirewallPolicyRequest + (*GetIamPolicyImageRequest)(nil), // 963: google.cloud.compute.v1.GetIamPolicyImageRequest + (*GetIamPolicyInstanceRequest)(nil), // 964: google.cloud.compute.v1.GetIamPolicyInstanceRequest + (*GetIamPolicyInstanceTemplateRequest)(nil), // 965: google.cloud.compute.v1.GetIamPolicyInstanceTemplateRequest + (*GetIamPolicyInstantSnapshotGroupRequest)(nil), // 966: google.cloud.compute.v1.GetIamPolicyInstantSnapshotGroupRequest + (*GetIamPolicyInstantSnapshotRequest)(nil), // 967: google.cloud.compute.v1.GetIamPolicyInstantSnapshotRequest + (*GetIamPolicyInterconnectAttachmentGroupRequest)(nil), // 968: google.cloud.compute.v1.GetIamPolicyInterconnectAttachmentGroupRequest + (*GetIamPolicyInterconnectGroupRequest)(nil), // 969: google.cloud.compute.v1.GetIamPolicyInterconnectGroupRequest + (*GetIamPolicyLicenseRequest)(nil), // 970: google.cloud.compute.v1.GetIamPolicyLicenseRequest + (*GetIamPolicyMachineImageRequest)(nil), // 971: google.cloud.compute.v1.GetIamPolicyMachineImageRequest + (*GetIamPolicyNetworkAttachmentRequest)(nil), // 972: google.cloud.compute.v1.GetIamPolicyNetworkAttachmentRequest + (*GetIamPolicyNetworkFirewallPolicyRequest)(nil), // 973: google.cloud.compute.v1.GetIamPolicyNetworkFirewallPolicyRequest + (*GetIamPolicyNodeGroupRequest)(nil), // 974: google.cloud.compute.v1.GetIamPolicyNodeGroupRequest + (*GetIamPolicyNodeTemplateRequest)(nil), // 975: google.cloud.compute.v1.GetIamPolicyNodeTemplateRequest + (*GetIamPolicyRegionBackendBucketRequest)(nil), // 976: google.cloud.compute.v1.GetIamPolicyRegionBackendBucketRequest + (*GetIamPolicyRegionBackendServiceRequest)(nil), // 977: google.cloud.compute.v1.GetIamPolicyRegionBackendServiceRequest + (*GetIamPolicyRegionDiskRequest)(nil), // 978: google.cloud.compute.v1.GetIamPolicyRegionDiskRequest + (*GetIamPolicyRegionInstantSnapshotGroupRequest)(nil), // 979: google.cloud.compute.v1.GetIamPolicyRegionInstantSnapshotGroupRequest + (*GetIamPolicyRegionInstantSnapshotRequest)(nil), // 980: google.cloud.compute.v1.GetIamPolicyRegionInstantSnapshotRequest + (*GetIamPolicyRegionNetworkFirewallPolicyRequest)(nil), // 981: google.cloud.compute.v1.GetIamPolicyRegionNetworkFirewallPolicyRequest + (*GetIamPolicyRegionSnapshotRequest)(nil), // 982: google.cloud.compute.v1.GetIamPolicyRegionSnapshotRequest + (*GetIamPolicyReservationBlockRequest)(nil), // 983: google.cloud.compute.v1.GetIamPolicyReservationBlockRequest + (*GetIamPolicyReservationRequest)(nil), // 984: google.cloud.compute.v1.GetIamPolicyReservationRequest + (*GetIamPolicyReservationSubBlockRequest)(nil), // 985: google.cloud.compute.v1.GetIamPolicyReservationSubBlockRequest + (*GetIamPolicyResourcePolicyRequest)(nil), // 986: google.cloud.compute.v1.GetIamPolicyResourcePolicyRequest + (*GetIamPolicyServiceAttachmentRequest)(nil), // 987: google.cloud.compute.v1.GetIamPolicyServiceAttachmentRequest + (*GetIamPolicySnapshotRequest)(nil), // 988: google.cloud.compute.v1.GetIamPolicySnapshotRequest + (*GetIamPolicyStoragePoolRequest)(nil), // 989: google.cloud.compute.v1.GetIamPolicyStoragePoolRequest + (*GetIamPolicySubnetworkRequest)(nil), // 990: google.cloud.compute.v1.GetIamPolicySubnetworkRequest + (*GetImageFamilyViewRequest)(nil), // 991: google.cloud.compute.v1.GetImageFamilyViewRequest + (*GetImageRequest)(nil), // 992: google.cloud.compute.v1.GetImageRequest + (*GetInstanceGroupManagerRequest)(nil), // 993: google.cloud.compute.v1.GetInstanceGroupManagerRequest + (*GetInstanceGroupManagerResizeRequestRequest)(nil), // 994: google.cloud.compute.v1.GetInstanceGroupManagerResizeRequestRequest + (*GetInstanceGroupRequest)(nil), // 995: google.cloud.compute.v1.GetInstanceGroupRequest + (*GetInstanceRequest)(nil), // 996: google.cloud.compute.v1.GetInstanceRequest + (*GetInstanceSettingRequest)(nil), // 997: google.cloud.compute.v1.GetInstanceSettingRequest + (*GetInstanceTemplateRequest)(nil), // 998: google.cloud.compute.v1.GetInstanceTemplateRequest + (*GetInstantSnapshotGroupRequest)(nil), // 999: google.cloud.compute.v1.GetInstantSnapshotGroupRequest + (*GetInstantSnapshotRequest)(nil), // 1000: google.cloud.compute.v1.GetInstantSnapshotRequest + (*GetInterconnectAttachmentGroupRequest)(nil), // 1001: google.cloud.compute.v1.GetInterconnectAttachmentGroupRequest + (*GetInterconnectAttachmentRequest)(nil), // 1002: google.cloud.compute.v1.GetInterconnectAttachmentRequest + (*GetInterconnectGroupRequest)(nil), // 1003: google.cloud.compute.v1.GetInterconnectGroupRequest + (*GetInterconnectLocationRequest)(nil), // 1004: google.cloud.compute.v1.GetInterconnectLocationRequest + (*GetInterconnectRemoteLocationRequest)(nil), // 1005: google.cloud.compute.v1.GetInterconnectRemoteLocationRequest + (*GetInterconnectRequest)(nil), // 1006: google.cloud.compute.v1.GetInterconnectRequest + (*GetLicenseCodeRequest)(nil), // 1007: google.cloud.compute.v1.GetLicenseCodeRequest + (*GetLicenseRequest)(nil), // 1008: google.cloud.compute.v1.GetLicenseRequest + (*GetMachineImageRequest)(nil), // 1009: google.cloud.compute.v1.GetMachineImageRequest + (*GetMachineTypeRequest)(nil), // 1010: google.cloud.compute.v1.GetMachineTypeRequest + (*GetMacsecConfigInterconnectRequest)(nil), // 1011: google.cloud.compute.v1.GetMacsecConfigInterconnectRequest + (*GetNatIpInfoRouterRequest)(nil), // 1012: google.cloud.compute.v1.GetNatIpInfoRouterRequest + (*GetNatMappingInfoRoutersRequest)(nil), // 1013: google.cloud.compute.v1.GetNatMappingInfoRoutersRequest + (*GetNetworkAttachmentRequest)(nil), // 1014: google.cloud.compute.v1.GetNetworkAttachmentRequest + (*GetNetworkEdgeSecurityServiceRequest)(nil), // 1015: google.cloud.compute.v1.GetNetworkEdgeSecurityServiceRequest + (*GetNetworkEndpointGroupRequest)(nil), // 1016: google.cloud.compute.v1.GetNetworkEndpointGroupRequest + (*GetNetworkFirewallPolicyRequest)(nil), // 1017: google.cloud.compute.v1.GetNetworkFirewallPolicyRequest + (*GetNetworkProfileRequest)(nil), // 1018: google.cloud.compute.v1.GetNetworkProfileRequest + (*GetNetworkRequest)(nil), // 1019: google.cloud.compute.v1.GetNetworkRequest + (*GetNodeGroupRequest)(nil), // 1020: google.cloud.compute.v1.GetNodeGroupRequest + (*GetNodeTemplateRequest)(nil), // 1021: google.cloud.compute.v1.GetNodeTemplateRequest + (*GetNodeTypeRequest)(nil), // 1022: google.cloud.compute.v1.GetNodeTypeRequest + (*GetOperationalStatusInterconnectAttachmentGroupRequest)(nil), // 1023: google.cloud.compute.v1.GetOperationalStatusInterconnectAttachmentGroupRequest + (*GetOperationalStatusInterconnectGroupRequest)(nil), // 1024: google.cloud.compute.v1.GetOperationalStatusInterconnectGroupRequest + (*GetOrganizationSecurityPolicyRequest)(nil), // 1025: google.cloud.compute.v1.GetOrganizationSecurityPolicyRequest + (*GetPacketMirroringRequest)(nil), // 1026: google.cloud.compute.v1.GetPacketMirroringRequest + (*GetPacketMirroringRuleNetworkFirewallPolicyRequest)(nil), // 1027: google.cloud.compute.v1.GetPacketMirroringRuleNetworkFirewallPolicyRequest + (*GetPreviewFeatureRequest)(nil), // 1028: google.cloud.compute.v1.GetPreviewFeatureRequest + (*GetProjectRequest)(nil), // 1029: google.cloud.compute.v1.GetProjectRequest + (*GetPublicAdvertisedPrefixeRequest)(nil), // 1030: google.cloud.compute.v1.GetPublicAdvertisedPrefixeRequest + (*GetPublicDelegatedPrefixeRequest)(nil), // 1031: google.cloud.compute.v1.GetPublicDelegatedPrefixeRequest + (*GetRegionAutoscalerRequest)(nil), // 1032: google.cloud.compute.v1.GetRegionAutoscalerRequest + (*GetRegionBackendBucketRequest)(nil), // 1033: google.cloud.compute.v1.GetRegionBackendBucketRequest + (*GetRegionBackendServiceRequest)(nil), // 1034: google.cloud.compute.v1.GetRegionBackendServiceRequest + (*GetRegionCommitmentRequest)(nil), // 1035: google.cloud.compute.v1.GetRegionCommitmentRequest + (*GetRegionCompositeHealthCheckRequest)(nil), // 1036: google.cloud.compute.v1.GetRegionCompositeHealthCheckRequest + (*GetRegionDiskRequest)(nil), // 1037: google.cloud.compute.v1.GetRegionDiskRequest + (*GetRegionDiskTypeRequest)(nil), // 1038: google.cloud.compute.v1.GetRegionDiskTypeRequest + (*GetRegionHealthAggregationPolicyRequest)(nil), // 1039: google.cloud.compute.v1.GetRegionHealthAggregationPolicyRequest + (*GetRegionHealthCheckRequest)(nil), // 1040: google.cloud.compute.v1.GetRegionHealthCheckRequest + (*GetRegionHealthCheckServiceRequest)(nil), // 1041: google.cloud.compute.v1.GetRegionHealthCheckServiceRequest + (*GetRegionHealthSourceRequest)(nil), // 1042: google.cloud.compute.v1.GetRegionHealthSourceRequest + (*GetRegionInstanceGroupManagerRequest)(nil), // 1043: google.cloud.compute.v1.GetRegionInstanceGroupManagerRequest + (*GetRegionInstanceGroupManagerResizeRequestRequest)(nil), // 1044: google.cloud.compute.v1.GetRegionInstanceGroupManagerResizeRequestRequest + (*GetRegionInstanceGroupRequest)(nil), // 1045: google.cloud.compute.v1.GetRegionInstanceGroupRequest + (*GetRegionInstanceTemplateRequest)(nil), // 1046: google.cloud.compute.v1.GetRegionInstanceTemplateRequest + (*GetRegionInstantSnapshotGroupRequest)(nil), // 1047: google.cloud.compute.v1.GetRegionInstantSnapshotGroupRequest + (*GetRegionInstantSnapshotRequest)(nil), // 1048: google.cloud.compute.v1.GetRegionInstantSnapshotRequest + (*GetRegionNetworkEndpointGroupRequest)(nil), // 1049: google.cloud.compute.v1.GetRegionNetworkEndpointGroupRequest + (*GetRegionNetworkFirewallPolicyRequest)(nil), // 1050: google.cloud.compute.v1.GetRegionNetworkFirewallPolicyRequest + (*GetRegionNotificationEndpointRequest)(nil), // 1051: google.cloud.compute.v1.GetRegionNotificationEndpointRequest + (*GetRegionOperationRequest)(nil), // 1052: google.cloud.compute.v1.GetRegionOperationRequest + (*GetRegionRequest)(nil), // 1053: google.cloud.compute.v1.GetRegionRequest + (*GetRegionSecurityPolicyRequest)(nil), // 1054: google.cloud.compute.v1.GetRegionSecurityPolicyRequest + (*GetRegionSnapshotRequest)(nil), // 1055: google.cloud.compute.v1.GetRegionSnapshotRequest + (*GetRegionSnapshotSettingRequest)(nil), // 1056: google.cloud.compute.v1.GetRegionSnapshotSettingRequest + (*GetRegionSslCertificateRequest)(nil), // 1057: google.cloud.compute.v1.GetRegionSslCertificateRequest + (*GetRegionSslPolicyRequest)(nil), // 1058: google.cloud.compute.v1.GetRegionSslPolicyRequest + (*GetRegionTargetHttpProxyRequest)(nil), // 1059: google.cloud.compute.v1.GetRegionTargetHttpProxyRequest + (*GetRegionTargetHttpsProxyRequest)(nil), // 1060: google.cloud.compute.v1.GetRegionTargetHttpsProxyRequest + (*GetRegionTargetTcpProxyRequest)(nil), // 1061: google.cloud.compute.v1.GetRegionTargetTcpProxyRequest + (*GetRegionUrlMapRequest)(nil), // 1062: google.cloud.compute.v1.GetRegionUrlMapRequest + (*GetReservationBlockRequest)(nil), // 1063: google.cloud.compute.v1.GetReservationBlockRequest + (*GetReservationRequest)(nil), // 1064: google.cloud.compute.v1.GetReservationRequest + (*GetReservationSlotRequest)(nil), // 1065: google.cloud.compute.v1.GetReservationSlotRequest + (*GetReservationSubBlockRequest)(nil), // 1066: google.cloud.compute.v1.GetReservationSubBlockRequest + (*GetResourcePolicyRequest)(nil), // 1067: google.cloud.compute.v1.GetResourcePolicyRequest + (*GetRoutePolicyRouterRequest)(nil), // 1068: google.cloud.compute.v1.GetRoutePolicyRouterRequest + (*GetRouteRequest)(nil), // 1069: google.cloud.compute.v1.GetRouteRequest + (*GetRouterRequest)(nil), // 1070: google.cloud.compute.v1.GetRouterRequest + (*GetRouterStatusRouterRequest)(nil), // 1071: google.cloud.compute.v1.GetRouterStatusRouterRequest + (*GetRuleFirewallPolicyRequest)(nil), // 1072: google.cloud.compute.v1.GetRuleFirewallPolicyRequest + (*GetRuleNetworkFirewallPolicyRequest)(nil), // 1073: google.cloud.compute.v1.GetRuleNetworkFirewallPolicyRequest + (*GetRuleOrganizationSecurityPolicyRequest)(nil), // 1074: google.cloud.compute.v1.GetRuleOrganizationSecurityPolicyRequest + (*GetRuleRegionNetworkFirewallPolicyRequest)(nil), // 1075: google.cloud.compute.v1.GetRuleRegionNetworkFirewallPolicyRequest + (*GetRuleRegionSecurityPolicyRequest)(nil), // 1076: google.cloud.compute.v1.GetRuleRegionSecurityPolicyRequest + (*GetRuleSecurityPolicyRequest)(nil), // 1077: google.cloud.compute.v1.GetRuleSecurityPolicyRequest + (*GetScreenshotInstanceRequest)(nil), // 1078: google.cloud.compute.v1.GetScreenshotInstanceRequest + (*GetSecurityPolicyRequest)(nil), // 1079: google.cloud.compute.v1.GetSecurityPolicyRequest + (*GetSerialPortOutputInstanceRequest)(nil), // 1080: google.cloud.compute.v1.GetSerialPortOutputInstanceRequest + (*GetServiceAttachmentRequest)(nil), // 1081: google.cloud.compute.v1.GetServiceAttachmentRequest + (*GetShieldedInstanceIdentityInstanceRequest)(nil), // 1082: google.cloud.compute.v1.GetShieldedInstanceIdentityInstanceRequest + (*GetSnapshotRequest)(nil), // 1083: google.cloud.compute.v1.GetSnapshotRequest + (*GetSnapshotSettingRequest)(nil), // 1084: google.cloud.compute.v1.GetSnapshotSettingRequest + (*GetSslCertificateRequest)(nil), // 1085: google.cloud.compute.v1.GetSslCertificateRequest + (*GetSslPolicyRequest)(nil), // 1086: google.cloud.compute.v1.GetSslPolicyRequest + (*GetStatusVpnGatewayRequest)(nil), // 1087: google.cloud.compute.v1.GetStatusVpnGatewayRequest + (*GetStoragePoolRequest)(nil), // 1088: google.cloud.compute.v1.GetStoragePoolRequest + (*GetStoragePoolTypeRequest)(nil), // 1089: google.cloud.compute.v1.GetStoragePoolTypeRequest + (*GetSubnetworkRequest)(nil), // 1090: google.cloud.compute.v1.GetSubnetworkRequest + (*GetTargetGrpcProxyRequest)(nil), // 1091: google.cloud.compute.v1.GetTargetGrpcProxyRequest + (*GetTargetHttpProxyRequest)(nil), // 1092: google.cloud.compute.v1.GetTargetHttpProxyRequest + (*GetTargetHttpsProxyRequest)(nil), // 1093: google.cloud.compute.v1.GetTargetHttpsProxyRequest + (*GetTargetInstanceRequest)(nil), // 1094: google.cloud.compute.v1.GetTargetInstanceRequest + (*GetTargetPoolRequest)(nil), // 1095: google.cloud.compute.v1.GetTargetPoolRequest + (*GetTargetSslProxyRequest)(nil), // 1096: google.cloud.compute.v1.GetTargetSslProxyRequest + (*GetTargetTcpProxyRequest)(nil), // 1097: google.cloud.compute.v1.GetTargetTcpProxyRequest + (*GetTargetVpnGatewayRequest)(nil), // 1098: google.cloud.compute.v1.GetTargetVpnGatewayRequest + (*GetUrlMapRequest)(nil), // 1099: google.cloud.compute.v1.GetUrlMapRequest + (*GetVersionOperationMetadata)(nil), // 1100: google.cloud.compute.v1.GetVersionOperationMetadata + (*GetVersionOperationMetadataSbomInfo)(nil), // 1101: google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo + (*GetVersionReservationSlotRequest)(nil), // 1102: google.cloud.compute.v1.GetVersionReservationSlotRequest + (*GetVersionReservationSubBlockRequest)(nil), // 1103: google.cloud.compute.v1.GetVersionReservationSubBlockRequest + (*GetVpnGatewayRequest)(nil), // 1104: google.cloud.compute.v1.GetVpnGatewayRequest + (*GetVpnTunnelRequest)(nil), // 1105: google.cloud.compute.v1.GetVpnTunnelRequest + (*GetWireGroupRequest)(nil), // 1106: google.cloud.compute.v1.GetWireGroupRequest + (*GetXpnHostProjectRequest)(nil), // 1107: google.cloud.compute.v1.GetXpnHostProjectRequest + (*GetXpnResourcesProjectsRequest)(nil), // 1108: google.cloud.compute.v1.GetXpnResourcesProjectsRequest + (*GetZoneOperationRequest)(nil), // 1109: google.cloud.compute.v1.GetZoneOperationRequest + (*GetZoneRequest)(nil), // 1110: google.cloud.compute.v1.GetZoneRequest + (*GetZoneVmExtensionPolicyRequest)(nil), // 1111: google.cloud.compute.v1.GetZoneVmExtensionPolicyRequest + (*GlobalAddressesMoveRequest)(nil), // 1112: google.cloud.compute.v1.GlobalAddressesMoveRequest + (*GlobalNetworkEndpointGroupsAttachEndpointsRequest)(nil), // 1113: google.cloud.compute.v1.GlobalNetworkEndpointGroupsAttachEndpointsRequest + (*GlobalNetworkEndpointGroupsDetachEndpointsRequest)(nil), // 1114: google.cloud.compute.v1.GlobalNetworkEndpointGroupsDetachEndpointsRequest + (*GlobalOrganizationSetPolicyRequest)(nil), // 1115: google.cloud.compute.v1.GlobalOrganizationSetPolicyRequest + (*GlobalSetLabelsRequest)(nil), // 1116: google.cloud.compute.v1.GlobalSetLabelsRequest + (*GlobalSetPolicyRequest)(nil), // 1117: google.cloud.compute.v1.GlobalSetPolicyRequest + (*GroupMaintenanceInfo)(nil), // 1118: google.cloud.compute.v1.GroupMaintenanceInfo + (*GuestAttributes)(nil), // 1119: google.cloud.compute.v1.GuestAttributes + (*GuestAttributesEntry)(nil), // 1120: google.cloud.compute.v1.GuestAttributesEntry + (*GuestAttributesValue)(nil), // 1121: google.cloud.compute.v1.GuestAttributesValue + (*GuestOsFeature)(nil), // 1122: google.cloud.compute.v1.GuestOsFeature + (*HTTP2HealthCheck)(nil), // 1123: google.cloud.compute.v1.HTTP2HealthCheck + (*HTTPHealthCheck)(nil), // 1124: google.cloud.compute.v1.HTTPHealthCheck + (*HTTPSHealthCheck)(nil), // 1125: google.cloud.compute.v1.HTTPSHealthCheck + (*HealthAggregationPoliciesScopedList)(nil), // 1126: google.cloud.compute.v1.HealthAggregationPoliciesScopedList + (*HealthAggregationPolicy)(nil), // 1127: google.cloud.compute.v1.HealthAggregationPolicy + (*HealthAggregationPolicyAggregatedList)(nil), // 1128: google.cloud.compute.v1.HealthAggregationPolicyAggregatedList + (*HealthAggregationPolicyList)(nil), // 1129: google.cloud.compute.v1.HealthAggregationPolicyList + (*HealthCheck)(nil), // 1130: google.cloud.compute.v1.HealthCheck + (*HealthCheckList)(nil), // 1131: google.cloud.compute.v1.HealthCheckList + (*HealthCheckLogConfig)(nil), // 1132: google.cloud.compute.v1.HealthCheckLogConfig + (*HealthCheckReference)(nil), // 1133: google.cloud.compute.v1.HealthCheckReference + (*HealthCheckService)(nil), // 1134: google.cloud.compute.v1.HealthCheckService + (*HealthCheckServiceAggregatedList)(nil), // 1135: google.cloud.compute.v1.HealthCheckServiceAggregatedList + (*HealthCheckServiceReference)(nil), // 1136: google.cloud.compute.v1.HealthCheckServiceReference + (*HealthCheckServicesList)(nil), // 1137: google.cloud.compute.v1.HealthCheckServicesList + (*HealthCheckServicesScopedList)(nil), // 1138: google.cloud.compute.v1.HealthCheckServicesScopedList + (*HealthChecksAggregatedList)(nil), // 1139: google.cloud.compute.v1.HealthChecksAggregatedList + (*HealthChecksScopedList)(nil), // 1140: google.cloud.compute.v1.HealthChecksScopedList + (*HealthSource)(nil), // 1141: google.cloud.compute.v1.HealthSource + (*HealthSourceAggregatedList)(nil), // 1142: google.cloud.compute.v1.HealthSourceAggregatedList + (*HealthSourceHealth)(nil), // 1143: google.cloud.compute.v1.HealthSourceHealth + (*HealthSourceList)(nil), // 1144: google.cloud.compute.v1.HealthSourceList + (*HealthSourcesGetHealthResponseSourceInfo)(nil), // 1145: google.cloud.compute.v1.HealthSourcesGetHealthResponseSourceInfo + (*HealthSourcesGetHealthResponseSourceInfoBackendInfo)(nil), // 1146: google.cloud.compute.v1.HealthSourcesGetHealthResponseSourceInfoBackendInfo + (*HealthSourcesScopedList)(nil), // 1147: google.cloud.compute.v1.HealthSourcesScopedList + (*HealthStatus)(nil), // 1148: google.cloud.compute.v1.HealthStatus + (*HealthStatusForNetworkEndpoint)(nil), // 1149: google.cloud.compute.v1.HealthStatusForNetworkEndpoint + (*Help)(nil), // 1150: google.cloud.compute.v1.Help + (*HelpLink)(nil), // 1151: google.cloud.compute.v1.HelpLink + (*HostRule)(nil), // 1152: google.cloud.compute.v1.HostRule + (*HttpFaultAbort)(nil), // 1153: google.cloud.compute.v1.HttpFaultAbort + (*HttpFaultDelay)(nil), // 1154: google.cloud.compute.v1.HttpFaultDelay + (*HttpFaultInjection)(nil), // 1155: google.cloud.compute.v1.HttpFaultInjection + (*HttpHeaderAction)(nil), // 1156: google.cloud.compute.v1.HttpHeaderAction + (*HttpHeaderMatch)(nil), // 1157: google.cloud.compute.v1.HttpHeaderMatch + (*HttpHeaderOption)(nil), // 1158: google.cloud.compute.v1.HttpHeaderOption + (*HttpQueryParameterMatch)(nil), // 1159: google.cloud.compute.v1.HttpQueryParameterMatch + (*HttpRedirectAction)(nil), // 1160: google.cloud.compute.v1.HttpRedirectAction + (*HttpRetryPolicy)(nil), // 1161: google.cloud.compute.v1.HttpRetryPolicy + (*HttpRouteAction)(nil), // 1162: google.cloud.compute.v1.HttpRouteAction + (*HttpRouteRule)(nil), // 1163: google.cloud.compute.v1.HttpRouteRule + (*HttpRouteRuleMatch)(nil), // 1164: google.cloud.compute.v1.HttpRouteRuleMatch + (*Image)(nil), // 1165: google.cloud.compute.v1.Image + (*ImageFamilyView)(nil), // 1166: google.cloud.compute.v1.ImageFamilyView + (*ImageList)(nil), // 1167: google.cloud.compute.v1.ImageList + (*ImageParams)(nil), // 1168: google.cloud.compute.v1.ImageParams + (*InitialStateConfig)(nil), // 1169: google.cloud.compute.v1.InitialStateConfig + (*InsertAddressRequest)(nil), // 1170: google.cloud.compute.v1.InsertAddressRequest + (*InsertAutoscalerRequest)(nil), // 1171: google.cloud.compute.v1.InsertAutoscalerRequest + (*InsertBackendBucketRequest)(nil), // 1172: google.cloud.compute.v1.InsertBackendBucketRequest + (*InsertBackendServiceRequest)(nil), // 1173: google.cloud.compute.v1.InsertBackendServiceRequest + (*InsertCrossSiteNetworkRequest)(nil), // 1174: google.cloud.compute.v1.InsertCrossSiteNetworkRequest + (*InsertDiskRequest)(nil), // 1175: google.cloud.compute.v1.InsertDiskRequest + (*InsertExternalVpnGatewayRequest)(nil), // 1176: google.cloud.compute.v1.InsertExternalVpnGatewayRequest + (*InsertFirewallPolicyRequest)(nil), // 1177: google.cloud.compute.v1.InsertFirewallPolicyRequest + (*InsertFirewallRequest)(nil), // 1178: google.cloud.compute.v1.InsertFirewallRequest + (*InsertForwardingRuleRequest)(nil), // 1179: google.cloud.compute.v1.InsertForwardingRuleRequest + (*InsertFutureReservationRequest)(nil), // 1180: google.cloud.compute.v1.InsertFutureReservationRequest + (*InsertGlobalAddressRequest)(nil), // 1181: google.cloud.compute.v1.InsertGlobalAddressRequest + (*InsertGlobalForwardingRuleRequest)(nil), // 1182: google.cloud.compute.v1.InsertGlobalForwardingRuleRequest + (*InsertGlobalNetworkEndpointGroupRequest)(nil), // 1183: google.cloud.compute.v1.InsertGlobalNetworkEndpointGroupRequest + (*InsertGlobalPublicDelegatedPrefixeRequest)(nil), // 1184: google.cloud.compute.v1.InsertGlobalPublicDelegatedPrefixeRequest + (*InsertHealthCheckRequest)(nil), // 1185: google.cloud.compute.v1.InsertHealthCheckRequest + (*InsertImageRequest)(nil), // 1186: google.cloud.compute.v1.InsertImageRequest + (*InsertInstanceGroupManagerRequest)(nil), // 1187: google.cloud.compute.v1.InsertInstanceGroupManagerRequest + (*InsertInstanceGroupManagerResizeRequestRequest)(nil), // 1188: google.cloud.compute.v1.InsertInstanceGroupManagerResizeRequestRequest + (*InsertInstanceGroupRequest)(nil), // 1189: google.cloud.compute.v1.InsertInstanceGroupRequest + (*InsertInstanceRequest)(nil), // 1190: google.cloud.compute.v1.InsertInstanceRequest + (*InsertInstanceTemplateRequest)(nil), // 1191: google.cloud.compute.v1.InsertInstanceTemplateRequest + (*InsertInstantSnapshotGroupRequest)(nil), // 1192: google.cloud.compute.v1.InsertInstantSnapshotGroupRequest + (*InsertInstantSnapshotRequest)(nil), // 1193: google.cloud.compute.v1.InsertInstantSnapshotRequest + (*InsertInterconnectAttachmentGroupRequest)(nil), // 1194: google.cloud.compute.v1.InsertInterconnectAttachmentGroupRequest + (*InsertInterconnectAttachmentRequest)(nil), // 1195: google.cloud.compute.v1.InsertInterconnectAttachmentRequest + (*InsertInterconnectGroupRequest)(nil), // 1196: google.cloud.compute.v1.InsertInterconnectGroupRequest + (*InsertInterconnectRequest)(nil), // 1197: google.cloud.compute.v1.InsertInterconnectRequest + (*InsertLicenseRequest)(nil), // 1198: google.cloud.compute.v1.InsertLicenseRequest + (*InsertMachineImageRequest)(nil), // 1199: google.cloud.compute.v1.InsertMachineImageRequest + (*InsertNetworkAttachmentRequest)(nil), // 1200: google.cloud.compute.v1.InsertNetworkAttachmentRequest + (*InsertNetworkEdgeSecurityServiceRequest)(nil), // 1201: google.cloud.compute.v1.InsertNetworkEdgeSecurityServiceRequest + (*InsertNetworkEndpointGroupRequest)(nil), // 1202: google.cloud.compute.v1.InsertNetworkEndpointGroupRequest + (*InsertNetworkFirewallPolicyRequest)(nil), // 1203: google.cloud.compute.v1.InsertNetworkFirewallPolicyRequest + (*InsertNetworkRequest)(nil), // 1204: google.cloud.compute.v1.InsertNetworkRequest + (*InsertNodeGroupRequest)(nil), // 1205: google.cloud.compute.v1.InsertNodeGroupRequest + (*InsertNodeTemplateRequest)(nil), // 1206: google.cloud.compute.v1.InsertNodeTemplateRequest + (*InsertOrganizationSecurityPolicyRequest)(nil), // 1207: google.cloud.compute.v1.InsertOrganizationSecurityPolicyRequest + (*InsertPacketMirroringRequest)(nil), // 1208: google.cloud.compute.v1.InsertPacketMirroringRequest + (*InsertPublicAdvertisedPrefixeRequest)(nil), // 1209: google.cloud.compute.v1.InsertPublicAdvertisedPrefixeRequest + (*InsertPublicDelegatedPrefixeRequest)(nil), // 1210: google.cloud.compute.v1.InsertPublicDelegatedPrefixeRequest + (*InsertRegionAutoscalerRequest)(nil), // 1211: google.cloud.compute.v1.InsertRegionAutoscalerRequest + (*InsertRegionBackendBucketRequest)(nil), // 1212: google.cloud.compute.v1.InsertRegionBackendBucketRequest + (*InsertRegionBackendServiceRequest)(nil), // 1213: google.cloud.compute.v1.InsertRegionBackendServiceRequest + (*InsertRegionCommitmentRequest)(nil), // 1214: google.cloud.compute.v1.InsertRegionCommitmentRequest + (*InsertRegionCompositeHealthCheckRequest)(nil), // 1215: google.cloud.compute.v1.InsertRegionCompositeHealthCheckRequest + (*InsertRegionDiskRequest)(nil), // 1216: google.cloud.compute.v1.InsertRegionDiskRequest + (*InsertRegionHealthAggregationPolicyRequest)(nil), // 1217: google.cloud.compute.v1.InsertRegionHealthAggregationPolicyRequest + (*InsertRegionHealthCheckRequest)(nil), // 1218: google.cloud.compute.v1.InsertRegionHealthCheckRequest + (*InsertRegionHealthCheckServiceRequest)(nil), // 1219: google.cloud.compute.v1.InsertRegionHealthCheckServiceRequest + (*InsertRegionHealthSourceRequest)(nil), // 1220: google.cloud.compute.v1.InsertRegionHealthSourceRequest + (*InsertRegionInstanceGroupManagerRequest)(nil), // 1221: google.cloud.compute.v1.InsertRegionInstanceGroupManagerRequest + (*InsertRegionInstanceGroupManagerResizeRequestRequest)(nil), // 1222: google.cloud.compute.v1.InsertRegionInstanceGroupManagerResizeRequestRequest + (*InsertRegionInstanceTemplateRequest)(nil), // 1223: google.cloud.compute.v1.InsertRegionInstanceTemplateRequest + (*InsertRegionInstantSnapshotGroupRequest)(nil), // 1224: google.cloud.compute.v1.InsertRegionInstantSnapshotGroupRequest + (*InsertRegionInstantSnapshotRequest)(nil), // 1225: google.cloud.compute.v1.InsertRegionInstantSnapshotRequest + (*InsertRegionNetworkEndpointGroupRequest)(nil), // 1226: google.cloud.compute.v1.InsertRegionNetworkEndpointGroupRequest + (*InsertRegionNetworkFirewallPolicyRequest)(nil), // 1227: google.cloud.compute.v1.InsertRegionNetworkFirewallPolicyRequest + (*InsertRegionNotificationEndpointRequest)(nil), // 1228: google.cloud.compute.v1.InsertRegionNotificationEndpointRequest + (*InsertRegionSecurityPolicyRequest)(nil), // 1229: google.cloud.compute.v1.InsertRegionSecurityPolicyRequest + (*InsertRegionSnapshotRequest)(nil), // 1230: google.cloud.compute.v1.InsertRegionSnapshotRequest + (*InsertRegionSslCertificateRequest)(nil), // 1231: google.cloud.compute.v1.InsertRegionSslCertificateRequest + (*InsertRegionSslPolicyRequest)(nil), // 1232: google.cloud.compute.v1.InsertRegionSslPolicyRequest + (*InsertRegionTargetHttpProxyRequest)(nil), // 1233: google.cloud.compute.v1.InsertRegionTargetHttpProxyRequest + (*InsertRegionTargetHttpsProxyRequest)(nil), // 1234: google.cloud.compute.v1.InsertRegionTargetHttpsProxyRequest + (*InsertRegionTargetTcpProxyRequest)(nil), // 1235: google.cloud.compute.v1.InsertRegionTargetTcpProxyRequest + (*InsertRegionUrlMapRequest)(nil), // 1236: google.cloud.compute.v1.InsertRegionUrlMapRequest + (*InsertReservationRequest)(nil), // 1237: google.cloud.compute.v1.InsertReservationRequest + (*InsertResourcePolicyRequest)(nil), // 1238: google.cloud.compute.v1.InsertResourcePolicyRequest + (*InsertRouteRequest)(nil), // 1239: google.cloud.compute.v1.InsertRouteRequest + (*InsertRouterRequest)(nil), // 1240: google.cloud.compute.v1.InsertRouterRequest + (*InsertSecurityPolicyRequest)(nil), // 1241: google.cloud.compute.v1.InsertSecurityPolicyRequest + (*InsertServiceAttachmentRequest)(nil), // 1242: google.cloud.compute.v1.InsertServiceAttachmentRequest + (*InsertSnapshotRequest)(nil), // 1243: google.cloud.compute.v1.InsertSnapshotRequest + (*InsertSslCertificateRequest)(nil), // 1244: google.cloud.compute.v1.InsertSslCertificateRequest + (*InsertSslPolicyRequest)(nil), // 1245: google.cloud.compute.v1.InsertSslPolicyRequest + (*InsertStoragePoolRequest)(nil), // 1246: google.cloud.compute.v1.InsertStoragePoolRequest + (*InsertSubnetworkRequest)(nil), // 1247: google.cloud.compute.v1.InsertSubnetworkRequest + (*InsertTargetGrpcProxyRequest)(nil), // 1248: google.cloud.compute.v1.InsertTargetGrpcProxyRequest + (*InsertTargetHttpProxyRequest)(nil), // 1249: google.cloud.compute.v1.InsertTargetHttpProxyRequest + (*InsertTargetHttpsProxyRequest)(nil), // 1250: google.cloud.compute.v1.InsertTargetHttpsProxyRequest + (*InsertTargetInstanceRequest)(nil), // 1251: google.cloud.compute.v1.InsertTargetInstanceRequest + (*InsertTargetPoolRequest)(nil), // 1252: google.cloud.compute.v1.InsertTargetPoolRequest + (*InsertTargetSslProxyRequest)(nil), // 1253: google.cloud.compute.v1.InsertTargetSslProxyRequest + (*InsertTargetTcpProxyRequest)(nil), // 1254: google.cloud.compute.v1.InsertTargetTcpProxyRequest + (*InsertTargetVpnGatewayRequest)(nil), // 1255: google.cloud.compute.v1.InsertTargetVpnGatewayRequest + (*InsertUrlMapRequest)(nil), // 1256: google.cloud.compute.v1.InsertUrlMapRequest + (*InsertVpnGatewayRequest)(nil), // 1257: google.cloud.compute.v1.InsertVpnGatewayRequest + (*InsertVpnTunnelRequest)(nil), // 1258: google.cloud.compute.v1.InsertVpnTunnelRequest + (*InsertWireGroupRequest)(nil), // 1259: google.cloud.compute.v1.InsertWireGroupRequest + (*InsertZoneVmExtensionPolicyRequest)(nil), // 1260: google.cloud.compute.v1.InsertZoneVmExtensionPolicyRequest + (*Instance)(nil), // 1261: google.cloud.compute.v1.Instance + (*InstanceAggregatedList)(nil), // 1262: google.cloud.compute.v1.InstanceAggregatedList + (*InstanceConsumptionData)(nil), // 1263: google.cloud.compute.v1.InstanceConsumptionData + (*InstanceConsumptionInfo)(nil), // 1264: google.cloud.compute.v1.InstanceConsumptionInfo + (*InstanceFlexibilityPolicy)(nil), // 1265: google.cloud.compute.v1.InstanceFlexibilityPolicy + (*InstanceFlexibilityPolicyInstanceSelection)(nil), // 1266: google.cloud.compute.v1.InstanceFlexibilityPolicyInstanceSelection + (*InstanceGroup)(nil), // 1267: google.cloud.compute.v1.InstanceGroup + (*InstanceGroupAggregatedList)(nil), // 1268: google.cloud.compute.v1.InstanceGroupAggregatedList + (*InstanceGroupList)(nil), // 1269: google.cloud.compute.v1.InstanceGroupList + (*InstanceGroupManager)(nil), // 1270: google.cloud.compute.v1.InstanceGroupManager + (*InstanceGroupManagerActionsSummary)(nil), // 1271: google.cloud.compute.v1.InstanceGroupManagerActionsSummary + (*InstanceGroupManagerAggregatedList)(nil), // 1272: google.cloud.compute.v1.InstanceGroupManagerAggregatedList + (*InstanceGroupManagerAllInstancesConfig)(nil), // 1273: google.cloud.compute.v1.InstanceGroupManagerAllInstancesConfig + (*InstanceGroupManagerAutoHealingPolicy)(nil), // 1274: google.cloud.compute.v1.InstanceGroupManagerAutoHealingPolicy + (*InstanceGroupManagerInstanceFlexibilityPolicy)(nil), // 1275: google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicy + (*InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection)(nil), // 1276: google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection + (*InstanceGroupManagerInstanceLifecyclePolicy)(nil), // 1277: google.cloud.compute.v1.InstanceGroupManagerInstanceLifecyclePolicy + (*InstanceGroupManagerList)(nil), // 1278: google.cloud.compute.v1.InstanceGroupManagerList + (*InstanceGroupManagerResizeRequest)(nil), // 1279: google.cloud.compute.v1.InstanceGroupManagerResizeRequest + (*InstanceGroupManagerResizeRequestStatus)(nil), // 1280: google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatus + (*InstanceGroupManagerResizeRequestStatusLastAttempt)(nil), // 1281: google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatusLastAttempt + (*InstanceGroupManagerResizeRequestsListResponse)(nil), // 1282: google.cloud.compute.v1.InstanceGroupManagerResizeRequestsListResponse + (*InstanceGroupManagerResourcePolicies)(nil), // 1283: google.cloud.compute.v1.InstanceGroupManagerResourcePolicies + (*InstanceGroupManagerStandbyPolicy)(nil), // 1284: google.cloud.compute.v1.InstanceGroupManagerStandbyPolicy + (*InstanceGroupManagerStatus)(nil), // 1285: google.cloud.compute.v1.InstanceGroupManagerStatus + (*InstanceGroupManagerStatusAcceleratorTopology)(nil), // 1286: google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopology + (*InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails)(nil), // 1287: google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails + (*InstanceGroupManagerStatusAllInstancesConfig)(nil), // 1288: google.cloud.compute.v1.InstanceGroupManagerStatusAllInstancesConfig + (*InstanceGroupManagerStatusBulkInstanceOperation)(nil), // 1289: google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperation + (*InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck)(nil), // 1290: google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck + (*InstanceGroupManagerStatusInstanceStatusSummary)(nil), // 1291: google.cloud.compute.v1.InstanceGroupManagerStatusInstanceStatusSummary + (*InstanceGroupManagerStatusStateful)(nil), // 1292: google.cloud.compute.v1.InstanceGroupManagerStatusStateful + (*InstanceGroupManagerStatusStatefulPerInstanceConfigs)(nil), // 1293: google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigs + (*InstanceGroupManagerStatusVersionTarget)(nil), // 1294: google.cloud.compute.v1.InstanceGroupManagerStatusVersionTarget + (*InstanceGroupManagerTargetSizePolicy)(nil), // 1295: google.cloud.compute.v1.InstanceGroupManagerTargetSizePolicy + (*InstanceGroupManagerUpdatePolicy)(nil), // 1296: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy + (*InstanceGroupManagerVersion)(nil), // 1297: google.cloud.compute.v1.InstanceGroupManagerVersion + (*InstanceGroupManagersAbandonInstancesRequest)(nil), // 1298: google.cloud.compute.v1.InstanceGroupManagersAbandonInstancesRequest + (*InstanceGroupManagersApplyUpdatesRequest)(nil), // 1299: google.cloud.compute.v1.InstanceGroupManagersApplyUpdatesRequest + (*InstanceGroupManagersCreateInstancesRequest)(nil), // 1300: google.cloud.compute.v1.InstanceGroupManagersCreateInstancesRequest + (*InstanceGroupManagersDeleteInstancesRequest)(nil), // 1301: google.cloud.compute.v1.InstanceGroupManagersDeleteInstancesRequest + (*InstanceGroupManagersDeletePerInstanceConfigsReq)(nil), // 1302: google.cloud.compute.v1.InstanceGroupManagersDeletePerInstanceConfigsReq + (*InstanceGroupManagersListErrorsResponse)(nil), // 1303: google.cloud.compute.v1.InstanceGroupManagersListErrorsResponse + (*InstanceGroupManagersListManagedInstancesResponse)(nil), // 1304: google.cloud.compute.v1.InstanceGroupManagersListManagedInstancesResponse + (*InstanceGroupManagersListPerInstanceConfigsResp)(nil), // 1305: google.cloud.compute.v1.InstanceGroupManagersListPerInstanceConfigsResp + (*InstanceGroupManagersPatchPerInstanceConfigsReq)(nil), // 1306: google.cloud.compute.v1.InstanceGroupManagersPatchPerInstanceConfigsReq + (*InstanceGroupManagersRecreateInstancesRequest)(nil), // 1307: google.cloud.compute.v1.InstanceGroupManagersRecreateInstancesRequest + (*InstanceGroupManagersResumeInstancesRequest)(nil), // 1308: google.cloud.compute.v1.InstanceGroupManagersResumeInstancesRequest + (*InstanceGroupManagersScopedList)(nil), // 1309: google.cloud.compute.v1.InstanceGroupManagersScopedList + (*InstanceGroupManagersSetInstanceTemplateRequest)(nil), // 1310: google.cloud.compute.v1.InstanceGroupManagersSetInstanceTemplateRequest + (*InstanceGroupManagersSetTargetPoolsRequest)(nil), // 1311: google.cloud.compute.v1.InstanceGroupManagersSetTargetPoolsRequest + (*InstanceGroupManagersStartInstancesRequest)(nil), // 1312: google.cloud.compute.v1.InstanceGroupManagersStartInstancesRequest + (*InstanceGroupManagersStopInstancesRequest)(nil), // 1313: google.cloud.compute.v1.InstanceGroupManagersStopInstancesRequest + (*InstanceGroupManagersSuspendInstancesRequest)(nil), // 1314: google.cloud.compute.v1.InstanceGroupManagersSuspendInstancesRequest + (*InstanceGroupManagersUpdatePerInstanceConfigsReq)(nil), // 1315: google.cloud.compute.v1.InstanceGroupManagersUpdatePerInstanceConfigsReq + (*InstanceGroupsAddInstancesRequest)(nil), // 1316: google.cloud.compute.v1.InstanceGroupsAddInstancesRequest + (*InstanceGroupsListInstances)(nil), // 1317: google.cloud.compute.v1.InstanceGroupsListInstances + (*InstanceGroupsListInstancesRequest)(nil), // 1318: google.cloud.compute.v1.InstanceGroupsListInstancesRequest + (*InstanceGroupsRemoveInstancesRequest)(nil), // 1319: google.cloud.compute.v1.InstanceGroupsRemoveInstancesRequest + (*InstanceGroupsScopedList)(nil), // 1320: google.cloud.compute.v1.InstanceGroupsScopedList + (*InstanceGroupsSetNamedPortsRequest)(nil), // 1321: google.cloud.compute.v1.InstanceGroupsSetNamedPortsRequest + (*InstanceList)(nil), // 1322: google.cloud.compute.v1.InstanceList + (*InstanceListReferrers)(nil), // 1323: google.cloud.compute.v1.InstanceListReferrers + (*InstanceManagedByIgmError)(nil), // 1324: google.cloud.compute.v1.InstanceManagedByIgmError + (*InstanceManagedByIgmErrorInstanceActionDetails)(nil), // 1325: google.cloud.compute.v1.InstanceManagedByIgmErrorInstanceActionDetails + (*InstanceManagedByIgmErrorManagedInstanceError)(nil), // 1326: google.cloud.compute.v1.InstanceManagedByIgmErrorManagedInstanceError + (*InstanceMoveRequest)(nil), // 1327: google.cloud.compute.v1.InstanceMoveRequest + (*InstanceParams)(nil), // 1328: google.cloud.compute.v1.InstanceParams + (*InstanceProperties)(nil), // 1329: google.cloud.compute.v1.InstanceProperties + (*InstancePropertiesPatch)(nil), // 1330: google.cloud.compute.v1.InstancePropertiesPatch + (*InstanceReference)(nil), // 1331: google.cloud.compute.v1.InstanceReference + (*InstanceSettings)(nil), // 1332: google.cloud.compute.v1.InstanceSettings + (*InstanceSettingsMetadata)(nil), // 1333: google.cloud.compute.v1.InstanceSettingsMetadata + (*InstanceTemplate)(nil), // 1334: google.cloud.compute.v1.InstanceTemplate + (*InstanceTemplateAggregatedList)(nil), // 1335: google.cloud.compute.v1.InstanceTemplateAggregatedList + (*InstanceTemplateList)(nil), // 1336: google.cloud.compute.v1.InstanceTemplateList + (*InstanceTemplatesScopedList)(nil), // 1337: google.cloud.compute.v1.InstanceTemplatesScopedList + (*InstanceWithNamedPorts)(nil), // 1338: google.cloud.compute.v1.InstanceWithNamedPorts + (*InstancesAddResourcePoliciesRequest)(nil), // 1339: google.cloud.compute.v1.InstancesAddResourcePoliciesRequest + (*InstancesBulkInsertOperationMetadata)(nil), // 1340: google.cloud.compute.v1.InstancesBulkInsertOperationMetadata + (*InstancesGetEffectiveFirewallsResponse)(nil), // 1341: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponse + (*InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy)(nil), // 1342: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy + (*InstancesRemoveResourcePoliciesRequest)(nil), // 1343: google.cloud.compute.v1.InstancesRemoveResourcePoliciesRequest + (*InstancesReportHostAsFaultyRequest)(nil), // 1344: google.cloud.compute.v1.InstancesReportHostAsFaultyRequest + (*InstancesReportHostAsFaultyRequestFaultReason)(nil), // 1345: google.cloud.compute.v1.InstancesReportHostAsFaultyRequestFaultReason + (*InstancesScopedList)(nil), // 1346: google.cloud.compute.v1.InstancesScopedList + (*InstancesSetLabelsRequest)(nil), // 1347: google.cloud.compute.v1.InstancesSetLabelsRequest + (*InstancesSetMachineResourcesRequest)(nil), // 1348: google.cloud.compute.v1.InstancesSetMachineResourcesRequest + (*InstancesSetMachineTypeRequest)(nil), // 1349: google.cloud.compute.v1.InstancesSetMachineTypeRequest + (*InstancesSetMinCpuPlatformRequest)(nil), // 1350: google.cloud.compute.v1.InstancesSetMinCpuPlatformRequest + (*InstancesSetNameRequest)(nil), // 1351: google.cloud.compute.v1.InstancesSetNameRequest + (*InstancesSetSecurityPolicyRequest)(nil), // 1352: google.cloud.compute.v1.InstancesSetSecurityPolicyRequest + (*InstancesSetServiceAccountRequest)(nil), // 1353: google.cloud.compute.v1.InstancesSetServiceAccountRequest + (*InstancesStartWithEncryptionKeyRequest)(nil), // 1354: google.cloud.compute.v1.InstancesStartWithEncryptionKeyRequest + (*InstantSnapshot)(nil), // 1355: google.cloud.compute.v1.InstantSnapshot + (*InstantSnapshotAggregatedList)(nil), // 1356: google.cloud.compute.v1.InstantSnapshotAggregatedList + (*InstantSnapshotGroup)(nil), // 1357: google.cloud.compute.v1.InstantSnapshotGroup + (*InstantSnapshotGroupParameters)(nil), // 1358: google.cloud.compute.v1.InstantSnapshotGroupParameters + (*InstantSnapshotGroupResourceStatus)(nil), // 1359: google.cloud.compute.v1.InstantSnapshotGroupResourceStatus + (*InstantSnapshotGroupSourceInfo)(nil), // 1360: google.cloud.compute.v1.InstantSnapshotGroupSourceInfo + (*InstantSnapshotList)(nil), // 1361: google.cloud.compute.v1.InstantSnapshotList + (*InstantSnapshotParams)(nil), // 1362: google.cloud.compute.v1.InstantSnapshotParams + (*InstantSnapshotResourceStatus)(nil), // 1363: google.cloud.compute.v1.InstantSnapshotResourceStatus + (*InstantSnapshotsScopedList)(nil), // 1364: google.cloud.compute.v1.InstantSnapshotsScopedList + (*Int64RangeMatch)(nil), // 1365: google.cloud.compute.v1.Int64RangeMatch + (*Interconnect)(nil), // 1366: google.cloud.compute.v1.Interconnect + (*InterconnectApplicationAwareInterconnect)(nil), // 1367: google.cloud.compute.v1.InterconnectApplicationAwareInterconnect + (*InterconnectApplicationAwareInterconnectBandwidthPercentage)(nil), // 1368: google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentage + (*InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy)(nil), // 1369: google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy + (*InterconnectApplicationAwareInterconnectStrictPriorityPolicy)(nil), // 1370: google.cloud.compute.v1.InterconnectApplicationAwareInterconnectStrictPriorityPolicy + (*InterconnectAttachment)(nil), // 1371: google.cloud.compute.v1.InterconnectAttachment + (*InterconnectAttachmentAggregatedList)(nil), // 1372: google.cloud.compute.v1.InterconnectAttachmentAggregatedList + (*InterconnectAttachmentConfigurationConstraints)(nil), // 1373: google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints + (*InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange)(nil), // 1374: google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange + (*InterconnectAttachmentGroup)(nil), // 1375: google.cloud.compute.v1.InterconnectAttachmentGroup + (*InterconnectAttachmentGroupAttachment)(nil), // 1376: google.cloud.compute.v1.InterconnectAttachmentGroupAttachment + (*InterconnectAttachmentGroupConfigured)(nil), // 1377: google.cloud.compute.v1.InterconnectAttachmentGroupConfigured + (*InterconnectAttachmentGroupConfiguredAvailabilitySLA)(nil), // 1378: google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLA + (*InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers)(nil), // 1379: google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers + (*InterconnectAttachmentGroupIntent)(nil), // 1380: google.cloud.compute.v1.InterconnectAttachmentGroupIntent + (*InterconnectAttachmentGroupLogicalStructure)(nil), // 1381: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructure + (*InterconnectAttachmentGroupLogicalStructureRegion)(nil), // 1382: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegion + (*InterconnectAttachmentGroupLogicalStructureRegionMetro)(nil), // 1383: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetro + (*InterconnectAttachmentGroupLogicalStructureRegionMetroFacility)(nil), // 1384: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetroFacility + (*InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone)(nil), // 1385: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone + (*InterconnectAttachmentGroupsGetOperationalStatusResponse)(nil), // 1386: google.cloud.compute.v1.InterconnectAttachmentGroupsGetOperationalStatusResponse + (*InterconnectAttachmentGroupsListResponse)(nil), // 1387: google.cloud.compute.v1.InterconnectAttachmentGroupsListResponse + (*InterconnectAttachmentGroupsOperationalStatus)(nil), // 1388: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus + (*InterconnectAttachmentGroupsOperationalStatusAttachmentStatus)(nil), // 1389: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatusAttachmentStatus + (*InterconnectAttachmentL2Forwarding)(nil), // 1390: google.cloud.compute.v1.InterconnectAttachmentL2Forwarding + (*InterconnectAttachmentL2ForwardingApplianceMapping)(nil), // 1391: google.cloud.compute.v1.InterconnectAttachmentL2ForwardingApplianceMapping + (*InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMapping)(nil), // 1392: google.cloud.compute.v1.InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMapping + (*InterconnectAttachmentL2ForwardingGeneveHeader)(nil), // 1393: google.cloud.compute.v1.InterconnectAttachmentL2ForwardingGeneveHeader + (*InterconnectAttachmentList)(nil), // 1394: google.cloud.compute.v1.InterconnectAttachmentList + (*InterconnectAttachmentParams)(nil), // 1395: google.cloud.compute.v1.InterconnectAttachmentParams + (*InterconnectAttachmentPartnerMetadata)(nil), // 1396: google.cloud.compute.v1.InterconnectAttachmentPartnerMetadata + (*InterconnectAttachmentPrivateInfo)(nil), // 1397: google.cloud.compute.v1.InterconnectAttachmentPrivateInfo + (*InterconnectAttachmentsScopedList)(nil), // 1398: google.cloud.compute.v1.InterconnectAttachmentsScopedList + (*InterconnectCircuitInfo)(nil), // 1399: google.cloud.compute.v1.InterconnectCircuitInfo + (*InterconnectDiagnostics)(nil), // 1400: google.cloud.compute.v1.InterconnectDiagnostics + (*InterconnectDiagnosticsARPEntry)(nil), // 1401: google.cloud.compute.v1.InterconnectDiagnosticsARPEntry + (*InterconnectDiagnosticsLinkLACPStatus)(nil), // 1402: google.cloud.compute.v1.InterconnectDiagnosticsLinkLACPStatus + (*InterconnectDiagnosticsLinkOpticalPower)(nil), // 1403: google.cloud.compute.v1.InterconnectDiagnosticsLinkOpticalPower + (*InterconnectDiagnosticsLinkStatus)(nil), // 1404: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus + (*InterconnectDiagnosticsMacsecStatus)(nil), // 1405: google.cloud.compute.v1.InterconnectDiagnosticsMacsecStatus + (*InterconnectGroup)(nil), // 1406: google.cloud.compute.v1.InterconnectGroup + (*InterconnectGroupConfigured)(nil), // 1407: google.cloud.compute.v1.InterconnectGroupConfigured + (*InterconnectGroupConfiguredTopologyCapability)(nil), // 1408: google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapability + (*InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers)(nil), // 1409: google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers + (*InterconnectGroupIntent)(nil), // 1410: google.cloud.compute.v1.InterconnectGroupIntent + (*InterconnectGroupInterconnect)(nil), // 1411: google.cloud.compute.v1.InterconnectGroupInterconnect + (*InterconnectGroupPhysicalStructure)(nil), // 1412: google.cloud.compute.v1.InterconnectGroupPhysicalStructure + (*InterconnectGroupPhysicalStructureMetros)(nil), // 1413: google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetros + (*InterconnectGroupPhysicalStructureMetrosFacilities)(nil), // 1414: google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetrosFacilities + (*InterconnectGroupPhysicalStructureMetrosFacilitiesZones)(nil), // 1415: google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetrosFacilitiesZones + (*InterconnectGroupsCreateMembers)(nil), // 1416: google.cloud.compute.v1.InterconnectGroupsCreateMembers + (*InterconnectGroupsCreateMembersInterconnectInput)(nil), // 1417: google.cloud.compute.v1.InterconnectGroupsCreateMembersInterconnectInput + (*InterconnectGroupsCreateMembersRequest)(nil), // 1418: google.cloud.compute.v1.InterconnectGroupsCreateMembersRequest + (*InterconnectGroupsGetOperationalStatusResponse)(nil), // 1419: google.cloud.compute.v1.InterconnectGroupsGetOperationalStatusResponse + (*InterconnectGroupsListResponse)(nil), // 1420: google.cloud.compute.v1.InterconnectGroupsListResponse + (*InterconnectGroupsOperationalStatus)(nil), // 1421: google.cloud.compute.v1.InterconnectGroupsOperationalStatus + (*InterconnectGroupsOperationalStatusInterconnectStatus)(nil), // 1422: google.cloud.compute.v1.InterconnectGroupsOperationalStatusInterconnectStatus + (*InterconnectList)(nil), // 1423: google.cloud.compute.v1.InterconnectList + (*InterconnectLocation)(nil), // 1424: google.cloud.compute.v1.InterconnectLocation + (*InterconnectLocationCrossSiteInterconnectInfo)(nil), // 1425: google.cloud.compute.v1.InterconnectLocationCrossSiteInterconnectInfo + (*InterconnectLocationList)(nil), // 1426: google.cloud.compute.v1.InterconnectLocationList + (*InterconnectLocationRegionInfo)(nil), // 1427: google.cloud.compute.v1.InterconnectLocationRegionInfo + (*InterconnectMacsec)(nil), // 1428: google.cloud.compute.v1.InterconnectMacsec + (*InterconnectMacsecConfig)(nil), // 1429: google.cloud.compute.v1.InterconnectMacsecConfig + (*InterconnectMacsecConfigPreSharedKey)(nil), // 1430: google.cloud.compute.v1.InterconnectMacsecConfigPreSharedKey + (*InterconnectMacsecPreSharedKey)(nil), // 1431: google.cloud.compute.v1.InterconnectMacsecPreSharedKey + (*InterconnectOutageNotification)(nil), // 1432: google.cloud.compute.v1.InterconnectOutageNotification + (*InterconnectParams)(nil), // 1433: google.cloud.compute.v1.InterconnectParams + (*InterconnectRemoteLocation)(nil), // 1434: google.cloud.compute.v1.InterconnectRemoteLocation + (*InterconnectRemoteLocationConstraints)(nil), // 1435: google.cloud.compute.v1.InterconnectRemoteLocationConstraints + (*InterconnectRemoteLocationConstraintsSubnetLengthRange)(nil), // 1436: google.cloud.compute.v1.InterconnectRemoteLocationConstraintsSubnetLengthRange + (*InterconnectRemoteLocationList)(nil), // 1437: google.cloud.compute.v1.InterconnectRemoteLocationList + (*InterconnectRemoteLocationPermittedConnections)(nil), // 1438: google.cloud.compute.v1.InterconnectRemoteLocationPermittedConnections + (*InterconnectsGetDiagnosticsResponse)(nil), // 1439: google.cloud.compute.v1.InterconnectsGetDiagnosticsResponse + (*InterconnectsGetMacsecConfigResponse)(nil), // 1440: google.cloud.compute.v1.InterconnectsGetMacsecConfigResponse + (*InvalidateCacheUrlMapRequest)(nil), // 1441: google.cloud.compute.v1.InvalidateCacheUrlMapRequest + (*Items)(nil), // 1442: google.cloud.compute.v1.Items + (*License)(nil), // 1443: google.cloud.compute.v1.License + (*LicenseCode)(nil), // 1444: google.cloud.compute.v1.LicenseCode + (*LicenseCodeLicenseAlias)(nil), // 1445: google.cloud.compute.v1.LicenseCodeLicenseAlias + (*LicenseParams)(nil), // 1446: google.cloud.compute.v1.LicenseParams + (*LicenseResourceCommitment)(nil), // 1447: google.cloud.compute.v1.LicenseResourceCommitment + (*LicenseResourceRequirements)(nil), // 1448: google.cloud.compute.v1.LicenseResourceRequirements + (*LicensesListResponse)(nil), // 1449: google.cloud.compute.v1.LicensesListResponse + (*ListAcceleratorTypesRequest)(nil), // 1450: google.cloud.compute.v1.ListAcceleratorTypesRequest + (*ListAddressesRequest)(nil), // 1451: google.cloud.compute.v1.ListAddressesRequest + (*ListAssociationsFirewallPolicyRequest)(nil), // 1452: google.cloud.compute.v1.ListAssociationsFirewallPolicyRequest + (*ListAssociationsOrganizationSecurityPolicyRequest)(nil), // 1453: google.cloud.compute.v1.ListAssociationsOrganizationSecurityPolicyRequest + (*ListAutoscalersRequest)(nil), // 1454: google.cloud.compute.v1.ListAutoscalersRequest + (*ListAvailableFeaturesRegionSslPoliciesRequest)(nil), // 1455: google.cloud.compute.v1.ListAvailableFeaturesRegionSslPoliciesRequest + (*ListAvailableFeaturesSslPoliciesRequest)(nil), // 1456: google.cloud.compute.v1.ListAvailableFeaturesSslPoliciesRequest + (*ListBackendBucketsRequest)(nil), // 1457: google.cloud.compute.v1.ListBackendBucketsRequest + (*ListBackendServicesRequest)(nil), // 1458: google.cloud.compute.v1.ListBackendServicesRequest + (*ListBgpRoutesRoutersRequest)(nil), // 1459: google.cloud.compute.v1.ListBgpRoutesRoutersRequest + (*ListCrossSiteNetworksRequest)(nil), // 1460: google.cloud.compute.v1.ListCrossSiteNetworksRequest + (*ListDiskTypesRequest)(nil), // 1461: google.cloud.compute.v1.ListDiskTypesRequest + (*ListDisksRequest)(nil), // 1462: google.cloud.compute.v1.ListDisksRequest + (*ListDisksStoragePoolsRequest)(nil), // 1463: google.cloud.compute.v1.ListDisksStoragePoolsRequest + (*ListErrorsInstanceGroupManagersRequest)(nil), // 1464: google.cloud.compute.v1.ListErrorsInstanceGroupManagersRequest + (*ListErrorsRegionInstanceGroupManagersRequest)(nil), // 1465: google.cloud.compute.v1.ListErrorsRegionInstanceGroupManagersRequest + (*ListExternalVpnGatewaysRequest)(nil), // 1466: google.cloud.compute.v1.ListExternalVpnGatewaysRequest + (*ListFirewallPoliciesRequest)(nil), // 1467: google.cloud.compute.v1.ListFirewallPoliciesRequest + (*ListFirewallsRequest)(nil), // 1468: google.cloud.compute.v1.ListFirewallsRequest + (*ListForwardingRulesRequest)(nil), // 1469: google.cloud.compute.v1.ListForwardingRulesRequest + (*ListFutureReservationsRequest)(nil), // 1470: google.cloud.compute.v1.ListFutureReservationsRequest + (*ListGlobalAddressesRequest)(nil), // 1471: google.cloud.compute.v1.ListGlobalAddressesRequest + (*ListGlobalForwardingRulesRequest)(nil), // 1472: google.cloud.compute.v1.ListGlobalForwardingRulesRequest + (*ListGlobalNetworkEndpointGroupsRequest)(nil), // 1473: google.cloud.compute.v1.ListGlobalNetworkEndpointGroupsRequest + (*ListGlobalOperationsRequest)(nil), // 1474: google.cloud.compute.v1.ListGlobalOperationsRequest + (*ListGlobalOrganizationOperationsRequest)(nil), // 1475: google.cloud.compute.v1.ListGlobalOrganizationOperationsRequest + (*ListGlobalPublicDelegatedPrefixesRequest)(nil), // 1476: google.cloud.compute.v1.ListGlobalPublicDelegatedPrefixesRequest + (*ListHealthChecksRequest)(nil), // 1477: google.cloud.compute.v1.ListHealthChecksRequest + (*ListImagesRequest)(nil), // 1478: google.cloud.compute.v1.ListImagesRequest + (*ListInstanceGroupManagerResizeRequestsRequest)(nil), // 1479: google.cloud.compute.v1.ListInstanceGroupManagerResizeRequestsRequest + (*ListInstanceGroupManagersRequest)(nil), // 1480: google.cloud.compute.v1.ListInstanceGroupManagersRequest + (*ListInstanceGroupsRequest)(nil), // 1481: google.cloud.compute.v1.ListInstanceGroupsRequest + (*ListInstanceTemplatesRequest)(nil), // 1482: google.cloud.compute.v1.ListInstanceTemplatesRequest + (*ListInstancesInstanceGroupsRequest)(nil), // 1483: google.cloud.compute.v1.ListInstancesInstanceGroupsRequest + (*ListInstancesRegionInstanceGroupsRequest)(nil), // 1484: google.cloud.compute.v1.ListInstancesRegionInstanceGroupsRequest + (*ListInstancesRequest)(nil), // 1485: google.cloud.compute.v1.ListInstancesRequest + (*ListInstantSnapshotGroups)(nil), // 1486: google.cloud.compute.v1.ListInstantSnapshotGroups + (*ListInstantSnapshotGroupsRequest)(nil), // 1487: google.cloud.compute.v1.ListInstantSnapshotGroupsRequest + (*ListInstantSnapshotsRequest)(nil), // 1488: google.cloud.compute.v1.ListInstantSnapshotsRequest + (*ListInterconnectAttachmentGroupsRequest)(nil), // 1489: google.cloud.compute.v1.ListInterconnectAttachmentGroupsRequest + (*ListInterconnectAttachmentsRequest)(nil), // 1490: google.cloud.compute.v1.ListInterconnectAttachmentsRequest + (*ListInterconnectGroupsRequest)(nil), // 1491: google.cloud.compute.v1.ListInterconnectGroupsRequest + (*ListInterconnectLocationsRequest)(nil), // 1492: google.cloud.compute.v1.ListInterconnectLocationsRequest + (*ListInterconnectRemoteLocationsRequest)(nil), // 1493: google.cloud.compute.v1.ListInterconnectRemoteLocationsRequest + (*ListInterconnectsRequest)(nil), // 1494: google.cloud.compute.v1.ListInterconnectsRequest + (*ListLicensesRequest)(nil), // 1495: google.cloud.compute.v1.ListLicensesRequest + (*ListMachineImagesRequest)(nil), // 1496: google.cloud.compute.v1.ListMachineImagesRequest + (*ListMachineTypesRequest)(nil), // 1497: google.cloud.compute.v1.ListMachineTypesRequest + (*ListManagedInstancesInstanceGroupManagersRequest)(nil), // 1498: google.cloud.compute.v1.ListManagedInstancesInstanceGroupManagersRequest + (*ListManagedInstancesRegionInstanceGroupManagersRequest)(nil), // 1499: google.cloud.compute.v1.ListManagedInstancesRegionInstanceGroupManagersRequest + (*ListNetworkAttachmentsRequest)(nil), // 1500: google.cloud.compute.v1.ListNetworkAttachmentsRequest + (*ListNetworkEndpointGroupsRequest)(nil), // 1501: google.cloud.compute.v1.ListNetworkEndpointGroupsRequest + (*ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest)(nil), // 1502: google.cloud.compute.v1.ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest + (*ListNetworkEndpointsNetworkEndpointGroupsRequest)(nil), // 1503: google.cloud.compute.v1.ListNetworkEndpointsNetworkEndpointGroupsRequest + (*ListNetworkEndpointsRegionNetworkEndpointGroupsRequest)(nil), // 1504: google.cloud.compute.v1.ListNetworkEndpointsRegionNetworkEndpointGroupsRequest + (*ListNetworkFirewallPoliciesRequest)(nil), // 1505: google.cloud.compute.v1.ListNetworkFirewallPoliciesRequest + (*ListNetworkProfilesRequest)(nil), // 1506: google.cloud.compute.v1.ListNetworkProfilesRequest + (*ListNetworksRequest)(nil), // 1507: google.cloud.compute.v1.ListNetworksRequest + (*ListNodeGroupsRequest)(nil), // 1508: google.cloud.compute.v1.ListNodeGroupsRequest + (*ListNodeTemplatesRequest)(nil), // 1509: google.cloud.compute.v1.ListNodeTemplatesRequest + (*ListNodeTypesRequest)(nil), // 1510: google.cloud.compute.v1.ListNodeTypesRequest + (*ListNodesNodeGroupsRequest)(nil), // 1511: google.cloud.compute.v1.ListNodesNodeGroupsRequest + (*ListOrganizationSecurityPoliciesRequest)(nil), // 1512: google.cloud.compute.v1.ListOrganizationSecurityPoliciesRequest + (*ListPacketMirroringsRequest)(nil), // 1513: google.cloud.compute.v1.ListPacketMirroringsRequest + (*ListPeeringRoutesNetworksRequest)(nil), // 1514: google.cloud.compute.v1.ListPeeringRoutesNetworksRequest + (*ListPerInstanceConfigsInstanceGroupManagersRequest)(nil), // 1515: google.cloud.compute.v1.ListPerInstanceConfigsInstanceGroupManagersRequest + (*ListPerInstanceConfigsRegionInstanceGroupManagersRequest)(nil), // 1516: google.cloud.compute.v1.ListPerInstanceConfigsRegionInstanceGroupManagersRequest + (*ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest)(nil), // 1517: google.cloud.compute.v1.ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest + (*ListPreconfiguredExpressionSetsSecurityPoliciesRequest)(nil), // 1518: google.cloud.compute.v1.ListPreconfiguredExpressionSetsSecurityPoliciesRequest + (*ListPreviewFeaturesRequest)(nil), // 1519: google.cloud.compute.v1.ListPreviewFeaturesRequest + (*ListPublicAdvertisedPrefixesRequest)(nil), // 1520: google.cloud.compute.v1.ListPublicAdvertisedPrefixesRequest + (*ListPublicDelegatedPrefixesRequest)(nil), // 1521: google.cloud.compute.v1.ListPublicDelegatedPrefixesRequest + (*ListReferrersInstancesRequest)(nil), // 1522: google.cloud.compute.v1.ListReferrersInstancesRequest + (*ListRegionAutoscalersRequest)(nil), // 1523: google.cloud.compute.v1.ListRegionAutoscalersRequest + (*ListRegionBackendBucketsRequest)(nil), // 1524: google.cloud.compute.v1.ListRegionBackendBucketsRequest + (*ListRegionBackendServicesRequest)(nil), // 1525: google.cloud.compute.v1.ListRegionBackendServicesRequest + (*ListRegionCommitmentsRequest)(nil), // 1526: google.cloud.compute.v1.ListRegionCommitmentsRequest + (*ListRegionCompositeHealthChecksRequest)(nil), // 1527: google.cloud.compute.v1.ListRegionCompositeHealthChecksRequest + (*ListRegionDiskTypesRequest)(nil), // 1528: google.cloud.compute.v1.ListRegionDiskTypesRequest + (*ListRegionDisksRequest)(nil), // 1529: google.cloud.compute.v1.ListRegionDisksRequest + (*ListRegionHealthAggregationPoliciesRequest)(nil), // 1530: google.cloud.compute.v1.ListRegionHealthAggregationPoliciesRequest + (*ListRegionHealthCheckServicesRequest)(nil), // 1531: google.cloud.compute.v1.ListRegionHealthCheckServicesRequest + (*ListRegionHealthChecksRequest)(nil), // 1532: google.cloud.compute.v1.ListRegionHealthChecksRequest + (*ListRegionHealthSourcesRequest)(nil), // 1533: google.cloud.compute.v1.ListRegionHealthSourcesRequest + (*ListRegionInstanceGroupManagerResizeRequestsRequest)(nil), // 1534: google.cloud.compute.v1.ListRegionInstanceGroupManagerResizeRequestsRequest + (*ListRegionInstanceGroupManagersRequest)(nil), // 1535: google.cloud.compute.v1.ListRegionInstanceGroupManagersRequest + (*ListRegionInstanceGroupsRequest)(nil), // 1536: google.cloud.compute.v1.ListRegionInstanceGroupsRequest + (*ListRegionInstanceTemplatesRequest)(nil), // 1537: google.cloud.compute.v1.ListRegionInstanceTemplatesRequest + (*ListRegionInstantSnapshotGroupsRequest)(nil), // 1538: google.cloud.compute.v1.ListRegionInstantSnapshotGroupsRequest + (*ListRegionInstantSnapshotsRequest)(nil), // 1539: google.cloud.compute.v1.ListRegionInstantSnapshotsRequest + (*ListRegionNetworkEndpointGroupsRequest)(nil), // 1540: google.cloud.compute.v1.ListRegionNetworkEndpointGroupsRequest + (*ListRegionNetworkFirewallPoliciesRequest)(nil), // 1541: google.cloud.compute.v1.ListRegionNetworkFirewallPoliciesRequest + (*ListRegionNotificationEndpointsRequest)(nil), // 1542: google.cloud.compute.v1.ListRegionNotificationEndpointsRequest + (*ListRegionOperationsRequest)(nil), // 1543: google.cloud.compute.v1.ListRegionOperationsRequest + (*ListRegionSecurityPoliciesRequest)(nil), // 1544: google.cloud.compute.v1.ListRegionSecurityPoliciesRequest + (*ListRegionSnapshotsRequest)(nil), // 1545: google.cloud.compute.v1.ListRegionSnapshotsRequest + (*ListRegionSslCertificatesRequest)(nil), // 1546: google.cloud.compute.v1.ListRegionSslCertificatesRequest + (*ListRegionSslPoliciesRequest)(nil), // 1547: google.cloud.compute.v1.ListRegionSslPoliciesRequest + (*ListRegionTargetHttpProxiesRequest)(nil), // 1548: google.cloud.compute.v1.ListRegionTargetHttpProxiesRequest + (*ListRegionTargetHttpsProxiesRequest)(nil), // 1549: google.cloud.compute.v1.ListRegionTargetHttpsProxiesRequest + (*ListRegionTargetTcpProxiesRequest)(nil), // 1550: google.cloud.compute.v1.ListRegionTargetTcpProxiesRequest + (*ListRegionUrlMapsRequest)(nil), // 1551: google.cloud.compute.v1.ListRegionUrlMapsRequest + (*ListRegionZonesRequest)(nil), // 1552: google.cloud.compute.v1.ListRegionZonesRequest + (*ListRegionsRequest)(nil), // 1553: google.cloud.compute.v1.ListRegionsRequest + (*ListReservationBlocksRequest)(nil), // 1554: google.cloud.compute.v1.ListReservationBlocksRequest + (*ListReservationSlotsRequest)(nil), // 1555: google.cloud.compute.v1.ListReservationSlotsRequest + (*ListReservationSubBlocksRequest)(nil), // 1556: google.cloud.compute.v1.ListReservationSubBlocksRequest + (*ListReservationsRequest)(nil), // 1557: google.cloud.compute.v1.ListReservationsRequest + (*ListResourcePoliciesRequest)(nil), // 1558: google.cloud.compute.v1.ListResourcePoliciesRequest + (*ListRoutePoliciesRoutersRequest)(nil), // 1559: google.cloud.compute.v1.ListRoutePoliciesRoutersRequest + (*ListRoutersRequest)(nil), // 1560: google.cloud.compute.v1.ListRoutersRequest + (*ListRoutesRequest)(nil), // 1561: google.cloud.compute.v1.ListRoutesRequest + (*ListSecurityPoliciesRequest)(nil), // 1562: google.cloud.compute.v1.ListSecurityPoliciesRequest + (*ListServiceAttachmentsRequest)(nil), // 1563: google.cloud.compute.v1.ListServiceAttachmentsRequest + (*ListSnapshotsRequest)(nil), // 1564: google.cloud.compute.v1.ListSnapshotsRequest + (*ListSslCertificatesRequest)(nil), // 1565: google.cloud.compute.v1.ListSslCertificatesRequest + (*ListSslPoliciesRequest)(nil), // 1566: google.cloud.compute.v1.ListSslPoliciesRequest + (*ListStoragePoolTypesRequest)(nil), // 1567: google.cloud.compute.v1.ListStoragePoolTypesRequest + (*ListStoragePoolsRequest)(nil), // 1568: google.cloud.compute.v1.ListStoragePoolsRequest + (*ListSubnetworksRequest)(nil), // 1569: google.cloud.compute.v1.ListSubnetworksRequest + (*ListTargetGrpcProxiesRequest)(nil), // 1570: google.cloud.compute.v1.ListTargetGrpcProxiesRequest + (*ListTargetHttpProxiesRequest)(nil), // 1571: google.cloud.compute.v1.ListTargetHttpProxiesRequest + (*ListTargetHttpsProxiesRequest)(nil), // 1572: google.cloud.compute.v1.ListTargetHttpsProxiesRequest + (*ListTargetInstancesRequest)(nil), // 1573: google.cloud.compute.v1.ListTargetInstancesRequest + (*ListTargetPoolsRequest)(nil), // 1574: google.cloud.compute.v1.ListTargetPoolsRequest + (*ListTargetSslProxiesRequest)(nil), // 1575: google.cloud.compute.v1.ListTargetSslProxiesRequest + (*ListTargetTcpProxiesRequest)(nil), // 1576: google.cloud.compute.v1.ListTargetTcpProxiesRequest + (*ListTargetVpnGatewaysRequest)(nil), // 1577: google.cloud.compute.v1.ListTargetVpnGatewaysRequest + (*ListUrlMapsRequest)(nil), // 1578: google.cloud.compute.v1.ListUrlMapsRequest + (*ListUsableBackendBucketsRequest)(nil), // 1579: google.cloud.compute.v1.ListUsableBackendBucketsRequest + (*ListUsableBackendServicesRequest)(nil), // 1580: google.cloud.compute.v1.ListUsableBackendServicesRequest + (*ListUsableRegionBackendBucketsRequest)(nil), // 1581: google.cloud.compute.v1.ListUsableRegionBackendBucketsRequest + (*ListUsableRegionBackendServicesRequest)(nil), // 1582: google.cloud.compute.v1.ListUsableRegionBackendServicesRequest + (*ListUsableSubnetworksRequest)(nil), // 1583: google.cloud.compute.v1.ListUsableSubnetworksRequest + (*ListVpnGatewaysRequest)(nil), // 1584: google.cloud.compute.v1.ListVpnGatewaysRequest + (*ListVpnTunnelsRequest)(nil), // 1585: google.cloud.compute.v1.ListVpnTunnelsRequest + (*ListWireGroupsRequest)(nil), // 1586: google.cloud.compute.v1.ListWireGroupsRequest + (*ListXpnHostsProjectsRequest)(nil), // 1587: google.cloud.compute.v1.ListXpnHostsProjectsRequest + (*ListZoneOperationsRequest)(nil), // 1588: google.cloud.compute.v1.ListZoneOperationsRequest + (*ListZoneVmExtensionPoliciesRequest)(nil), // 1589: google.cloud.compute.v1.ListZoneVmExtensionPoliciesRequest + (*ListZonesRequest)(nil), // 1590: google.cloud.compute.v1.ListZonesRequest + (*LocalDisk)(nil), // 1591: google.cloud.compute.v1.LocalDisk + (*LocalizedMessage)(nil), // 1592: google.cloud.compute.v1.LocalizedMessage + (*LocationPolicy)(nil), // 1593: google.cloud.compute.v1.LocationPolicy + (*LocationPolicyLocation)(nil), // 1594: google.cloud.compute.v1.LocationPolicyLocation + (*LocationPolicyLocationConstraints)(nil), // 1595: google.cloud.compute.v1.LocationPolicyLocationConstraints + (*LocationPolicyZoneConfiguration)(nil), // 1596: google.cloud.compute.v1.LocationPolicyZoneConfiguration + (*MachineImage)(nil), // 1597: google.cloud.compute.v1.MachineImage + (*MachineImageList)(nil), // 1598: google.cloud.compute.v1.MachineImageList + (*MachineImageParams)(nil), // 1599: google.cloud.compute.v1.MachineImageParams + (*MachineType)(nil), // 1600: google.cloud.compute.v1.MachineType + (*MachineTypeAggregatedList)(nil), // 1601: google.cloud.compute.v1.MachineTypeAggregatedList + (*MachineTypeList)(nil), // 1602: google.cloud.compute.v1.MachineTypeList + (*MachineTypesScopedList)(nil), // 1603: google.cloud.compute.v1.MachineTypesScopedList + (*ManagedInstance)(nil), // 1604: google.cloud.compute.v1.ManagedInstance + (*ManagedInstanceInstanceHealth)(nil), // 1605: google.cloud.compute.v1.ManagedInstanceInstanceHealth + (*ManagedInstanceLastAttempt)(nil), // 1606: google.cloud.compute.v1.ManagedInstanceLastAttempt + (*ManagedInstanceLastAttemptErrors)(nil), // 1607: google.cloud.compute.v1.ManagedInstanceLastAttemptErrors + (*ManagedInstancePropertiesFromFlexibilityPolicy)(nil), // 1608: google.cloud.compute.v1.ManagedInstancePropertiesFromFlexibilityPolicy + (*ManagedInstanceVersion)(nil), // 1609: google.cloud.compute.v1.ManagedInstanceVersion + (*Metadata)(nil), // 1610: google.cloud.compute.v1.Metadata + (*MetadataFilter)(nil), // 1611: google.cloud.compute.v1.MetadataFilter + (*MetadataFilterLabelMatch)(nil), // 1612: google.cloud.compute.v1.MetadataFilterLabelMatch + (*MoveAddressRequest)(nil), // 1613: google.cloud.compute.v1.MoveAddressRequest + (*MoveDiskProjectRequest)(nil), // 1614: google.cloud.compute.v1.MoveDiskProjectRequest + (*MoveFirewallPolicyRequest)(nil), // 1615: google.cloud.compute.v1.MoveFirewallPolicyRequest + (*MoveGlobalAddressRequest)(nil), // 1616: google.cloud.compute.v1.MoveGlobalAddressRequest + (*MoveInstanceProjectRequest)(nil), // 1617: google.cloud.compute.v1.MoveInstanceProjectRequest + (*MoveOrganizationSecurityPolicyRequest)(nil), // 1618: google.cloud.compute.v1.MoveOrganizationSecurityPolicyRequest + (*NamedPort)(nil), // 1619: google.cloud.compute.v1.NamedPort + (*NatIpInfo)(nil), // 1620: google.cloud.compute.v1.NatIpInfo + (*NatIpInfoNatIpInfoMapping)(nil), // 1621: google.cloud.compute.v1.NatIpInfoNatIpInfoMapping + (*NatIpInfoResponse)(nil), // 1622: google.cloud.compute.v1.NatIpInfoResponse + (*Network)(nil), // 1623: google.cloud.compute.v1.Network + (*NetworkAttachment)(nil), // 1624: google.cloud.compute.v1.NetworkAttachment + (*NetworkAttachmentAggregatedList)(nil), // 1625: google.cloud.compute.v1.NetworkAttachmentAggregatedList + (*NetworkAttachmentConnectedEndpoint)(nil), // 1626: google.cloud.compute.v1.NetworkAttachmentConnectedEndpoint + (*NetworkAttachmentList)(nil), // 1627: google.cloud.compute.v1.NetworkAttachmentList + (*NetworkAttachmentsScopedList)(nil), // 1628: google.cloud.compute.v1.NetworkAttachmentsScopedList + (*NetworkEdgeSecurityService)(nil), // 1629: google.cloud.compute.v1.NetworkEdgeSecurityService + (*NetworkEdgeSecurityServiceAggregatedList)(nil), // 1630: google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList + (*NetworkEdgeSecurityServicesScopedList)(nil), // 1631: google.cloud.compute.v1.NetworkEdgeSecurityServicesScopedList + (*NetworkEndpoint)(nil), // 1632: google.cloud.compute.v1.NetworkEndpoint + (*NetworkEndpointGroup)(nil), // 1633: google.cloud.compute.v1.NetworkEndpointGroup + (*NetworkEndpointGroupAggregatedList)(nil), // 1634: google.cloud.compute.v1.NetworkEndpointGroupAggregatedList + (*NetworkEndpointGroupAppEngine)(nil), // 1635: google.cloud.compute.v1.NetworkEndpointGroupAppEngine + (*NetworkEndpointGroupCloudFunction)(nil), // 1636: google.cloud.compute.v1.NetworkEndpointGroupCloudFunction + (*NetworkEndpointGroupCloudRun)(nil), // 1637: google.cloud.compute.v1.NetworkEndpointGroupCloudRun + (*NetworkEndpointGroupList)(nil), // 1638: google.cloud.compute.v1.NetworkEndpointGroupList + (*NetworkEndpointGroupPscData)(nil), // 1639: google.cloud.compute.v1.NetworkEndpointGroupPscData + (*NetworkEndpointGroupsAttachEndpointsRequest)(nil), // 1640: google.cloud.compute.v1.NetworkEndpointGroupsAttachEndpointsRequest + (*NetworkEndpointGroupsDetachEndpointsRequest)(nil), // 1641: google.cloud.compute.v1.NetworkEndpointGroupsDetachEndpointsRequest + (*NetworkEndpointGroupsListEndpointsRequest)(nil), // 1642: google.cloud.compute.v1.NetworkEndpointGroupsListEndpointsRequest + (*NetworkEndpointGroupsListNetworkEndpoints)(nil), // 1643: google.cloud.compute.v1.NetworkEndpointGroupsListNetworkEndpoints + (*NetworkEndpointGroupsScopedList)(nil), // 1644: google.cloud.compute.v1.NetworkEndpointGroupsScopedList + (*NetworkEndpointWithHealthStatus)(nil), // 1645: google.cloud.compute.v1.NetworkEndpointWithHealthStatus + (*NetworkFirewallPolicyAggregatedList)(nil), // 1646: google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList + (*NetworkInterface)(nil), // 1647: google.cloud.compute.v1.NetworkInterface + (*NetworkList)(nil), // 1648: google.cloud.compute.v1.NetworkList + (*NetworkParams)(nil), // 1649: google.cloud.compute.v1.NetworkParams + (*NetworkPeering)(nil), // 1650: google.cloud.compute.v1.NetworkPeering + (*NetworkPeeringConnectionStatus)(nil), // 1651: google.cloud.compute.v1.NetworkPeeringConnectionStatus + (*NetworkPeeringConnectionStatusConsensusState)(nil), // 1652: google.cloud.compute.v1.NetworkPeeringConnectionStatusConsensusState + (*NetworkPeeringConnectionStatusTrafficConfiguration)(nil), // 1653: google.cloud.compute.v1.NetworkPeeringConnectionStatusTrafficConfiguration + (*NetworkPerformanceConfig)(nil), // 1654: google.cloud.compute.v1.NetworkPerformanceConfig + (*NetworkProfile)(nil), // 1655: google.cloud.compute.v1.NetworkProfile + (*NetworkProfileLocation)(nil), // 1656: google.cloud.compute.v1.NetworkProfileLocation + (*NetworkProfileNetworkFeatures)(nil), // 1657: google.cloud.compute.v1.NetworkProfileNetworkFeatures + (*NetworkProfileNetworkFeaturesPredefinedSubnetworkRange)(nil), // 1658: google.cloud.compute.v1.NetworkProfileNetworkFeaturesPredefinedSubnetworkRange + (*NetworkProfileProfileType)(nil), // 1659: google.cloud.compute.v1.NetworkProfileProfileType + (*NetworkProfilesListResponse)(nil), // 1660: google.cloud.compute.v1.NetworkProfilesListResponse + (*NetworkRoutingConfig)(nil), // 1661: google.cloud.compute.v1.NetworkRoutingConfig + (*NetworksAddPeeringRequest)(nil), // 1662: google.cloud.compute.v1.NetworksAddPeeringRequest + (*NetworksGetEffectiveFirewallsResponse)(nil), // 1663: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponse + (*NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy)(nil), // 1664: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy + (*NetworksRemovePeeringRequest)(nil), // 1665: google.cloud.compute.v1.NetworksRemovePeeringRequest + (*NetworksRequestRemovePeeringRequest)(nil), // 1666: google.cloud.compute.v1.NetworksRequestRemovePeeringRequest + (*NetworksUpdatePeeringRequest)(nil), // 1667: google.cloud.compute.v1.NetworksUpdatePeeringRequest + (*NodeGroup)(nil), // 1668: google.cloud.compute.v1.NodeGroup + (*NodeGroupAggregatedList)(nil), // 1669: google.cloud.compute.v1.NodeGroupAggregatedList + (*NodeGroupAutoscalingPolicy)(nil), // 1670: google.cloud.compute.v1.NodeGroupAutoscalingPolicy + (*NodeGroupList)(nil), // 1671: google.cloud.compute.v1.NodeGroupList + (*NodeGroupMaintenanceWindow)(nil), // 1672: google.cloud.compute.v1.NodeGroupMaintenanceWindow + (*NodeGroupNode)(nil), // 1673: google.cloud.compute.v1.NodeGroupNode + (*NodeGroupsAddNodesRequest)(nil), // 1674: google.cloud.compute.v1.NodeGroupsAddNodesRequest + (*NodeGroupsDeleteNodesRequest)(nil), // 1675: google.cloud.compute.v1.NodeGroupsDeleteNodesRequest + (*NodeGroupsListNodes)(nil), // 1676: google.cloud.compute.v1.NodeGroupsListNodes + (*NodeGroupsPerformMaintenanceRequest)(nil), // 1677: google.cloud.compute.v1.NodeGroupsPerformMaintenanceRequest + (*NodeGroupsScopedList)(nil), // 1678: google.cloud.compute.v1.NodeGroupsScopedList + (*NodeGroupsSetNodeTemplateRequest)(nil), // 1679: google.cloud.compute.v1.NodeGroupsSetNodeTemplateRequest + (*NodeGroupsSimulateMaintenanceEventRequest)(nil), // 1680: google.cloud.compute.v1.NodeGroupsSimulateMaintenanceEventRequest + (*NodeTemplate)(nil), // 1681: google.cloud.compute.v1.NodeTemplate + (*NodeTemplateAggregatedList)(nil), // 1682: google.cloud.compute.v1.NodeTemplateAggregatedList + (*NodeTemplateList)(nil), // 1683: google.cloud.compute.v1.NodeTemplateList + (*NodeTemplateNodeTypeFlexibility)(nil), // 1684: google.cloud.compute.v1.NodeTemplateNodeTypeFlexibility + (*NodeTemplatesScopedList)(nil), // 1685: google.cloud.compute.v1.NodeTemplatesScopedList + (*NodeType)(nil), // 1686: google.cloud.compute.v1.NodeType + (*NodeTypeAggregatedList)(nil), // 1687: google.cloud.compute.v1.NodeTypeAggregatedList + (*NodeTypeList)(nil), // 1688: google.cloud.compute.v1.NodeTypeList + (*NodeTypesScopedList)(nil), // 1689: google.cloud.compute.v1.NodeTypesScopedList + (*NotificationEndpoint)(nil), // 1690: google.cloud.compute.v1.NotificationEndpoint + (*NotificationEndpointAggregatedList)(nil), // 1691: google.cloud.compute.v1.NotificationEndpointAggregatedList + (*NotificationEndpointGrpcSettings)(nil), // 1692: google.cloud.compute.v1.NotificationEndpointGrpcSettings + (*NotificationEndpointList)(nil), // 1693: google.cloud.compute.v1.NotificationEndpointList + (*NotificationEndpointsScopedList)(nil), // 1694: google.cloud.compute.v1.NotificationEndpointsScopedList + (*Operation)(nil), // 1695: google.cloud.compute.v1.Operation + (*OperationAggregatedList)(nil), // 1696: google.cloud.compute.v1.OperationAggregatedList + (*OperationList)(nil), // 1697: google.cloud.compute.v1.OperationList + (*OperationsScopedList)(nil), // 1698: google.cloud.compute.v1.OperationsScopedList + (*OrganizationSecurityPoliciesListAssociationsResponse)(nil), // 1699: google.cloud.compute.v1.OrganizationSecurityPoliciesListAssociationsResponse + (*OutlierDetection)(nil), // 1700: google.cloud.compute.v1.OutlierDetection + (*PacketIntervals)(nil), // 1701: google.cloud.compute.v1.PacketIntervals + (*PacketMirroring)(nil), // 1702: google.cloud.compute.v1.PacketMirroring + (*PacketMirroringAggregatedList)(nil), // 1703: google.cloud.compute.v1.PacketMirroringAggregatedList + (*PacketMirroringFilter)(nil), // 1704: google.cloud.compute.v1.PacketMirroringFilter + (*PacketMirroringForwardingRuleInfo)(nil), // 1705: google.cloud.compute.v1.PacketMirroringForwardingRuleInfo + (*PacketMirroringList)(nil), // 1706: google.cloud.compute.v1.PacketMirroringList + (*PacketMirroringMirroredResourceInfo)(nil), // 1707: google.cloud.compute.v1.PacketMirroringMirroredResourceInfo + (*PacketMirroringMirroredResourceInfoInstanceInfo)(nil), // 1708: google.cloud.compute.v1.PacketMirroringMirroredResourceInfoInstanceInfo + (*PacketMirroringMirroredResourceInfoSubnetInfo)(nil), // 1709: google.cloud.compute.v1.PacketMirroringMirroredResourceInfoSubnetInfo + (*PacketMirroringNetworkInfo)(nil), // 1710: google.cloud.compute.v1.PacketMirroringNetworkInfo + (*PacketMirroringsScopedList)(nil), // 1711: google.cloud.compute.v1.PacketMirroringsScopedList + (*PatchAutoscalerRequest)(nil), // 1712: google.cloud.compute.v1.PatchAutoscalerRequest + (*PatchBackendBucketRequest)(nil), // 1713: google.cloud.compute.v1.PatchBackendBucketRequest + (*PatchBackendServiceRequest)(nil), // 1714: google.cloud.compute.v1.PatchBackendServiceRequest + (*PatchCrossSiteNetworkRequest)(nil), // 1715: google.cloud.compute.v1.PatchCrossSiteNetworkRequest + (*PatchFirewallPolicyRequest)(nil), // 1716: google.cloud.compute.v1.PatchFirewallPolicyRequest + (*PatchFirewallRequest)(nil), // 1717: google.cloud.compute.v1.PatchFirewallRequest + (*PatchForwardingRuleRequest)(nil), // 1718: google.cloud.compute.v1.PatchForwardingRuleRequest + (*PatchGlobalForwardingRuleRequest)(nil), // 1719: google.cloud.compute.v1.PatchGlobalForwardingRuleRequest + (*PatchGlobalPublicDelegatedPrefixeRequest)(nil), // 1720: google.cloud.compute.v1.PatchGlobalPublicDelegatedPrefixeRequest + (*PatchHealthCheckRequest)(nil), // 1721: google.cloud.compute.v1.PatchHealthCheckRequest + (*PatchImageRequest)(nil), // 1722: google.cloud.compute.v1.PatchImageRequest + (*PatchInstanceGroupManagerRequest)(nil), // 1723: google.cloud.compute.v1.PatchInstanceGroupManagerRequest + (*PatchInstanceSettingRequest)(nil), // 1724: google.cloud.compute.v1.PatchInstanceSettingRequest + (*PatchInterconnectAttachmentGroupRequest)(nil), // 1725: google.cloud.compute.v1.PatchInterconnectAttachmentGroupRequest + (*PatchInterconnectAttachmentRequest)(nil), // 1726: google.cloud.compute.v1.PatchInterconnectAttachmentRequest + (*PatchInterconnectGroupRequest)(nil), // 1727: google.cloud.compute.v1.PatchInterconnectGroupRequest + (*PatchInterconnectRequest)(nil), // 1728: google.cloud.compute.v1.PatchInterconnectRequest + (*PatchNetworkAttachmentRequest)(nil), // 1729: google.cloud.compute.v1.PatchNetworkAttachmentRequest + (*PatchNetworkEdgeSecurityServiceRequest)(nil), // 1730: google.cloud.compute.v1.PatchNetworkEdgeSecurityServiceRequest + (*PatchNetworkFirewallPolicyRequest)(nil), // 1731: google.cloud.compute.v1.PatchNetworkFirewallPolicyRequest + (*PatchNetworkRequest)(nil), // 1732: google.cloud.compute.v1.PatchNetworkRequest + (*PatchNodeGroupRequest)(nil), // 1733: google.cloud.compute.v1.PatchNodeGroupRequest + (*PatchOrganizationSecurityPolicyRequest)(nil), // 1734: google.cloud.compute.v1.PatchOrganizationSecurityPolicyRequest + (*PatchPacketMirroringRequest)(nil), // 1735: google.cloud.compute.v1.PatchPacketMirroringRequest + (*PatchPacketMirroringRuleNetworkFirewallPolicyRequest)(nil), // 1736: google.cloud.compute.v1.PatchPacketMirroringRuleNetworkFirewallPolicyRequest + (*PatchPerInstanceConfigsInstanceGroupManagerRequest)(nil), // 1737: google.cloud.compute.v1.PatchPerInstanceConfigsInstanceGroupManagerRequest + (*PatchPerInstanceConfigsRegionInstanceGroupManagerRequest)(nil), // 1738: google.cloud.compute.v1.PatchPerInstanceConfigsRegionInstanceGroupManagerRequest + (*PatchPublicAdvertisedPrefixeRequest)(nil), // 1739: google.cloud.compute.v1.PatchPublicAdvertisedPrefixeRequest + (*PatchPublicDelegatedPrefixeRequest)(nil), // 1740: google.cloud.compute.v1.PatchPublicDelegatedPrefixeRequest + (*PatchRegionAutoscalerRequest)(nil), // 1741: google.cloud.compute.v1.PatchRegionAutoscalerRequest + (*PatchRegionBackendBucketRequest)(nil), // 1742: google.cloud.compute.v1.PatchRegionBackendBucketRequest + (*PatchRegionBackendServiceRequest)(nil), // 1743: google.cloud.compute.v1.PatchRegionBackendServiceRequest + (*PatchRegionCompositeHealthCheckRequest)(nil), // 1744: google.cloud.compute.v1.PatchRegionCompositeHealthCheckRequest + (*PatchRegionHealthAggregationPolicyRequest)(nil), // 1745: google.cloud.compute.v1.PatchRegionHealthAggregationPolicyRequest + (*PatchRegionHealthCheckRequest)(nil), // 1746: google.cloud.compute.v1.PatchRegionHealthCheckRequest + (*PatchRegionHealthCheckServiceRequest)(nil), // 1747: google.cloud.compute.v1.PatchRegionHealthCheckServiceRequest + (*PatchRegionHealthSourceRequest)(nil), // 1748: google.cloud.compute.v1.PatchRegionHealthSourceRequest + (*PatchRegionInstanceGroupManagerRequest)(nil), // 1749: google.cloud.compute.v1.PatchRegionInstanceGroupManagerRequest + (*PatchRegionNetworkFirewallPolicyRequest)(nil), // 1750: google.cloud.compute.v1.PatchRegionNetworkFirewallPolicyRequest + (*PatchRegionSecurityPolicyRequest)(nil), // 1751: google.cloud.compute.v1.PatchRegionSecurityPolicyRequest + (*PatchRegionSnapshotSettingRequest)(nil), // 1752: google.cloud.compute.v1.PatchRegionSnapshotSettingRequest + (*PatchRegionSslPolicyRequest)(nil), // 1753: google.cloud.compute.v1.PatchRegionSslPolicyRequest + (*PatchRegionTargetHttpsProxyRequest)(nil), // 1754: google.cloud.compute.v1.PatchRegionTargetHttpsProxyRequest + (*PatchRegionUrlMapRequest)(nil), // 1755: google.cloud.compute.v1.PatchRegionUrlMapRequest + (*PatchResourcePolicyRequest)(nil), // 1756: google.cloud.compute.v1.PatchResourcePolicyRequest + (*PatchRoutePolicyRouterRequest)(nil), // 1757: google.cloud.compute.v1.PatchRoutePolicyRouterRequest + (*PatchRouterRequest)(nil), // 1758: google.cloud.compute.v1.PatchRouterRequest + (*PatchRuleFirewallPolicyRequest)(nil), // 1759: google.cloud.compute.v1.PatchRuleFirewallPolicyRequest + (*PatchRuleNetworkFirewallPolicyRequest)(nil), // 1760: google.cloud.compute.v1.PatchRuleNetworkFirewallPolicyRequest + (*PatchRuleOrganizationSecurityPolicyRequest)(nil), // 1761: google.cloud.compute.v1.PatchRuleOrganizationSecurityPolicyRequest + (*PatchRuleRegionNetworkFirewallPolicyRequest)(nil), // 1762: google.cloud.compute.v1.PatchRuleRegionNetworkFirewallPolicyRequest + (*PatchRuleRegionSecurityPolicyRequest)(nil), // 1763: google.cloud.compute.v1.PatchRuleRegionSecurityPolicyRequest + (*PatchRuleSecurityPolicyRequest)(nil), // 1764: google.cloud.compute.v1.PatchRuleSecurityPolicyRequest + (*PatchSecurityPolicyRequest)(nil), // 1765: google.cloud.compute.v1.PatchSecurityPolicyRequest + (*PatchServiceAttachmentRequest)(nil), // 1766: google.cloud.compute.v1.PatchServiceAttachmentRequest + (*PatchSnapshotSettingRequest)(nil), // 1767: google.cloud.compute.v1.PatchSnapshotSettingRequest + (*PatchSslPolicyRequest)(nil), // 1768: google.cloud.compute.v1.PatchSslPolicyRequest + (*PatchSubnetworkRequest)(nil), // 1769: google.cloud.compute.v1.PatchSubnetworkRequest + (*PatchTargetGrpcProxyRequest)(nil), // 1770: google.cloud.compute.v1.PatchTargetGrpcProxyRequest + (*PatchTargetHttpProxyRequest)(nil), // 1771: google.cloud.compute.v1.PatchTargetHttpProxyRequest + (*PatchTargetHttpsProxyRequest)(nil), // 1772: google.cloud.compute.v1.PatchTargetHttpsProxyRequest + (*PatchUrlMapRequest)(nil), // 1773: google.cloud.compute.v1.PatchUrlMapRequest + (*PatchWireGroupRequest)(nil), // 1774: google.cloud.compute.v1.PatchWireGroupRequest + (*PathMatcher)(nil), // 1775: google.cloud.compute.v1.PathMatcher + (*PathRule)(nil), // 1776: google.cloud.compute.v1.PathRule + (*PerInstanceConfig)(nil), // 1777: google.cloud.compute.v1.PerInstanceConfig + (*PerformMaintenanceInstanceRequest)(nil), // 1778: google.cloud.compute.v1.PerformMaintenanceInstanceRequest + (*PerformMaintenanceNodeGroupRequest)(nil), // 1779: google.cloud.compute.v1.PerformMaintenanceNodeGroupRequest + (*PerformMaintenanceReservationBlockRequest)(nil), // 1780: google.cloud.compute.v1.PerformMaintenanceReservationBlockRequest + (*PerformMaintenanceReservationRequest)(nil), // 1781: google.cloud.compute.v1.PerformMaintenanceReservationRequest + (*PerformMaintenanceReservationSubBlockRequest)(nil), // 1782: google.cloud.compute.v1.PerformMaintenanceReservationSubBlockRequest + (*Policy)(nil), // 1783: google.cloud.compute.v1.Policy + (*PreconfiguredWafSet)(nil), // 1784: google.cloud.compute.v1.PreconfiguredWafSet + (*PreservedState)(nil), // 1785: google.cloud.compute.v1.PreservedState + (*PreservedStatePreservedDisk)(nil), // 1786: google.cloud.compute.v1.PreservedStatePreservedDisk + (*PreservedStatePreservedNetworkIp)(nil), // 1787: google.cloud.compute.v1.PreservedStatePreservedNetworkIp + (*PreservedStatePreservedNetworkIpIpAddress)(nil), // 1788: google.cloud.compute.v1.PreservedStatePreservedNetworkIpIpAddress + (*PreviewFeature)(nil), // 1789: google.cloud.compute.v1.PreviewFeature + (*PreviewFeatureList)(nil), // 1790: google.cloud.compute.v1.PreviewFeatureList + (*PreviewFeatureRolloutOperation)(nil), // 1791: google.cloud.compute.v1.PreviewFeatureRolloutOperation + (*PreviewFeatureRolloutOperationRolloutInput)(nil), // 1792: google.cloud.compute.v1.PreviewFeatureRolloutOperationRolloutInput + (*PreviewFeatureStatus)(nil), // 1793: google.cloud.compute.v1.PreviewFeatureStatus + (*PreviewFeatureStatusReleaseStatus)(nil), // 1794: google.cloud.compute.v1.PreviewFeatureStatusReleaseStatus + (*PreviewRouterRequest)(nil), // 1795: google.cloud.compute.v1.PreviewRouterRequest + (*Project)(nil), // 1796: google.cloud.compute.v1.Project + (*ProjectsDisableXpnResourceRequest)(nil), // 1797: google.cloud.compute.v1.ProjectsDisableXpnResourceRequest + (*ProjectsEnableXpnResourceRequest)(nil), // 1798: google.cloud.compute.v1.ProjectsEnableXpnResourceRequest + (*ProjectsGetXpnResources)(nil), // 1799: google.cloud.compute.v1.ProjectsGetXpnResources + (*ProjectsListXpnHostsRequest)(nil), // 1800: google.cloud.compute.v1.ProjectsListXpnHostsRequest + (*ProjectsSetCloudArmorTierRequest)(nil), // 1801: google.cloud.compute.v1.ProjectsSetCloudArmorTierRequest + (*ProjectsSetDefaultNetworkTierRequest)(nil), // 1802: google.cloud.compute.v1.ProjectsSetDefaultNetworkTierRequest + (*PublicAdvertisedPrefix)(nil), // 1803: google.cloud.compute.v1.PublicAdvertisedPrefix + (*PublicAdvertisedPrefixList)(nil), // 1804: google.cloud.compute.v1.PublicAdvertisedPrefixList + (*PublicAdvertisedPrefixPublicDelegatedPrefix)(nil), // 1805: google.cloud.compute.v1.PublicAdvertisedPrefixPublicDelegatedPrefix + (*PublicDelegatedPrefix)(nil), // 1806: google.cloud.compute.v1.PublicDelegatedPrefix + (*PublicDelegatedPrefixAggregatedList)(nil), // 1807: google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList + (*PublicDelegatedPrefixList)(nil), // 1808: google.cloud.compute.v1.PublicDelegatedPrefixList + (*PublicDelegatedPrefixPublicDelegatedSubPrefix)(nil), // 1809: google.cloud.compute.v1.PublicDelegatedPrefixPublicDelegatedSubPrefix + (*PublicDelegatedPrefixesScopedList)(nil), // 1810: google.cloud.compute.v1.PublicDelegatedPrefixesScopedList + (*Quota)(nil), // 1811: google.cloud.compute.v1.Quota + (*QuotaExceededInfo)(nil), // 1812: google.cloud.compute.v1.QuotaExceededInfo + (*QuotaStatusWarning)(nil), // 1813: google.cloud.compute.v1.QuotaStatusWarning + (*RawDisk)(nil), // 1814: google.cloud.compute.v1.RawDisk + (*RecreateInstancesInstanceGroupManagerRequest)(nil), // 1815: google.cloud.compute.v1.RecreateInstancesInstanceGroupManagerRequest + (*RecreateInstancesRegionInstanceGroupManagerRequest)(nil), // 1816: google.cloud.compute.v1.RecreateInstancesRegionInstanceGroupManagerRequest + (*Reference)(nil), // 1817: google.cloud.compute.v1.Reference + (*Region)(nil), // 1818: google.cloud.compute.v1.Region + (*RegionAddressesMoveRequest)(nil), // 1819: google.cloud.compute.v1.RegionAddressesMoveRequest + (*RegionAutoscalerList)(nil), // 1820: google.cloud.compute.v1.RegionAutoscalerList + (*RegionDiskTypeList)(nil), // 1821: google.cloud.compute.v1.RegionDiskTypeList + (*RegionDiskUpdateKmsKeyRequest)(nil), // 1822: google.cloud.compute.v1.RegionDiskUpdateKmsKeyRequest + (*RegionDisksAddResourcePoliciesRequest)(nil), // 1823: google.cloud.compute.v1.RegionDisksAddResourcePoliciesRequest + (*RegionDisksRemoveResourcePoliciesRequest)(nil), // 1824: google.cloud.compute.v1.RegionDisksRemoveResourcePoliciesRequest + (*RegionDisksResizeRequest)(nil), // 1825: google.cloud.compute.v1.RegionDisksResizeRequest + (*RegionDisksStartAsyncReplicationRequest)(nil), // 1826: google.cloud.compute.v1.RegionDisksStartAsyncReplicationRequest + (*RegionInstanceGroupList)(nil), // 1827: google.cloud.compute.v1.RegionInstanceGroupList + (*RegionInstanceGroupManagerDeleteInstanceConfigReq)(nil), // 1828: google.cloud.compute.v1.RegionInstanceGroupManagerDeleteInstanceConfigReq + (*RegionInstanceGroupManagerList)(nil), // 1829: google.cloud.compute.v1.RegionInstanceGroupManagerList + (*RegionInstanceGroupManagerPatchInstanceConfigReq)(nil), // 1830: google.cloud.compute.v1.RegionInstanceGroupManagerPatchInstanceConfigReq + (*RegionInstanceGroupManagerResizeRequestsListResponse)(nil), // 1831: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequestsListResponse + (*RegionInstanceGroupManagerUpdateInstanceConfigReq)(nil), // 1832: google.cloud.compute.v1.RegionInstanceGroupManagerUpdateInstanceConfigReq + (*RegionInstanceGroupManagersAbandonInstancesRequest)(nil), // 1833: google.cloud.compute.v1.RegionInstanceGroupManagersAbandonInstancesRequest + (*RegionInstanceGroupManagersApplyUpdatesRequest)(nil), // 1834: google.cloud.compute.v1.RegionInstanceGroupManagersApplyUpdatesRequest + (*RegionInstanceGroupManagersCreateInstancesRequest)(nil), // 1835: google.cloud.compute.v1.RegionInstanceGroupManagersCreateInstancesRequest + (*RegionInstanceGroupManagersDeleteInstancesRequest)(nil), // 1836: google.cloud.compute.v1.RegionInstanceGroupManagersDeleteInstancesRequest + (*RegionInstanceGroupManagersListErrorsResponse)(nil), // 1837: google.cloud.compute.v1.RegionInstanceGroupManagersListErrorsResponse + (*RegionInstanceGroupManagersListInstanceConfigsResp)(nil), // 1838: google.cloud.compute.v1.RegionInstanceGroupManagersListInstanceConfigsResp + (*RegionInstanceGroupManagersListInstancesResponse)(nil), // 1839: google.cloud.compute.v1.RegionInstanceGroupManagersListInstancesResponse + (*RegionInstanceGroupManagersRecreateRequest)(nil), // 1840: google.cloud.compute.v1.RegionInstanceGroupManagersRecreateRequest + (*RegionInstanceGroupManagersResumeInstancesRequest)(nil), // 1841: google.cloud.compute.v1.RegionInstanceGroupManagersResumeInstancesRequest + (*RegionInstanceGroupManagersSetTargetPoolsRequest)(nil), // 1842: google.cloud.compute.v1.RegionInstanceGroupManagersSetTargetPoolsRequest + (*RegionInstanceGroupManagersSetTemplateRequest)(nil), // 1843: google.cloud.compute.v1.RegionInstanceGroupManagersSetTemplateRequest + (*RegionInstanceGroupManagersStartInstancesRequest)(nil), // 1844: google.cloud.compute.v1.RegionInstanceGroupManagersStartInstancesRequest + (*RegionInstanceGroupManagersStopInstancesRequest)(nil), // 1845: google.cloud.compute.v1.RegionInstanceGroupManagersStopInstancesRequest + (*RegionInstanceGroupManagersSuspendInstancesRequest)(nil), // 1846: google.cloud.compute.v1.RegionInstanceGroupManagersSuspendInstancesRequest + (*RegionInstanceGroupsListInstances)(nil), // 1847: google.cloud.compute.v1.RegionInstanceGroupsListInstances + (*RegionInstanceGroupsListInstancesRequest)(nil), // 1848: google.cloud.compute.v1.RegionInstanceGroupsListInstancesRequest + (*RegionInstanceGroupsSetNamedPortsRequest)(nil), // 1849: google.cloud.compute.v1.RegionInstanceGroupsSetNamedPortsRequest + (*RegionList)(nil), // 1850: google.cloud.compute.v1.RegionList + (*RegionNetworkEndpointGroupsAttachEndpointsRequest)(nil), // 1851: google.cloud.compute.v1.RegionNetworkEndpointGroupsAttachEndpointsRequest + (*RegionNetworkEndpointGroupsDetachEndpointsRequest)(nil), // 1852: google.cloud.compute.v1.RegionNetworkEndpointGroupsDetachEndpointsRequest + (*RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse)(nil), // 1853: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse + (*RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy)(nil), // 1854: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy + (*RegionSetLabelsRequest)(nil), // 1855: google.cloud.compute.v1.RegionSetLabelsRequest + (*RegionSetPolicyRequest)(nil), // 1856: google.cloud.compute.v1.RegionSetPolicyRequest + (*RegionSnapshotUpdateKmsKeyRequest)(nil), // 1857: google.cloud.compute.v1.RegionSnapshotUpdateKmsKeyRequest + (*RegionTargetHttpsProxiesSetSslCertificatesRequest)(nil), // 1858: google.cloud.compute.v1.RegionTargetHttpsProxiesSetSslCertificatesRequest + (*RegionUrlMapsValidateRequest)(nil), // 1859: google.cloud.compute.v1.RegionUrlMapsValidateRequest + (*RemoveAssociationFirewallPolicyRequest)(nil), // 1860: google.cloud.compute.v1.RemoveAssociationFirewallPolicyRequest + (*RemoveAssociationNetworkFirewallPolicyRequest)(nil), // 1861: google.cloud.compute.v1.RemoveAssociationNetworkFirewallPolicyRequest + (*RemoveAssociationOrganizationSecurityPolicyRequest)(nil), // 1862: google.cloud.compute.v1.RemoveAssociationOrganizationSecurityPolicyRequest + (*RemoveAssociationRegionNetworkFirewallPolicyRequest)(nil), // 1863: google.cloud.compute.v1.RemoveAssociationRegionNetworkFirewallPolicyRequest + (*RemoveHealthCheckTargetPoolRequest)(nil), // 1864: google.cloud.compute.v1.RemoveHealthCheckTargetPoolRequest + (*RemoveInstanceTargetPoolRequest)(nil), // 1865: google.cloud.compute.v1.RemoveInstanceTargetPoolRequest + (*RemoveInstancesInstanceGroupRequest)(nil), // 1866: google.cloud.compute.v1.RemoveInstancesInstanceGroupRequest + (*RemovePacketMirroringRuleNetworkFirewallPolicyRequest)(nil), // 1867: google.cloud.compute.v1.RemovePacketMirroringRuleNetworkFirewallPolicyRequest + (*RemovePeeringNetworkRequest)(nil), // 1868: google.cloud.compute.v1.RemovePeeringNetworkRequest + (*RemoveResourcePoliciesDiskRequest)(nil), // 1869: google.cloud.compute.v1.RemoveResourcePoliciesDiskRequest + (*RemoveResourcePoliciesInstanceRequest)(nil), // 1870: google.cloud.compute.v1.RemoveResourcePoliciesInstanceRequest + (*RemoveResourcePoliciesRegionDiskRequest)(nil), // 1871: google.cloud.compute.v1.RemoveResourcePoliciesRegionDiskRequest + (*RemoveRuleFirewallPolicyRequest)(nil), // 1872: google.cloud.compute.v1.RemoveRuleFirewallPolicyRequest + (*RemoveRuleNetworkFirewallPolicyRequest)(nil), // 1873: google.cloud.compute.v1.RemoveRuleNetworkFirewallPolicyRequest + (*RemoveRuleOrganizationSecurityPolicyRequest)(nil), // 1874: google.cloud.compute.v1.RemoveRuleOrganizationSecurityPolicyRequest + (*RemoveRuleRegionNetworkFirewallPolicyRequest)(nil), // 1875: google.cloud.compute.v1.RemoveRuleRegionNetworkFirewallPolicyRequest + (*RemoveRuleRegionSecurityPolicyRequest)(nil), // 1876: google.cloud.compute.v1.RemoveRuleRegionSecurityPolicyRequest + (*RemoveRuleSecurityPolicyRequest)(nil), // 1877: google.cloud.compute.v1.RemoveRuleSecurityPolicyRequest + (*ReportFaultyReservationSubBlockRequest)(nil), // 1878: google.cloud.compute.v1.ReportFaultyReservationSubBlockRequest + (*ReportHostAsFaultyInstanceRequest)(nil), // 1879: google.cloud.compute.v1.ReportHostAsFaultyInstanceRequest + (*RequestMirrorPolicy)(nil), // 1880: google.cloud.compute.v1.RequestMirrorPolicy + (*RequestRemovePeeringNetworkRequest)(nil), // 1881: google.cloud.compute.v1.RequestRemovePeeringNetworkRequest + (*Reservation)(nil), // 1882: google.cloud.compute.v1.Reservation + (*ReservationAdvancedDeploymentControl)(nil), // 1883: google.cloud.compute.v1.ReservationAdvancedDeploymentControl + (*ReservationAffinity)(nil), // 1884: google.cloud.compute.v1.ReservationAffinity + (*ReservationAggregatedList)(nil), // 1885: google.cloud.compute.v1.ReservationAggregatedList + (*ReservationBlock)(nil), // 1886: google.cloud.compute.v1.ReservationBlock + (*ReservationBlockHealthInfo)(nil), // 1887: google.cloud.compute.v1.ReservationBlockHealthInfo + (*ReservationBlockPhysicalTopology)(nil), // 1888: google.cloud.compute.v1.ReservationBlockPhysicalTopology + (*ReservationBlockPhysicalTopologyInstance)(nil), // 1889: google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstance + (*ReservationBlockPhysicalTopologyInstancePhysicalHostTopology)(nil), // 1890: google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstancePhysicalHostTopology + (*ReservationBlocksGetResponse)(nil), // 1891: google.cloud.compute.v1.ReservationBlocksGetResponse + (*ReservationBlocksListResponse)(nil), // 1892: google.cloud.compute.v1.ReservationBlocksListResponse + (*ReservationList)(nil), // 1893: google.cloud.compute.v1.ReservationList + (*ReservationParams)(nil), // 1894: google.cloud.compute.v1.ReservationParams + (*ReservationSlot)(nil), // 1895: google.cloud.compute.v1.ReservationSlot + (*ReservationSlotPhysicalTopology)(nil), // 1896: google.cloud.compute.v1.ReservationSlotPhysicalTopology + (*ReservationSlotStatus)(nil), // 1897: google.cloud.compute.v1.ReservationSlotStatus + (*ReservationSlotsGetResponse)(nil), // 1898: google.cloud.compute.v1.ReservationSlotsGetResponse + (*ReservationSlotsGetVersionRequest)(nil), // 1899: google.cloud.compute.v1.ReservationSlotsGetVersionRequest + (*ReservationSlotsListResponse)(nil), // 1900: google.cloud.compute.v1.ReservationSlotsListResponse + (*ReservationSubBlock)(nil), // 1901: google.cloud.compute.v1.ReservationSubBlock + (*ReservationSubBlockHealthInfo)(nil), // 1902: google.cloud.compute.v1.ReservationSubBlockHealthInfo + (*ReservationSubBlockPhysicalTopology)(nil), // 1903: google.cloud.compute.v1.ReservationSubBlockPhysicalTopology + (*ReservationSubBlocksGetResponse)(nil), // 1904: google.cloud.compute.v1.ReservationSubBlocksGetResponse + (*ReservationSubBlocksGetVersionRequest)(nil), // 1905: google.cloud.compute.v1.ReservationSubBlocksGetVersionRequest + (*ReservationSubBlocksListResponse)(nil), // 1906: google.cloud.compute.v1.ReservationSubBlocksListResponse + (*ReservationSubBlocksReportFaultyRequest)(nil), // 1907: google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequest + (*ReservationSubBlocksReportFaultyRequestFaultReason)(nil), // 1908: google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequestFaultReason + (*ReservationsBlocksPerformMaintenanceRequest)(nil), // 1909: google.cloud.compute.v1.ReservationsBlocksPerformMaintenanceRequest + (*ReservationsPerformMaintenanceRequest)(nil), // 1910: google.cloud.compute.v1.ReservationsPerformMaintenanceRequest + (*ReservationsResizeRequest)(nil), // 1911: google.cloud.compute.v1.ReservationsResizeRequest + (*ReservationsScopedList)(nil), // 1912: google.cloud.compute.v1.ReservationsScopedList + (*ResetInstanceRequest)(nil), // 1913: google.cloud.compute.v1.ResetInstanceRequest + (*ResizeDiskRequest)(nil), // 1914: google.cloud.compute.v1.ResizeDiskRequest + (*ResizeInstanceGroupManagerRequest)(nil), // 1915: google.cloud.compute.v1.ResizeInstanceGroupManagerRequest + (*ResizeRegionDiskRequest)(nil), // 1916: google.cloud.compute.v1.ResizeRegionDiskRequest + (*ResizeRegionInstanceGroupManagerRequest)(nil), // 1917: google.cloud.compute.v1.ResizeRegionInstanceGroupManagerRequest + (*ResizeReservationRequest)(nil), // 1918: google.cloud.compute.v1.ResizeReservationRequest + (*ResourceCommitment)(nil), // 1919: google.cloud.compute.v1.ResourceCommitment + (*ResourceGroupReference)(nil), // 1920: google.cloud.compute.v1.ResourceGroupReference + (*ResourcePoliciesScopedList)(nil), // 1921: google.cloud.compute.v1.ResourcePoliciesScopedList + (*ResourcePolicy)(nil), // 1922: google.cloud.compute.v1.ResourcePolicy + (*ResourcePolicyAggregatedList)(nil), // 1923: google.cloud.compute.v1.ResourcePolicyAggregatedList + (*ResourcePolicyDailyCycle)(nil), // 1924: google.cloud.compute.v1.ResourcePolicyDailyCycle + (*ResourcePolicyDiskConsistencyGroupPolicy)(nil), // 1925: google.cloud.compute.v1.ResourcePolicyDiskConsistencyGroupPolicy + (*ResourcePolicyGroupPlacementPolicy)(nil), // 1926: google.cloud.compute.v1.ResourcePolicyGroupPlacementPolicy + (*ResourcePolicyHourlyCycle)(nil), // 1927: google.cloud.compute.v1.ResourcePolicyHourlyCycle + (*ResourcePolicyInstanceSchedulePolicy)(nil), // 1928: google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicy + (*ResourcePolicyInstanceSchedulePolicySchedule)(nil), // 1929: google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicySchedule + (*ResourcePolicyList)(nil), // 1930: google.cloud.compute.v1.ResourcePolicyList + (*ResourcePolicyResourceStatus)(nil), // 1931: google.cloud.compute.v1.ResourcePolicyResourceStatus + (*ResourcePolicyResourceStatusInstanceSchedulePolicyStatus)(nil), // 1932: google.cloud.compute.v1.ResourcePolicyResourceStatusInstanceSchedulePolicyStatus + (*ResourcePolicySnapshotSchedulePolicy)(nil), // 1933: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicy + (*ResourcePolicySnapshotSchedulePolicyRetentionPolicy)(nil), // 1934: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicyRetentionPolicy + (*ResourcePolicySnapshotSchedulePolicySchedule)(nil), // 1935: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySchedule + (*ResourcePolicySnapshotSchedulePolicySnapshotProperties)(nil), // 1936: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySnapshotProperties + (*ResourcePolicyWeeklyCycle)(nil), // 1937: google.cloud.compute.v1.ResourcePolicyWeeklyCycle + (*ResourcePolicyWeeklyCycleDayOfWeek)(nil), // 1938: google.cloud.compute.v1.ResourcePolicyWeeklyCycleDayOfWeek + (*ResourcePolicyWorkloadPolicy)(nil), // 1939: google.cloud.compute.v1.ResourcePolicyWorkloadPolicy + (*ResourceStatus)(nil), // 1940: google.cloud.compute.v1.ResourceStatus + (*ResourceStatusEffectiveInstanceMetadata)(nil), // 1941: google.cloud.compute.v1.ResourceStatusEffectiveInstanceMetadata + (*ResourceStatusPhysicalHostTopology)(nil), // 1942: google.cloud.compute.v1.ResourceStatusPhysicalHostTopology + (*ResourceStatusReservationConsumptionInfo)(nil), // 1943: google.cloud.compute.v1.ResourceStatusReservationConsumptionInfo + (*ResourceStatusScheduling)(nil), // 1944: google.cloud.compute.v1.ResourceStatusScheduling + (*ResumeInstanceRequest)(nil), // 1945: google.cloud.compute.v1.ResumeInstanceRequest + (*ResumeInstancesInstanceGroupManagerRequest)(nil), // 1946: google.cloud.compute.v1.ResumeInstancesInstanceGroupManagerRequest + (*ResumeInstancesRegionInstanceGroupManagerRequest)(nil), // 1947: google.cloud.compute.v1.ResumeInstancesRegionInstanceGroupManagerRequest + (*Route)(nil), // 1948: google.cloud.compute.v1.Route + (*RouteAsPath)(nil), // 1949: google.cloud.compute.v1.RouteAsPath + (*RouteList)(nil), // 1950: google.cloud.compute.v1.RouteList + (*RouteParams)(nil), // 1951: google.cloud.compute.v1.RouteParams + (*RoutePolicy)(nil), // 1952: google.cloud.compute.v1.RoutePolicy + (*RoutePolicyPolicyTerm)(nil), // 1953: google.cloud.compute.v1.RoutePolicyPolicyTerm + (*Router)(nil), // 1954: google.cloud.compute.v1.Router + (*RouterAdvertisedIpRange)(nil), // 1955: google.cloud.compute.v1.RouterAdvertisedIpRange + (*RouterAggregatedList)(nil), // 1956: google.cloud.compute.v1.RouterAggregatedList + (*RouterBgp)(nil), // 1957: google.cloud.compute.v1.RouterBgp + (*RouterBgpPeer)(nil), // 1958: google.cloud.compute.v1.RouterBgpPeer + (*RouterBgpPeerBfd)(nil), // 1959: google.cloud.compute.v1.RouterBgpPeerBfd + (*RouterBgpPeerCustomLearnedIpRange)(nil), // 1960: google.cloud.compute.v1.RouterBgpPeerCustomLearnedIpRange + (*RouterInterface)(nil), // 1961: google.cloud.compute.v1.RouterInterface + (*RouterList)(nil), // 1962: google.cloud.compute.v1.RouterList + (*RouterMd5AuthenticationKey)(nil), // 1963: google.cloud.compute.v1.RouterMd5AuthenticationKey + (*RouterNat)(nil), // 1964: google.cloud.compute.v1.RouterNat + (*RouterNatLogConfig)(nil), // 1965: google.cloud.compute.v1.RouterNatLogConfig + (*RouterNatRule)(nil), // 1966: google.cloud.compute.v1.RouterNatRule + (*RouterNatRuleAction)(nil), // 1967: google.cloud.compute.v1.RouterNatRuleAction + (*RouterNatSubnetworkToNat)(nil), // 1968: google.cloud.compute.v1.RouterNatSubnetworkToNat + (*RouterNatSubnetworkToNat64)(nil), // 1969: google.cloud.compute.v1.RouterNatSubnetworkToNat64 + (*RouterParams)(nil), // 1970: google.cloud.compute.v1.RouterParams + (*RouterStatus)(nil), // 1971: google.cloud.compute.v1.RouterStatus + (*RouterStatusBgpPeerStatus)(nil), // 1972: google.cloud.compute.v1.RouterStatusBgpPeerStatus + (*RouterStatusNatStatus)(nil), // 1973: google.cloud.compute.v1.RouterStatusNatStatus + (*RouterStatusNatStatusNatRuleStatus)(nil), // 1974: google.cloud.compute.v1.RouterStatusNatStatusNatRuleStatus + (*RouterStatusResponse)(nil), // 1975: google.cloud.compute.v1.RouterStatusResponse + (*RoutersGetRoutePolicyResponse)(nil), // 1976: google.cloud.compute.v1.RoutersGetRoutePolicyResponse + (*RoutersListBgpRoutes)(nil), // 1977: google.cloud.compute.v1.RoutersListBgpRoutes + (*RoutersListRoutePolicies)(nil), // 1978: google.cloud.compute.v1.RoutersListRoutePolicies + (*RoutersPreviewResponse)(nil), // 1979: google.cloud.compute.v1.RoutersPreviewResponse + (*RoutersScopedList)(nil), // 1980: google.cloud.compute.v1.RoutersScopedList + (*SSLHealthCheck)(nil), // 1981: google.cloud.compute.v1.SSLHealthCheck + (*SavedAttachedDisk)(nil), // 1982: google.cloud.compute.v1.SavedAttachedDisk + (*SavedDisk)(nil), // 1983: google.cloud.compute.v1.SavedDisk + (*ScalingScheduleStatus)(nil), // 1984: google.cloud.compute.v1.ScalingScheduleStatus + (*Scheduling)(nil), // 1985: google.cloud.compute.v1.Scheduling + (*SchedulingNodeAffinity)(nil), // 1986: google.cloud.compute.v1.SchedulingNodeAffinity + (*SchedulingOnInstanceStopAction)(nil), // 1987: google.cloud.compute.v1.SchedulingOnInstanceStopAction + (*Screenshot)(nil), // 1988: google.cloud.compute.v1.Screenshot + (*SecurityPoliciesAggregatedList)(nil), // 1989: google.cloud.compute.v1.SecurityPoliciesAggregatedList + (*SecurityPoliciesListPreconfiguredExpressionSetsResponse)(nil), // 1990: google.cloud.compute.v1.SecurityPoliciesListPreconfiguredExpressionSetsResponse + (*SecurityPoliciesScopedList)(nil), // 1991: google.cloud.compute.v1.SecurityPoliciesScopedList + (*SecurityPoliciesWafConfig)(nil), // 1992: google.cloud.compute.v1.SecurityPoliciesWafConfig + (*SecurityPolicy)(nil), // 1993: google.cloud.compute.v1.SecurityPolicy + (*SecurityPolicyAdaptiveProtectionConfig)(nil), // 1994: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfig + (*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig)(nil), // 1995: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig + (*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig)(nil), // 1996: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig + (*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig)(nil), // 1997: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig + (*SecurityPolicyAdvancedOptionsConfig)(nil), // 1998: google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfig + (*SecurityPolicyAdvancedOptionsConfigJsonCustomConfig)(nil), // 1999: google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfigJsonCustomConfig + (*SecurityPolicyAssociation)(nil), // 2000: google.cloud.compute.v1.SecurityPolicyAssociation + (*SecurityPolicyDdosProtectionConfig)(nil), // 2001: google.cloud.compute.v1.SecurityPolicyDdosProtectionConfig + (*SecurityPolicyList)(nil), // 2002: google.cloud.compute.v1.SecurityPolicyList + (*SecurityPolicyRecaptchaOptionsConfig)(nil), // 2003: google.cloud.compute.v1.SecurityPolicyRecaptchaOptionsConfig + (*SecurityPolicyReference)(nil), // 2004: google.cloud.compute.v1.SecurityPolicyReference + (*SecurityPolicyRule)(nil), // 2005: google.cloud.compute.v1.SecurityPolicyRule + (*SecurityPolicyRuleHttpHeaderAction)(nil), // 2006: google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderAction + (*SecurityPolicyRuleHttpHeaderActionHttpHeaderOption)(nil), // 2007: google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderActionHttpHeaderOption + (*SecurityPolicyRuleMatcher)(nil), // 2008: google.cloud.compute.v1.SecurityPolicyRuleMatcher + (*SecurityPolicyRuleMatcherConfig)(nil), // 2009: google.cloud.compute.v1.SecurityPolicyRuleMatcherConfig + (*SecurityPolicyRuleMatcherExprOptions)(nil), // 2010: google.cloud.compute.v1.SecurityPolicyRuleMatcherExprOptions + (*SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions)(nil), // 2011: google.cloud.compute.v1.SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions + (*SecurityPolicyRuleNetworkMatcher)(nil), // 2012: google.cloud.compute.v1.SecurityPolicyRuleNetworkMatcher + (*SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch)(nil), // 2013: google.cloud.compute.v1.SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch + (*SecurityPolicyRulePreconfiguredWafConfig)(nil), // 2014: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfig + (*SecurityPolicyRulePreconfiguredWafConfigExclusion)(nil), // 2015: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion + (*SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams)(nil), // 2016: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams + (*SecurityPolicyRuleRateLimitOptions)(nil), // 2017: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions + (*SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig)(nil), // 2018: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig + (*SecurityPolicyRuleRateLimitOptionsThreshold)(nil), // 2019: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptionsThreshold + (*SecurityPolicyRuleRedirectOptions)(nil), // 2020: google.cloud.compute.v1.SecurityPolicyRuleRedirectOptions + (*SecurityPolicyUserDefinedField)(nil), // 2021: google.cloud.compute.v1.SecurityPolicyUserDefinedField + (*SecuritySettings)(nil), // 2022: google.cloud.compute.v1.SecuritySettings + (*SendDiagnosticInterruptInstanceRequest)(nil), // 2023: google.cloud.compute.v1.SendDiagnosticInterruptInstanceRequest + (*SendDiagnosticInterruptInstanceResponse)(nil), // 2024: google.cloud.compute.v1.SendDiagnosticInterruptInstanceResponse + (*SerialPortOutput)(nil), // 2025: google.cloud.compute.v1.SerialPortOutput + (*ServerBinding)(nil), // 2026: google.cloud.compute.v1.ServerBinding + (*ServiceAccount)(nil), // 2027: google.cloud.compute.v1.ServiceAccount + (*ServiceAttachment)(nil), // 2028: google.cloud.compute.v1.ServiceAttachment + (*ServiceAttachmentAggregatedList)(nil), // 2029: google.cloud.compute.v1.ServiceAttachmentAggregatedList + (*ServiceAttachmentConnectedEndpoint)(nil), // 2030: google.cloud.compute.v1.ServiceAttachmentConnectedEndpoint + (*ServiceAttachmentConsumerProjectLimit)(nil), // 2031: google.cloud.compute.v1.ServiceAttachmentConsumerProjectLimit + (*ServiceAttachmentList)(nil), // 2032: google.cloud.compute.v1.ServiceAttachmentList + (*ServiceAttachmentsScopedList)(nil), // 2033: google.cloud.compute.v1.ServiceAttachmentsScopedList + (*SetBackendServiceTargetSslProxyRequest)(nil), // 2034: google.cloud.compute.v1.SetBackendServiceTargetSslProxyRequest + (*SetBackendServiceTargetTcpProxyRequest)(nil), // 2035: google.cloud.compute.v1.SetBackendServiceTargetTcpProxyRequest + (*SetBackupTargetPoolRequest)(nil), // 2036: google.cloud.compute.v1.SetBackupTargetPoolRequest + (*SetCertificateMapTargetHttpsProxyRequest)(nil), // 2037: google.cloud.compute.v1.SetCertificateMapTargetHttpsProxyRequest + (*SetCertificateMapTargetSslProxyRequest)(nil), // 2038: google.cloud.compute.v1.SetCertificateMapTargetSslProxyRequest + (*SetCloudArmorTierProjectRequest)(nil), // 2039: google.cloud.compute.v1.SetCloudArmorTierProjectRequest + (*SetCommonInstanceMetadataOperationMetadata)(nil), // 2040: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadata + (*SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo)(nil), // 2041: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo + (*SetCommonInstanceMetadataProjectRequest)(nil), // 2042: google.cloud.compute.v1.SetCommonInstanceMetadataProjectRequest + (*SetDefaultNetworkTierProjectRequest)(nil), // 2043: google.cloud.compute.v1.SetDefaultNetworkTierProjectRequest + (*SetDeletionProtectionInstanceRequest)(nil), // 2044: google.cloud.compute.v1.SetDeletionProtectionInstanceRequest + (*SetDiskAutoDeleteInstanceRequest)(nil), // 2045: google.cloud.compute.v1.SetDiskAutoDeleteInstanceRequest + (*SetEdgeSecurityPolicyBackendBucketRequest)(nil), // 2046: google.cloud.compute.v1.SetEdgeSecurityPolicyBackendBucketRequest + (*SetEdgeSecurityPolicyBackendServiceRequest)(nil), // 2047: google.cloud.compute.v1.SetEdgeSecurityPolicyBackendServiceRequest + (*SetIamPolicyBackendBucketRequest)(nil), // 2048: google.cloud.compute.v1.SetIamPolicyBackendBucketRequest + (*SetIamPolicyBackendServiceRequest)(nil), // 2049: google.cloud.compute.v1.SetIamPolicyBackendServiceRequest + (*SetIamPolicyDiskRequest)(nil), // 2050: google.cloud.compute.v1.SetIamPolicyDiskRequest + (*SetIamPolicyFirewallPolicyRequest)(nil), // 2051: google.cloud.compute.v1.SetIamPolicyFirewallPolicyRequest + (*SetIamPolicyImageRequest)(nil), // 2052: google.cloud.compute.v1.SetIamPolicyImageRequest + (*SetIamPolicyInstanceRequest)(nil), // 2053: google.cloud.compute.v1.SetIamPolicyInstanceRequest + (*SetIamPolicyInstanceTemplateRequest)(nil), // 2054: google.cloud.compute.v1.SetIamPolicyInstanceTemplateRequest + (*SetIamPolicyInstantSnapshotGroupRequest)(nil), // 2055: google.cloud.compute.v1.SetIamPolicyInstantSnapshotGroupRequest + (*SetIamPolicyInstantSnapshotRequest)(nil), // 2056: google.cloud.compute.v1.SetIamPolicyInstantSnapshotRequest + (*SetIamPolicyInterconnectAttachmentGroupRequest)(nil), // 2057: google.cloud.compute.v1.SetIamPolicyInterconnectAttachmentGroupRequest + (*SetIamPolicyInterconnectGroupRequest)(nil), // 2058: google.cloud.compute.v1.SetIamPolicyInterconnectGroupRequest + (*SetIamPolicyLicenseRequest)(nil), // 2059: google.cloud.compute.v1.SetIamPolicyLicenseRequest + (*SetIamPolicyMachineImageRequest)(nil), // 2060: google.cloud.compute.v1.SetIamPolicyMachineImageRequest + (*SetIamPolicyNetworkAttachmentRequest)(nil), // 2061: google.cloud.compute.v1.SetIamPolicyNetworkAttachmentRequest + (*SetIamPolicyNetworkFirewallPolicyRequest)(nil), // 2062: google.cloud.compute.v1.SetIamPolicyNetworkFirewallPolicyRequest + (*SetIamPolicyNodeGroupRequest)(nil), // 2063: google.cloud.compute.v1.SetIamPolicyNodeGroupRequest + (*SetIamPolicyNodeTemplateRequest)(nil), // 2064: google.cloud.compute.v1.SetIamPolicyNodeTemplateRequest + (*SetIamPolicyRegionBackendBucketRequest)(nil), // 2065: google.cloud.compute.v1.SetIamPolicyRegionBackendBucketRequest + (*SetIamPolicyRegionBackendServiceRequest)(nil), // 2066: google.cloud.compute.v1.SetIamPolicyRegionBackendServiceRequest + (*SetIamPolicyRegionDiskRequest)(nil), // 2067: google.cloud.compute.v1.SetIamPolicyRegionDiskRequest + (*SetIamPolicyRegionInstantSnapshotGroupRequest)(nil), // 2068: google.cloud.compute.v1.SetIamPolicyRegionInstantSnapshotGroupRequest + (*SetIamPolicyRegionInstantSnapshotRequest)(nil), // 2069: google.cloud.compute.v1.SetIamPolicyRegionInstantSnapshotRequest + (*SetIamPolicyRegionNetworkFirewallPolicyRequest)(nil), // 2070: google.cloud.compute.v1.SetIamPolicyRegionNetworkFirewallPolicyRequest + (*SetIamPolicyRegionSnapshotRequest)(nil), // 2071: google.cloud.compute.v1.SetIamPolicyRegionSnapshotRequest + (*SetIamPolicyReservationBlockRequest)(nil), // 2072: google.cloud.compute.v1.SetIamPolicyReservationBlockRequest + (*SetIamPolicyReservationRequest)(nil), // 2073: google.cloud.compute.v1.SetIamPolicyReservationRequest + (*SetIamPolicyReservationSubBlockRequest)(nil), // 2074: google.cloud.compute.v1.SetIamPolicyReservationSubBlockRequest + (*SetIamPolicyResourcePolicyRequest)(nil), // 2075: google.cloud.compute.v1.SetIamPolicyResourcePolicyRequest + (*SetIamPolicyServiceAttachmentRequest)(nil), // 2076: google.cloud.compute.v1.SetIamPolicyServiceAttachmentRequest + (*SetIamPolicySnapshotRequest)(nil), // 2077: google.cloud.compute.v1.SetIamPolicySnapshotRequest + (*SetIamPolicyStoragePoolRequest)(nil), // 2078: google.cloud.compute.v1.SetIamPolicyStoragePoolRequest + (*SetIamPolicySubnetworkRequest)(nil), // 2079: google.cloud.compute.v1.SetIamPolicySubnetworkRequest + (*SetInstanceTemplateInstanceGroupManagerRequest)(nil), // 2080: google.cloud.compute.v1.SetInstanceTemplateInstanceGroupManagerRequest + (*SetInstanceTemplateRegionInstanceGroupManagerRequest)(nil), // 2081: google.cloud.compute.v1.SetInstanceTemplateRegionInstanceGroupManagerRequest + (*SetLabelsAddressRequest)(nil), // 2082: google.cloud.compute.v1.SetLabelsAddressRequest + (*SetLabelsDiskRequest)(nil), // 2083: google.cloud.compute.v1.SetLabelsDiskRequest + (*SetLabelsExternalVpnGatewayRequest)(nil), // 2084: google.cloud.compute.v1.SetLabelsExternalVpnGatewayRequest + (*SetLabelsForwardingRuleRequest)(nil), // 2085: google.cloud.compute.v1.SetLabelsForwardingRuleRequest + (*SetLabelsGlobalAddressRequest)(nil), // 2086: google.cloud.compute.v1.SetLabelsGlobalAddressRequest + (*SetLabelsGlobalForwardingRuleRequest)(nil), // 2087: google.cloud.compute.v1.SetLabelsGlobalForwardingRuleRequest + (*SetLabelsImageRequest)(nil), // 2088: google.cloud.compute.v1.SetLabelsImageRequest + (*SetLabelsInstanceRequest)(nil), // 2089: google.cloud.compute.v1.SetLabelsInstanceRequest + (*SetLabelsInstantSnapshotRequest)(nil), // 2090: google.cloud.compute.v1.SetLabelsInstantSnapshotRequest + (*SetLabelsInterconnectAttachmentRequest)(nil), // 2091: google.cloud.compute.v1.SetLabelsInterconnectAttachmentRequest + (*SetLabelsInterconnectRequest)(nil), // 2092: google.cloud.compute.v1.SetLabelsInterconnectRequest + (*SetLabelsMachineImageRequest)(nil), // 2093: google.cloud.compute.v1.SetLabelsMachineImageRequest + (*SetLabelsRegionDiskRequest)(nil), // 2094: google.cloud.compute.v1.SetLabelsRegionDiskRequest + (*SetLabelsRegionInstantSnapshotRequest)(nil), // 2095: google.cloud.compute.v1.SetLabelsRegionInstantSnapshotRequest + (*SetLabelsRegionSecurityPolicyRequest)(nil), // 2096: google.cloud.compute.v1.SetLabelsRegionSecurityPolicyRequest + (*SetLabelsRegionSnapshotRequest)(nil), // 2097: google.cloud.compute.v1.SetLabelsRegionSnapshotRequest + (*SetLabelsSecurityPolicyRequest)(nil), // 2098: google.cloud.compute.v1.SetLabelsSecurityPolicyRequest + (*SetLabelsSnapshotRequest)(nil), // 2099: google.cloud.compute.v1.SetLabelsSnapshotRequest + (*SetLabelsTargetVpnGatewayRequest)(nil), // 2100: google.cloud.compute.v1.SetLabelsTargetVpnGatewayRequest + (*SetLabelsVpnGatewayRequest)(nil), // 2101: google.cloud.compute.v1.SetLabelsVpnGatewayRequest + (*SetLabelsVpnTunnelRequest)(nil), // 2102: google.cloud.compute.v1.SetLabelsVpnTunnelRequest + (*SetMachineResourcesInstanceRequest)(nil), // 2103: google.cloud.compute.v1.SetMachineResourcesInstanceRequest + (*SetMachineTypeInstanceRequest)(nil), // 2104: google.cloud.compute.v1.SetMachineTypeInstanceRequest + (*SetMetadataInstanceRequest)(nil), // 2105: google.cloud.compute.v1.SetMetadataInstanceRequest + (*SetMinCpuPlatformInstanceRequest)(nil), // 2106: google.cloud.compute.v1.SetMinCpuPlatformInstanceRequest + (*SetNameInstanceRequest)(nil), // 2107: google.cloud.compute.v1.SetNameInstanceRequest + (*SetNamedPortsInstanceGroupRequest)(nil), // 2108: google.cloud.compute.v1.SetNamedPortsInstanceGroupRequest + (*SetNamedPortsRegionInstanceGroupRequest)(nil), // 2109: google.cloud.compute.v1.SetNamedPortsRegionInstanceGroupRequest + (*SetNodeTemplateNodeGroupRequest)(nil), // 2110: google.cloud.compute.v1.SetNodeTemplateNodeGroupRequest + (*SetPrivateIpGoogleAccessSubnetworkRequest)(nil), // 2111: google.cloud.compute.v1.SetPrivateIpGoogleAccessSubnetworkRequest + (*SetProxyHeaderTargetSslProxyRequest)(nil), // 2112: google.cloud.compute.v1.SetProxyHeaderTargetSslProxyRequest + (*SetProxyHeaderTargetTcpProxyRequest)(nil), // 2113: google.cloud.compute.v1.SetProxyHeaderTargetTcpProxyRequest + (*SetQuicOverrideTargetHttpsProxyRequest)(nil), // 2114: google.cloud.compute.v1.SetQuicOverrideTargetHttpsProxyRequest + (*SetSchedulingInstanceRequest)(nil), // 2115: google.cloud.compute.v1.SetSchedulingInstanceRequest + (*SetSecurityPolicyBackendServiceRequest)(nil), // 2116: google.cloud.compute.v1.SetSecurityPolicyBackendServiceRequest + (*SetSecurityPolicyInstanceRequest)(nil), // 2117: google.cloud.compute.v1.SetSecurityPolicyInstanceRequest + (*SetSecurityPolicyRegionBackendServiceRequest)(nil), // 2118: google.cloud.compute.v1.SetSecurityPolicyRegionBackendServiceRequest + (*SetSecurityPolicyTargetInstanceRequest)(nil), // 2119: google.cloud.compute.v1.SetSecurityPolicyTargetInstanceRequest + (*SetSecurityPolicyTargetPoolRequest)(nil), // 2120: google.cloud.compute.v1.SetSecurityPolicyTargetPoolRequest + (*SetServiceAccountInstanceRequest)(nil), // 2121: google.cloud.compute.v1.SetServiceAccountInstanceRequest + (*SetShieldedInstanceIntegrityPolicyInstanceRequest)(nil), // 2122: google.cloud.compute.v1.SetShieldedInstanceIntegrityPolicyInstanceRequest + (*SetSslCertificatesRegionTargetHttpsProxyRequest)(nil), // 2123: google.cloud.compute.v1.SetSslCertificatesRegionTargetHttpsProxyRequest + (*SetSslCertificatesTargetHttpsProxyRequest)(nil), // 2124: google.cloud.compute.v1.SetSslCertificatesTargetHttpsProxyRequest + (*SetSslCertificatesTargetSslProxyRequest)(nil), // 2125: google.cloud.compute.v1.SetSslCertificatesTargetSslProxyRequest + (*SetSslPolicyTargetHttpsProxyRequest)(nil), // 2126: google.cloud.compute.v1.SetSslPolicyTargetHttpsProxyRequest + (*SetSslPolicyTargetSslProxyRequest)(nil), // 2127: google.cloud.compute.v1.SetSslPolicyTargetSslProxyRequest + (*SetTagsInstanceRequest)(nil), // 2128: google.cloud.compute.v1.SetTagsInstanceRequest + (*SetTargetForwardingRuleRequest)(nil), // 2129: google.cloud.compute.v1.SetTargetForwardingRuleRequest + (*SetTargetGlobalForwardingRuleRequest)(nil), // 2130: google.cloud.compute.v1.SetTargetGlobalForwardingRuleRequest + (*SetTargetPoolsInstanceGroupManagerRequest)(nil), // 2131: google.cloud.compute.v1.SetTargetPoolsInstanceGroupManagerRequest + (*SetTargetPoolsRegionInstanceGroupManagerRequest)(nil), // 2132: google.cloud.compute.v1.SetTargetPoolsRegionInstanceGroupManagerRequest + (*SetUrlMapRegionTargetHttpProxyRequest)(nil), // 2133: google.cloud.compute.v1.SetUrlMapRegionTargetHttpProxyRequest + (*SetUrlMapRegionTargetHttpsProxyRequest)(nil), // 2134: google.cloud.compute.v1.SetUrlMapRegionTargetHttpsProxyRequest + (*SetUrlMapTargetHttpProxyRequest)(nil), // 2135: google.cloud.compute.v1.SetUrlMapTargetHttpProxyRequest + (*SetUrlMapTargetHttpsProxyRequest)(nil), // 2136: google.cloud.compute.v1.SetUrlMapTargetHttpsProxyRequest + (*SetUsageExportBucketProjectRequest)(nil), // 2137: google.cloud.compute.v1.SetUsageExportBucketProjectRequest + (*ShareSettings)(nil), // 2138: google.cloud.compute.v1.ShareSettings + (*ShareSettingsProjectConfig)(nil), // 2139: google.cloud.compute.v1.ShareSettingsProjectConfig + (*ShieldedInstanceConfig)(nil), // 2140: google.cloud.compute.v1.ShieldedInstanceConfig + (*ShieldedInstanceIdentity)(nil), // 2141: google.cloud.compute.v1.ShieldedInstanceIdentity + (*ShieldedInstanceIdentityEntry)(nil), // 2142: google.cloud.compute.v1.ShieldedInstanceIdentityEntry + (*ShieldedInstanceIntegrityPolicy)(nil), // 2143: google.cloud.compute.v1.ShieldedInstanceIntegrityPolicy + (*SignedUrlKey)(nil), // 2144: google.cloud.compute.v1.SignedUrlKey + (*SimulateMaintenanceEventInstanceRequest)(nil), // 2145: google.cloud.compute.v1.SimulateMaintenanceEventInstanceRequest + (*SimulateMaintenanceEventNodeGroupRequest)(nil), // 2146: google.cloud.compute.v1.SimulateMaintenanceEventNodeGroupRequest + (*Snapshot)(nil), // 2147: google.cloud.compute.v1.Snapshot + (*SnapshotGroupParameters)(nil), // 2148: google.cloud.compute.v1.SnapshotGroupParameters + (*SnapshotList)(nil), // 2149: google.cloud.compute.v1.SnapshotList + (*SnapshotParams)(nil), // 2150: google.cloud.compute.v1.SnapshotParams + (*SnapshotSettings)(nil), // 2151: google.cloud.compute.v1.SnapshotSettings + (*SnapshotSettingsAccessLocation)(nil), // 2152: google.cloud.compute.v1.SnapshotSettingsAccessLocation + (*SnapshotSettingsAccessLocationAccessLocationPreference)(nil), // 2153: google.cloud.compute.v1.SnapshotSettingsAccessLocationAccessLocationPreference + (*SnapshotSettingsStorageLocationSettings)(nil), // 2154: google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings + (*SnapshotSettingsStorageLocationSettingsStorageLocationPreference)(nil), // 2155: google.cloud.compute.v1.SnapshotSettingsStorageLocationSettingsStorageLocationPreference + (*SnapshotUpdateKmsKeyRequest)(nil), // 2156: google.cloud.compute.v1.SnapshotUpdateKmsKeyRequest + (*SourceDiskEncryptionKey)(nil), // 2157: google.cloud.compute.v1.SourceDiskEncryptionKey + (*SourceInstanceParams)(nil), // 2158: google.cloud.compute.v1.SourceInstanceParams + (*SourceInstanceProperties)(nil), // 2159: google.cloud.compute.v1.SourceInstanceProperties + (*SslCertificate)(nil), // 2160: google.cloud.compute.v1.SslCertificate + (*SslCertificateAggregatedList)(nil), // 2161: google.cloud.compute.v1.SslCertificateAggregatedList + (*SslCertificateList)(nil), // 2162: google.cloud.compute.v1.SslCertificateList + (*SslCertificateManagedSslCertificate)(nil), // 2163: google.cloud.compute.v1.SslCertificateManagedSslCertificate + (*SslCertificateSelfManagedSslCertificate)(nil), // 2164: google.cloud.compute.v1.SslCertificateSelfManagedSslCertificate + (*SslCertificatesScopedList)(nil), // 2165: google.cloud.compute.v1.SslCertificatesScopedList + (*SslPoliciesAggregatedList)(nil), // 2166: google.cloud.compute.v1.SslPoliciesAggregatedList + (*SslPoliciesList)(nil), // 2167: google.cloud.compute.v1.SslPoliciesList + (*SslPoliciesListAvailableFeaturesResponse)(nil), // 2168: google.cloud.compute.v1.SslPoliciesListAvailableFeaturesResponse + (*SslPoliciesScopedList)(nil), // 2169: google.cloud.compute.v1.SslPoliciesScopedList + (*SslPolicy)(nil), // 2170: google.cloud.compute.v1.SslPolicy + (*SslPolicyReference)(nil), // 2171: google.cloud.compute.v1.SslPolicyReference + (*StartAsyncReplicationDiskRequest)(nil), // 2172: google.cloud.compute.v1.StartAsyncReplicationDiskRequest + (*StartAsyncReplicationRegionDiskRequest)(nil), // 2173: google.cloud.compute.v1.StartAsyncReplicationRegionDiskRequest + (*StartInstanceRequest)(nil), // 2174: google.cloud.compute.v1.StartInstanceRequest + (*StartInstancesInstanceGroupManagerRequest)(nil), // 2175: google.cloud.compute.v1.StartInstancesInstanceGroupManagerRequest + (*StartInstancesRegionInstanceGroupManagerRequest)(nil), // 2176: google.cloud.compute.v1.StartInstancesRegionInstanceGroupManagerRequest + (*StartWithEncryptionKeyInstanceRequest)(nil), // 2177: google.cloud.compute.v1.StartWithEncryptionKeyInstanceRequest + (*StatefulPolicy)(nil), // 2178: google.cloud.compute.v1.StatefulPolicy + (*StatefulPolicyPreservedState)(nil), // 2179: google.cloud.compute.v1.StatefulPolicyPreservedState + (*StatefulPolicyPreservedStateDiskDevice)(nil), // 2180: google.cloud.compute.v1.StatefulPolicyPreservedStateDiskDevice + (*StatefulPolicyPreservedStateNetworkIp)(nil), // 2181: google.cloud.compute.v1.StatefulPolicyPreservedStateNetworkIp + (*Status)(nil), // 2182: google.cloud.compute.v1.Status + (*StopAsyncReplicationDiskRequest)(nil), // 2183: google.cloud.compute.v1.StopAsyncReplicationDiskRequest + (*StopAsyncReplicationRegionDiskRequest)(nil), // 2184: google.cloud.compute.v1.StopAsyncReplicationRegionDiskRequest + (*StopGroupAsyncReplicationDiskRequest)(nil), // 2185: google.cloud.compute.v1.StopGroupAsyncReplicationDiskRequest + (*StopGroupAsyncReplicationRegionDiskRequest)(nil), // 2186: google.cloud.compute.v1.StopGroupAsyncReplicationRegionDiskRequest + (*StopInstanceRequest)(nil), // 2187: google.cloud.compute.v1.StopInstanceRequest + (*StopInstancesInstanceGroupManagerRequest)(nil), // 2188: google.cloud.compute.v1.StopInstancesInstanceGroupManagerRequest + (*StopInstancesRegionInstanceGroupManagerRequest)(nil), // 2189: google.cloud.compute.v1.StopInstancesRegionInstanceGroupManagerRequest + (*StoragePool)(nil), // 2190: google.cloud.compute.v1.StoragePool + (*StoragePoolAggregatedList)(nil), // 2191: google.cloud.compute.v1.StoragePoolAggregatedList + (*StoragePoolDisk)(nil), // 2192: google.cloud.compute.v1.StoragePoolDisk + (*StoragePoolExapoolProvisionedCapacityGb)(nil), // 2193: google.cloud.compute.v1.StoragePoolExapoolProvisionedCapacityGb + (*StoragePoolList)(nil), // 2194: google.cloud.compute.v1.StoragePoolList + (*StoragePoolListDisks)(nil), // 2195: google.cloud.compute.v1.StoragePoolListDisks + (*StoragePoolParams)(nil), // 2196: google.cloud.compute.v1.StoragePoolParams + (*StoragePoolResourceStatus)(nil), // 2197: google.cloud.compute.v1.StoragePoolResourceStatus + (*StoragePoolType)(nil), // 2198: google.cloud.compute.v1.StoragePoolType + (*StoragePoolTypeAggregatedList)(nil), // 2199: google.cloud.compute.v1.StoragePoolTypeAggregatedList + (*StoragePoolTypeList)(nil), // 2200: google.cloud.compute.v1.StoragePoolTypeList + (*StoragePoolTypesScopedList)(nil), // 2201: google.cloud.compute.v1.StoragePoolTypesScopedList + (*StoragePoolsScopedList)(nil), // 2202: google.cloud.compute.v1.StoragePoolsScopedList + (*Subnetwork)(nil), // 2203: google.cloud.compute.v1.Subnetwork + (*SubnetworkAggregatedList)(nil), // 2204: google.cloud.compute.v1.SubnetworkAggregatedList + (*SubnetworkList)(nil), // 2205: google.cloud.compute.v1.SubnetworkList + (*SubnetworkLogConfig)(nil), // 2206: google.cloud.compute.v1.SubnetworkLogConfig + (*SubnetworkParams)(nil), // 2207: google.cloud.compute.v1.SubnetworkParams + (*SubnetworkSecondaryRange)(nil), // 2208: google.cloud.compute.v1.SubnetworkSecondaryRange + (*SubnetworkUtilizationDetails)(nil), // 2209: google.cloud.compute.v1.SubnetworkUtilizationDetails + (*SubnetworkUtilizationDetailsIPV4Utilization)(nil), // 2210: google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV4Utilization + (*SubnetworkUtilizationDetailsIPV6Utilization)(nil), // 2211: google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV6Utilization + (*SubnetworksExpandIpCidrRangeRequest)(nil), // 2212: google.cloud.compute.v1.SubnetworksExpandIpCidrRangeRequest + (*SubnetworksScopedList)(nil), // 2213: google.cloud.compute.v1.SubnetworksScopedList + (*SubnetworksScopedWarning)(nil), // 2214: google.cloud.compute.v1.SubnetworksScopedWarning + (*SubnetworksSetPrivateIpGoogleAccessRequest)(nil), // 2215: google.cloud.compute.v1.SubnetworksSetPrivateIpGoogleAccessRequest + (*Subsetting)(nil), // 2216: google.cloud.compute.v1.Subsetting + (*SuspendInstanceRequest)(nil), // 2217: google.cloud.compute.v1.SuspendInstanceRequest + (*SuspendInstancesInstanceGroupManagerRequest)(nil), // 2218: google.cloud.compute.v1.SuspendInstancesInstanceGroupManagerRequest + (*SuspendInstancesRegionInstanceGroupManagerRequest)(nil), // 2219: google.cloud.compute.v1.SuspendInstancesRegionInstanceGroupManagerRequest + (*SwitchToCustomModeNetworkRequest)(nil), // 2220: google.cloud.compute.v1.SwitchToCustomModeNetworkRequest + (*TCPHealthCheck)(nil), // 2221: google.cloud.compute.v1.TCPHealthCheck + (*Tags)(nil), // 2222: google.cloud.compute.v1.Tags + (*TargetGrpcProxy)(nil), // 2223: google.cloud.compute.v1.TargetGrpcProxy + (*TargetGrpcProxyList)(nil), // 2224: google.cloud.compute.v1.TargetGrpcProxyList + (*TargetHttpProxiesScopedList)(nil), // 2225: google.cloud.compute.v1.TargetHttpProxiesScopedList + (*TargetHttpProxy)(nil), // 2226: google.cloud.compute.v1.TargetHttpProxy + (*TargetHttpProxyAggregatedList)(nil), // 2227: google.cloud.compute.v1.TargetHttpProxyAggregatedList + (*TargetHttpProxyList)(nil), // 2228: google.cloud.compute.v1.TargetHttpProxyList + (*TargetHttpsProxiesScopedList)(nil), // 2229: google.cloud.compute.v1.TargetHttpsProxiesScopedList + (*TargetHttpsProxiesSetCertificateMapRequest)(nil), // 2230: google.cloud.compute.v1.TargetHttpsProxiesSetCertificateMapRequest + (*TargetHttpsProxiesSetQuicOverrideRequest)(nil), // 2231: google.cloud.compute.v1.TargetHttpsProxiesSetQuicOverrideRequest + (*TargetHttpsProxiesSetSslCertificatesRequest)(nil), // 2232: google.cloud.compute.v1.TargetHttpsProxiesSetSslCertificatesRequest + (*TargetHttpsProxy)(nil), // 2233: google.cloud.compute.v1.TargetHttpsProxy + (*TargetHttpsProxyAggregatedList)(nil), // 2234: google.cloud.compute.v1.TargetHttpsProxyAggregatedList + (*TargetHttpsProxyList)(nil), // 2235: google.cloud.compute.v1.TargetHttpsProxyList + (*TargetInstance)(nil), // 2236: google.cloud.compute.v1.TargetInstance + (*TargetInstanceAggregatedList)(nil), // 2237: google.cloud.compute.v1.TargetInstanceAggregatedList + (*TargetInstanceList)(nil), // 2238: google.cloud.compute.v1.TargetInstanceList + (*TargetInstancesScopedList)(nil), // 2239: google.cloud.compute.v1.TargetInstancesScopedList + (*TargetPool)(nil), // 2240: google.cloud.compute.v1.TargetPool + (*TargetPoolAggregatedList)(nil), // 2241: google.cloud.compute.v1.TargetPoolAggregatedList + (*TargetPoolInstanceHealth)(nil), // 2242: google.cloud.compute.v1.TargetPoolInstanceHealth + (*TargetPoolList)(nil), // 2243: google.cloud.compute.v1.TargetPoolList + (*TargetPoolsAddHealthCheckRequest)(nil), // 2244: google.cloud.compute.v1.TargetPoolsAddHealthCheckRequest + (*TargetPoolsAddInstanceRequest)(nil), // 2245: google.cloud.compute.v1.TargetPoolsAddInstanceRequest + (*TargetPoolsRemoveHealthCheckRequest)(nil), // 2246: google.cloud.compute.v1.TargetPoolsRemoveHealthCheckRequest + (*TargetPoolsRemoveInstanceRequest)(nil), // 2247: google.cloud.compute.v1.TargetPoolsRemoveInstanceRequest + (*TargetPoolsScopedList)(nil), // 2248: google.cloud.compute.v1.TargetPoolsScopedList + (*TargetReference)(nil), // 2249: google.cloud.compute.v1.TargetReference + (*TargetSslProxiesSetBackendServiceRequest)(nil), // 2250: google.cloud.compute.v1.TargetSslProxiesSetBackendServiceRequest + (*TargetSslProxiesSetCertificateMapRequest)(nil), // 2251: google.cloud.compute.v1.TargetSslProxiesSetCertificateMapRequest + (*TargetSslProxiesSetProxyHeaderRequest)(nil), // 2252: google.cloud.compute.v1.TargetSslProxiesSetProxyHeaderRequest + (*TargetSslProxiesSetSslCertificatesRequest)(nil), // 2253: google.cloud.compute.v1.TargetSslProxiesSetSslCertificatesRequest + (*TargetSslProxy)(nil), // 2254: google.cloud.compute.v1.TargetSslProxy + (*TargetSslProxyList)(nil), // 2255: google.cloud.compute.v1.TargetSslProxyList + (*TargetTcpProxiesScopedList)(nil), // 2256: google.cloud.compute.v1.TargetTcpProxiesScopedList + (*TargetTcpProxiesSetBackendServiceRequest)(nil), // 2257: google.cloud.compute.v1.TargetTcpProxiesSetBackendServiceRequest + (*TargetTcpProxiesSetProxyHeaderRequest)(nil), // 2258: google.cloud.compute.v1.TargetTcpProxiesSetProxyHeaderRequest + (*TargetTcpProxy)(nil), // 2259: google.cloud.compute.v1.TargetTcpProxy + (*TargetTcpProxyAggregatedList)(nil), // 2260: google.cloud.compute.v1.TargetTcpProxyAggregatedList + (*TargetTcpProxyList)(nil), // 2261: google.cloud.compute.v1.TargetTcpProxyList + (*TargetVpnGateway)(nil), // 2262: google.cloud.compute.v1.TargetVpnGateway + (*TargetVpnGatewayAggregatedList)(nil), // 2263: google.cloud.compute.v1.TargetVpnGatewayAggregatedList + (*TargetVpnGatewayList)(nil), // 2264: google.cloud.compute.v1.TargetVpnGatewayList + (*TargetVpnGatewayParams)(nil), // 2265: google.cloud.compute.v1.TargetVpnGatewayParams + (*TargetVpnGatewaysScopedList)(nil), // 2266: google.cloud.compute.v1.TargetVpnGatewaysScopedList + (*TestFailure)(nil), // 2267: google.cloud.compute.v1.TestFailure + (*TestIamPermissionsAddressRequest)(nil), // 2268: google.cloud.compute.v1.TestIamPermissionsAddressRequest + (*TestIamPermissionsAutoscalerRequest)(nil), // 2269: google.cloud.compute.v1.TestIamPermissionsAutoscalerRequest + (*TestIamPermissionsBackendBucketRequest)(nil), // 2270: google.cloud.compute.v1.TestIamPermissionsBackendBucketRequest + (*TestIamPermissionsBackendServiceRequest)(nil), // 2271: google.cloud.compute.v1.TestIamPermissionsBackendServiceRequest + (*TestIamPermissionsDiskRequest)(nil), // 2272: google.cloud.compute.v1.TestIamPermissionsDiskRequest + (*TestIamPermissionsExternalVpnGatewayRequest)(nil), // 2273: google.cloud.compute.v1.TestIamPermissionsExternalVpnGatewayRequest + (*TestIamPermissionsFirewallPolicyRequest)(nil), // 2274: google.cloud.compute.v1.TestIamPermissionsFirewallPolicyRequest + (*TestIamPermissionsFirewallRequest)(nil), // 2275: google.cloud.compute.v1.TestIamPermissionsFirewallRequest + (*TestIamPermissionsGlobalAddressRequest)(nil), // 2276: google.cloud.compute.v1.TestIamPermissionsGlobalAddressRequest + (*TestIamPermissionsHealthCheckRequest)(nil), // 2277: google.cloud.compute.v1.TestIamPermissionsHealthCheckRequest + (*TestIamPermissionsImageRequest)(nil), // 2278: google.cloud.compute.v1.TestIamPermissionsImageRequest + (*TestIamPermissionsInstanceGroupRequest)(nil), // 2279: google.cloud.compute.v1.TestIamPermissionsInstanceGroupRequest + (*TestIamPermissionsInstanceRequest)(nil), // 2280: google.cloud.compute.v1.TestIamPermissionsInstanceRequest + (*TestIamPermissionsInstanceTemplateRequest)(nil), // 2281: google.cloud.compute.v1.TestIamPermissionsInstanceTemplateRequest + (*TestIamPermissionsInstantSnapshotGroupRequest)(nil), // 2282: google.cloud.compute.v1.TestIamPermissionsInstantSnapshotGroupRequest + (*TestIamPermissionsInstantSnapshotRequest)(nil), // 2283: google.cloud.compute.v1.TestIamPermissionsInstantSnapshotRequest + (*TestIamPermissionsInterconnectAttachmentGroupRequest)(nil), // 2284: google.cloud.compute.v1.TestIamPermissionsInterconnectAttachmentGroupRequest + (*TestIamPermissionsInterconnectGroupRequest)(nil), // 2285: google.cloud.compute.v1.TestIamPermissionsInterconnectGroupRequest + (*TestIamPermissionsLicenseCodeRequest)(nil), // 2286: google.cloud.compute.v1.TestIamPermissionsLicenseCodeRequest + (*TestIamPermissionsLicenseRequest)(nil), // 2287: google.cloud.compute.v1.TestIamPermissionsLicenseRequest + (*TestIamPermissionsMachineImageRequest)(nil), // 2288: google.cloud.compute.v1.TestIamPermissionsMachineImageRequest + (*TestIamPermissionsNetworkAttachmentRequest)(nil), // 2289: google.cloud.compute.v1.TestIamPermissionsNetworkAttachmentRequest + (*TestIamPermissionsNetworkEndpointGroupRequest)(nil), // 2290: google.cloud.compute.v1.TestIamPermissionsNetworkEndpointGroupRequest + (*TestIamPermissionsNetworkFirewallPolicyRequest)(nil), // 2291: google.cloud.compute.v1.TestIamPermissionsNetworkFirewallPolicyRequest + (*TestIamPermissionsNodeGroupRequest)(nil), // 2292: google.cloud.compute.v1.TestIamPermissionsNodeGroupRequest + (*TestIamPermissionsNodeTemplateRequest)(nil), // 2293: google.cloud.compute.v1.TestIamPermissionsNodeTemplateRequest + (*TestIamPermissionsPacketMirroringRequest)(nil), // 2294: google.cloud.compute.v1.TestIamPermissionsPacketMirroringRequest + (*TestIamPermissionsRegionAutoscalerRequest)(nil), // 2295: google.cloud.compute.v1.TestIamPermissionsRegionAutoscalerRequest + (*TestIamPermissionsRegionBackendBucketRequest)(nil), // 2296: google.cloud.compute.v1.TestIamPermissionsRegionBackendBucketRequest + (*TestIamPermissionsRegionBackendServiceRequest)(nil), // 2297: google.cloud.compute.v1.TestIamPermissionsRegionBackendServiceRequest + (*TestIamPermissionsRegionCompositeHealthCheckRequest)(nil), // 2298: google.cloud.compute.v1.TestIamPermissionsRegionCompositeHealthCheckRequest + (*TestIamPermissionsRegionDiskRequest)(nil), // 2299: google.cloud.compute.v1.TestIamPermissionsRegionDiskRequest + (*TestIamPermissionsRegionHealthAggregationPolicyRequest)(nil), // 2300: google.cloud.compute.v1.TestIamPermissionsRegionHealthAggregationPolicyRequest + (*TestIamPermissionsRegionHealthCheckRequest)(nil), // 2301: google.cloud.compute.v1.TestIamPermissionsRegionHealthCheckRequest + (*TestIamPermissionsRegionHealthCheckServiceRequest)(nil), // 2302: google.cloud.compute.v1.TestIamPermissionsRegionHealthCheckServiceRequest + (*TestIamPermissionsRegionHealthSourceRequest)(nil), // 2303: google.cloud.compute.v1.TestIamPermissionsRegionHealthSourceRequest + (*TestIamPermissionsRegionInstanceGroupRequest)(nil), // 2304: google.cloud.compute.v1.TestIamPermissionsRegionInstanceGroupRequest + (*TestIamPermissionsRegionInstantSnapshotGroupRequest)(nil), // 2305: google.cloud.compute.v1.TestIamPermissionsRegionInstantSnapshotGroupRequest + (*TestIamPermissionsRegionInstantSnapshotRequest)(nil), // 2306: google.cloud.compute.v1.TestIamPermissionsRegionInstantSnapshotRequest + (*TestIamPermissionsRegionNetworkFirewallPolicyRequest)(nil), // 2307: google.cloud.compute.v1.TestIamPermissionsRegionNetworkFirewallPolicyRequest + (*TestIamPermissionsRegionNotificationEndpointRequest)(nil), // 2308: google.cloud.compute.v1.TestIamPermissionsRegionNotificationEndpointRequest + (*TestIamPermissionsRegionSnapshotRequest)(nil), // 2309: google.cloud.compute.v1.TestIamPermissionsRegionSnapshotRequest + (*TestIamPermissionsReservationBlockRequest)(nil), // 2310: google.cloud.compute.v1.TestIamPermissionsReservationBlockRequest + (*TestIamPermissionsReservationRequest)(nil), // 2311: google.cloud.compute.v1.TestIamPermissionsReservationRequest + (*TestIamPermissionsReservationSubBlockRequest)(nil), // 2312: google.cloud.compute.v1.TestIamPermissionsReservationSubBlockRequest + (*TestIamPermissionsResourcePolicyRequest)(nil), // 2313: google.cloud.compute.v1.TestIamPermissionsResourcePolicyRequest + (*TestIamPermissionsRouteRequest)(nil), // 2314: google.cloud.compute.v1.TestIamPermissionsRouteRequest + (*TestIamPermissionsServiceAttachmentRequest)(nil), // 2315: google.cloud.compute.v1.TestIamPermissionsServiceAttachmentRequest + (*TestIamPermissionsSnapshotRequest)(nil), // 2316: google.cloud.compute.v1.TestIamPermissionsSnapshotRequest + (*TestIamPermissionsStoragePoolRequest)(nil), // 2317: google.cloud.compute.v1.TestIamPermissionsStoragePoolRequest + (*TestIamPermissionsSubnetworkRequest)(nil), // 2318: google.cloud.compute.v1.TestIamPermissionsSubnetworkRequest + (*TestIamPermissionsTargetInstanceRequest)(nil), // 2319: google.cloud.compute.v1.TestIamPermissionsTargetInstanceRequest + (*TestIamPermissionsTargetPoolRequest)(nil), // 2320: google.cloud.compute.v1.TestIamPermissionsTargetPoolRequest + (*TestIamPermissionsTargetSslProxyRequest)(nil), // 2321: google.cloud.compute.v1.TestIamPermissionsTargetSslProxyRequest + (*TestIamPermissionsTargetTcpProxyRequest)(nil), // 2322: google.cloud.compute.v1.TestIamPermissionsTargetTcpProxyRequest + (*TestIamPermissionsUrlMapRequest)(nil), // 2323: google.cloud.compute.v1.TestIamPermissionsUrlMapRequest + (*TestIamPermissionsVpnGatewayRequest)(nil), // 2324: google.cloud.compute.v1.TestIamPermissionsVpnGatewayRequest + (*TestPermissionsRequest)(nil), // 2325: google.cloud.compute.v1.TestPermissionsRequest + (*TestPermissionsResponse)(nil), // 2326: google.cloud.compute.v1.TestPermissionsResponse + (*Uint128)(nil), // 2327: google.cloud.compute.v1.Uint128 + (*UpcomingMaintenance)(nil), // 2328: google.cloud.compute.v1.UpcomingMaintenance + (*UpdateAccessConfigInstanceRequest)(nil), // 2329: google.cloud.compute.v1.UpdateAccessConfigInstanceRequest + (*UpdateAutoscalerRequest)(nil), // 2330: google.cloud.compute.v1.UpdateAutoscalerRequest + (*UpdateBackendBucketRequest)(nil), // 2331: google.cloud.compute.v1.UpdateBackendBucketRequest + (*UpdateBackendServiceRequest)(nil), // 2332: google.cloud.compute.v1.UpdateBackendServiceRequest + (*UpdateDiskRequest)(nil), // 2333: google.cloud.compute.v1.UpdateDiskRequest + (*UpdateDisplayDeviceInstanceRequest)(nil), // 2334: google.cloud.compute.v1.UpdateDisplayDeviceInstanceRequest + (*UpdateFirewallRequest)(nil), // 2335: google.cloud.compute.v1.UpdateFirewallRequest + (*UpdateFutureReservationRequest)(nil), // 2336: google.cloud.compute.v1.UpdateFutureReservationRequest + (*UpdateHealthCheckRequest)(nil), // 2337: google.cloud.compute.v1.UpdateHealthCheckRequest + (*UpdateInstanceRequest)(nil), // 2338: google.cloud.compute.v1.UpdateInstanceRequest + (*UpdateKmsKeyDiskRequest)(nil), // 2339: google.cloud.compute.v1.UpdateKmsKeyDiskRequest + (*UpdateKmsKeyRegionDiskRequest)(nil), // 2340: google.cloud.compute.v1.UpdateKmsKeyRegionDiskRequest + (*UpdateKmsKeyRegionSnapshotRequest)(nil), // 2341: google.cloud.compute.v1.UpdateKmsKeyRegionSnapshotRequest + (*UpdateKmsKeySnapshotRequest)(nil), // 2342: google.cloud.compute.v1.UpdateKmsKeySnapshotRequest + (*UpdateLicenseRequest)(nil), // 2343: google.cloud.compute.v1.UpdateLicenseRequest + (*UpdateNetworkInterfaceInstanceRequest)(nil), // 2344: google.cloud.compute.v1.UpdateNetworkInterfaceInstanceRequest + (*UpdatePeeringNetworkRequest)(nil), // 2345: google.cloud.compute.v1.UpdatePeeringNetworkRequest + (*UpdatePerInstanceConfigsInstanceGroupManagerRequest)(nil), // 2346: google.cloud.compute.v1.UpdatePerInstanceConfigsInstanceGroupManagerRequest + (*UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest)(nil), // 2347: google.cloud.compute.v1.UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest + (*UpdatePreviewFeatureRequest)(nil), // 2348: google.cloud.compute.v1.UpdatePreviewFeatureRequest + (*UpdateRegionAutoscalerRequest)(nil), // 2349: google.cloud.compute.v1.UpdateRegionAutoscalerRequest + (*UpdateRegionBackendServiceRequest)(nil), // 2350: google.cloud.compute.v1.UpdateRegionBackendServiceRequest + (*UpdateRegionCommitmentRequest)(nil), // 2351: google.cloud.compute.v1.UpdateRegionCommitmentRequest + (*UpdateRegionDiskRequest)(nil), // 2352: google.cloud.compute.v1.UpdateRegionDiskRequest + (*UpdateRegionHealthCheckRequest)(nil), // 2353: google.cloud.compute.v1.UpdateRegionHealthCheckRequest + (*UpdateRegionUrlMapRequest)(nil), // 2354: google.cloud.compute.v1.UpdateRegionUrlMapRequest + (*UpdateReservationRequest)(nil), // 2355: google.cloud.compute.v1.UpdateReservationRequest + (*UpdateReservationSlotRequest)(nil), // 2356: google.cloud.compute.v1.UpdateReservationSlotRequest + (*UpdateRoutePolicyRouterRequest)(nil), // 2357: google.cloud.compute.v1.UpdateRoutePolicyRouterRequest + (*UpdateRouterRequest)(nil), // 2358: google.cloud.compute.v1.UpdateRouterRequest + (*UpdateShieldedInstanceConfigInstanceRequest)(nil), // 2359: google.cloud.compute.v1.UpdateShieldedInstanceConfigInstanceRequest + (*UpdateStoragePoolRequest)(nil), // 2360: google.cloud.compute.v1.UpdateStoragePoolRequest + (*UpdateUrlMapRequest)(nil), // 2361: google.cloud.compute.v1.UpdateUrlMapRequest + (*UpdateZoneVmExtensionPolicyRequest)(nil), // 2362: google.cloud.compute.v1.UpdateZoneVmExtensionPolicyRequest + (*UrlMap)(nil), // 2363: google.cloud.compute.v1.UrlMap + (*UrlMapList)(nil), // 2364: google.cloud.compute.v1.UrlMapList + (*UrlMapReference)(nil), // 2365: google.cloud.compute.v1.UrlMapReference + (*UrlMapTest)(nil), // 2366: google.cloud.compute.v1.UrlMapTest + (*UrlMapTestHeader)(nil), // 2367: google.cloud.compute.v1.UrlMapTestHeader + (*UrlMapValidationResult)(nil), // 2368: google.cloud.compute.v1.UrlMapValidationResult + (*UrlMapsAggregatedList)(nil), // 2369: google.cloud.compute.v1.UrlMapsAggregatedList + (*UrlMapsScopedList)(nil), // 2370: google.cloud.compute.v1.UrlMapsScopedList + (*UrlMapsValidateRequest)(nil), // 2371: google.cloud.compute.v1.UrlMapsValidateRequest + (*UrlMapsValidateResponse)(nil), // 2372: google.cloud.compute.v1.UrlMapsValidateResponse + (*UrlRewrite)(nil), // 2373: google.cloud.compute.v1.UrlRewrite + (*UsableSubnetwork)(nil), // 2374: google.cloud.compute.v1.UsableSubnetwork + (*UsableSubnetworkSecondaryRange)(nil), // 2375: google.cloud.compute.v1.UsableSubnetworkSecondaryRange + (*UsableSubnetworksAggregatedList)(nil), // 2376: google.cloud.compute.v1.UsableSubnetworksAggregatedList + (*UsageExportLocation)(nil), // 2377: google.cloud.compute.v1.UsageExportLocation + (*ValidateRegionUrlMapRequest)(nil), // 2378: google.cloud.compute.v1.ValidateRegionUrlMapRequest + (*ValidateUrlMapRequest)(nil), // 2379: google.cloud.compute.v1.ValidateUrlMapRequest + (*VmEndpointNatMappings)(nil), // 2380: google.cloud.compute.v1.VmEndpointNatMappings + (*VmEndpointNatMappingsInterfaceNatMappings)(nil), // 2381: google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappings + (*VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings)(nil), // 2382: google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings + (*VmEndpointNatMappingsList)(nil), // 2383: google.cloud.compute.v1.VmEndpointNatMappingsList + (*VmExtensionPolicy)(nil), // 2384: google.cloud.compute.v1.VmExtensionPolicy + (*VmExtensionPolicyExtensionPolicy)(nil), // 2385: google.cloud.compute.v1.VmExtensionPolicyExtensionPolicy + (*VmExtensionPolicyInstanceSelector)(nil), // 2386: google.cloud.compute.v1.VmExtensionPolicyInstanceSelector + (*VmExtensionPolicyLabelSelector)(nil), // 2387: google.cloud.compute.v1.VmExtensionPolicyLabelSelector + (*VmExtensionPolicyList)(nil), // 2388: google.cloud.compute.v1.VmExtensionPolicyList + (*VpnGateway)(nil), // 2389: google.cloud.compute.v1.VpnGateway + (*VpnGatewayAggregatedList)(nil), // 2390: google.cloud.compute.v1.VpnGatewayAggregatedList + (*VpnGatewayList)(nil), // 2391: google.cloud.compute.v1.VpnGatewayList + (*VpnGatewayParams)(nil), // 2392: google.cloud.compute.v1.VpnGatewayParams + (*VpnGatewayStatus)(nil), // 2393: google.cloud.compute.v1.VpnGatewayStatus + (*VpnGatewayStatusHighAvailabilityRequirementState)(nil), // 2394: google.cloud.compute.v1.VpnGatewayStatusHighAvailabilityRequirementState + (*VpnGatewayStatusTunnel)(nil), // 2395: google.cloud.compute.v1.VpnGatewayStatusTunnel + (*VpnGatewayStatusVpnConnection)(nil), // 2396: google.cloud.compute.v1.VpnGatewayStatusVpnConnection + (*VpnGatewayVpnGatewayInterface)(nil), // 2397: google.cloud.compute.v1.VpnGatewayVpnGatewayInterface + (*VpnGatewaysGetStatusResponse)(nil), // 2398: google.cloud.compute.v1.VpnGatewaysGetStatusResponse + (*VpnGatewaysScopedList)(nil), // 2399: google.cloud.compute.v1.VpnGatewaysScopedList + (*VpnTunnel)(nil), // 2400: google.cloud.compute.v1.VpnTunnel + (*VpnTunnelAggregatedList)(nil), // 2401: google.cloud.compute.v1.VpnTunnelAggregatedList + (*VpnTunnelCipherSuite)(nil), // 2402: google.cloud.compute.v1.VpnTunnelCipherSuite + (*VpnTunnelList)(nil), // 2403: google.cloud.compute.v1.VpnTunnelList + (*VpnTunnelParams)(nil), // 2404: google.cloud.compute.v1.VpnTunnelParams + (*VpnTunnelPhase1Algorithms)(nil), // 2405: google.cloud.compute.v1.VpnTunnelPhase1Algorithms + (*VpnTunnelPhase2Algorithms)(nil), // 2406: google.cloud.compute.v1.VpnTunnelPhase2Algorithms + (*VpnTunnelsScopedList)(nil), // 2407: google.cloud.compute.v1.VpnTunnelsScopedList + (*WafExpressionSet)(nil), // 2408: google.cloud.compute.v1.WafExpressionSet + (*WafExpressionSetExpression)(nil), // 2409: google.cloud.compute.v1.WafExpressionSetExpression + (*WaitGlobalOperationRequest)(nil), // 2410: google.cloud.compute.v1.WaitGlobalOperationRequest + (*WaitRegionOperationRequest)(nil), // 2411: google.cloud.compute.v1.WaitRegionOperationRequest + (*WaitZoneOperationRequest)(nil), // 2412: google.cloud.compute.v1.WaitZoneOperationRequest + (*Warning)(nil), // 2413: google.cloud.compute.v1.Warning + (*Warnings)(nil), // 2414: google.cloud.compute.v1.Warnings + (*WeightedBackendService)(nil), // 2415: google.cloud.compute.v1.WeightedBackendService + (*Wire)(nil), // 2416: google.cloud.compute.v1.Wire + (*WireEndpoint)(nil), // 2417: google.cloud.compute.v1.WireEndpoint + (*WireGroup)(nil), // 2418: google.cloud.compute.v1.WireGroup + (*WireGroupEndpoint)(nil), // 2419: google.cloud.compute.v1.WireGroupEndpoint + (*WireGroupEndpointInterconnect)(nil), // 2420: google.cloud.compute.v1.WireGroupEndpointInterconnect + (*WireGroupList)(nil), // 2421: google.cloud.compute.v1.WireGroupList + (*WireGroupTopology)(nil), // 2422: google.cloud.compute.v1.WireGroupTopology + (*WireGroupTopologyEndpoint)(nil), // 2423: google.cloud.compute.v1.WireGroupTopologyEndpoint + (*WireProperties)(nil), // 2424: google.cloud.compute.v1.WireProperties + (*WithdrawPublicAdvertisedPrefixeRequest)(nil), // 2425: google.cloud.compute.v1.WithdrawPublicAdvertisedPrefixeRequest + (*WithdrawPublicDelegatedPrefixeRequest)(nil), // 2426: google.cloud.compute.v1.WithdrawPublicDelegatedPrefixeRequest + (*WorkloadIdentityConfig)(nil), // 2427: google.cloud.compute.v1.WorkloadIdentityConfig + (*XpnHostList)(nil), // 2428: google.cloud.compute.v1.XpnHostList + (*XpnResourceId)(nil), // 2429: google.cloud.compute.v1.XpnResourceId + (*Zone)(nil), // 2430: google.cloud.compute.v1.Zone + (*ZoneList)(nil), // 2431: google.cloud.compute.v1.ZoneList + (*ZoneSetLabelsRequest)(nil), // 2432: google.cloud.compute.v1.ZoneSetLabelsRequest + (*ZoneSetNestedPolicyRequest)(nil), // 2433: google.cloud.compute.v1.ZoneSetNestedPolicyRequest + (*ZoneSetPolicyRequest)(nil), // 2434: google.cloud.compute.v1.ZoneSetPolicyRequest + nil, // 2435: google.cloud.compute.v1.AcceleratorTypeAggregatedList.ItemsEntry + nil, // 2436: google.cloud.compute.v1.Address.LabelsEntry + nil, // 2437: google.cloud.compute.v1.AddressAggregatedList.ItemsEntry + nil, // 2438: google.cloud.compute.v1.AllocationResourceStatusSpecificSKUAllocation.UtilizationsEntry + nil, // 2439: google.cloud.compute.v1.AttachedDiskInitializeParams.LabelsEntry + nil, // 2440: google.cloud.compute.v1.AttachedDiskInitializeParams.ResourceManagerTagsEntry + nil, // 2441: google.cloud.compute.v1.Autoscaler.ScalingScheduleStatusEntry + nil, // 2442: google.cloud.compute.v1.AutoscalerAggregatedList.ItemsEntry + nil, // 2443: google.cloud.compute.v1.AutoscalingPolicy.ScalingSchedulesEntry + nil, // 2444: google.cloud.compute.v1.BackendBucketAggregatedList.ItemsEntry + nil, // 2445: google.cloud.compute.v1.BackendBucketParams.ResourceManagerTagsEntry + nil, // 2446: google.cloud.compute.v1.BackendService.MetadatasEntry + nil, // 2447: google.cloud.compute.v1.BackendServiceAggregatedList.ItemsEntry + nil, // 2448: google.cloud.compute.v1.BackendServiceGroupHealth.AnnotationsEntry + nil, // 2449: google.cloud.compute.v1.BackendServiceParams.ResourceManagerTagsEntry + nil, // 2450: google.cloud.compute.v1.BulkInsertInstanceResource.PerInstancePropertiesEntry + nil, // 2451: google.cloud.compute.v1.BulkSetLabelsRequest.LabelsEntry + nil, // 2452: google.cloud.compute.v1.CalendarModeAdviceRequest.FutureResourcesSpecsEntry + nil, // 2453: google.cloud.compute.v1.CalendarModeRecommendation.RecommendationsPerSpecEntry + nil, // 2454: google.cloud.compute.v1.CommitmentAggregatedList.ItemsEntry + nil, // 2455: google.cloud.compute.v1.CommitmentParams.ResourceManagerTagsEntry + nil, // 2456: google.cloud.compute.v1.CompositeHealthCheckAggregatedList.ItemsEntry + nil, // 2457: google.cloud.compute.v1.Disk.AsyncSecondaryDisksEntry + nil, // 2458: google.cloud.compute.v1.Disk.LabelsEntry + nil, // 2459: google.cloud.compute.v1.DiskAggregatedList.ItemsEntry + nil, // 2460: google.cloud.compute.v1.DiskParams.ResourceManagerTagsEntry + nil, // 2461: google.cloud.compute.v1.DiskResourceStatus.AsyncSecondaryDisksEntry + nil, // 2462: google.cloud.compute.v1.DiskTypeAggregatedList.ItemsEntry + nil, // 2463: google.cloud.compute.v1.ErrorInfo.MetadatasEntry + nil, // 2464: google.cloud.compute.v1.ExternalVpnGateway.LabelsEntry + nil, // 2465: google.cloud.compute.v1.ExternalVpnGatewayParams.ResourceManagerTagsEntry + nil, // 2466: google.cloud.compute.v1.FirewallParams.ResourceManagerTagsEntry + nil, // 2467: google.cloud.compute.v1.ForwardingRule.LabelsEntry + nil, // 2468: google.cloud.compute.v1.ForwardingRuleAggregatedList.ItemsEntry + nil, // 2469: google.cloud.compute.v1.FutureReservationParams.ResourceManagerTagsEntry + nil, // 2470: google.cloud.compute.v1.FutureReservationsAggregatedListResponse.ItemsEntry + nil, // 2471: google.cloud.compute.v1.FutureResourcesRecommendation.OtherLocationsEntry + nil, // 2472: google.cloud.compute.v1.FutureResourcesSpecLocationPolicy.LocationsEntry + nil, // 2473: google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo.CurrentComponentVersionsEntry + nil, // 2474: google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo.TargetComponentVersionsEntry + nil, // 2475: google.cloud.compute.v1.GlobalSetLabelsRequest.LabelsEntry + nil, // 2476: google.cloud.compute.v1.HealthAggregationPolicyAggregatedList.ItemsEntry + nil, // 2477: google.cloud.compute.v1.HealthCheckServiceAggregatedList.ItemsEntry + nil, // 2478: google.cloud.compute.v1.HealthChecksAggregatedList.ItemsEntry + nil, // 2479: google.cloud.compute.v1.HealthSourceAggregatedList.ItemsEntry + nil, // 2480: google.cloud.compute.v1.HealthStatus.AnnotationsEntry + nil, // 2481: google.cloud.compute.v1.Image.LabelsEntry + nil, // 2482: google.cloud.compute.v1.ImageParams.ResourceManagerTagsEntry + nil, // 2483: google.cloud.compute.v1.Instance.LabelsEntry + nil, // 2484: google.cloud.compute.v1.InstanceAggregatedList.ItemsEntry + nil, // 2485: google.cloud.compute.v1.InstanceFlexibilityPolicy.InstanceSelectionsEntry + nil, // 2486: google.cloud.compute.v1.InstanceGroupAggregatedList.ItemsEntry + nil, // 2487: google.cloud.compute.v1.InstanceGroupManagerAggregatedList.ItemsEntry + nil, // 2488: google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicy.InstanceSelectionsEntry + nil, // 2489: google.cloud.compute.v1.InstanceParams.ResourceManagerTagsEntry + nil, // 2490: google.cloud.compute.v1.InstanceProperties.LabelsEntry + nil, // 2491: google.cloud.compute.v1.InstanceProperties.ResourceManagerTagsEntry + nil, // 2492: google.cloud.compute.v1.InstancePropertiesPatch.LabelsEntry + nil, // 2493: google.cloud.compute.v1.InstancePropertiesPatch.MetadataEntry + nil, // 2494: google.cloud.compute.v1.InstanceSettingsMetadata.ItemsEntry + nil, // 2495: google.cloud.compute.v1.InstanceTemplateAggregatedList.ItemsEntry + nil, // 2496: google.cloud.compute.v1.InstancesBulkInsertOperationMetadata.PerLocationStatusEntry + nil, // 2497: google.cloud.compute.v1.InstancesSetLabelsRequest.LabelsEntry + nil, // 2498: google.cloud.compute.v1.InstantSnapshot.LabelsEntry + nil, // 2499: google.cloud.compute.v1.InstantSnapshotAggregatedList.ItemsEntry + nil, // 2500: google.cloud.compute.v1.InstantSnapshotParams.ResourceManagerTagsEntry + nil, // 2501: google.cloud.compute.v1.Interconnect.LabelsEntry + nil, // 2502: google.cloud.compute.v1.InterconnectAttachment.LabelsEntry + nil, // 2503: google.cloud.compute.v1.InterconnectAttachmentAggregatedList.ItemsEntry + nil, // 2504: google.cloud.compute.v1.InterconnectAttachmentGroup.AttachmentsEntry + nil, // 2505: google.cloud.compute.v1.InterconnectAttachmentL2Forwarding.ApplianceMappingsEntry + nil, // 2506: google.cloud.compute.v1.InterconnectAttachmentParams.ResourceManagerTagsEntry + nil, // 2507: google.cloud.compute.v1.InterconnectGroup.InterconnectsEntry + nil, // 2508: google.cloud.compute.v1.InterconnectParams.ResourceManagerTagsEntry + nil, // 2509: google.cloud.compute.v1.LicenseParams.ResourceManagerTagsEntry + nil, // 2510: google.cloud.compute.v1.LocationPolicy.LocationsEntry + nil, // 2511: google.cloud.compute.v1.MachineImage.LabelsEntry + nil, // 2512: google.cloud.compute.v1.MachineImageParams.ResourceManagerTagsEntry + nil, // 2513: google.cloud.compute.v1.MachineTypeAggregatedList.ItemsEntry + nil, // 2514: google.cloud.compute.v1.NetworkAttachmentAggregatedList.ItemsEntry + nil, // 2515: google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList.ItemsEntry + nil, // 2516: google.cloud.compute.v1.NetworkEndpoint.AnnotationsEntry + nil, // 2517: google.cloud.compute.v1.NetworkEndpointGroup.AnnotationsEntry + nil, // 2518: google.cloud.compute.v1.NetworkEndpointGroupAggregatedList.ItemsEntry + nil, // 2519: google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList.ItemsEntry + nil, // 2520: google.cloud.compute.v1.NetworkParams.ResourceManagerTagsEntry + nil, // 2521: google.cloud.compute.v1.NodeGroupAggregatedList.ItemsEntry + nil, // 2522: google.cloud.compute.v1.NodeTemplate.NodeAffinityLabelsEntry + nil, // 2523: google.cloud.compute.v1.NodeTemplateAggregatedList.ItemsEntry + nil, // 2524: google.cloud.compute.v1.NodeTypeAggregatedList.ItemsEntry + nil, // 2525: google.cloud.compute.v1.NotificationEndpointAggregatedList.ItemsEntry + nil, // 2526: google.cloud.compute.v1.OperationAggregatedList.ItemsEntry + nil, // 2527: google.cloud.compute.v1.PacketMirroringAggregatedList.ItemsEntry + nil, // 2528: google.cloud.compute.v1.PreservedState.DisksEntry + nil, // 2529: google.cloud.compute.v1.PreservedState.ExternalIPsEntry + nil, // 2530: google.cloud.compute.v1.PreservedState.InternalIPsEntry + nil, // 2531: google.cloud.compute.v1.PreservedState.MetadataEntry + nil, // 2532: google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList.ItemsEntry + nil, // 2533: google.cloud.compute.v1.QuotaExceededInfo.DimensionsEntry + nil, // 2534: google.cloud.compute.v1.RegionSetLabelsRequest.LabelsEntry + nil, // 2535: google.cloud.compute.v1.Reservation.ResourcePoliciesEntry + nil, // 2536: google.cloud.compute.v1.ReservationAggregatedList.ItemsEntry + nil, // 2537: google.cloud.compute.v1.ReservationParams.ResourceManagerTagsEntry + nil, // 2538: google.cloud.compute.v1.ResourcePolicyAggregatedList.ItemsEntry + nil, // 2539: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySnapshotProperties.LabelsEntry + nil, // 2540: google.cloud.compute.v1.RouteParams.ResourceManagerTagsEntry + nil, // 2541: google.cloud.compute.v1.RouterAggregatedList.ItemsEntry + nil, // 2542: google.cloud.compute.v1.RouterParams.ResourceManagerTagsEntry + nil, // 2543: google.cloud.compute.v1.SecurityPoliciesAggregatedList.ItemsEntry + nil, // 2544: google.cloud.compute.v1.SecurityPolicy.LabelsEntry + nil, // 2545: google.cloud.compute.v1.ServiceAttachment.MetadataEntry + nil, // 2546: google.cloud.compute.v1.ServiceAttachmentAggregatedList.ItemsEntry + nil, // 2547: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadata.PerLocationOperationsEntry + nil, // 2548: google.cloud.compute.v1.ShareSettings.ProjectMapEntry + nil, // 2549: google.cloud.compute.v1.Snapshot.LabelsEntry + nil, // 2550: google.cloud.compute.v1.SnapshotParams.ResourceManagerTagsEntry + nil, // 2551: google.cloud.compute.v1.SnapshotSettingsAccessLocation.LocationsEntry + nil, // 2552: google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings.LocationsEntry + nil, // 2553: google.cloud.compute.v1.SourceInstanceProperties.LabelsEntry + nil, // 2554: google.cloud.compute.v1.SslCertificateAggregatedList.ItemsEntry + nil, // 2555: google.cloud.compute.v1.SslCertificateManagedSslCertificate.DomainStatusEntry + nil, // 2556: google.cloud.compute.v1.SslPoliciesAggregatedList.ItemsEntry + nil, // 2557: google.cloud.compute.v1.StatefulPolicyPreservedState.DisksEntry + nil, // 2558: google.cloud.compute.v1.StatefulPolicyPreservedState.ExternalIPsEntry + nil, // 2559: google.cloud.compute.v1.StatefulPolicyPreservedState.InternalIPsEntry + nil, // 2560: google.cloud.compute.v1.StoragePool.LabelsEntry + nil, // 2561: google.cloud.compute.v1.StoragePoolAggregatedList.ItemsEntry + nil, // 2562: google.cloud.compute.v1.StoragePoolParams.ResourceManagerTagsEntry + nil, // 2563: google.cloud.compute.v1.StoragePoolTypeAggregatedList.ItemsEntry + nil, // 2564: google.cloud.compute.v1.SubnetworkAggregatedList.ItemsEntry + nil, // 2565: google.cloud.compute.v1.SubnetworkParams.ResourceManagerTagsEntry + nil, // 2566: google.cloud.compute.v1.TargetHttpProxyAggregatedList.ItemsEntry + nil, // 2567: google.cloud.compute.v1.TargetHttpsProxyAggregatedList.ItemsEntry + nil, // 2568: google.cloud.compute.v1.TargetInstanceAggregatedList.ItemsEntry + nil, // 2569: google.cloud.compute.v1.TargetPoolAggregatedList.ItemsEntry + nil, // 2570: google.cloud.compute.v1.TargetTcpProxyAggregatedList.ItemsEntry + nil, // 2571: google.cloud.compute.v1.TargetVpnGateway.LabelsEntry + nil, // 2572: google.cloud.compute.v1.TargetVpnGatewayAggregatedList.ItemsEntry + nil, // 2573: google.cloud.compute.v1.TargetVpnGatewayParams.ResourceManagerTagsEntry + nil, // 2574: google.cloud.compute.v1.UrlMapsAggregatedList.ItemsEntry + nil, // 2575: google.cloud.compute.v1.VmExtensionPolicy.ExtensionPoliciesEntry + nil, // 2576: google.cloud.compute.v1.VmExtensionPolicyLabelSelector.InclusionLabelsEntry + nil, // 2577: google.cloud.compute.v1.VpnGateway.LabelsEntry + nil, // 2578: google.cloud.compute.v1.VpnGatewayAggregatedList.ItemsEntry + nil, // 2579: google.cloud.compute.v1.VpnGatewayParams.ResourceManagerTagsEntry + nil, // 2580: google.cloud.compute.v1.VpnTunnel.LabelsEntry + nil, // 2581: google.cloud.compute.v1.VpnTunnelAggregatedList.ItemsEntry + nil, // 2582: google.cloud.compute.v1.VpnTunnelParams.ResourceManagerTagsEntry + nil, // 2583: google.cloud.compute.v1.WireGroup.EndpointsEntry + nil, // 2584: google.cloud.compute.v1.WireGroupEndpoint.InterconnectsEntry + nil, // 2585: google.cloud.compute.v1.ZoneSetLabelsRequest.LabelsEntry + (*anypb.Any)(nil), // 2586: google.protobuf.Any } var file_google_cloud_compute_v1_compute_proto_depIdxs = []int32{ - 1246, // 0: google.cloud.compute.v1.AbandonInstancesInstanceGroupManagerRequest.instance_group_managers_abandon_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersAbandonInstancesRequest - 1764, // 1: google.cloud.compute.v1.AbandonInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_abandon_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersAbandonInstancesRequest - 478, // 2: google.cloud.compute.v1.AcceleratorTopologiesInfo.accelerator_topology_infos:type_name -> google.cloud.compute.v1.AcceleratorTopologiesInfoAcceleratorTopologyInfo - 479, // 3: google.cloud.compute.v1.AcceleratorTopologiesInfoAcceleratorTopologyInfo.info_per_topology_states:type_name -> google.cloud.compute.v1.AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState - 803, // 4: google.cloud.compute.v1.AcceleratorType.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus - 2342, // 5: google.cloud.compute.v1.AcceleratorTypeAggregatedList.items:type_name -> google.cloud.compute.v1.AcceleratorTypeAggregatedList.ItemsEntry - 2320, // 6: google.cloud.compute.v1.AcceleratorTypeAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 480, // 7: google.cloud.compute.v1.AcceleratorTypeList.items:type_name -> google.cloud.compute.v1.AcceleratorType - 2320, // 8: google.cloud.compute.v1.AcceleratorTypeList.warning:type_name -> google.cloud.compute.v1.Warning - 480, // 9: google.cloud.compute.v1.AcceleratorTypesScopedList.accelerator_types:type_name -> google.cloud.compute.v1.AcceleratorType - 2320, // 10: google.cloud.compute.v1.AcceleratorTypesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 485, // 11: google.cloud.compute.v1.AddAccessConfigInstanceRequest.access_config_resource:type_name -> google.cloud.compute.v1.AccessConfig - 856, // 12: google.cloud.compute.v1.AddAssociationFirewallPolicyRequest.firewall_policy_association_resource:type_name -> google.cloud.compute.v1.FirewallPolicyAssociation - 856, // 13: google.cloud.compute.v1.AddAssociationNetworkFirewallPolicyRequest.firewall_policy_association_resource:type_name -> google.cloud.compute.v1.FirewallPolicyAssociation - 1930, // 14: google.cloud.compute.v1.AddAssociationOrganizationSecurityPolicyRequest.security_policy_association_resource:type_name -> google.cloud.compute.v1.SecurityPolicyAssociation - 856, // 15: google.cloud.compute.v1.AddAssociationRegionNetworkFirewallPolicyRequest.firewall_policy_association_resource:type_name -> google.cloud.compute.v1.FirewallPolicyAssociation - 2165, // 16: google.cloud.compute.v1.AddHealthCheckTargetPoolRequest.target_pools_add_health_check_request_resource:type_name -> google.cloud.compute.v1.TargetPoolsAddHealthCheckRequest - 2166, // 17: google.cloud.compute.v1.AddInstanceTargetPoolRequest.target_pools_add_instance_request_resource:type_name -> google.cloud.compute.v1.TargetPoolsAddInstanceRequest - 1264, // 18: google.cloud.compute.v1.AddInstancesInstanceGroupRequest.instance_groups_add_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupsAddInstancesRequest - 1582, // 19: google.cloud.compute.v1.AddNetworkInterfaceInstanceRequest.network_interface_resource:type_name -> google.cloud.compute.v1.NetworkInterface - 1609, // 20: google.cloud.compute.v1.AddNodesNodeGroupRequest.node_groups_add_nodes_request_resource:type_name -> google.cloud.compute.v1.NodeGroupsAddNodesRequest - 858, // 21: google.cloud.compute.v1.AddPacketMirroringRuleNetworkFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 1597, // 22: google.cloud.compute.v1.AddPeeringNetworkRequest.networks_add_peering_request_resource:type_name -> google.cloud.compute.v1.NetworksAddPeeringRequest - 824, // 23: google.cloud.compute.v1.AddResourcePoliciesDiskRequest.disks_add_resource_policies_request_resource:type_name -> google.cloud.compute.v1.DisksAddResourcePoliciesRequest - 1287, // 24: google.cloud.compute.v1.AddResourcePoliciesInstanceRequest.instances_add_resource_policies_request_resource:type_name -> google.cloud.compute.v1.InstancesAddResourcePoliciesRequest - 1755, // 25: google.cloud.compute.v1.AddResourcePoliciesRegionDiskRequest.region_disks_add_resource_policies_request_resource:type_name -> google.cloud.compute.v1.RegionDisksAddResourcePoliciesRequest - 858, // 26: google.cloud.compute.v1.AddRuleFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 858, // 27: google.cloud.compute.v1.AddRuleNetworkFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 1935, // 28: google.cloud.compute.v1.AddRuleOrganizationSecurityPolicyRequest.security_policy_rule_resource:type_name -> google.cloud.compute.v1.SecurityPolicyRule - 858, // 29: google.cloud.compute.v1.AddRuleRegionNetworkFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 1935, // 30: google.cloud.compute.v1.AddRuleRegionSecurityPolicyRequest.security_policy_rule_resource:type_name -> google.cloud.compute.v1.SecurityPolicyRule - 1935, // 31: google.cloud.compute.v1.AddRuleSecurityPolicyRequest.security_policy_rule_resource:type_name -> google.cloud.compute.v1.SecurityPolicyRule - 2069, // 32: google.cloud.compute.v1.AddSignedUrlKeyBackendBucketRequest.signed_url_key_resource:type_name -> google.cloud.compute.v1.SignedUrlKey - 2069, // 33: google.cloud.compute.v1.AddSignedUrlKeyBackendServiceRequest.signed_url_key_resource:type_name -> google.cloud.compute.v1.SignedUrlKey - 2343, // 34: google.cloud.compute.v1.Address.labels:type_name -> google.cloud.compute.v1.Address.LabelsEntry - 2344, // 35: google.cloud.compute.v1.AddressAggregatedList.items:type_name -> google.cloud.compute.v1.AddressAggregatedList.ItemsEntry - 2320, // 36: google.cloud.compute.v1.AddressAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 509, // 37: google.cloud.compute.v1.AddressList.items:type_name -> google.cloud.compute.v1.Address - 2320, // 38: google.cloud.compute.v1.AddressList.warning:type_name -> google.cloud.compute.v1.Warning - 509, // 39: google.cloud.compute.v1.AddressesScopedList.addresses:type_name -> google.cloud.compute.v1.Address - 2320, // 40: google.cloud.compute.v1.AddressesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 567, // 41: google.cloud.compute.v1.AllocationAggregateReservation.in_use_resources:type_name -> google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfo - 567, // 42: google.cloud.compute.v1.AllocationAggregateReservation.reserved_resources:type_name -> google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfo - 568, // 43: google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfo.accelerator:type_name -> google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfoAccelerator - 571, // 44: google.cloud.compute.v1.AllocationResourceStatus.health_info:type_name -> google.cloud.compute.v1.AllocationResourceStatusHealthInfo - 1076, // 45: google.cloud.compute.v1.AllocationResourceStatus.reservation_maintenance:type_name -> google.cloud.compute.v1.GroupMaintenanceInfo - 572, // 46: google.cloud.compute.v1.AllocationResourceStatus.specific_sku_allocation:type_name -> google.cloud.compute.v1.AllocationResourceStatusSpecificSKUAllocation - 2345, // 47: google.cloud.compute.v1.AllocationResourceStatusSpecificSKUAllocation.utilizations:type_name -> google.cloud.compute.v1.AllocationResourceStatusSpecificSKUAllocation.UtilizationsEntry - 476, // 48: google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties.guest_accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig - 573, // 49: google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties.local_ssds:type_name -> google.cloud.compute.v1.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk - 574, // 50: google.cloud.compute.v1.AllocationSpecificSKUReservation.instance_properties:type_name -> google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties - 1247, // 51: google.cloud.compute.v1.ApplyUpdatesToInstancesInstanceGroupManagerRequest.instance_group_managers_apply_updates_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersApplyUpdatesRequest - 1765, // 52: google.cloud.compute.v1.ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_apply_updates_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersApplyUpdatesRequest - 585, // 53: google.cloud.compute.v1.AttachDiskInstanceRequest.attached_disk_resource:type_name -> google.cloud.compute.v1.AttachedDisk - 1071, // 54: google.cloud.compute.v1.AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest.global_network_endpoint_groups_attach_endpoints_request_resource:type_name -> google.cloud.compute.v1.GlobalNetworkEndpointGroupsAttachEndpointsRequest - 1575, // 55: google.cloud.compute.v1.AttachNetworkEndpointsNetworkEndpointGroupRequest.network_endpoint_groups_attach_endpoints_request_resource:type_name -> google.cloud.compute.v1.NetworkEndpointGroupsAttachEndpointsRequest - 1782, // 56: google.cloud.compute.v1.AttachNetworkEndpointsRegionNetworkEndpointGroupRequest.region_network_endpoint_groups_attach_endpoints_request_resource:type_name -> google.cloud.compute.v1.RegionNetworkEndpointGroupsAttachEndpointsRequest - 695, // 57: google.cloud.compute.v1.AttachedDisk.disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 1080, // 58: google.cloud.compute.v1.AttachedDisk.guest_os_features:type_name -> google.cloud.compute.v1.GuestOsFeature - 586, // 59: google.cloud.compute.v1.AttachedDisk.initialize_params:type_name -> google.cloud.compute.v1.AttachedDiskInitializeParams - 1124, // 60: google.cloud.compute.v1.AttachedDisk.shielded_instance_initial_state:type_name -> google.cloud.compute.v1.InitialStateConfig - 2346, // 61: google.cloud.compute.v1.AttachedDiskInitializeParams.labels:type_name -> google.cloud.compute.v1.AttachedDiskInitializeParams.LabelsEntry - 2347, // 62: google.cloud.compute.v1.AttachedDiskInitializeParams.resource_manager_tags:type_name -> google.cloud.compute.v1.AttachedDiskInitializeParams.ResourceManagerTagsEntry - 695, // 63: google.cloud.compute.v1.AttachedDiskInitializeParams.source_image_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 695, // 64: google.cloud.compute.v1.AttachedDiskInitializeParams.source_snapshot_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 588, // 65: google.cloud.compute.v1.AuditConfig.audit_log_configs:type_name -> google.cloud.compute.v1.AuditLogConfig - 594, // 66: google.cloud.compute.v1.Autoscaler.autoscaling_policy:type_name -> google.cloud.compute.v1.AutoscalingPolicy - 2348, // 67: google.cloud.compute.v1.Autoscaler.scaling_schedule_status:type_name -> google.cloud.compute.v1.Autoscaler.ScalingScheduleStatusEntry - 592, // 68: google.cloud.compute.v1.Autoscaler.status_details:type_name -> google.cloud.compute.v1.AutoscalerStatusDetails - 2349, // 69: google.cloud.compute.v1.AutoscalerAggregatedList.items:type_name -> google.cloud.compute.v1.AutoscalerAggregatedList.ItemsEntry - 2320, // 70: google.cloud.compute.v1.AutoscalerAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 589, // 71: google.cloud.compute.v1.AutoscalerList.items:type_name -> google.cloud.compute.v1.Autoscaler - 2320, // 72: google.cloud.compute.v1.AutoscalerList.warning:type_name -> google.cloud.compute.v1.Warning - 589, // 73: google.cloud.compute.v1.AutoscalersScopedList.autoscalers:type_name -> google.cloud.compute.v1.Autoscaler - 2320, // 74: google.cloud.compute.v1.AutoscalersScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 595, // 75: google.cloud.compute.v1.AutoscalingPolicy.cpu_utilization:type_name -> google.cloud.compute.v1.AutoscalingPolicyCpuUtilization - 596, // 76: google.cloud.compute.v1.AutoscalingPolicy.custom_metric_utilizations:type_name -> google.cloud.compute.v1.AutoscalingPolicyCustomMetricUtilization - 597, // 77: google.cloud.compute.v1.AutoscalingPolicy.load_balancing_utilization:type_name -> google.cloud.compute.v1.AutoscalingPolicyLoadBalancingUtilization - 598, // 78: google.cloud.compute.v1.AutoscalingPolicy.scale_in_control:type_name -> google.cloud.compute.v1.AutoscalingPolicyScaleInControl - 2350, // 79: google.cloud.compute.v1.AutoscalingPolicy.scaling_schedules:type_name -> google.cloud.compute.v1.AutoscalingPolicy.ScalingSchedulesEntry - 862, // 80: google.cloud.compute.v1.AutoscalingPolicyScaleInControl.max_scaled_in_replicas:type_name -> google.cloud.compute.v1.FixedOrPercent - 610, // 81: google.cloud.compute.v1.Backend.custom_metrics:type_name -> google.cloud.compute.v1.BackendCustomMetric - 601, // 82: google.cloud.compute.v1.Backend.orchestration_info:type_name -> google.cloud.compute.v1.BackendBackendOrchestrationInfo - 603, // 83: google.cloud.compute.v1.BackendBucket.cdn_policy:type_name -> google.cloud.compute.v1.BackendBucketCdnPolicy - 608, // 84: google.cloud.compute.v1.BackendBucket.params:type_name -> google.cloud.compute.v1.BackendBucketParams - 609, // 85: google.cloud.compute.v1.BackendBucket.used_by:type_name -> google.cloud.compute.v1.BackendBucketUsedBy - 604, // 86: google.cloud.compute.v1.BackendBucketCdnPolicy.bypass_cache_on_request_headers:type_name -> google.cloud.compute.v1.BackendBucketCdnPolicyBypassCacheOnRequestHeader - 605, // 87: google.cloud.compute.v1.BackendBucketCdnPolicy.cache_key_policy:type_name -> google.cloud.compute.v1.BackendBucketCdnPolicyCacheKeyPolicy - 606, // 88: google.cloud.compute.v1.BackendBucketCdnPolicy.negative_caching_policy:type_name -> google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicy - 602, // 89: google.cloud.compute.v1.BackendBucketList.items:type_name -> google.cloud.compute.v1.BackendBucket - 2320, // 90: google.cloud.compute.v1.BackendBucketList.warning:type_name -> google.cloud.compute.v1.Warning - 2351, // 91: google.cloud.compute.v1.BackendBucketParams.resource_manager_tags:type_name -> google.cloud.compute.v1.BackendBucketParams.ResourceManagerTagsEntry - 600, // 92: google.cloud.compute.v1.BackendService.backends:type_name -> google.cloud.compute.v1.Backend - 613, // 93: google.cloud.compute.v1.BackendService.cdn_policy:type_name -> google.cloud.compute.v1.BackendServiceCdnPolicy - 667, // 94: google.cloud.compute.v1.BackendService.circuit_breakers:type_name -> google.cloud.compute.v1.CircuitBreakers - 681, // 95: google.cloud.compute.v1.BackendService.connection_draining:type_name -> google.cloud.compute.v1.ConnectionDraining - 616, // 96: google.cloud.compute.v1.BackendService.connection_tracking_policy:type_name -> google.cloud.compute.v1.BackendServiceConnectionTrackingPolicy - 682, // 97: google.cloud.compute.v1.BackendService.consistent_hash:type_name -> google.cloud.compute.v1.ConsistentHashLoadBalancerSettings - 617, // 98: google.cloud.compute.v1.BackendService.custom_metrics:type_name -> google.cloud.compute.v1.BackendServiceCustomMetric - 618, // 99: google.cloud.compute.v1.BackendService.failover_policy:type_name -> google.cloud.compute.v1.BackendServiceFailoverPolicy - 620, // 100: google.cloud.compute.v1.BackendService.ha_policy:type_name -> google.cloud.compute.v1.BackendServiceHAPolicy - 624, // 101: google.cloud.compute.v1.BackendService.iap:type_name -> google.cloud.compute.v1.BackendServiceIAP - 627, // 102: google.cloud.compute.v1.BackendService.locality_lb_policies:type_name -> google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfig - 630, // 103: google.cloud.compute.v1.BackendService.log_config:type_name -> google.cloud.compute.v1.BackendServiceLogConfig - 833, // 104: google.cloud.compute.v1.BackendService.max_stream_duration:type_name -> google.cloud.compute.v1.Duration - 2352, // 105: google.cloud.compute.v1.BackendService.metadatas:type_name -> google.cloud.compute.v1.BackendService.MetadatasEntry - 631, // 106: google.cloud.compute.v1.BackendService.network_pass_through_lb_traffic_policy:type_name -> google.cloud.compute.v1.BackendServiceNetworkPassThroughLbTrafficPolicy - 633, // 107: google.cloud.compute.v1.BackendService.orchestration_info:type_name -> google.cloud.compute.v1.BackendServiceOrchestrationInfo - 1635, // 108: google.cloud.compute.v1.BackendService.outlier_detection:type_name -> google.cloud.compute.v1.OutlierDetection - 634, // 109: google.cloud.compute.v1.BackendService.params:type_name -> google.cloud.compute.v1.BackendServiceParams - 1952, // 110: google.cloud.compute.v1.BackendService.security_settings:type_name -> google.cloud.compute.v1.SecuritySettings - 623, // 111: google.cloud.compute.v1.BackendService.strong_session_affinity_cookie:type_name -> google.cloud.compute.v1.BackendServiceHttpCookie - 2137, // 112: google.cloud.compute.v1.BackendService.subsetting:type_name -> google.cloud.compute.v1.Subsetting - 636, // 113: google.cloud.compute.v1.BackendService.tls_settings:type_name -> google.cloud.compute.v1.BackendServiceTlsSettings - 638, // 114: google.cloud.compute.v1.BackendService.used_by:type_name -> google.cloud.compute.v1.BackendServiceUsedBy - 2353, // 115: google.cloud.compute.v1.BackendServiceAggregatedList.items:type_name -> google.cloud.compute.v1.BackendServiceAggregatedList.ItemsEntry - 2320, // 116: google.cloud.compute.v1.BackendServiceAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 614, // 117: google.cloud.compute.v1.BackendServiceCdnPolicy.bypass_cache_on_request_headers:type_name -> google.cloud.compute.v1.BackendServiceCdnPolicyBypassCacheOnRequestHeader - 660, // 118: google.cloud.compute.v1.BackendServiceCdnPolicy.cache_key_policy:type_name -> google.cloud.compute.v1.CacheKeyPolicy - 615, // 119: google.cloud.compute.v1.BackendServiceCdnPolicy.negative_caching_policy:type_name -> google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicy - 2354, // 120: google.cloud.compute.v1.BackendServiceGroupHealth.annotations:type_name -> google.cloud.compute.v1.BackendServiceGroupHealth.AnnotationsEntry - 1103, // 121: google.cloud.compute.v1.BackendServiceGroupHealth.health_status:type_name -> google.cloud.compute.v1.HealthStatus - 621, // 122: google.cloud.compute.v1.BackendServiceHAPolicy.leader:type_name -> google.cloud.compute.v1.BackendServiceHAPolicyLeader - 622, // 123: google.cloud.compute.v1.BackendServiceHAPolicyLeader.network_endpoint:type_name -> google.cloud.compute.v1.BackendServiceHAPolicyLeaderNetworkEndpoint - 833, // 124: google.cloud.compute.v1.BackendServiceHttpCookie.ttl:type_name -> google.cloud.compute.v1.Duration - 611, // 125: google.cloud.compute.v1.BackendServiceList.items:type_name -> google.cloud.compute.v1.BackendService - 2320, // 126: google.cloud.compute.v1.BackendServiceList.warning:type_name -> google.cloud.compute.v1.Warning - 611, // 127: google.cloud.compute.v1.BackendServiceListUsable.items:type_name -> google.cloud.compute.v1.BackendService - 2320, // 128: google.cloud.compute.v1.BackendServiceListUsable.warning:type_name -> google.cloud.compute.v1.Warning - 628, // 129: google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfig.custom_policy:type_name -> google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy - 629, // 130: google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfig.policy:type_name -> google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfigPolicy - 632, // 131: google.cloud.compute.v1.BackendServiceNetworkPassThroughLbTrafficPolicy.zonal_affinity:type_name -> google.cloud.compute.v1.BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity - 2355, // 132: google.cloud.compute.v1.BackendServiceParams.resource_manager_tags:type_name -> google.cloud.compute.v1.BackendServiceParams.ResourceManagerTagsEntry - 637, // 133: google.cloud.compute.v1.BackendServiceTlsSettings.subject_alt_names:type_name -> google.cloud.compute.v1.BackendServiceTlsSettingsSubjectAltName - 611, // 134: google.cloud.compute.v1.BackendServicesScopedList.backend_services:type_name -> google.cloud.compute.v1.BackendService - 2320, // 135: google.cloud.compute.v1.BackendServicesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 642, // 136: google.cloud.compute.v1.BfdStatus.control_packet_counts:type_name -> google.cloud.compute.v1.BfdStatusPacketCounts - 1636, // 137: google.cloud.compute.v1.BfdStatus.control_packet_intervals:type_name -> google.cloud.compute.v1.PacketIntervals - 640, // 138: google.cloud.compute.v1.BfdStatus.rx_packet:type_name -> google.cloud.compute.v1.BfdPacket - 640, // 139: google.cloud.compute.v1.BfdStatus.tx_packet:type_name -> google.cloud.compute.v1.BfdPacket - 644, // 140: google.cloud.compute.v1.BgpRoute.as_paths:type_name -> google.cloud.compute.v1.BgpRouteAsPath - 645, // 141: google.cloud.compute.v1.BgpRoute.destination:type_name -> google.cloud.compute.v1.BgpRouteNetworkLayerReachabilityInformation - 843, // 142: google.cloud.compute.v1.Binding.condition:type_name -> google.cloud.compute.v1.Expr - 648, // 143: google.cloud.compute.v1.BulkInsertDiskRequest.bulk_insert_disk_resource_resource:type_name -> google.cloud.compute.v1.BulkInsertDiskResource - 650, // 144: google.cloud.compute.v1.BulkInsertInstanceRequest.bulk_insert_instance_resource_resource:type_name -> google.cloud.compute.v1.BulkInsertInstanceResource - 1214, // 145: google.cloud.compute.v1.BulkInsertInstanceResource.instance_flexibility_policy:type_name -> google.cloud.compute.v1.InstanceFlexibilityPolicy - 1277, // 146: google.cloud.compute.v1.BulkInsertInstanceResource.instance_properties:type_name -> google.cloud.compute.v1.InstanceProperties - 1528, // 147: google.cloud.compute.v1.BulkInsertInstanceResource.location_policy:type_name -> google.cloud.compute.v1.LocationPolicy - 2356, // 148: google.cloud.compute.v1.BulkInsertInstanceResource.per_instance_properties:type_name -> google.cloud.compute.v1.BulkInsertInstanceResource.PerInstancePropertiesEntry - 648, // 149: google.cloud.compute.v1.BulkInsertRegionDiskRequest.bulk_insert_disk_resource_resource:type_name -> google.cloud.compute.v1.BulkInsertDiskResource - 650, // 150: google.cloud.compute.v1.BulkInsertRegionInstanceRequest.bulk_insert_instance_resource_resource:type_name -> google.cloud.compute.v1.BulkInsertInstanceResource - 657, // 151: google.cloud.compute.v1.BulkSetLabelsDiskRequest.bulk_zone_set_labels_request_resource:type_name -> google.cloud.compute.v1.BulkZoneSetLabelsRequest - 2357, // 152: google.cloud.compute.v1.BulkSetLabelsRequest.labels:type_name -> google.cloud.compute.v1.BulkSetLabelsRequest.LabelsEntry - 656, // 153: google.cloud.compute.v1.BulkZoneSetLabelsRequest.requests:type_name -> google.cloud.compute.v1.BulkSetLabelsRequest - 2358, // 154: google.cloud.compute.v1.CalendarModeAdviceRequest.future_resources_specs:type_name -> google.cloud.compute.v1.CalendarModeAdviceRequest.FutureResourcesSpecsEntry - 664, // 155: google.cloud.compute.v1.CalendarModeAdviceResponse.recommendations:type_name -> google.cloud.compute.v1.CalendarModeRecommendation - 661, // 156: google.cloud.compute.v1.CalendarModeAdviceRpcRequest.calendar_mode_advice_request_resource:type_name -> google.cloud.compute.v1.CalendarModeAdviceRequest - 2359, // 157: google.cloud.compute.v1.CalendarModeRecommendation.recommendations_per_spec:type_name -> google.cloud.compute.v1.CalendarModeRecommendation.RecommendationsPerSpecEntry - 1391, // 158: google.cloud.compute.v1.Commitment.license_resource:type_name -> google.cloud.compute.v1.LicenseResourceCommitment - 1812, // 159: google.cloud.compute.v1.Commitment.reservations:type_name -> google.cloud.compute.v1.Reservation - 674, // 160: google.cloud.compute.v1.Commitment.resource_status:type_name -> google.cloud.compute.v1.CommitmentResourceStatus - 1849, // 161: google.cloud.compute.v1.Commitment.resources:type_name -> google.cloud.compute.v1.ResourceCommitment - 2360, // 162: google.cloud.compute.v1.CommitmentAggregatedList.items:type_name -> google.cloud.compute.v1.CommitmentAggregatedList.ItemsEntry - 2320, // 163: google.cloud.compute.v1.CommitmentAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 671, // 164: google.cloud.compute.v1.CommitmentList.items:type_name -> google.cloud.compute.v1.Commitment - 2320, // 165: google.cloud.compute.v1.CommitmentList.warning:type_name -> google.cloud.compute.v1.Warning - 671, // 166: google.cloud.compute.v1.CommitmentsScopedList.commitments:type_name -> google.cloud.compute.v1.Commitment - 2320, // 167: google.cloud.compute.v1.CommitmentsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2361, // 168: google.cloud.compute.v1.CompositeHealthCheckAggregatedList.items:type_name -> google.cloud.compute.v1.CompositeHealthCheckAggregatedList.ItemsEntry - 2320, // 169: google.cloud.compute.v1.CompositeHealthCheckAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 676, // 170: google.cloud.compute.v1.CompositeHealthCheckList.items:type_name -> google.cloud.compute.v1.CompositeHealthCheck - 2320, // 171: google.cloud.compute.v1.CompositeHealthCheckList.warning:type_name -> google.cloud.compute.v1.Warning - 676, // 172: google.cloud.compute.v1.CompositeHealthChecksScopedList.composite_health_checks:type_name -> google.cloud.compute.v1.CompositeHealthCheck - 2320, // 173: google.cloud.compute.v1.CompositeHealthChecksScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 683, // 174: google.cloud.compute.v1.ConsistentHashLoadBalancerSettings.http_cookie:type_name -> google.cloud.compute.v1.ConsistentHashLoadBalancerSettingsHttpCookie - 833, // 175: google.cloud.compute.v1.ConsistentHashLoadBalancerSettingsHttpCookie.ttl:type_name -> google.cloud.compute.v1.Duration - 1248, // 176: google.cloud.compute.v1.CreateInstancesInstanceGroupManagerRequest.instance_group_managers_create_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersCreateInstancesRequest - 1766, // 177: google.cloud.compute.v1.CreateInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_create_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersCreateInstancesRequest - 1362, // 178: google.cloud.compute.v1.CreateMembersInterconnectGroupRequest.interconnect_groups_create_members_request_resource:type_name -> google.cloud.compute.v1.InterconnectGroupsCreateMembersRequest - 2072, // 179: google.cloud.compute.v1.CreateSnapshotDiskRequest.snapshot_resource:type_name -> google.cloud.compute.v1.Snapshot - 2072, // 180: google.cloud.compute.v1.CreateSnapshotRegionDiskRequest.snapshot_resource:type_name -> google.cloud.compute.v1.Snapshot - 691, // 181: google.cloud.compute.v1.CrossSiteNetworkList.items:type_name -> google.cloud.compute.v1.CrossSiteNetwork - 2320, // 182: google.cloud.compute.v1.CrossSiteNetworkList.warning:type_name -> google.cloud.compute.v1.Warning - 694, // 183: google.cloud.compute.v1.CustomErrorResponsePolicy.error_response_rules:type_name -> google.cloud.compute.v1.CustomErrorResponsePolicyCustomErrorResponseRule - 695, // 184: google.cloud.compute.v1.CustomerEncryptionKeyProtectedDisk.disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 1249, // 185: google.cloud.compute.v1.DeleteInstancesInstanceGroupManagerRequest.instance_group_managers_delete_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersDeleteInstancesRequest - 1767, // 186: google.cloud.compute.v1.DeleteInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_delete_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersDeleteInstancesRequest - 1610, // 187: google.cloud.compute.v1.DeleteNodesNodeGroupRequest.node_groups_delete_nodes_request_resource:type_name -> google.cloud.compute.v1.NodeGroupsDeleteNodesRequest - 1250, // 188: google.cloud.compute.v1.DeletePerInstanceConfigsInstanceGroupManagerRequest.instance_group_managers_delete_per_instance_configs_req_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersDeletePerInstanceConfigsReq - 1760, // 189: google.cloud.compute.v1.DeletePerInstanceConfigsRegionInstanceGroupManagerRequest.region_instance_group_manager_delete_instance_config_req_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagerDeleteInstanceConfigReq - 803, // 190: google.cloud.compute.v1.DeprecateImageRequest.deprecation_status_resource:type_name -> google.cloud.compute.v1.DeprecationStatus - 1072, // 191: google.cloud.compute.v1.DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest.global_network_endpoint_groups_detach_endpoints_request_resource:type_name -> google.cloud.compute.v1.GlobalNetworkEndpointGroupsDetachEndpointsRequest - 1576, // 192: google.cloud.compute.v1.DetachNetworkEndpointsNetworkEndpointGroupRequest.network_endpoint_groups_detach_endpoints_request_resource:type_name -> google.cloud.compute.v1.NetworkEndpointGroupsDetachEndpointsRequest - 1783, // 193: google.cloud.compute.v1.DetachNetworkEndpointsRegionNetworkEndpointGroupRequest.region_network_endpoint_groups_detach_endpoints_request_resource:type_name -> google.cloud.compute.v1.RegionNetworkEndpointGroupsDetachEndpointsRequest - 1730, // 194: google.cloud.compute.v1.DisableXpnResourceProjectRequest.projects_disable_xpn_resource_request_resource:type_name -> google.cloud.compute.v1.ProjectsDisableXpnResourceRequest - 812, // 195: google.cloud.compute.v1.Disk.async_primary_disk:type_name -> google.cloud.compute.v1.DiskAsyncReplication - 2362, // 196: google.cloud.compute.v1.Disk.async_secondary_disks:type_name -> google.cloud.compute.v1.Disk.AsyncSecondaryDisksEntry - 695, // 197: google.cloud.compute.v1.Disk.disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 1080, // 198: google.cloud.compute.v1.Disk.guest_os_features:type_name -> google.cloud.compute.v1.GuestOsFeature - 2363, // 199: google.cloud.compute.v1.Disk.labels:type_name -> google.cloud.compute.v1.Disk.LabelsEntry - 817, // 200: google.cloud.compute.v1.Disk.params:type_name -> google.cloud.compute.v1.DiskParams - 818, // 201: google.cloud.compute.v1.Disk.resource_status:type_name -> google.cloud.compute.v1.DiskResourceStatus - 695, // 202: google.cloud.compute.v1.Disk.source_image_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 695, // 203: google.cloud.compute.v1.Disk.source_snapshot_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 2364, // 204: google.cloud.compute.v1.DiskAggregatedList.items:type_name -> google.cloud.compute.v1.DiskAggregatedList.ItemsEntry - 2320, // 205: google.cloud.compute.v1.DiskAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 812, // 206: google.cloud.compute.v1.DiskAsyncReplicationList.async_replication_disk:type_name -> google.cloud.compute.v1.DiskAsyncReplication - 810, // 207: google.cloud.compute.v1.DiskList.items:type_name -> google.cloud.compute.v1.Disk - 2320, // 208: google.cloud.compute.v1.DiskList.warning:type_name -> google.cloud.compute.v1.Warning - 2365, // 209: google.cloud.compute.v1.DiskParams.resource_manager_tags:type_name -> google.cloud.compute.v1.DiskParams.ResourceManagerTagsEntry - 819, // 210: google.cloud.compute.v1.DiskResourceStatus.async_primary_disk:type_name -> google.cloud.compute.v1.DiskResourceStatusAsyncReplicationStatus - 2366, // 211: google.cloud.compute.v1.DiskResourceStatus.async_secondary_disks:type_name -> google.cloud.compute.v1.DiskResourceStatus.AsyncSecondaryDisksEntry - 803, // 212: google.cloud.compute.v1.DiskType.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus - 2367, // 213: google.cloud.compute.v1.DiskTypeAggregatedList.items:type_name -> google.cloud.compute.v1.DiskTypeAggregatedList.ItemsEntry - 2320, // 214: google.cloud.compute.v1.DiskTypeAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 820, // 215: google.cloud.compute.v1.DiskTypeList.items:type_name -> google.cloud.compute.v1.DiskType - 2320, // 216: google.cloud.compute.v1.DiskTypeList.warning:type_name -> google.cloud.compute.v1.Warning - 820, // 217: google.cloud.compute.v1.DiskTypesScopedList.disk_types:type_name -> google.cloud.compute.v1.DiskType - 2320, // 218: google.cloud.compute.v1.DiskTypesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 810, // 219: google.cloud.compute.v1.DisksScopedList.disks:type_name -> google.cloud.compute.v1.Disk - 2320, // 220: google.cloud.compute.v1.DisksScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 832, // 221: google.cloud.compute.v1.DistributionPolicy.zones:type_name -> google.cloud.compute.v1.DistributionPolicyZoneConfiguration - 1731, // 222: google.cloud.compute.v1.EnableXpnResourceProjectRequest.projects_enable_xpn_resource_request_resource:type_name -> google.cloud.compute.v1.ProjectsEnableXpnResourceRequest - 839, // 223: google.cloud.compute.v1.Error.errors:type_name -> google.cloud.compute.v1.Errors - 838, // 224: google.cloud.compute.v1.ErrorDetails.error_info:type_name -> google.cloud.compute.v1.ErrorInfo - 1105, // 225: google.cloud.compute.v1.ErrorDetails.help:type_name -> google.cloud.compute.v1.Help - 1527, // 226: google.cloud.compute.v1.ErrorDetails.localized_message:type_name -> google.cloud.compute.v1.LocalizedMessage - 1745, // 227: google.cloud.compute.v1.ErrorDetails.quota_info:type_name -> google.cloud.compute.v1.QuotaExceededInfo - 2368, // 228: google.cloud.compute.v1.ErrorInfo.metadatas:type_name -> google.cloud.compute.v1.ErrorInfo.MetadatasEntry - 837, // 229: google.cloud.compute.v1.Errors.error_details:type_name -> google.cloud.compute.v1.ErrorDetails - 840, // 230: google.cloud.compute.v1.ExchangedPeeringRoutesList.items:type_name -> google.cloud.compute.v1.ExchangedPeeringRoute - 2320, // 231: google.cloud.compute.v1.ExchangedPeeringRoutesList.warning:type_name -> google.cloud.compute.v1.Warning - 2133, // 232: google.cloud.compute.v1.ExpandIpCidrRangeSubnetworkRequest.subnetworks_expand_ip_cidr_range_request_resource:type_name -> google.cloud.compute.v1.SubnetworksExpandIpCidrRangeRequest - 845, // 233: google.cloud.compute.v1.ExternalVpnGateway.interfaces:type_name -> google.cloud.compute.v1.ExternalVpnGatewayInterface - 2369, // 234: google.cloud.compute.v1.ExternalVpnGateway.labels:type_name -> google.cloud.compute.v1.ExternalVpnGateway.LabelsEntry - 847, // 235: google.cloud.compute.v1.ExternalVpnGateway.params:type_name -> google.cloud.compute.v1.ExternalVpnGatewayParams - 844, // 236: google.cloud.compute.v1.ExternalVpnGatewayList.items:type_name -> google.cloud.compute.v1.ExternalVpnGateway - 2320, // 237: google.cloud.compute.v1.ExternalVpnGatewayList.warning:type_name -> google.cloud.compute.v1.Warning - 2370, // 238: google.cloud.compute.v1.ExternalVpnGatewayParams.resource_manager_tags:type_name -> google.cloud.compute.v1.ExternalVpnGatewayParams.ResourceManagerTagsEntry - 576, // 239: google.cloud.compute.v1.Firewall.allowed:type_name -> google.cloud.compute.v1.Allowed - 801, // 240: google.cloud.compute.v1.Firewall.denied:type_name -> google.cloud.compute.v1.Denied - 851, // 241: google.cloud.compute.v1.Firewall.log_config:type_name -> google.cloud.compute.v1.FirewallLogConfig - 852, // 242: google.cloud.compute.v1.Firewall.params:type_name -> google.cloud.compute.v1.FirewallParams - 849, // 243: google.cloud.compute.v1.FirewallList.items:type_name -> google.cloud.compute.v1.Firewall - 2320, // 244: google.cloud.compute.v1.FirewallList.warning:type_name -> google.cloud.compute.v1.Warning - 2371, // 245: google.cloud.compute.v1.FirewallParams.resource_manager_tags:type_name -> google.cloud.compute.v1.FirewallParams.ResourceManagerTagsEntry - 856, // 246: google.cloud.compute.v1.FirewallPoliciesListAssociationsResponse.associations:type_name -> google.cloud.compute.v1.FirewallPolicyAssociation - 855, // 247: google.cloud.compute.v1.FirewallPoliciesScopedList.firewall_policies:type_name -> google.cloud.compute.v1.FirewallPolicy - 2320, // 248: google.cloud.compute.v1.FirewallPoliciesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 856, // 249: google.cloud.compute.v1.FirewallPolicy.associations:type_name -> google.cloud.compute.v1.FirewallPolicyAssociation - 858, // 250: google.cloud.compute.v1.FirewallPolicy.packet_mirroring_rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 858, // 251: google.cloud.compute.v1.FirewallPolicy.rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 855, // 252: google.cloud.compute.v1.FirewallPolicyList.items:type_name -> google.cloud.compute.v1.FirewallPolicy - 2320, // 253: google.cloud.compute.v1.FirewallPolicyList.warning:type_name -> google.cloud.compute.v1.Warning - 859, // 254: google.cloud.compute.v1.FirewallPolicyRule.match:type_name -> google.cloud.compute.v1.FirewallPolicyRuleMatcher - 861, // 255: google.cloud.compute.v1.FirewallPolicyRule.target_secure_tags:type_name -> google.cloud.compute.v1.FirewallPolicyRuleSecureTag - 860, // 256: google.cloud.compute.v1.FirewallPolicyRuleMatcher.layer4_configs:type_name -> google.cloud.compute.v1.FirewallPolicyRuleMatcherLayer4Config - 861, // 257: google.cloud.compute.v1.FirewallPolicyRuleMatcher.src_secure_tags:type_name -> google.cloud.compute.v1.FirewallPolicyRuleSecureTag - 2372, // 258: google.cloud.compute.v1.ForwardingRule.labels:type_name -> google.cloud.compute.v1.ForwardingRule.LabelsEntry - 1546, // 259: google.cloud.compute.v1.ForwardingRule.metadata_filters:type_name -> google.cloud.compute.v1.MetadataFilter - 868, // 260: google.cloud.compute.v1.ForwardingRule.service_directory_registrations:type_name -> google.cloud.compute.v1.ForwardingRuleServiceDirectoryRegistration - 2373, // 261: google.cloud.compute.v1.ForwardingRuleAggregatedList.items:type_name -> google.cloud.compute.v1.ForwardingRuleAggregatedList.ItemsEntry - 2320, // 262: google.cloud.compute.v1.ForwardingRuleAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 864, // 263: google.cloud.compute.v1.ForwardingRuleList.items:type_name -> google.cloud.compute.v1.ForwardingRule - 2320, // 264: google.cloud.compute.v1.ForwardingRuleList.warning:type_name -> google.cloud.compute.v1.Warning - 864, // 265: google.cloud.compute.v1.ForwardingRulesScopedList.forwarding_rules:type_name -> google.cloud.compute.v1.ForwardingRule - 2320, // 266: google.cloud.compute.v1.ForwardingRulesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 566, // 267: google.cloud.compute.v1.FutureReservation.aggregate_reservation:type_name -> google.cloud.compute.v1.AllocationAggregateReservation - 833, // 268: google.cloud.compute.v1.FutureReservation.auto_created_reservations_duration:type_name -> google.cloud.compute.v1.Duration - 871, // 269: google.cloud.compute.v1.FutureReservation.commitment_info:type_name -> google.cloud.compute.v1.FutureReservationCommitmentInfo - 2063, // 270: google.cloud.compute.v1.FutureReservation.share_settings:type_name -> google.cloud.compute.v1.ShareSettings - 872, // 271: google.cloud.compute.v1.FutureReservation.specific_sku_properties:type_name -> google.cloud.compute.v1.FutureReservationSpecificSKUProperties - 873, // 272: google.cloud.compute.v1.FutureReservation.status:type_name -> google.cloud.compute.v1.FutureReservationStatus - 878, // 273: google.cloud.compute.v1.FutureReservation.time_window:type_name -> google.cloud.compute.v1.FutureReservationTimeWindow - 574, // 274: google.cloud.compute.v1.FutureReservationSpecificSKUProperties.instance_properties:type_name -> google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties - 874, // 275: google.cloud.compute.v1.FutureReservationStatus.existing_matching_usage_info:type_name -> google.cloud.compute.v1.FutureReservationStatusExistingMatchingUsageInfo - 875, // 276: google.cloud.compute.v1.FutureReservationStatus.last_known_good_state:type_name -> google.cloud.compute.v1.FutureReservationStatusLastKnownGoodState - 877, // 277: google.cloud.compute.v1.FutureReservationStatus.specific_sku_properties:type_name -> google.cloud.compute.v1.FutureReservationStatusSpecificSKUProperties - 874, // 278: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodState.existing_matching_usage_info:type_name -> google.cloud.compute.v1.FutureReservationStatusExistingMatchingUsageInfo - 876, // 279: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodState.future_reservation_specs:type_name -> google.cloud.compute.v1.FutureReservationStatusLastKnownGoodStateFutureReservationSpecs - 2063, // 280: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodStateFutureReservationSpecs.share_settings:type_name -> google.cloud.compute.v1.ShareSettings - 872, // 281: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodStateFutureReservationSpecs.specific_sku_properties:type_name -> google.cloud.compute.v1.FutureReservationSpecificSKUProperties - 878, // 282: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodStateFutureReservationSpecs.time_window:type_name -> google.cloud.compute.v1.FutureReservationTimeWindow - 833, // 283: google.cloud.compute.v1.FutureReservationTimeWindow.duration:type_name -> google.cloud.compute.v1.Duration - 2374, // 284: google.cloud.compute.v1.FutureReservationsAggregatedListResponse.items:type_name -> google.cloud.compute.v1.FutureReservationsAggregatedListResponse.ItemsEntry - 2320, // 285: google.cloud.compute.v1.FutureReservationsAggregatedListResponse.warning:type_name -> google.cloud.compute.v1.Warning - 870, // 286: google.cloud.compute.v1.FutureReservationsListResponse.items:type_name -> google.cloud.compute.v1.FutureReservation - 2320, // 287: google.cloud.compute.v1.FutureReservationsListResponse.warning:type_name -> google.cloud.compute.v1.Warning - 870, // 288: google.cloud.compute.v1.FutureReservationsScopedList.future_reservations:type_name -> google.cloud.compute.v1.FutureReservation - 2320, // 289: google.cloud.compute.v1.FutureReservationsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2375, // 290: google.cloud.compute.v1.FutureResourcesRecommendation.other_locations:type_name -> google.cloud.compute.v1.FutureResourcesRecommendation.OtherLocationsEntry - 887, // 291: google.cloud.compute.v1.FutureResourcesSpec.location_policy:type_name -> google.cloud.compute.v1.FutureResourcesSpecLocationPolicy - 890, // 292: google.cloud.compute.v1.FutureResourcesSpec.target_resources:type_name -> google.cloud.compute.v1.FutureResourcesSpecTargetResources - 863, // 293: google.cloud.compute.v1.FutureResourcesSpec.time_range_spec:type_name -> google.cloud.compute.v1.FlexibleTimeRange - 2376, // 294: google.cloud.compute.v1.FutureResourcesSpecLocationPolicy.locations:type_name -> google.cloud.compute.v1.FutureResourcesSpecLocationPolicy.LocationsEntry - 886, // 295: google.cloud.compute.v1.FutureResourcesSpecSpecificSKUResources.local_ssd_partitions:type_name -> google.cloud.compute.v1.FutureResourcesSpecLocalSsdPartition - 885, // 296: google.cloud.compute.v1.FutureResourcesSpecTargetResources.aggregate_resources:type_name -> google.cloud.compute.v1.FutureResourcesSpecAggregateResources - 889, // 297: google.cloud.compute.v1.FutureResourcesSpecTargetResources.specific_sku_resources:type_name -> google.cloud.compute.v1.FutureResourcesSpecSpecificSKUResources - 1850, // 298: google.cloud.compute.v1.GetHealthBackendServiceRequest.resource_group_reference_resource:type_name -> google.cloud.compute.v1.ResourceGroupReference - 1850, // 299: google.cloud.compute.v1.GetHealthRegionBackendServiceRequest.resource_group_reference_resource:type_name -> google.cloud.compute.v1.ResourceGroupReference - 1279, // 300: google.cloud.compute.v1.GetHealthTargetPoolRequest.instance_reference_resource:type_name -> google.cloud.compute.v1.InstanceReference - 1060, // 301: google.cloud.compute.v1.GetVersionOperationMetadata.inline_sbom_info:type_name -> google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo - 2377, // 302: google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo.current_component_versions:type_name -> google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo.CurrentComponentVersionsEntry - 2378, // 303: google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo.target_component_versions:type_name -> google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo.TargetComponentVersionsEntry - 1829, // 304: google.cloud.compute.v1.GetVersionReservationSlotRequest.reservation_slots_get_version_request_resource:type_name -> google.cloud.compute.v1.ReservationSlotsGetVersionRequest - 1835, // 305: google.cloud.compute.v1.GetVersionReservationSubBlockRequest.reservation_sub_blocks_get_version_request_resource:type_name -> google.cloud.compute.v1.ReservationSubBlocksGetVersionRequest - 1567, // 306: google.cloud.compute.v1.GlobalNetworkEndpointGroupsAttachEndpointsRequest.network_endpoints:type_name -> google.cloud.compute.v1.NetworkEndpoint - 1567, // 307: google.cloud.compute.v1.GlobalNetworkEndpointGroupsDetachEndpointsRequest.network_endpoints:type_name -> google.cloud.compute.v1.NetworkEndpoint - 646, // 308: google.cloud.compute.v1.GlobalOrganizationSetPolicyRequest.bindings:type_name -> google.cloud.compute.v1.Binding - 1716, // 309: google.cloud.compute.v1.GlobalOrganizationSetPolicyRequest.policy:type_name -> google.cloud.compute.v1.Policy - 2379, // 310: google.cloud.compute.v1.GlobalSetLabelsRequest.labels:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest.LabelsEntry - 646, // 311: google.cloud.compute.v1.GlobalSetPolicyRequest.bindings:type_name -> google.cloud.compute.v1.Binding - 1716, // 312: google.cloud.compute.v1.GlobalSetPolicyRequest.policy:type_name -> google.cloud.compute.v1.Policy - 2245, // 313: google.cloud.compute.v1.GroupMaintenanceInfo.upcoming_group_maintenance:type_name -> google.cloud.compute.v1.UpcomingMaintenance - 1079, // 314: google.cloud.compute.v1.GuestAttributes.query_value:type_name -> google.cloud.compute.v1.GuestAttributesValue - 1078, // 315: google.cloud.compute.v1.GuestAttributesValue.items:type_name -> google.cloud.compute.v1.GuestAttributesEntry - 1085, // 316: google.cloud.compute.v1.HealthAggregationPoliciesScopedList.health_aggregation_policies:type_name -> google.cloud.compute.v1.HealthAggregationPolicy - 2320, // 317: google.cloud.compute.v1.HealthAggregationPoliciesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2380, // 318: google.cloud.compute.v1.HealthAggregationPolicyAggregatedList.items:type_name -> google.cloud.compute.v1.HealthAggregationPolicyAggregatedList.ItemsEntry - 2320, // 319: google.cloud.compute.v1.HealthAggregationPolicyAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1085, // 320: google.cloud.compute.v1.HealthAggregationPolicyList.items:type_name -> google.cloud.compute.v1.HealthAggregationPolicy - 2320, // 321: google.cloud.compute.v1.HealthAggregationPolicyList.warning:type_name -> google.cloud.compute.v1.Warning - 891, // 322: google.cloud.compute.v1.HealthCheck.grpc_health_check:type_name -> google.cloud.compute.v1.GRPCHealthCheck - 892, // 323: google.cloud.compute.v1.HealthCheck.grpc_tls_health_check:type_name -> google.cloud.compute.v1.GRPCTLSHealthCheck - 1081, // 324: google.cloud.compute.v1.HealthCheck.http2_health_check:type_name -> google.cloud.compute.v1.HTTP2HealthCheck - 1082, // 325: google.cloud.compute.v1.HealthCheck.http_health_check:type_name -> google.cloud.compute.v1.HTTPHealthCheck - 1083, // 326: google.cloud.compute.v1.HealthCheck.https_health_check:type_name -> google.cloud.compute.v1.HTTPSHealthCheck - 1090, // 327: google.cloud.compute.v1.HealthCheck.log_config:type_name -> google.cloud.compute.v1.HealthCheckLogConfig - 1911, // 328: google.cloud.compute.v1.HealthCheck.ssl_health_check:type_name -> google.cloud.compute.v1.SSLHealthCheck - 2142, // 329: google.cloud.compute.v1.HealthCheck.tcp_health_check:type_name -> google.cloud.compute.v1.TCPHealthCheck - 1088, // 330: google.cloud.compute.v1.HealthCheckList.items:type_name -> google.cloud.compute.v1.HealthCheck - 2320, // 331: google.cloud.compute.v1.HealthCheckList.warning:type_name -> google.cloud.compute.v1.Warning - 2381, // 332: google.cloud.compute.v1.HealthCheckServiceAggregatedList.items:type_name -> google.cloud.compute.v1.HealthCheckServiceAggregatedList.ItemsEntry - 2320, // 333: google.cloud.compute.v1.HealthCheckServiceAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1092, // 334: google.cloud.compute.v1.HealthCheckServicesList.items:type_name -> google.cloud.compute.v1.HealthCheckService - 2320, // 335: google.cloud.compute.v1.HealthCheckServicesList.warning:type_name -> google.cloud.compute.v1.Warning - 1092, // 336: google.cloud.compute.v1.HealthCheckServicesScopedList.resources:type_name -> google.cloud.compute.v1.HealthCheckService - 2320, // 337: google.cloud.compute.v1.HealthCheckServicesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2382, // 338: google.cloud.compute.v1.HealthChecksAggregatedList.items:type_name -> google.cloud.compute.v1.HealthChecksAggregatedList.ItemsEntry - 2320, // 339: google.cloud.compute.v1.HealthChecksAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1088, // 340: google.cloud.compute.v1.HealthChecksScopedList.health_checks:type_name -> google.cloud.compute.v1.HealthCheck - 2320, // 341: google.cloud.compute.v1.HealthChecksScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2383, // 342: google.cloud.compute.v1.HealthSourceAggregatedList.items:type_name -> google.cloud.compute.v1.HealthSourceAggregatedList.ItemsEntry - 2320, // 343: google.cloud.compute.v1.HealthSourceAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1099, // 344: google.cloud.compute.v1.HealthSourceList.items:type_name -> google.cloud.compute.v1.HealthSource - 2320, // 345: google.cloud.compute.v1.HealthSourceList.warning:type_name -> google.cloud.compute.v1.Warning - 1099, // 346: google.cloud.compute.v1.HealthSourcesScopedList.health_sources:type_name -> google.cloud.compute.v1.HealthSource - 2320, // 347: google.cloud.compute.v1.HealthSourcesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2384, // 348: google.cloud.compute.v1.HealthStatus.annotations:type_name -> google.cloud.compute.v1.HealthStatus.AnnotationsEntry - 635, // 349: google.cloud.compute.v1.HealthStatusForNetworkEndpoint.backend_service:type_name -> google.cloud.compute.v1.BackendServiceReference - 867, // 350: google.cloud.compute.v1.HealthStatusForNetworkEndpoint.forwarding_rule:type_name -> google.cloud.compute.v1.ForwardingRuleReference - 1091, // 351: google.cloud.compute.v1.HealthStatusForNetworkEndpoint.health_check:type_name -> google.cloud.compute.v1.HealthCheckReference - 1094, // 352: google.cloud.compute.v1.HealthStatusForNetworkEndpoint.health_check_service:type_name -> google.cloud.compute.v1.HealthCheckServiceReference - 1106, // 353: google.cloud.compute.v1.Help.links:type_name -> google.cloud.compute.v1.HelpLink - 833, // 354: google.cloud.compute.v1.HttpFaultDelay.fixed_delay:type_name -> google.cloud.compute.v1.Duration - 1108, // 355: google.cloud.compute.v1.HttpFaultInjection.abort:type_name -> google.cloud.compute.v1.HttpFaultAbort - 1109, // 356: google.cloud.compute.v1.HttpFaultInjection.delay:type_name -> google.cloud.compute.v1.HttpFaultDelay - 1113, // 357: google.cloud.compute.v1.HttpHeaderAction.request_headers_to_add:type_name -> google.cloud.compute.v1.HttpHeaderOption - 1113, // 358: google.cloud.compute.v1.HttpHeaderAction.response_headers_to_add:type_name -> google.cloud.compute.v1.HttpHeaderOption - 1309, // 359: google.cloud.compute.v1.HttpHeaderMatch.range_match:type_name -> google.cloud.compute.v1.Int64RangeMatch - 833, // 360: google.cloud.compute.v1.HttpRetryPolicy.per_try_timeout:type_name -> google.cloud.compute.v1.Duration - 685, // 361: google.cloud.compute.v1.HttpRouteAction.cors_policy:type_name -> google.cloud.compute.v1.CorsPolicy - 1110, // 362: google.cloud.compute.v1.HttpRouteAction.fault_injection_policy:type_name -> google.cloud.compute.v1.HttpFaultInjection - 833, // 363: google.cloud.compute.v1.HttpRouteAction.max_stream_duration:type_name -> google.cloud.compute.v1.Duration - 1810, // 364: google.cloud.compute.v1.HttpRouteAction.request_mirror_policy:type_name -> google.cloud.compute.v1.RequestMirrorPolicy - 1116, // 365: google.cloud.compute.v1.HttpRouteAction.retry_policy:type_name -> google.cloud.compute.v1.HttpRetryPolicy - 833, // 366: google.cloud.compute.v1.HttpRouteAction.timeout:type_name -> google.cloud.compute.v1.Duration - 2285, // 367: google.cloud.compute.v1.HttpRouteAction.url_rewrite:type_name -> google.cloud.compute.v1.UrlRewrite - 2322, // 368: google.cloud.compute.v1.HttpRouteAction.weighted_backend_services:type_name -> google.cloud.compute.v1.WeightedBackendService - 693, // 369: google.cloud.compute.v1.HttpRouteRule.custom_error_response_policy:type_name -> google.cloud.compute.v1.CustomErrorResponsePolicy - 1111, // 370: google.cloud.compute.v1.HttpRouteRule.header_action:type_name -> google.cloud.compute.v1.HttpHeaderAction - 1119, // 371: google.cloud.compute.v1.HttpRouteRule.match_rules:type_name -> google.cloud.compute.v1.HttpRouteRuleMatch - 1117, // 372: google.cloud.compute.v1.HttpRouteRule.route_action:type_name -> google.cloud.compute.v1.HttpRouteAction - 1115, // 373: google.cloud.compute.v1.HttpRouteRule.url_redirect:type_name -> google.cloud.compute.v1.HttpRedirectAction - 1112, // 374: google.cloud.compute.v1.HttpRouteRuleMatch.header_matches:type_name -> google.cloud.compute.v1.HttpHeaderMatch - 1546, // 375: google.cloud.compute.v1.HttpRouteRuleMatch.metadata_filters:type_name -> google.cloud.compute.v1.MetadataFilter - 1114, // 376: google.cloud.compute.v1.HttpRouteRuleMatch.query_parameter_matches:type_name -> google.cloud.compute.v1.HttpQueryParameterMatch - 803, // 377: google.cloud.compute.v1.Image.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus - 1080, // 378: google.cloud.compute.v1.Image.guest_os_features:type_name -> google.cloud.compute.v1.GuestOsFeature - 695, // 379: google.cloud.compute.v1.Image.image_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 2385, // 380: google.cloud.compute.v1.Image.labels:type_name -> google.cloud.compute.v1.Image.LabelsEntry - 1123, // 381: google.cloud.compute.v1.Image.params:type_name -> google.cloud.compute.v1.ImageParams - 1747, // 382: google.cloud.compute.v1.Image.raw_disk:type_name -> google.cloud.compute.v1.RawDisk - 1124, // 383: google.cloud.compute.v1.Image.shielded_instance_initial_state:type_name -> google.cloud.compute.v1.InitialStateConfig - 695, // 384: google.cloud.compute.v1.Image.source_disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 695, // 385: google.cloud.compute.v1.Image.source_image_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 695, // 386: google.cloud.compute.v1.Image.source_snapshot_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 1120, // 387: google.cloud.compute.v1.ImageFamilyView.image:type_name -> google.cloud.compute.v1.Image - 1120, // 388: google.cloud.compute.v1.ImageList.items:type_name -> google.cloud.compute.v1.Image - 2320, // 389: google.cloud.compute.v1.ImageList.warning:type_name -> google.cloud.compute.v1.Warning - 2386, // 390: google.cloud.compute.v1.ImageParams.resource_manager_tags:type_name -> google.cloud.compute.v1.ImageParams.ResourceManagerTagsEntry - 848, // 391: google.cloud.compute.v1.InitialStateConfig.dbs:type_name -> google.cloud.compute.v1.FileContentBuffer - 848, // 392: google.cloud.compute.v1.InitialStateConfig.dbxs:type_name -> google.cloud.compute.v1.FileContentBuffer - 848, // 393: google.cloud.compute.v1.InitialStateConfig.keks:type_name -> google.cloud.compute.v1.FileContentBuffer - 848, // 394: google.cloud.compute.v1.InitialStateConfig.pk:type_name -> google.cloud.compute.v1.FileContentBuffer - 509, // 395: google.cloud.compute.v1.InsertAddressRequest.address_resource:type_name -> google.cloud.compute.v1.Address - 589, // 396: google.cloud.compute.v1.InsertAutoscalerRequest.autoscaler_resource:type_name -> google.cloud.compute.v1.Autoscaler - 602, // 397: google.cloud.compute.v1.InsertBackendBucketRequest.backend_bucket_resource:type_name -> google.cloud.compute.v1.BackendBucket - 611, // 398: google.cloud.compute.v1.InsertBackendServiceRequest.backend_service_resource:type_name -> google.cloud.compute.v1.BackendService - 691, // 399: google.cloud.compute.v1.InsertCrossSiteNetworkRequest.cross_site_network_resource:type_name -> google.cloud.compute.v1.CrossSiteNetwork - 810, // 400: google.cloud.compute.v1.InsertDiskRequest.disk_resource:type_name -> google.cloud.compute.v1.Disk - 844, // 401: google.cloud.compute.v1.InsertExternalVpnGatewayRequest.external_vpn_gateway_resource:type_name -> google.cloud.compute.v1.ExternalVpnGateway - 855, // 402: google.cloud.compute.v1.InsertFirewallPolicyRequest.firewall_policy_resource:type_name -> google.cloud.compute.v1.FirewallPolicy - 849, // 403: google.cloud.compute.v1.InsertFirewallRequest.firewall_resource:type_name -> google.cloud.compute.v1.Firewall - 864, // 404: google.cloud.compute.v1.InsertForwardingRuleRequest.forwarding_rule_resource:type_name -> google.cloud.compute.v1.ForwardingRule - 870, // 405: google.cloud.compute.v1.InsertFutureReservationRequest.future_reservation_resource:type_name -> google.cloud.compute.v1.FutureReservation - 509, // 406: google.cloud.compute.v1.InsertGlobalAddressRequest.address_resource:type_name -> google.cloud.compute.v1.Address - 864, // 407: google.cloud.compute.v1.InsertGlobalForwardingRuleRequest.forwarding_rule_resource:type_name -> google.cloud.compute.v1.ForwardingRule - 1568, // 408: google.cloud.compute.v1.InsertGlobalNetworkEndpointGroupRequest.network_endpoint_group_resource:type_name -> google.cloud.compute.v1.NetworkEndpointGroup - 1739, // 409: google.cloud.compute.v1.InsertGlobalPublicDelegatedPrefixeRequest.public_delegated_prefix_resource:type_name -> google.cloud.compute.v1.PublicDelegatedPrefix - 1088, // 410: google.cloud.compute.v1.InsertHealthCheckRequest.health_check_resource:type_name -> google.cloud.compute.v1.HealthCheck - 1120, // 411: google.cloud.compute.v1.InsertImageRequest.image_resource:type_name -> google.cloud.compute.v1.Image - 1219, // 412: google.cloud.compute.v1.InsertInstanceGroupManagerRequest.instance_group_manager_resource:type_name -> google.cloud.compute.v1.InstanceGroupManager - 1228, // 413: google.cloud.compute.v1.InsertInstanceGroupManagerResizeRequestRequest.instance_group_manager_resize_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagerResizeRequest - 1216, // 414: google.cloud.compute.v1.InsertInstanceGroupRequest.instance_group_resource:type_name -> google.cloud.compute.v1.InstanceGroup - 1210, // 415: google.cloud.compute.v1.InsertInstanceRequest.instance_resource:type_name -> google.cloud.compute.v1.Instance - 1282, // 416: google.cloud.compute.v1.InsertInstanceTemplateRequest.instance_template_resource:type_name -> google.cloud.compute.v1.InstanceTemplate - 1303, // 417: google.cloud.compute.v1.InsertInstantSnapshotRequest.instant_snapshot_resource:type_name -> google.cloud.compute.v1.InstantSnapshot - 1319, // 418: google.cloud.compute.v1.InsertInterconnectAttachmentGroupRequest.interconnect_attachment_group_resource:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroup - 1315, // 419: google.cloud.compute.v1.InsertInterconnectAttachmentRequest.interconnect_attachment_resource:type_name -> google.cloud.compute.v1.InterconnectAttachment - 1350, // 420: google.cloud.compute.v1.InsertInterconnectGroupRequest.interconnect_group_resource:type_name -> google.cloud.compute.v1.InterconnectGroup - 1310, // 421: google.cloud.compute.v1.InsertInterconnectRequest.interconnect_resource:type_name -> google.cloud.compute.v1.Interconnect - 1387, // 422: google.cloud.compute.v1.InsertLicenseRequest.license_resource:type_name -> google.cloud.compute.v1.License - 1532, // 423: google.cloud.compute.v1.InsertMachineImageRequest.machine_image_resource:type_name -> google.cloud.compute.v1.MachineImage - 1559, // 424: google.cloud.compute.v1.InsertNetworkAttachmentRequest.network_attachment_resource:type_name -> google.cloud.compute.v1.NetworkAttachment - 1564, // 425: google.cloud.compute.v1.InsertNetworkEdgeSecurityServiceRequest.network_edge_security_service_resource:type_name -> google.cloud.compute.v1.NetworkEdgeSecurityService - 1568, // 426: google.cloud.compute.v1.InsertNetworkEndpointGroupRequest.network_endpoint_group_resource:type_name -> google.cloud.compute.v1.NetworkEndpointGroup - 855, // 427: google.cloud.compute.v1.InsertNetworkFirewallPolicyRequest.firewall_policy_resource:type_name -> google.cloud.compute.v1.FirewallPolicy - 1558, // 428: google.cloud.compute.v1.InsertNetworkRequest.network_resource:type_name -> google.cloud.compute.v1.Network - 1603, // 429: google.cloud.compute.v1.InsertNodeGroupRequest.node_group_resource:type_name -> google.cloud.compute.v1.NodeGroup - 1616, // 430: google.cloud.compute.v1.InsertNodeTemplateRequest.node_template_resource:type_name -> google.cloud.compute.v1.NodeTemplate - 1923, // 431: google.cloud.compute.v1.InsertOrganizationSecurityPolicyRequest.security_policy_resource:type_name -> google.cloud.compute.v1.SecurityPolicy - 1637, // 432: google.cloud.compute.v1.InsertPacketMirroringRequest.packet_mirroring_resource:type_name -> google.cloud.compute.v1.PacketMirroring - 1736, // 433: google.cloud.compute.v1.InsertPublicAdvertisedPrefixeRequest.public_advertised_prefix_resource:type_name -> google.cloud.compute.v1.PublicAdvertisedPrefix - 1739, // 434: google.cloud.compute.v1.InsertPublicDelegatedPrefixeRequest.public_delegated_prefix_resource:type_name -> google.cloud.compute.v1.PublicDelegatedPrefix - 589, // 435: google.cloud.compute.v1.InsertRegionAutoscalerRequest.autoscaler_resource:type_name -> google.cloud.compute.v1.Autoscaler - 611, // 436: google.cloud.compute.v1.InsertRegionBackendServiceRequest.backend_service_resource:type_name -> google.cloud.compute.v1.BackendService - 671, // 437: google.cloud.compute.v1.InsertRegionCommitmentRequest.commitment_resource:type_name -> google.cloud.compute.v1.Commitment - 676, // 438: google.cloud.compute.v1.InsertRegionCompositeHealthCheckRequest.composite_health_check_resource:type_name -> google.cloud.compute.v1.CompositeHealthCheck - 810, // 439: google.cloud.compute.v1.InsertRegionDiskRequest.disk_resource:type_name -> google.cloud.compute.v1.Disk - 1085, // 440: google.cloud.compute.v1.InsertRegionHealthAggregationPolicyRequest.health_aggregation_policy_resource:type_name -> google.cloud.compute.v1.HealthAggregationPolicy - 1088, // 441: google.cloud.compute.v1.InsertRegionHealthCheckRequest.health_check_resource:type_name -> google.cloud.compute.v1.HealthCheck - 1092, // 442: google.cloud.compute.v1.InsertRegionHealthCheckServiceRequest.health_check_service_resource:type_name -> google.cloud.compute.v1.HealthCheckService - 1099, // 443: google.cloud.compute.v1.InsertRegionHealthSourceRequest.health_source_resource:type_name -> google.cloud.compute.v1.HealthSource - 1219, // 444: google.cloud.compute.v1.InsertRegionInstanceGroupManagerRequest.instance_group_manager_resource:type_name -> google.cloud.compute.v1.InstanceGroupManager - 1282, // 445: google.cloud.compute.v1.InsertRegionInstanceTemplateRequest.instance_template_resource:type_name -> google.cloud.compute.v1.InstanceTemplate - 1303, // 446: google.cloud.compute.v1.InsertRegionInstantSnapshotRequest.instant_snapshot_resource:type_name -> google.cloud.compute.v1.InstantSnapshot - 1568, // 447: google.cloud.compute.v1.InsertRegionNetworkEndpointGroupRequest.network_endpoint_group_resource:type_name -> google.cloud.compute.v1.NetworkEndpointGroup - 855, // 448: google.cloud.compute.v1.InsertRegionNetworkFirewallPolicyRequest.firewall_policy_resource:type_name -> google.cloud.compute.v1.FirewallPolicy - 1625, // 449: google.cloud.compute.v1.InsertRegionNotificationEndpointRequest.notification_endpoint_resource:type_name -> google.cloud.compute.v1.NotificationEndpoint - 1923, // 450: google.cloud.compute.v1.InsertRegionSecurityPolicyRequest.security_policy_resource:type_name -> google.cloud.compute.v1.SecurityPolicy - 2081, // 451: google.cloud.compute.v1.InsertRegionSslCertificateRequest.ssl_certificate_resource:type_name -> google.cloud.compute.v1.SslCertificate - 2091, // 452: google.cloud.compute.v1.InsertRegionSslPolicyRequest.ssl_policy_resource:type_name -> google.cloud.compute.v1.SslPolicy - 2147, // 453: google.cloud.compute.v1.InsertRegionTargetHttpProxyRequest.target_http_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpProxy - 2154, // 454: google.cloud.compute.v1.InsertRegionTargetHttpsProxyRequest.target_https_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxy - 2180, // 455: google.cloud.compute.v1.InsertRegionTargetTcpProxyRequest.target_tcp_proxy_resource:type_name -> google.cloud.compute.v1.TargetTcpProxy - 2275, // 456: google.cloud.compute.v1.InsertRegionUrlMapRequest.url_map_resource:type_name -> google.cloud.compute.v1.UrlMap - 1812, // 457: google.cloud.compute.v1.InsertReservationRequest.reservation_resource:type_name -> google.cloud.compute.v1.Reservation - 1852, // 458: google.cloud.compute.v1.InsertResourcePolicyRequest.resource_policy_resource:type_name -> google.cloud.compute.v1.ResourcePolicy - 1878, // 459: google.cloud.compute.v1.InsertRouteRequest.route_resource:type_name -> google.cloud.compute.v1.Route - 1884, // 460: google.cloud.compute.v1.InsertRouterRequest.router_resource:type_name -> google.cloud.compute.v1.Router - 1923, // 461: google.cloud.compute.v1.InsertSecurityPolicyRequest.security_policy_resource:type_name -> google.cloud.compute.v1.SecurityPolicy - 1958, // 462: google.cloud.compute.v1.InsertServiceAttachmentRequest.service_attachment_resource:type_name -> google.cloud.compute.v1.ServiceAttachment - 2072, // 463: google.cloud.compute.v1.InsertSnapshotRequest.snapshot_resource:type_name -> google.cloud.compute.v1.Snapshot - 2081, // 464: google.cloud.compute.v1.InsertSslCertificateRequest.ssl_certificate_resource:type_name -> google.cloud.compute.v1.SslCertificate - 2091, // 465: google.cloud.compute.v1.InsertSslPolicyRequest.ssl_policy_resource:type_name -> google.cloud.compute.v1.SslPolicy - 2111, // 466: google.cloud.compute.v1.InsertStoragePoolRequest.storage_pool_resource:type_name -> google.cloud.compute.v1.StoragePool - 2124, // 467: google.cloud.compute.v1.InsertSubnetworkRequest.subnetwork_resource:type_name -> google.cloud.compute.v1.Subnetwork - 2144, // 468: google.cloud.compute.v1.InsertTargetGrpcProxyRequest.target_grpc_proxy_resource:type_name -> google.cloud.compute.v1.TargetGrpcProxy - 2147, // 469: google.cloud.compute.v1.InsertTargetHttpProxyRequest.target_http_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpProxy - 2154, // 470: google.cloud.compute.v1.InsertTargetHttpsProxyRequest.target_https_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxy - 2157, // 471: google.cloud.compute.v1.InsertTargetInstanceRequest.target_instance_resource:type_name -> google.cloud.compute.v1.TargetInstance - 2161, // 472: google.cloud.compute.v1.InsertTargetPoolRequest.target_pool_resource:type_name -> google.cloud.compute.v1.TargetPool - 2175, // 473: google.cloud.compute.v1.InsertTargetSslProxyRequest.target_ssl_proxy_resource:type_name -> google.cloud.compute.v1.TargetSslProxy - 2180, // 474: google.cloud.compute.v1.InsertTargetTcpProxyRequest.target_tcp_proxy_resource:type_name -> google.cloud.compute.v1.TargetTcpProxy - 2183, // 475: google.cloud.compute.v1.InsertTargetVpnGatewayRequest.target_vpn_gateway_resource:type_name -> google.cloud.compute.v1.TargetVpnGateway - 2275, // 476: google.cloud.compute.v1.InsertUrlMapRequest.url_map_resource:type_name -> google.cloud.compute.v1.UrlMap - 2296, // 477: google.cloud.compute.v1.InsertVpnGatewayRequest.vpn_gateway_resource:type_name -> google.cloud.compute.v1.VpnGateway - 2307, // 478: google.cloud.compute.v1.InsertVpnTunnelRequest.vpn_tunnel_resource:type_name -> google.cloud.compute.v1.VpnTunnel - 2325, // 479: google.cloud.compute.v1.InsertWireGroupRequest.wire_group_resource:type_name -> google.cloud.compute.v1.WireGroup - 513, // 480: google.cloud.compute.v1.Instance.advanced_machine_features:type_name -> google.cloud.compute.v1.AdvancedMachineFeatures - 680, // 481: google.cloud.compute.v1.Instance.confidential_instance_config:type_name -> google.cloud.compute.v1.ConfidentialInstanceConfig - 585, // 482: google.cloud.compute.v1.Instance.disks:type_name -> google.cloud.compute.v1.AttachedDisk - 830, // 483: google.cloud.compute.v1.Instance.display_device:type_name -> google.cloud.compute.v1.DisplayDevice - 476, // 484: google.cloud.compute.v1.Instance.guest_accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig - 695, // 485: google.cloud.compute.v1.Instance.instance_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 2387, // 486: google.cloud.compute.v1.Instance.labels:type_name -> google.cloud.compute.v1.Instance.LabelsEntry - 1545, // 487: google.cloud.compute.v1.Instance.metadata:type_name -> google.cloud.compute.v1.Metadata - 1582, // 488: google.cloud.compute.v1.Instance.network_interfaces:type_name -> google.cloud.compute.v1.NetworkInterface - 1589, // 489: google.cloud.compute.v1.Instance.network_performance_config:type_name -> google.cloud.compute.v1.NetworkPerformanceConfig - 1276, // 490: google.cloud.compute.v1.Instance.params:type_name -> google.cloud.compute.v1.InstanceParams - 1814, // 491: google.cloud.compute.v1.Instance.reservation_affinity:type_name -> google.cloud.compute.v1.ReservationAffinity - 1870, // 492: google.cloud.compute.v1.Instance.resource_status:type_name -> google.cloud.compute.v1.ResourceStatus - 1915, // 493: google.cloud.compute.v1.Instance.scheduling:type_name -> google.cloud.compute.v1.Scheduling - 1957, // 494: google.cloud.compute.v1.Instance.service_accounts:type_name -> google.cloud.compute.v1.ServiceAccount - 2065, // 495: google.cloud.compute.v1.Instance.shielded_instance_config:type_name -> google.cloud.compute.v1.ShieldedInstanceConfig - 2068, // 496: google.cloud.compute.v1.Instance.shielded_instance_integrity_policy:type_name -> google.cloud.compute.v1.ShieldedInstanceIntegrityPolicy - 695, // 497: google.cloud.compute.v1.Instance.source_machine_image_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 2143, // 498: google.cloud.compute.v1.Instance.tags:type_name -> google.cloud.compute.v1.Tags - 2334, // 499: google.cloud.compute.v1.Instance.workload_identity_config:type_name -> google.cloud.compute.v1.WorkloadIdentityConfig - 2388, // 500: google.cloud.compute.v1.InstanceAggregatedList.items:type_name -> google.cloud.compute.v1.InstanceAggregatedList.ItemsEntry - 2320, // 501: google.cloud.compute.v1.InstanceAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1213, // 502: google.cloud.compute.v1.InstanceConsumptionData.consumption_info:type_name -> google.cloud.compute.v1.InstanceConsumptionInfo - 2389, // 503: google.cloud.compute.v1.InstanceFlexibilityPolicy.instance_selections:type_name -> google.cloud.compute.v1.InstanceFlexibilityPolicy.InstanceSelectionsEntry - 585, // 504: google.cloud.compute.v1.InstanceFlexibilityPolicyInstanceSelection.disks:type_name -> google.cloud.compute.v1.AttachedDisk - 1554, // 505: google.cloud.compute.v1.InstanceGroup.named_ports:type_name -> google.cloud.compute.v1.NamedPort - 2390, // 506: google.cloud.compute.v1.InstanceGroupAggregatedList.items:type_name -> google.cloud.compute.v1.InstanceGroupAggregatedList.ItemsEntry - 2320, // 507: google.cloud.compute.v1.InstanceGroupAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1216, // 508: google.cloud.compute.v1.InstanceGroupList.items:type_name -> google.cloud.compute.v1.InstanceGroup - 2320, // 509: google.cloud.compute.v1.InstanceGroupList.warning:type_name -> google.cloud.compute.v1.Warning - 1222, // 510: google.cloud.compute.v1.InstanceGroupManager.all_instances_config:type_name -> google.cloud.compute.v1.InstanceGroupManagerAllInstancesConfig - 1223, // 511: google.cloud.compute.v1.InstanceGroupManager.auto_healing_policies:type_name -> google.cloud.compute.v1.InstanceGroupManagerAutoHealingPolicy - 1220, // 512: google.cloud.compute.v1.InstanceGroupManager.current_actions:type_name -> google.cloud.compute.v1.InstanceGroupManagerActionsSummary - 831, // 513: google.cloud.compute.v1.InstanceGroupManager.distribution_policy:type_name -> google.cloud.compute.v1.DistributionPolicy - 1224, // 514: google.cloud.compute.v1.InstanceGroupManager.instance_flexibility_policy:type_name -> google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicy - 1226, // 515: google.cloud.compute.v1.InstanceGroupManager.instance_lifecycle_policy:type_name -> google.cloud.compute.v1.InstanceGroupManagerInstanceLifecyclePolicy - 1554, // 516: google.cloud.compute.v1.InstanceGroupManager.named_ports:type_name -> google.cloud.compute.v1.NamedPort - 1232, // 517: google.cloud.compute.v1.InstanceGroupManager.resource_policies:type_name -> google.cloud.compute.v1.InstanceGroupManagerResourcePolicies - 1233, // 518: google.cloud.compute.v1.InstanceGroupManager.standby_policy:type_name -> google.cloud.compute.v1.InstanceGroupManagerStandbyPolicy - 2099, // 519: google.cloud.compute.v1.InstanceGroupManager.stateful_policy:type_name -> google.cloud.compute.v1.StatefulPolicy - 1234, // 520: google.cloud.compute.v1.InstanceGroupManager.status:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatus - 1243, // 521: google.cloud.compute.v1.InstanceGroupManager.target_size_policy:type_name -> google.cloud.compute.v1.InstanceGroupManagerTargetSizePolicy - 1244, // 522: google.cloud.compute.v1.InstanceGroupManager.update_policy:type_name -> google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy - 1245, // 523: google.cloud.compute.v1.InstanceGroupManager.versions:type_name -> google.cloud.compute.v1.InstanceGroupManagerVersion - 2391, // 524: google.cloud.compute.v1.InstanceGroupManagerAggregatedList.items:type_name -> google.cloud.compute.v1.InstanceGroupManagerAggregatedList.ItemsEntry - 2320, // 525: google.cloud.compute.v1.InstanceGroupManagerAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1278, // 526: google.cloud.compute.v1.InstanceGroupManagerAllInstancesConfig.properties:type_name -> google.cloud.compute.v1.InstancePropertiesPatch - 2392, // 527: google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicy.instance_selections:type_name -> google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicy.InstanceSelectionsEntry - 1219, // 528: google.cloud.compute.v1.InstanceGroupManagerList.items:type_name -> google.cloud.compute.v1.InstanceGroupManager - 2320, // 529: google.cloud.compute.v1.InstanceGroupManagerList.warning:type_name -> google.cloud.compute.v1.Warning - 833, // 530: google.cloud.compute.v1.InstanceGroupManagerResizeRequest.requested_run_duration:type_name -> google.cloud.compute.v1.Duration - 1229, // 531: google.cloud.compute.v1.InstanceGroupManagerResizeRequest.status:type_name -> google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatus - 836, // 532: google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatus.error:type_name -> google.cloud.compute.v1.Error - 1230, // 533: google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatus.last_attempt:type_name -> google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatusLastAttempt - 836, // 534: google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatusLastAttempt.error:type_name -> google.cloud.compute.v1.Error - 1228, // 535: google.cloud.compute.v1.InstanceGroupManagerResizeRequestsListResponse.items:type_name -> google.cloud.compute.v1.InstanceGroupManagerResizeRequest - 2320, // 536: google.cloud.compute.v1.InstanceGroupManagerResizeRequestsListResponse.warning:type_name -> google.cloud.compute.v1.Warning - 1237, // 537: google.cloud.compute.v1.InstanceGroupManagerStatus.all_instances_config:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusAllInstancesConfig - 1235, // 538: google.cloud.compute.v1.InstanceGroupManagerStatus.applied_accelerator_topologies:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopology - 1238, // 539: google.cloud.compute.v1.InstanceGroupManagerStatus.bulk_instance_operation:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperation - 1240, // 540: google.cloud.compute.v1.InstanceGroupManagerStatus.stateful:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusStateful - 1242, // 541: google.cloud.compute.v1.InstanceGroupManagerStatus.version_target:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusVersionTarget - 1236, // 542: google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopology.state_details:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails - 836, // 543: google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails.error:type_name -> google.cloud.compute.v1.Error - 1239, // 544: google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperation.last_progress_check:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck - 836, // 545: google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck.error:type_name -> google.cloud.compute.v1.Error - 1241, // 546: google.cloud.compute.v1.InstanceGroupManagerStatusStateful.per_instance_configs:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigs - 862, // 547: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.max_surge:type_name -> google.cloud.compute.v1.FixedOrPercent - 862, // 548: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.max_unavailable:type_name -> google.cloud.compute.v1.FixedOrPercent - 862, // 549: google.cloud.compute.v1.InstanceGroupManagerVersion.target_size:type_name -> google.cloud.compute.v1.FixedOrPercent - 1710, // 550: google.cloud.compute.v1.InstanceGroupManagersCreateInstancesRequest.instances:type_name -> google.cloud.compute.v1.PerInstanceConfig - 1272, // 551: google.cloud.compute.v1.InstanceGroupManagersListErrorsResponse.items:type_name -> google.cloud.compute.v1.InstanceManagedByIgmError - 1539, // 552: google.cloud.compute.v1.InstanceGroupManagersListManagedInstancesResponse.managed_instances:type_name -> google.cloud.compute.v1.ManagedInstance - 1710, // 553: google.cloud.compute.v1.InstanceGroupManagersListPerInstanceConfigsResp.items:type_name -> google.cloud.compute.v1.PerInstanceConfig - 2320, // 554: google.cloud.compute.v1.InstanceGroupManagersListPerInstanceConfigsResp.warning:type_name -> google.cloud.compute.v1.Warning - 1710, // 555: google.cloud.compute.v1.InstanceGroupManagersPatchPerInstanceConfigsReq.per_instance_configs:type_name -> google.cloud.compute.v1.PerInstanceConfig - 1219, // 556: google.cloud.compute.v1.InstanceGroupManagersScopedList.instance_group_managers:type_name -> google.cloud.compute.v1.InstanceGroupManager - 2320, // 557: google.cloud.compute.v1.InstanceGroupManagersScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 1710, // 558: google.cloud.compute.v1.InstanceGroupManagersUpdatePerInstanceConfigsReq.per_instance_configs:type_name -> google.cloud.compute.v1.PerInstanceConfig - 1279, // 559: google.cloud.compute.v1.InstanceGroupsAddInstancesRequest.instances:type_name -> google.cloud.compute.v1.InstanceReference - 1286, // 560: google.cloud.compute.v1.InstanceGroupsListInstances.items:type_name -> google.cloud.compute.v1.InstanceWithNamedPorts - 2320, // 561: google.cloud.compute.v1.InstanceGroupsListInstances.warning:type_name -> google.cloud.compute.v1.Warning - 1279, // 562: google.cloud.compute.v1.InstanceGroupsRemoveInstancesRequest.instances:type_name -> google.cloud.compute.v1.InstanceReference - 1216, // 563: google.cloud.compute.v1.InstanceGroupsScopedList.instance_groups:type_name -> google.cloud.compute.v1.InstanceGroup - 2320, // 564: google.cloud.compute.v1.InstanceGroupsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 1554, // 565: google.cloud.compute.v1.InstanceGroupsSetNamedPortsRequest.named_ports:type_name -> google.cloud.compute.v1.NamedPort - 1210, // 566: google.cloud.compute.v1.InstanceList.items:type_name -> google.cloud.compute.v1.Instance - 2320, // 567: google.cloud.compute.v1.InstanceList.warning:type_name -> google.cloud.compute.v1.Warning - 1750, // 568: google.cloud.compute.v1.InstanceListReferrers.items:type_name -> google.cloud.compute.v1.Reference - 2320, // 569: google.cloud.compute.v1.InstanceListReferrers.warning:type_name -> google.cloud.compute.v1.Warning - 1274, // 570: google.cloud.compute.v1.InstanceManagedByIgmError.error:type_name -> google.cloud.compute.v1.InstanceManagedByIgmErrorManagedInstanceError - 1273, // 571: google.cloud.compute.v1.InstanceManagedByIgmError.instance_action_details:type_name -> google.cloud.compute.v1.InstanceManagedByIgmErrorInstanceActionDetails - 1544, // 572: google.cloud.compute.v1.InstanceManagedByIgmErrorInstanceActionDetails.version:type_name -> google.cloud.compute.v1.ManagedInstanceVersion - 833, // 573: google.cloud.compute.v1.InstanceParams.request_valid_for_duration:type_name -> google.cloud.compute.v1.Duration - 2393, // 574: google.cloud.compute.v1.InstanceParams.resource_manager_tags:type_name -> google.cloud.compute.v1.InstanceParams.ResourceManagerTagsEntry - 513, // 575: google.cloud.compute.v1.InstanceProperties.advanced_machine_features:type_name -> google.cloud.compute.v1.AdvancedMachineFeatures - 680, // 576: google.cloud.compute.v1.InstanceProperties.confidential_instance_config:type_name -> google.cloud.compute.v1.ConfidentialInstanceConfig - 585, // 577: google.cloud.compute.v1.InstanceProperties.disks:type_name -> google.cloud.compute.v1.AttachedDisk - 476, // 578: google.cloud.compute.v1.InstanceProperties.guest_accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig - 2394, // 579: google.cloud.compute.v1.InstanceProperties.labels:type_name -> google.cloud.compute.v1.InstanceProperties.LabelsEntry - 1545, // 580: google.cloud.compute.v1.InstanceProperties.metadata:type_name -> google.cloud.compute.v1.Metadata - 1582, // 581: google.cloud.compute.v1.InstanceProperties.network_interfaces:type_name -> google.cloud.compute.v1.NetworkInterface - 1589, // 582: google.cloud.compute.v1.InstanceProperties.network_performance_config:type_name -> google.cloud.compute.v1.NetworkPerformanceConfig - 1814, // 583: google.cloud.compute.v1.InstanceProperties.reservation_affinity:type_name -> google.cloud.compute.v1.ReservationAffinity - 2395, // 584: google.cloud.compute.v1.InstanceProperties.resource_manager_tags:type_name -> google.cloud.compute.v1.InstanceProperties.ResourceManagerTagsEntry - 1915, // 585: google.cloud.compute.v1.InstanceProperties.scheduling:type_name -> google.cloud.compute.v1.Scheduling - 1957, // 586: google.cloud.compute.v1.InstanceProperties.service_accounts:type_name -> google.cloud.compute.v1.ServiceAccount - 2065, // 587: google.cloud.compute.v1.InstanceProperties.shielded_instance_config:type_name -> google.cloud.compute.v1.ShieldedInstanceConfig - 2143, // 588: google.cloud.compute.v1.InstanceProperties.tags:type_name -> google.cloud.compute.v1.Tags - 2334, // 589: google.cloud.compute.v1.InstanceProperties.workload_identity_config:type_name -> google.cloud.compute.v1.WorkloadIdentityConfig - 2396, // 590: google.cloud.compute.v1.InstancePropertiesPatch.labels:type_name -> google.cloud.compute.v1.InstancePropertiesPatch.LabelsEntry - 2397, // 591: google.cloud.compute.v1.InstancePropertiesPatch.metadata:type_name -> google.cloud.compute.v1.InstancePropertiesPatch.MetadataEntry - 1281, // 592: google.cloud.compute.v1.InstanceSettings.metadata:type_name -> google.cloud.compute.v1.InstanceSettingsMetadata - 2398, // 593: google.cloud.compute.v1.InstanceSettingsMetadata.items:type_name -> google.cloud.compute.v1.InstanceSettingsMetadata.ItemsEntry - 1277, // 594: google.cloud.compute.v1.InstanceTemplate.properties:type_name -> google.cloud.compute.v1.InstanceProperties - 2079, // 595: google.cloud.compute.v1.InstanceTemplate.source_instance_params:type_name -> google.cloud.compute.v1.SourceInstanceParams - 2399, // 596: google.cloud.compute.v1.InstanceTemplateAggregatedList.items:type_name -> google.cloud.compute.v1.InstanceTemplateAggregatedList.ItemsEntry - 2320, // 597: google.cloud.compute.v1.InstanceTemplateAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1282, // 598: google.cloud.compute.v1.InstanceTemplateList.items:type_name -> google.cloud.compute.v1.InstanceTemplate - 2320, // 599: google.cloud.compute.v1.InstanceTemplateList.warning:type_name -> google.cloud.compute.v1.Warning - 1282, // 600: google.cloud.compute.v1.InstanceTemplatesScopedList.instance_templates:type_name -> google.cloud.compute.v1.InstanceTemplate - 2320, // 601: google.cloud.compute.v1.InstanceTemplatesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 1554, // 602: google.cloud.compute.v1.InstanceWithNamedPorts.named_ports:type_name -> google.cloud.compute.v1.NamedPort - 2400, // 603: google.cloud.compute.v1.InstancesBulkInsertOperationMetadata.per_location_status:type_name -> google.cloud.compute.v1.InstancesBulkInsertOperationMetadata.PerLocationStatusEntry - 1290, // 604: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponse.firewall_policys:type_name -> google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy - 849, // 605: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponse.firewalls:type_name -> google.cloud.compute.v1.Firewall - 858, // 606: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.packet_mirroring_rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 858, // 607: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 1293, // 608: google.cloud.compute.v1.InstancesReportHostAsFaultyRequest.fault_reasons:type_name -> google.cloud.compute.v1.InstancesReportHostAsFaultyRequestFaultReason - 1210, // 609: google.cloud.compute.v1.InstancesScopedList.instances:type_name -> google.cloud.compute.v1.Instance - 2320, // 610: google.cloud.compute.v1.InstancesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2401, // 611: google.cloud.compute.v1.InstancesSetLabelsRequest.labels:type_name -> google.cloud.compute.v1.InstancesSetLabelsRequest.LabelsEntry - 476, // 612: google.cloud.compute.v1.InstancesSetMachineResourcesRequest.guest_accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig - 696, // 613: google.cloud.compute.v1.InstancesStartWithEncryptionKeyRequest.disks:type_name -> google.cloud.compute.v1.CustomerEncryptionKeyProtectedDisk - 2402, // 614: google.cloud.compute.v1.InstantSnapshot.labels:type_name -> google.cloud.compute.v1.InstantSnapshot.LabelsEntry - 1306, // 615: google.cloud.compute.v1.InstantSnapshot.params:type_name -> google.cloud.compute.v1.InstantSnapshotParams - 1307, // 616: google.cloud.compute.v1.InstantSnapshot.resource_status:type_name -> google.cloud.compute.v1.InstantSnapshotResourceStatus - 2403, // 617: google.cloud.compute.v1.InstantSnapshotAggregatedList.items:type_name -> google.cloud.compute.v1.InstantSnapshotAggregatedList.ItemsEntry - 2320, // 618: google.cloud.compute.v1.InstantSnapshotAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1303, // 619: google.cloud.compute.v1.InstantSnapshotList.items:type_name -> google.cloud.compute.v1.InstantSnapshot - 2320, // 620: google.cloud.compute.v1.InstantSnapshotList.warning:type_name -> google.cloud.compute.v1.Warning - 2404, // 621: google.cloud.compute.v1.InstantSnapshotParams.resource_manager_tags:type_name -> google.cloud.compute.v1.InstantSnapshotParams.ResourceManagerTagsEntry - 1303, // 622: google.cloud.compute.v1.InstantSnapshotsScopedList.instant_snapshots:type_name -> google.cloud.compute.v1.InstantSnapshot - 2320, // 623: google.cloud.compute.v1.InstantSnapshotsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 1311, // 624: google.cloud.compute.v1.Interconnect.application_aware_interconnect:type_name -> google.cloud.compute.v1.InterconnectApplicationAwareInterconnect - 1343, // 625: google.cloud.compute.v1.Interconnect.circuit_infos:type_name -> google.cloud.compute.v1.InterconnectCircuitInfo - 1376, // 626: google.cloud.compute.v1.Interconnect.expected_outages:type_name -> google.cloud.compute.v1.InterconnectOutageNotification - 2405, // 627: google.cloud.compute.v1.Interconnect.labels:type_name -> google.cloud.compute.v1.Interconnect.LabelsEntry - 1372, // 628: google.cloud.compute.v1.Interconnect.macsec:type_name -> google.cloud.compute.v1.InterconnectMacsec - 1377, // 629: google.cloud.compute.v1.Interconnect.params:type_name -> google.cloud.compute.v1.InterconnectParams - 1313, // 630: google.cloud.compute.v1.InterconnectApplicationAwareInterconnect.bandwidth_percentage_policy:type_name -> google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy - 1312, // 631: google.cloud.compute.v1.InterconnectApplicationAwareInterconnect.shape_average_percentages:type_name -> google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentage - 1314, // 632: google.cloud.compute.v1.InterconnectApplicationAwareInterconnect.strict_priority_policy:type_name -> google.cloud.compute.v1.InterconnectApplicationAwareInterconnectStrictPriorityPolicy - 1312, // 633: google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy.bandwidth_percentages:type_name -> google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentage - 1317, // 634: google.cloud.compute.v1.InterconnectAttachment.configuration_constraints:type_name -> google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints - 1334, // 635: google.cloud.compute.v1.InterconnectAttachment.l2_forwarding:type_name -> google.cloud.compute.v1.InterconnectAttachmentL2Forwarding - 2406, // 636: google.cloud.compute.v1.InterconnectAttachment.labels:type_name -> google.cloud.compute.v1.InterconnectAttachment.LabelsEntry - 1339, // 637: google.cloud.compute.v1.InterconnectAttachment.params:type_name -> google.cloud.compute.v1.InterconnectAttachmentParams - 1340, // 638: google.cloud.compute.v1.InterconnectAttachment.partner_metadata:type_name -> google.cloud.compute.v1.InterconnectAttachmentPartnerMetadata - 1341, // 639: google.cloud.compute.v1.InterconnectAttachment.private_interconnect_info:type_name -> google.cloud.compute.v1.InterconnectAttachmentPrivateInfo - 2407, // 640: google.cloud.compute.v1.InterconnectAttachmentAggregatedList.items:type_name -> google.cloud.compute.v1.InterconnectAttachmentAggregatedList.ItemsEntry - 2320, // 641: google.cloud.compute.v1.InterconnectAttachmentAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1318, // 642: google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints.bgp_peer_asn_ranges:type_name -> google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange - 2408, // 643: google.cloud.compute.v1.InterconnectAttachmentGroup.attachments:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroup.AttachmentsEntry - 1321, // 644: google.cloud.compute.v1.InterconnectAttachmentGroup.configured:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupConfigured - 1324, // 645: google.cloud.compute.v1.InterconnectAttachmentGroup.intent:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupIntent - 1325, // 646: google.cloud.compute.v1.InterconnectAttachmentGroup.logical_structure:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructure - 1322, // 647: google.cloud.compute.v1.InterconnectAttachmentGroupConfigured.availability_sla:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLA - 1323, // 648: google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLA.intended_sla_blockers:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers - 1326, // 649: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructure.regions:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegion - 1327, // 650: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegion.metros:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetro - 1328, // 651: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetro.facilities:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetroFacility - 1329, // 652: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetroFacility.zones:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone - 1332, // 653: google.cloud.compute.v1.InterconnectAttachmentGroupsGetOperationalStatusResponse.result:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus - 1319, // 654: google.cloud.compute.v1.InterconnectAttachmentGroupsListResponse.items:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroup - 2320, // 655: google.cloud.compute.v1.InterconnectAttachmentGroupsListResponse.warning:type_name -> google.cloud.compute.v1.Warning - 1333, // 656: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus.attachment_statuses:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatusAttachmentStatus - 1321, // 657: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus.configured:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupConfigured - 1324, // 658: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus.intent:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupIntent - 1321, // 659: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus.operational:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupConfigured - 2409, // 660: google.cloud.compute.v1.InterconnectAttachmentL2Forwarding.appliance_mappings:type_name -> google.cloud.compute.v1.InterconnectAttachmentL2Forwarding.ApplianceMappingsEntry - 1337, // 661: google.cloud.compute.v1.InterconnectAttachmentL2Forwarding.geneve_header:type_name -> google.cloud.compute.v1.InterconnectAttachmentL2ForwardingGeneveHeader - 1336, // 662: google.cloud.compute.v1.InterconnectAttachmentL2ForwardingApplianceMapping.inner_vlan_to_appliance_mappings:type_name -> google.cloud.compute.v1.InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMapping - 1315, // 663: google.cloud.compute.v1.InterconnectAttachmentList.items:type_name -> google.cloud.compute.v1.InterconnectAttachment - 2320, // 664: google.cloud.compute.v1.InterconnectAttachmentList.warning:type_name -> google.cloud.compute.v1.Warning - 2410, // 665: google.cloud.compute.v1.InterconnectAttachmentParams.resource_manager_tags:type_name -> google.cloud.compute.v1.InterconnectAttachmentParams.ResourceManagerTagsEntry - 1315, // 666: google.cloud.compute.v1.InterconnectAttachmentsScopedList.interconnect_attachments:type_name -> google.cloud.compute.v1.InterconnectAttachment - 2320, // 667: google.cloud.compute.v1.InterconnectAttachmentsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 1345, // 668: google.cloud.compute.v1.InterconnectDiagnostics.arp_caches:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsARPEntry - 1348, // 669: google.cloud.compute.v1.InterconnectDiagnostics.links:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus - 1345, // 670: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus.arp_caches:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsARPEntry - 1346, // 671: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus.lacp_status:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsLinkLACPStatus - 1349, // 672: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus.macsec:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsMacsecStatus - 1347, // 673: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus.receiving_optical_power:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsLinkOpticalPower - 1347, // 674: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus.transmitting_optical_power:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsLinkOpticalPower - 1351, // 675: google.cloud.compute.v1.InterconnectGroup.configured:type_name -> google.cloud.compute.v1.InterconnectGroupConfigured - 1354, // 676: google.cloud.compute.v1.InterconnectGroup.intent:type_name -> google.cloud.compute.v1.InterconnectGroupIntent - 2411, // 677: google.cloud.compute.v1.InterconnectGroup.interconnects:type_name -> google.cloud.compute.v1.InterconnectGroup.InterconnectsEntry - 1356, // 678: google.cloud.compute.v1.InterconnectGroup.physical_structure:type_name -> google.cloud.compute.v1.InterconnectGroupPhysicalStructure - 1352, // 679: google.cloud.compute.v1.InterconnectGroupConfigured.topology_capability:type_name -> google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapability - 1353, // 680: google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapability.intended_capability_blockers:type_name -> google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers - 1357, // 681: google.cloud.compute.v1.InterconnectGroupPhysicalStructure.metros:type_name -> google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetros - 1358, // 682: google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetros.facilities:type_name -> google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetrosFacilities - 1359, // 683: google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetrosFacilities.zones:type_name -> google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetrosFacilitiesZones - 1361, // 684: google.cloud.compute.v1.InterconnectGroupsCreateMembers.interconnects:type_name -> google.cloud.compute.v1.InterconnectGroupsCreateMembersInterconnectInput - 1361, // 685: google.cloud.compute.v1.InterconnectGroupsCreateMembers.template_interconnect:type_name -> google.cloud.compute.v1.InterconnectGroupsCreateMembersInterconnectInput - 1360, // 686: google.cloud.compute.v1.InterconnectGroupsCreateMembersRequest.request:type_name -> google.cloud.compute.v1.InterconnectGroupsCreateMembers - 1365, // 687: google.cloud.compute.v1.InterconnectGroupsGetOperationalStatusResponse.result:type_name -> google.cloud.compute.v1.InterconnectGroupsOperationalStatus - 1350, // 688: google.cloud.compute.v1.InterconnectGroupsListResponse.items:type_name -> google.cloud.compute.v1.InterconnectGroup - 2320, // 689: google.cloud.compute.v1.InterconnectGroupsListResponse.warning:type_name -> google.cloud.compute.v1.Warning - 1351, // 690: google.cloud.compute.v1.InterconnectGroupsOperationalStatus.configured:type_name -> google.cloud.compute.v1.InterconnectGroupConfigured - 1354, // 691: google.cloud.compute.v1.InterconnectGroupsOperationalStatus.intent:type_name -> google.cloud.compute.v1.InterconnectGroupIntent - 1366, // 692: google.cloud.compute.v1.InterconnectGroupsOperationalStatus.interconnect_statuses:type_name -> google.cloud.compute.v1.InterconnectGroupsOperationalStatusInterconnectStatus - 1351, // 693: google.cloud.compute.v1.InterconnectGroupsOperationalStatus.operational:type_name -> google.cloud.compute.v1.InterconnectGroupConfigured - 1344, // 694: google.cloud.compute.v1.InterconnectGroupsOperationalStatusInterconnectStatus.diagnostics:type_name -> google.cloud.compute.v1.InterconnectDiagnostics - 1310, // 695: google.cloud.compute.v1.InterconnectList.items:type_name -> google.cloud.compute.v1.Interconnect - 2320, // 696: google.cloud.compute.v1.InterconnectList.warning:type_name -> google.cloud.compute.v1.Warning - 1369, // 697: google.cloud.compute.v1.InterconnectLocation.cross_site_interconnect_infos:type_name -> google.cloud.compute.v1.InterconnectLocationCrossSiteInterconnectInfo - 1371, // 698: google.cloud.compute.v1.InterconnectLocation.region_infos:type_name -> google.cloud.compute.v1.InterconnectLocationRegionInfo - 1368, // 699: google.cloud.compute.v1.InterconnectLocationList.items:type_name -> google.cloud.compute.v1.InterconnectLocation - 2320, // 700: google.cloud.compute.v1.InterconnectLocationList.warning:type_name -> google.cloud.compute.v1.Warning - 1375, // 701: google.cloud.compute.v1.InterconnectMacsec.pre_shared_keys:type_name -> google.cloud.compute.v1.InterconnectMacsecPreSharedKey - 1374, // 702: google.cloud.compute.v1.InterconnectMacsecConfig.pre_shared_keys:type_name -> google.cloud.compute.v1.InterconnectMacsecConfigPreSharedKey - 2412, // 703: google.cloud.compute.v1.InterconnectParams.resource_manager_tags:type_name -> google.cloud.compute.v1.InterconnectParams.ResourceManagerTagsEntry - 1317, // 704: google.cloud.compute.v1.InterconnectRemoteLocation.attachment_configuration_constraints:type_name -> google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints - 1379, // 705: google.cloud.compute.v1.InterconnectRemoteLocation.constraints:type_name -> google.cloud.compute.v1.InterconnectRemoteLocationConstraints - 1382, // 706: google.cloud.compute.v1.InterconnectRemoteLocation.permitted_connections:type_name -> google.cloud.compute.v1.InterconnectRemoteLocationPermittedConnections - 1380, // 707: google.cloud.compute.v1.InterconnectRemoteLocationConstraints.subnet_length_range:type_name -> google.cloud.compute.v1.InterconnectRemoteLocationConstraintsSubnetLengthRange - 1378, // 708: google.cloud.compute.v1.InterconnectRemoteLocationList.items:type_name -> google.cloud.compute.v1.InterconnectRemoteLocation - 2320, // 709: google.cloud.compute.v1.InterconnectRemoteLocationList.warning:type_name -> google.cloud.compute.v1.Warning - 1344, // 710: google.cloud.compute.v1.InterconnectsGetDiagnosticsResponse.result:type_name -> google.cloud.compute.v1.InterconnectDiagnostics - 1373, // 711: google.cloud.compute.v1.InterconnectsGetMacsecConfigResponse.result:type_name -> google.cloud.compute.v1.InterconnectMacsecConfig - 659, // 712: google.cloud.compute.v1.InvalidateCacheUrlMapRequest.cache_invalidation_rule_resource:type_name -> google.cloud.compute.v1.CacheInvalidationRule - 833, // 713: google.cloud.compute.v1.License.minimum_retention:type_name -> google.cloud.compute.v1.Duration - 1390, // 714: google.cloud.compute.v1.License.params:type_name -> google.cloud.compute.v1.LicenseParams - 1392, // 715: google.cloud.compute.v1.License.resource_requirements:type_name -> google.cloud.compute.v1.LicenseResourceRequirements - 1389, // 716: google.cloud.compute.v1.LicenseCode.license_alias:type_name -> google.cloud.compute.v1.LicenseCodeLicenseAlias - 2413, // 717: google.cloud.compute.v1.LicenseParams.resource_manager_tags:type_name -> google.cloud.compute.v1.LicenseParams.ResourceManagerTagsEntry - 1387, // 718: google.cloud.compute.v1.LicensesListResponse.items:type_name -> google.cloud.compute.v1.License - 2320, // 719: google.cloud.compute.v1.LicensesListResponse.warning:type_name -> google.cloud.compute.v1.Warning - 1266, // 720: google.cloud.compute.v1.ListInstancesInstanceGroupsRequest.instance_groups_list_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupsListInstancesRequest - 1779, // 721: google.cloud.compute.v1.ListInstancesRegionInstanceGroupsRequest.region_instance_groups_list_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupsListInstancesRequest - 1577, // 722: google.cloud.compute.v1.ListNetworkEndpointsNetworkEndpointGroupsRequest.network_endpoint_groups_list_endpoints_request_resource:type_name -> google.cloud.compute.v1.NetworkEndpointGroupsListEndpointsRequest - 1733, // 723: google.cloud.compute.v1.ListXpnHostsProjectsRequest.projects_list_xpn_hosts_request_resource:type_name -> google.cloud.compute.v1.ProjectsListXpnHostsRequest - 2414, // 724: google.cloud.compute.v1.LocationPolicy.locations:type_name -> google.cloud.compute.v1.LocationPolicy.LocationsEntry - 1531, // 725: google.cloud.compute.v1.LocationPolicy.zones:type_name -> google.cloud.compute.v1.LocationPolicyZoneConfiguration - 1530, // 726: google.cloud.compute.v1.LocationPolicyLocation.constraints:type_name -> google.cloud.compute.v1.LocationPolicyLocationConstraints - 1277, // 727: google.cloud.compute.v1.MachineImage.instance_properties:type_name -> google.cloud.compute.v1.InstanceProperties - 2415, // 728: google.cloud.compute.v1.MachineImage.labels:type_name -> google.cloud.compute.v1.MachineImage.LabelsEntry - 695, // 729: google.cloud.compute.v1.MachineImage.machine_image_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 1534, // 730: google.cloud.compute.v1.MachineImage.params:type_name -> google.cloud.compute.v1.MachineImageParams - 1913, // 731: google.cloud.compute.v1.MachineImage.saved_disks:type_name -> google.cloud.compute.v1.SavedDisk - 2078, // 732: google.cloud.compute.v1.MachineImage.source_disk_encryption_keys:type_name -> google.cloud.compute.v1.SourceDiskEncryptionKey - 2080, // 733: google.cloud.compute.v1.MachineImage.source_instance_properties:type_name -> google.cloud.compute.v1.SourceInstanceProperties - 1532, // 734: google.cloud.compute.v1.MachineImageList.items:type_name -> google.cloud.compute.v1.MachineImage - 2320, // 735: google.cloud.compute.v1.MachineImageList.warning:type_name -> google.cloud.compute.v1.Warning - 2416, // 736: google.cloud.compute.v1.MachineImageParams.resource_manager_tags:type_name -> google.cloud.compute.v1.MachineImageParams.ResourceManagerTagsEntry - 484, // 737: google.cloud.compute.v1.MachineType.accelerators:type_name -> google.cloud.compute.v1.Accelerators - 658, // 738: google.cloud.compute.v1.MachineType.bundled_local_ssds:type_name -> google.cloud.compute.v1.BundledLocalSsds - 803, // 739: google.cloud.compute.v1.MachineType.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus - 2417, // 740: google.cloud.compute.v1.MachineTypeAggregatedList.items:type_name -> google.cloud.compute.v1.MachineTypeAggregatedList.ItemsEntry - 2320, // 741: google.cloud.compute.v1.MachineTypeAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1535, // 742: google.cloud.compute.v1.MachineTypeList.items:type_name -> google.cloud.compute.v1.MachineType - 2320, // 743: google.cloud.compute.v1.MachineTypeList.warning:type_name -> google.cloud.compute.v1.Warning - 1535, // 744: google.cloud.compute.v1.MachineTypesScopedList.machine_types:type_name -> google.cloud.compute.v1.MachineType - 2320, // 745: google.cloud.compute.v1.MachineTypesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 1540, // 746: google.cloud.compute.v1.ManagedInstance.instance_health:type_name -> google.cloud.compute.v1.ManagedInstanceInstanceHealth - 1541, // 747: google.cloud.compute.v1.ManagedInstance.last_attempt:type_name -> google.cloud.compute.v1.ManagedInstanceLastAttempt - 1718, // 748: google.cloud.compute.v1.ManagedInstance.preserved_state_from_config:type_name -> google.cloud.compute.v1.PreservedState - 1718, // 749: google.cloud.compute.v1.ManagedInstance.preserved_state_from_policy:type_name -> google.cloud.compute.v1.PreservedState - 1543, // 750: google.cloud.compute.v1.ManagedInstance.properties_from_flexibility_policy:type_name -> google.cloud.compute.v1.ManagedInstancePropertiesFromFlexibilityPolicy - 1544, // 751: google.cloud.compute.v1.ManagedInstance.version:type_name -> google.cloud.compute.v1.ManagedInstanceVersion - 1542, // 752: google.cloud.compute.v1.ManagedInstanceLastAttempt.errors:type_name -> google.cloud.compute.v1.ManagedInstanceLastAttemptErrors - 839, // 753: google.cloud.compute.v1.ManagedInstanceLastAttemptErrors.errors:type_name -> google.cloud.compute.v1.Errors - 1386, // 754: google.cloud.compute.v1.Metadata.items:type_name -> google.cloud.compute.v1.Items - 1547, // 755: google.cloud.compute.v1.MetadataFilter.filter_labels:type_name -> google.cloud.compute.v1.MetadataFilterLabelMatch - 1752, // 756: google.cloud.compute.v1.MoveAddressRequest.region_addresses_move_request_resource:type_name -> google.cloud.compute.v1.RegionAddressesMoveRequest - 816, // 757: google.cloud.compute.v1.MoveDiskProjectRequest.disk_move_request_resource:type_name -> google.cloud.compute.v1.DiskMoveRequest - 1070, // 758: google.cloud.compute.v1.MoveGlobalAddressRequest.global_addresses_move_request_resource:type_name -> google.cloud.compute.v1.GlobalAddressesMoveRequest - 1275, // 759: google.cloud.compute.v1.MoveInstanceProjectRequest.instance_move_request_resource:type_name -> google.cloud.compute.v1.InstanceMoveRequest - 1556, // 760: google.cloud.compute.v1.NatIpInfo.nat_ip_info_mappings:type_name -> google.cloud.compute.v1.NatIpInfoNatIpInfoMapping - 1555, // 761: google.cloud.compute.v1.NatIpInfoResponse.result:type_name -> google.cloud.compute.v1.NatIpInfo - 1584, // 762: google.cloud.compute.v1.Network.params:type_name -> google.cloud.compute.v1.NetworkParams - 1585, // 763: google.cloud.compute.v1.Network.peerings:type_name -> google.cloud.compute.v1.NetworkPeering - 1596, // 764: google.cloud.compute.v1.Network.routing_config:type_name -> google.cloud.compute.v1.NetworkRoutingConfig - 1561, // 765: google.cloud.compute.v1.NetworkAttachment.connection_endpoints:type_name -> google.cloud.compute.v1.NetworkAttachmentConnectedEndpoint - 2418, // 766: google.cloud.compute.v1.NetworkAttachmentAggregatedList.items:type_name -> google.cloud.compute.v1.NetworkAttachmentAggregatedList.ItemsEntry - 2320, // 767: google.cloud.compute.v1.NetworkAttachmentAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1559, // 768: google.cloud.compute.v1.NetworkAttachmentList.items:type_name -> google.cloud.compute.v1.NetworkAttachment - 2320, // 769: google.cloud.compute.v1.NetworkAttachmentList.warning:type_name -> google.cloud.compute.v1.Warning - 1559, // 770: google.cloud.compute.v1.NetworkAttachmentsScopedList.network_attachments:type_name -> google.cloud.compute.v1.NetworkAttachment - 2320, // 771: google.cloud.compute.v1.NetworkAttachmentsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2419, // 772: google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList.items:type_name -> google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList.ItemsEntry - 2320, // 773: google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1564, // 774: google.cloud.compute.v1.NetworkEdgeSecurityServicesScopedList.network_edge_security_services:type_name -> google.cloud.compute.v1.NetworkEdgeSecurityService - 2320, // 775: google.cloud.compute.v1.NetworkEdgeSecurityServicesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2420, // 776: google.cloud.compute.v1.NetworkEndpoint.annotations:type_name -> google.cloud.compute.v1.NetworkEndpoint.AnnotationsEntry - 2421, // 777: google.cloud.compute.v1.NetworkEndpointGroup.annotations:type_name -> google.cloud.compute.v1.NetworkEndpointGroup.AnnotationsEntry - 1570, // 778: google.cloud.compute.v1.NetworkEndpointGroup.app_engine:type_name -> google.cloud.compute.v1.NetworkEndpointGroupAppEngine - 1571, // 779: google.cloud.compute.v1.NetworkEndpointGroup.cloud_function:type_name -> google.cloud.compute.v1.NetworkEndpointGroupCloudFunction - 1572, // 780: google.cloud.compute.v1.NetworkEndpointGroup.cloud_run:type_name -> google.cloud.compute.v1.NetworkEndpointGroupCloudRun - 1574, // 781: google.cloud.compute.v1.NetworkEndpointGroup.psc_data:type_name -> google.cloud.compute.v1.NetworkEndpointGroupPscData - 2422, // 782: google.cloud.compute.v1.NetworkEndpointGroupAggregatedList.items:type_name -> google.cloud.compute.v1.NetworkEndpointGroupAggregatedList.ItemsEntry - 2320, // 783: google.cloud.compute.v1.NetworkEndpointGroupAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1568, // 784: google.cloud.compute.v1.NetworkEndpointGroupList.items:type_name -> google.cloud.compute.v1.NetworkEndpointGroup - 2320, // 785: google.cloud.compute.v1.NetworkEndpointGroupList.warning:type_name -> google.cloud.compute.v1.Warning - 1567, // 786: google.cloud.compute.v1.NetworkEndpointGroupsAttachEndpointsRequest.network_endpoints:type_name -> google.cloud.compute.v1.NetworkEndpoint - 1567, // 787: google.cloud.compute.v1.NetworkEndpointGroupsDetachEndpointsRequest.network_endpoints:type_name -> google.cloud.compute.v1.NetworkEndpoint - 1580, // 788: google.cloud.compute.v1.NetworkEndpointGroupsListNetworkEndpoints.items:type_name -> google.cloud.compute.v1.NetworkEndpointWithHealthStatus - 2320, // 789: google.cloud.compute.v1.NetworkEndpointGroupsListNetworkEndpoints.warning:type_name -> google.cloud.compute.v1.Warning - 1568, // 790: google.cloud.compute.v1.NetworkEndpointGroupsScopedList.network_endpoint_groups:type_name -> google.cloud.compute.v1.NetworkEndpointGroup - 2320, // 791: google.cloud.compute.v1.NetworkEndpointGroupsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 1104, // 792: google.cloud.compute.v1.NetworkEndpointWithHealthStatus.healths:type_name -> google.cloud.compute.v1.HealthStatusForNetworkEndpoint - 1567, // 793: google.cloud.compute.v1.NetworkEndpointWithHealthStatus.network_endpoint:type_name -> google.cloud.compute.v1.NetworkEndpoint - 2423, // 794: google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList.items:type_name -> google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList.ItemsEntry - 2320, // 795: google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 485, // 796: google.cloud.compute.v1.NetworkInterface.access_configs:type_name -> google.cloud.compute.v1.AccessConfig - 565, // 797: google.cloud.compute.v1.NetworkInterface.alias_ip_ranges:type_name -> google.cloud.compute.v1.AliasIpRange - 485, // 798: google.cloud.compute.v1.NetworkInterface.ipv6_access_configs:type_name -> google.cloud.compute.v1.AccessConfig - 1558, // 799: google.cloud.compute.v1.NetworkList.items:type_name -> google.cloud.compute.v1.Network - 2320, // 800: google.cloud.compute.v1.NetworkList.warning:type_name -> google.cloud.compute.v1.Warning - 2424, // 801: google.cloud.compute.v1.NetworkParams.resource_manager_tags:type_name -> google.cloud.compute.v1.NetworkParams.ResourceManagerTagsEntry - 1586, // 802: google.cloud.compute.v1.NetworkPeering.connection_status:type_name -> google.cloud.compute.v1.NetworkPeeringConnectionStatus - 1587, // 803: google.cloud.compute.v1.NetworkPeeringConnectionStatus.consensus_state:type_name -> google.cloud.compute.v1.NetworkPeeringConnectionStatusConsensusState - 1588, // 804: google.cloud.compute.v1.NetworkPeeringConnectionStatus.traffic_configuration:type_name -> google.cloud.compute.v1.NetworkPeeringConnectionStatusTrafficConfiguration - 1592, // 805: google.cloud.compute.v1.NetworkProfile.features:type_name -> google.cloud.compute.v1.NetworkProfileNetworkFeatures - 1591, // 806: google.cloud.compute.v1.NetworkProfile.location:type_name -> google.cloud.compute.v1.NetworkProfileLocation - 1594, // 807: google.cloud.compute.v1.NetworkProfile.profile_type:type_name -> google.cloud.compute.v1.NetworkProfileProfileType - 1593, // 808: google.cloud.compute.v1.NetworkProfileNetworkFeatures.predefined_subnetwork_ranges:type_name -> google.cloud.compute.v1.NetworkProfileNetworkFeaturesPredefinedSubnetworkRange - 1590, // 809: google.cloud.compute.v1.NetworkProfilesListResponse.items:type_name -> google.cloud.compute.v1.NetworkProfile - 2320, // 810: google.cloud.compute.v1.NetworkProfilesListResponse.warning:type_name -> google.cloud.compute.v1.Warning - 1585, // 811: google.cloud.compute.v1.NetworksAddPeeringRequest.network_peering:type_name -> google.cloud.compute.v1.NetworkPeering - 1599, // 812: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponse.firewall_policys:type_name -> google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy - 849, // 813: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponse.firewalls:type_name -> google.cloud.compute.v1.Firewall - 858, // 814: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.packet_mirroring_rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 858, // 815: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 1585, // 816: google.cloud.compute.v1.NetworksUpdatePeeringRequest.network_peering:type_name -> google.cloud.compute.v1.NetworkPeering - 1605, // 817: google.cloud.compute.v1.NodeGroup.autoscaling_policy:type_name -> google.cloud.compute.v1.NodeGroupAutoscalingPolicy - 1607, // 818: google.cloud.compute.v1.NodeGroup.maintenance_window:type_name -> google.cloud.compute.v1.NodeGroupMaintenanceWindow - 2063, // 819: google.cloud.compute.v1.NodeGroup.share_settings:type_name -> google.cloud.compute.v1.ShareSettings - 2425, // 820: google.cloud.compute.v1.NodeGroupAggregatedList.items:type_name -> google.cloud.compute.v1.NodeGroupAggregatedList.ItemsEntry - 2320, // 821: google.cloud.compute.v1.NodeGroupAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1603, // 822: google.cloud.compute.v1.NodeGroupList.items:type_name -> google.cloud.compute.v1.NodeGroup - 2320, // 823: google.cloud.compute.v1.NodeGroupList.warning:type_name -> google.cloud.compute.v1.Warning - 833, // 824: google.cloud.compute.v1.NodeGroupMaintenanceWindow.maintenance_duration:type_name -> google.cloud.compute.v1.Duration - 476, // 825: google.cloud.compute.v1.NodeGroupNode.accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig - 1213, // 826: google.cloud.compute.v1.NodeGroupNode.consumed_resources:type_name -> google.cloud.compute.v1.InstanceConsumptionInfo - 1526, // 827: google.cloud.compute.v1.NodeGroupNode.disks:type_name -> google.cloud.compute.v1.LocalDisk - 1212, // 828: google.cloud.compute.v1.NodeGroupNode.instance_consumption_data:type_name -> google.cloud.compute.v1.InstanceConsumptionData - 1956, // 829: google.cloud.compute.v1.NodeGroupNode.server_binding:type_name -> google.cloud.compute.v1.ServerBinding - 1213, // 830: google.cloud.compute.v1.NodeGroupNode.total_resources:type_name -> google.cloud.compute.v1.InstanceConsumptionInfo - 2245, // 831: google.cloud.compute.v1.NodeGroupNode.upcoming_maintenance:type_name -> google.cloud.compute.v1.UpcomingMaintenance - 1608, // 832: google.cloud.compute.v1.NodeGroupsListNodes.items:type_name -> google.cloud.compute.v1.NodeGroupNode - 2320, // 833: google.cloud.compute.v1.NodeGroupsListNodes.warning:type_name -> google.cloud.compute.v1.Warning - 1603, // 834: google.cloud.compute.v1.NodeGroupsScopedList.node_groups:type_name -> google.cloud.compute.v1.NodeGroup - 2320, // 835: google.cloud.compute.v1.NodeGroupsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 476, // 836: google.cloud.compute.v1.NodeTemplate.accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig - 1526, // 837: google.cloud.compute.v1.NodeTemplate.disks:type_name -> google.cloud.compute.v1.LocalDisk - 2426, // 838: google.cloud.compute.v1.NodeTemplate.node_affinity_labels:type_name -> google.cloud.compute.v1.NodeTemplate.NodeAffinityLabelsEntry - 1619, // 839: google.cloud.compute.v1.NodeTemplate.node_type_flexibility:type_name -> google.cloud.compute.v1.NodeTemplateNodeTypeFlexibility - 1956, // 840: google.cloud.compute.v1.NodeTemplate.server_binding:type_name -> google.cloud.compute.v1.ServerBinding - 2427, // 841: google.cloud.compute.v1.NodeTemplateAggregatedList.items:type_name -> google.cloud.compute.v1.NodeTemplateAggregatedList.ItemsEntry - 2320, // 842: google.cloud.compute.v1.NodeTemplateAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1616, // 843: google.cloud.compute.v1.NodeTemplateList.items:type_name -> google.cloud.compute.v1.NodeTemplate - 2320, // 844: google.cloud.compute.v1.NodeTemplateList.warning:type_name -> google.cloud.compute.v1.Warning - 1616, // 845: google.cloud.compute.v1.NodeTemplatesScopedList.node_templates:type_name -> google.cloud.compute.v1.NodeTemplate - 2320, // 846: google.cloud.compute.v1.NodeTemplatesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 803, // 847: google.cloud.compute.v1.NodeType.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus - 2428, // 848: google.cloud.compute.v1.NodeTypeAggregatedList.items:type_name -> google.cloud.compute.v1.NodeTypeAggregatedList.ItemsEntry - 2320, // 849: google.cloud.compute.v1.NodeTypeAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1621, // 850: google.cloud.compute.v1.NodeTypeList.items:type_name -> google.cloud.compute.v1.NodeType - 2320, // 851: google.cloud.compute.v1.NodeTypeList.warning:type_name -> google.cloud.compute.v1.Warning - 1621, // 852: google.cloud.compute.v1.NodeTypesScopedList.node_types:type_name -> google.cloud.compute.v1.NodeType - 2320, // 853: google.cloud.compute.v1.NodeTypesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 1627, // 854: google.cloud.compute.v1.NotificationEndpoint.grpc_settings:type_name -> google.cloud.compute.v1.NotificationEndpointGrpcSettings - 2429, // 855: google.cloud.compute.v1.NotificationEndpointAggregatedList.items:type_name -> google.cloud.compute.v1.NotificationEndpointAggregatedList.ItemsEntry - 2320, // 856: google.cloud.compute.v1.NotificationEndpointAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 833, // 857: google.cloud.compute.v1.NotificationEndpointGrpcSettings.resend_interval:type_name -> google.cloud.compute.v1.Duration - 1625, // 858: google.cloud.compute.v1.NotificationEndpointList.items:type_name -> google.cloud.compute.v1.NotificationEndpoint - 2320, // 859: google.cloud.compute.v1.NotificationEndpointList.warning:type_name -> google.cloud.compute.v1.Warning - 1625, // 860: google.cloud.compute.v1.NotificationEndpointsScopedList.resources:type_name -> google.cloud.compute.v1.NotificationEndpoint - 2320, // 861: google.cloud.compute.v1.NotificationEndpointsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 836, // 862: google.cloud.compute.v1.Operation.error:type_name -> google.cloud.compute.v1.Error - 1059, // 863: google.cloud.compute.v1.Operation.get_version_operation_metadata:type_name -> google.cloud.compute.v1.GetVersionOperationMetadata - 1288, // 864: google.cloud.compute.v1.Operation.instances_bulk_insert_operation_metadata:type_name -> google.cloud.compute.v1.InstancesBulkInsertOperationMetadata - 1970, // 865: google.cloud.compute.v1.Operation.set_common_instance_metadata_operation_metadata:type_name -> google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadata - 292, // 866: google.cloud.compute.v1.Operation.status:type_name -> google.cloud.compute.v1.Operation.Status - 2321, // 867: google.cloud.compute.v1.Operation.warnings:type_name -> google.cloud.compute.v1.Warnings - 2430, // 868: google.cloud.compute.v1.OperationAggregatedList.items:type_name -> google.cloud.compute.v1.OperationAggregatedList.ItemsEntry - 2320, // 869: google.cloud.compute.v1.OperationAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1630, // 870: google.cloud.compute.v1.OperationList.items:type_name -> google.cloud.compute.v1.Operation - 2320, // 871: google.cloud.compute.v1.OperationList.warning:type_name -> google.cloud.compute.v1.Warning - 1630, // 872: google.cloud.compute.v1.OperationsScopedList.operations:type_name -> google.cloud.compute.v1.Operation - 2320, // 873: google.cloud.compute.v1.OperationsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 1930, // 874: google.cloud.compute.v1.OrganizationSecurityPoliciesListAssociationsResponse.associations:type_name -> google.cloud.compute.v1.SecurityPolicyAssociation - 833, // 875: google.cloud.compute.v1.OutlierDetection.base_ejection_time:type_name -> google.cloud.compute.v1.Duration - 833, // 876: google.cloud.compute.v1.OutlierDetection.interval:type_name -> google.cloud.compute.v1.Duration - 1640, // 877: google.cloud.compute.v1.PacketMirroring.collector_ilb:type_name -> google.cloud.compute.v1.PacketMirroringForwardingRuleInfo - 1639, // 878: google.cloud.compute.v1.PacketMirroring.filter:type_name -> google.cloud.compute.v1.PacketMirroringFilter - 1642, // 879: google.cloud.compute.v1.PacketMirroring.mirrored_resources:type_name -> google.cloud.compute.v1.PacketMirroringMirroredResourceInfo - 1645, // 880: google.cloud.compute.v1.PacketMirroring.network:type_name -> google.cloud.compute.v1.PacketMirroringNetworkInfo - 2431, // 881: google.cloud.compute.v1.PacketMirroringAggregatedList.items:type_name -> google.cloud.compute.v1.PacketMirroringAggregatedList.ItemsEntry - 2320, // 882: google.cloud.compute.v1.PacketMirroringAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1637, // 883: google.cloud.compute.v1.PacketMirroringList.items:type_name -> google.cloud.compute.v1.PacketMirroring - 2320, // 884: google.cloud.compute.v1.PacketMirroringList.warning:type_name -> google.cloud.compute.v1.Warning - 1643, // 885: google.cloud.compute.v1.PacketMirroringMirroredResourceInfo.instances:type_name -> google.cloud.compute.v1.PacketMirroringMirroredResourceInfoInstanceInfo - 1644, // 886: google.cloud.compute.v1.PacketMirroringMirroredResourceInfo.subnetworks:type_name -> google.cloud.compute.v1.PacketMirroringMirroredResourceInfoSubnetInfo - 1637, // 887: google.cloud.compute.v1.PacketMirroringsScopedList.packet_mirrorings:type_name -> google.cloud.compute.v1.PacketMirroring - 2320, // 888: google.cloud.compute.v1.PacketMirroringsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 589, // 889: google.cloud.compute.v1.PatchAutoscalerRequest.autoscaler_resource:type_name -> google.cloud.compute.v1.Autoscaler - 602, // 890: google.cloud.compute.v1.PatchBackendBucketRequest.backend_bucket_resource:type_name -> google.cloud.compute.v1.BackendBucket - 611, // 891: google.cloud.compute.v1.PatchBackendServiceRequest.backend_service_resource:type_name -> google.cloud.compute.v1.BackendService - 691, // 892: google.cloud.compute.v1.PatchCrossSiteNetworkRequest.cross_site_network_resource:type_name -> google.cloud.compute.v1.CrossSiteNetwork - 855, // 893: google.cloud.compute.v1.PatchFirewallPolicyRequest.firewall_policy_resource:type_name -> google.cloud.compute.v1.FirewallPolicy - 849, // 894: google.cloud.compute.v1.PatchFirewallRequest.firewall_resource:type_name -> google.cloud.compute.v1.Firewall - 864, // 895: google.cloud.compute.v1.PatchForwardingRuleRequest.forwarding_rule_resource:type_name -> google.cloud.compute.v1.ForwardingRule - 864, // 896: google.cloud.compute.v1.PatchGlobalForwardingRuleRequest.forwarding_rule_resource:type_name -> google.cloud.compute.v1.ForwardingRule - 1739, // 897: google.cloud.compute.v1.PatchGlobalPublicDelegatedPrefixeRequest.public_delegated_prefix_resource:type_name -> google.cloud.compute.v1.PublicDelegatedPrefix - 1088, // 898: google.cloud.compute.v1.PatchHealthCheckRequest.health_check_resource:type_name -> google.cloud.compute.v1.HealthCheck - 1120, // 899: google.cloud.compute.v1.PatchImageRequest.image_resource:type_name -> google.cloud.compute.v1.Image - 1219, // 900: google.cloud.compute.v1.PatchInstanceGroupManagerRequest.instance_group_manager_resource:type_name -> google.cloud.compute.v1.InstanceGroupManager - 1280, // 901: google.cloud.compute.v1.PatchInstanceSettingRequest.instance_settings_resource:type_name -> google.cloud.compute.v1.InstanceSettings - 1319, // 902: google.cloud.compute.v1.PatchInterconnectAttachmentGroupRequest.interconnect_attachment_group_resource:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroup - 1315, // 903: google.cloud.compute.v1.PatchInterconnectAttachmentRequest.interconnect_attachment_resource:type_name -> google.cloud.compute.v1.InterconnectAttachment - 1350, // 904: google.cloud.compute.v1.PatchInterconnectGroupRequest.interconnect_group_resource:type_name -> google.cloud.compute.v1.InterconnectGroup - 1310, // 905: google.cloud.compute.v1.PatchInterconnectRequest.interconnect_resource:type_name -> google.cloud.compute.v1.Interconnect - 1559, // 906: google.cloud.compute.v1.PatchNetworkAttachmentRequest.network_attachment_resource:type_name -> google.cloud.compute.v1.NetworkAttachment - 1564, // 907: google.cloud.compute.v1.PatchNetworkEdgeSecurityServiceRequest.network_edge_security_service_resource:type_name -> google.cloud.compute.v1.NetworkEdgeSecurityService - 855, // 908: google.cloud.compute.v1.PatchNetworkFirewallPolicyRequest.firewall_policy_resource:type_name -> google.cloud.compute.v1.FirewallPolicy - 1558, // 909: google.cloud.compute.v1.PatchNetworkRequest.network_resource:type_name -> google.cloud.compute.v1.Network - 1603, // 910: google.cloud.compute.v1.PatchNodeGroupRequest.node_group_resource:type_name -> google.cloud.compute.v1.NodeGroup - 1923, // 911: google.cloud.compute.v1.PatchOrganizationSecurityPolicyRequest.security_policy_resource:type_name -> google.cloud.compute.v1.SecurityPolicy - 1637, // 912: google.cloud.compute.v1.PatchPacketMirroringRequest.packet_mirroring_resource:type_name -> google.cloud.compute.v1.PacketMirroring - 858, // 913: google.cloud.compute.v1.PatchPacketMirroringRuleNetworkFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 1254, // 914: google.cloud.compute.v1.PatchPerInstanceConfigsInstanceGroupManagerRequest.instance_group_managers_patch_per_instance_configs_req_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersPatchPerInstanceConfigsReq - 1762, // 915: google.cloud.compute.v1.PatchPerInstanceConfigsRegionInstanceGroupManagerRequest.region_instance_group_manager_patch_instance_config_req_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagerPatchInstanceConfigReq - 1736, // 916: google.cloud.compute.v1.PatchPublicAdvertisedPrefixeRequest.public_advertised_prefix_resource:type_name -> google.cloud.compute.v1.PublicAdvertisedPrefix - 1739, // 917: google.cloud.compute.v1.PatchPublicDelegatedPrefixeRequest.public_delegated_prefix_resource:type_name -> google.cloud.compute.v1.PublicDelegatedPrefix - 589, // 918: google.cloud.compute.v1.PatchRegionAutoscalerRequest.autoscaler_resource:type_name -> google.cloud.compute.v1.Autoscaler - 611, // 919: google.cloud.compute.v1.PatchRegionBackendServiceRequest.backend_service_resource:type_name -> google.cloud.compute.v1.BackendService - 676, // 920: google.cloud.compute.v1.PatchRegionCompositeHealthCheckRequest.composite_health_check_resource:type_name -> google.cloud.compute.v1.CompositeHealthCheck - 1085, // 921: google.cloud.compute.v1.PatchRegionHealthAggregationPolicyRequest.health_aggregation_policy_resource:type_name -> google.cloud.compute.v1.HealthAggregationPolicy - 1088, // 922: google.cloud.compute.v1.PatchRegionHealthCheckRequest.health_check_resource:type_name -> google.cloud.compute.v1.HealthCheck - 1092, // 923: google.cloud.compute.v1.PatchRegionHealthCheckServiceRequest.health_check_service_resource:type_name -> google.cloud.compute.v1.HealthCheckService - 1099, // 924: google.cloud.compute.v1.PatchRegionHealthSourceRequest.health_source_resource:type_name -> google.cloud.compute.v1.HealthSource - 1219, // 925: google.cloud.compute.v1.PatchRegionInstanceGroupManagerRequest.instance_group_manager_resource:type_name -> google.cloud.compute.v1.InstanceGroupManager - 855, // 926: google.cloud.compute.v1.PatchRegionNetworkFirewallPolicyRequest.firewall_policy_resource:type_name -> google.cloud.compute.v1.FirewallPolicy - 1923, // 927: google.cloud.compute.v1.PatchRegionSecurityPolicyRequest.security_policy_resource:type_name -> google.cloud.compute.v1.SecurityPolicy - 2091, // 928: google.cloud.compute.v1.PatchRegionSslPolicyRequest.ssl_policy_resource:type_name -> google.cloud.compute.v1.SslPolicy - 2154, // 929: google.cloud.compute.v1.PatchRegionTargetHttpsProxyRequest.target_https_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxy - 2275, // 930: google.cloud.compute.v1.PatchRegionUrlMapRequest.url_map_resource:type_name -> google.cloud.compute.v1.UrlMap - 1852, // 931: google.cloud.compute.v1.PatchResourcePolicyRequest.resource_policy_resource:type_name -> google.cloud.compute.v1.ResourcePolicy - 1882, // 932: google.cloud.compute.v1.PatchRoutePolicyRouterRequest.route_policy_resource:type_name -> google.cloud.compute.v1.RoutePolicy - 1884, // 933: google.cloud.compute.v1.PatchRouterRequest.router_resource:type_name -> google.cloud.compute.v1.Router - 858, // 934: google.cloud.compute.v1.PatchRuleFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 858, // 935: google.cloud.compute.v1.PatchRuleNetworkFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 1935, // 936: google.cloud.compute.v1.PatchRuleOrganizationSecurityPolicyRequest.security_policy_rule_resource:type_name -> google.cloud.compute.v1.SecurityPolicyRule - 858, // 937: google.cloud.compute.v1.PatchRuleRegionNetworkFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 1935, // 938: google.cloud.compute.v1.PatchRuleRegionSecurityPolicyRequest.security_policy_rule_resource:type_name -> google.cloud.compute.v1.SecurityPolicyRule - 1935, // 939: google.cloud.compute.v1.PatchRuleSecurityPolicyRequest.security_policy_rule_resource:type_name -> google.cloud.compute.v1.SecurityPolicyRule - 1923, // 940: google.cloud.compute.v1.PatchSecurityPolicyRequest.security_policy_resource:type_name -> google.cloud.compute.v1.SecurityPolicy - 1958, // 941: google.cloud.compute.v1.PatchServiceAttachmentRequest.service_attachment_resource:type_name -> google.cloud.compute.v1.ServiceAttachment - 2075, // 942: google.cloud.compute.v1.PatchSnapshotSettingRequest.snapshot_settings_resource:type_name -> google.cloud.compute.v1.SnapshotSettings - 2091, // 943: google.cloud.compute.v1.PatchSslPolicyRequest.ssl_policy_resource:type_name -> google.cloud.compute.v1.SslPolicy - 2124, // 944: google.cloud.compute.v1.PatchSubnetworkRequest.subnetwork_resource:type_name -> google.cloud.compute.v1.Subnetwork - 2144, // 945: google.cloud.compute.v1.PatchTargetGrpcProxyRequest.target_grpc_proxy_resource:type_name -> google.cloud.compute.v1.TargetGrpcProxy - 2147, // 946: google.cloud.compute.v1.PatchTargetHttpProxyRequest.target_http_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpProxy - 2154, // 947: google.cloud.compute.v1.PatchTargetHttpsProxyRequest.target_https_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxy - 2275, // 948: google.cloud.compute.v1.PatchUrlMapRequest.url_map_resource:type_name -> google.cloud.compute.v1.UrlMap - 2325, // 949: google.cloud.compute.v1.PatchWireGroupRequest.wire_group_resource:type_name -> google.cloud.compute.v1.WireGroup - 693, // 950: google.cloud.compute.v1.PathMatcher.default_custom_error_response_policy:type_name -> google.cloud.compute.v1.CustomErrorResponsePolicy - 1117, // 951: google.cloud.compute.v1.PathMatcher.default_route_action:type_name -> google.cloud.compute.v1.HttpRouteAction - 1115, // 952: google.cloud.compute.v1.PathMatcher.default_url_redirect:type_name -> google.cloud.compute.v1.HttpRedirectAction - 1111, // 953: google.cloud.compute.v1.PathMatcher.header_action:type_name -> google.cloud.compute.v1.HttpHeaderAction - 1709, // 954: google.cloud.compute.v1.PathMatcher.path_rules:type_name -> google.cloud.compute.v1.PathRule - 1118, // 955: google.cloud.compute.v1.PathMatcher.route_rules:type_name -> google.cloud.compute.v1.HttpRouteRule - 693, // 956: google.cloud.compute.v1.PathRule.custom_error_response_policy:type_name -> google.cloud.compute.v1.CustomErrorResponsePolicy - 1117, // 957: google.cloud.compute.v1.PathRule.route_action:type_name -> google.cloud.compute.v1.HttpRouteAction - 1115, // 958: google.cloud.compute.v1.PathRule.url_redirect:type_name -> google.cloud.compute.v1.HttpRedirectAction - 1718, // 959: google.cloud.compute.v1.PerInstanceConfig.preserved_state:type_name -> google.cloud.compute.v1.PreservedState - 1612, // 960: google.cloud.compute.v1.PerformMaintenanceNodeGroupRequest.node_groups_perform_maintenance_request_resource:type_name -> google.cloud.compute.v1.NodeGroupsPerformMaintenanceRequest - 1839, // 961: google.cloud.compute.v1.PerformMaintenanceReservationBlockRequest.reservations_blocks_perform_maintenance_request_resource:type_name -> google.cloud.compute.v1.ReservationsBlocksPerformMaintenanceRequest - 1840, // 962: google.cloud.compute.v1.PerformMaintenanceReservationRequest.reservations_perform_maintenance_request_resource:type_name -> google.cloud.compute.v1.ReservationsPerformMaintenanceRequest - 587, // 963: google.cloud.compute.v1.Policy.audit_configs:type_name -> google.cloud.compute.v1.AuditConfig - 646, // 964: google.cloud.compute.v1.Policy.bindings:type_name -> google.cloud.compute.v1.Binding - 2315, // 965: google.cloud.compute.v1.PreconfiguredWafSet.expression_sets:type_name -> google.cloud.compute.v1.WafExpressionSet - 2432, // 966: google.cloud.compute.v1.PreservedState.disks:type_name -> google.cloud.compute.v1.PreservedState.DisksEntry - 2433, // 967: google.cloud.compute.v1.PreservedState.external_i_ps:type_name -> google.cloud.compute.v1.PreservedState.ExternalIPsEntry - 2434, // 968: google.cloud.compute.v1.PreservedState.internal_i_ps:type_name -> google.cloud.compute.v1.PreservedState.InternalIPsEntry - 2435, // 969: google.cloud.compute.v1.PreservedState.metadata:type_name -> google.cloud.compute.v1.PreservedState.MetadataEntry - 1721, // 970: google.cloud.compute.v1.PreservedStatePreservedNetworkIp.ip_address:type_name -> google.cloud.compute.v1.PreservedStatePreservedNetworkIpIpAddress - 1724, // 971: google.cloud.compute.v1.PreviewFeature.rollout_operation:type_name -> google.cloud.compute.v1.PreviewFeatureRolloutOperation - 1726, // 972: google.cloud.compute.v1.PreviewFeature.status:type_name -> google.cloud.compute.v1.PreviewFeatureStatus - 1722, // 973: google.cloud.compute.v1.PreviewFeatureList.items:type_name -> google.cloud.compute.v1.PreviewFeature - 2320, // 974: google.cloud.compute.v1.PreviewFeatureList.warning:type_name -> google.cloud.compute.v1.Warning - 1725, // 975: google.cloud.compute.v1.PreviewFeatureRolloutOperation.rollout_input:type_name -> google.cloud.compute.v1.PreviewFeatureRolloutOperationRolloutInput - 1727, // 976: google.cloud.compute.v1.PreviewFeatureStatus.release_status:type_name -> google.cloud.compute.v1.PreviewFeatureStatusReleaseStatus - 698, // 977: google.cloud.compute.v1.PreviewFeatureStatusReleaseStatus.update_date:type_name -> google.cloud.compute.v1.Date - 1884, // 978: google.cloud.compute.v1.PreviewRouterRequest.router_resource:type_name -> google.cloud.compute.v1.Router - 1545, // 979: google.cloud.compute.v1.Project.common_instance_metadata:type_name -> google.cloud.compute.v1.Metadata - 1744, // 980: google.cloud.compute.v1.Project.quotas:type_name -> google.cloud.compute.v1.Quota - 2289, // 981: google.cloud.compute.v1.Project.usage_export_location:type_name -> google.cloud.compute.v1.UsageExportLocation - 2336, // 982: google.cloud.compute.v1.ProjectsDisableXpnResourceRequest.xpn_resource:type_name -> google.cloud.compute.v1.XpnResourceId - 2336, // 983: google.cloud.compute.v1.ProjectsEnableXpnResourceRequest.xpn_resource:type_name -> google.cloud.compute.v1.XpnResourceId - 2336, // 984: google.cloud.compute.v1.ProjectsGetXpnResources.resources:type_name -> google.cloud.compute.v1.XpnResourceId - 1738, // 985: google.cloud.compute.v1.PublicAdvertisedPrefix.public_delegated_prefixs:type_name -> google.cloud.compute.v1.PublicAdvertisedPrefixPublicDelegatedPrefix - 1736, // 986: google.cloud.compute.v1.PublicAdvertisedPrefixList.items:type_name -> google.cloud.compute.v1.PublicAdvertisedPrefix - 2320, // 987: google.cloud.compute.v1.PublicAdvertisedPrefixList.warning:type_name -> google.cloud.compute.v1.Warning - 1742, // 988: google.cloud.compute.v1.PublicDelegatedPrefix.public_delegated_sub_prefixs:type_name -> google.cloud.compute.v1.PublicDelegatedPrefixPublicDelegatedSubPrefix - 2436, // 989: google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList.items:type_name -> google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList.ItemsEntry - 2320, // 990: google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1739, // 991: google.cloud.compute.v1.PublicDelegatedPrefixList.items:type_name -> google.cloud.compute.v1.PublicDelegatedPrefix - 2320, // 992: google.cloud.compute.v1.PublicDelegatedPrefixList.warning:type_name -> google.cloud.compute.v1.Warning - 1739, // 993: google.cloud.compute.v1.PublicDelegatedPrefixesScopedList.public_delegated_prefixes:type_name -> google.cloud.compute.v1.PublicDelegatedPrefix - 2320, // 994: google.cloud.compute.v1.PublicDelegatedPrefixesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2437, // 995: google.cloud.compute.v1.QuotaExceededInfo.dimensions:type_name -> google.cloud.compute.v1.QuotaExceededInfo.DimensionsEntry - 697, // 996: google.cloud.compute.v1.QuotaStatusWarning.data:type_name -> google.cloud.compute.v1.Data - 1255, // 997: google.cloud.compute.v1.RecreateInstancesInstanceGroupManagerRequest.instance_group_managers_recreate_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersRecreateInstancesRequest - 1771, // 998: google.cloud.compute.v1.RecreateInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_recreate_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersRecreateRequest - 803, // 999: google.cloud.compute.v1.Region.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus - 1746, // 1000: google.cloud.compute.v1.Region.quota_status_warning:type_name -> google.cloud.compute.v1.QuotaStatusWarning - 1744, // 1001: google.cloud.compute.v1.Region.quotas:type_name -> google.cloud.compute.v1.Quota - 589, // 1002: google.cloud.compute.v1.RegionAutoscalerList.items:type_name -> google.cloud.compute.v1.Autoscaler - 2320, // 1003: google.cloud.compute.v1.RegionAutoscalerList.warning:type_name -> google.cloud.compute.v1.Warning - 820, // 1004: google.cloud.compute.v1.RegionDiskTypeList.items:type_name -> google.cloud.compute.v1.DiskType - 2320, // 1005: google.cloud.compute.v1.RegionDiskTypeList.warning:type_name -> google.cloud.compute.v1.Warning - 1216, // 1006: google.cloud.compute.v1.RegionInstanceGroupList.items:type_name -> google.cloud.compute.v1.InstanceGroup - 2320, // 1007: google.cloud.compute.v1.RegionInstanceGroupList.warning:type_name -> google.cloud.compute.v1.Warning - 1219, // 1008: google.cloud.compute.v1.RegionInstanceGroupManagerList.items:type_name -> google.cloud.compute.v1.InstanceGroupManager - 2320, // 1009: google.cloud.compute.v1.RegionInstanceGroupManagerList.warning:type_name -> google.cloud.compute.v1.Warning - 1710, // 1010: google.cloud.compute.v1.RegionInstanceGroupManagerPatchInstanceConfigReq.per_instance_configs:type_name -> google.cloud.compute.v1.PerInstanceConfig - 1710, // 1011: google.cloud.compute.v1.RegionInstanceGroupManagerUpdateInstanceConfigReq.per_instance_configs:type_name -> google.cloud.compute.v1.PerInstanceConfig - 1710, // 1012: google.cloud.compute.v1.RegionInstanceGroupManagersCreateInstancesRequest.instances:type_name -> google.cloud.compute.v1.PerInstanceConfig - 1272, // 1013: google.cloud.compute.v1.RegionInstanceGroupManagersListErrorsResponse.items:type_name -> google.cloud.compute.v1.InstanceManagedByIgmError - 1710, // 1014: google.cloud.compute.v1.RegionInstanceGroupManagersListInstanceConfigsResp.items:type_name -> google.cloud.compute.v1.PerInstanceConfig - 2320, // 1015: google.cloud.compute.v1.RegionInstanceGroupManagersListInstanceConfigsResp.warning:type_name -> google.cloud.compute.v1.Warning - 1539, // 1016: google.cloud.compute.v1.RegionInstanceGroupManagersListInstancesResponse.managed_instances:type_name -> google.cloud.compute.v1.ManagedInstance - 1286, // 1017: google.cloud.compute.v1.RegionInstanceGroupsListInstances.items:type_name -> google.cloud.compute.v1.InstanceWithNamedPorts - 2320, // 1018: google.cloud.compute.v1.RegionInstanceGroupsListInstances.warning:type_name -> google.cloud.compute.v1.Warning - 1554, // 1019: google.cloud.compute.v1.RegionInstanceGroupsSetNamedPortsRequest.named_ports:type_name -> google.cloud.compute.v1.NamedPort - 1751, // 1020: google.cloud.compute.v1.RegionList.items:type_name -> google.cloud.compute.v1.Region - 2320, // 1021: google.cloud.compute.v1.RegionList.warning:type_name -> google.cloud.compute.v1.Warning - 1567, // 1022: google.cloud.compute.v1.RegionNetworkEndpointGroupsAttachEndpointsRequest.network_endpoints:type_name -> google.cloud.compute.v1.NetworkEndpoint - 1567, // 1023: google.cloud.compute.v1.RegionNetworkEndpointGroupsDetachEndpointsRequest.network_endpoints:type_name -> google.cloud.compute.v1.NetworkEndpoint - 1785, // 1024: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse.firewall_policys:type_name -> google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy - 849, // 1025: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse.firewalls:type_name -> google.cloud.compute.v1.Firewall - 858, // 1026: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.packet_mirroring_rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 858, // 1027: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule - 2438, // 1028: google.cloud.compute.v1.RegionSetLabelsRequest.labels:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest.LabelsEntry - 646, // 1029: google.cloud.compute.v1.RegionSetPolicyRequest.bindings:type_name -> google.cloud.compute.v1.Binding - 1716, // 1030: google.cloud.compute.v1.RegionSetPolicyRequest.policy:type_name -> google.cloud.compute.v1.Policy - 2275, // 1031: google.cloud.compute.v1.RegionUrlMapsValidateRequest.resource:type_name -> google.cloud.compute.v1.UrlMap - 2167, // 1032: google.cloud.compute.v1.RemoveHealthCheckTargetPoolRequest.target_pools_remove_health_check_request_resource:type_name -> google.cloud.compute.v1.TargetPoolsRemoveHealthCheckRequest - 2168, // 1033: google.cloud.compute.v1.RemoveInstanceTargetPoolRequest.target_pools_remove_instance_request_resource:type_name -> google.cloud.compute.v1.TargetPoolsRemoveInstanceRequest - 1267, // 1034: google.cloud.compute.v1.RemoveInstancesInstanceGroupRequest.instance_groups_remove_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupsRemoveInstancesRequest - 1600, // 1035: google.cloud.compute.v1.RemovePeeringNetworkRequest.networks_remove_peering_request_resource:type_name -> google.cloud.compute.v1.NetworksRemovePeeringRequest - 825, // 1036: google.cloud.compute.v1.RemoveResourcePoliciesDiskRequest.disks_remove_resource_policies_request_resource:type_name -> google.cloud.compute.v1.DisksRemoveResourcePoliciesRequest - 1291, // 1037: google.cloud.compute.v1.RemoveResourcePoliciesInstanceRequest.instances_remove_resource_policies_request_resource:type_name -> google.cloud.compute.v1.InstancesRemoveResourcePoliciesRequest - 1756, // 1038: google.cloud.compute.v1.RemoveResourcePoliciesRegionDiskRequest.region_disks_remove_resource_policies_request_resource:type_name -> google.cloud.compute.v1.RegionDisksRemoveResourcePoliciesRequest - 1837, // 1039: google.cloud.compute.v1.ReportFaultyReservationSubBlockRequest.reservation_sub_blocks_report_faulty_request_resource:type_name -> google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequest - 1292, // 1040: google.cloud.compute.v1.ReportHostAsFaultyInstanceRequest.instances_report_host_as_faulty_request_resource:type_name -> google.cloud.compute.v1.InstancesReportHostAsFaultyRequest - 1601, // 1041: google.cloud.compute.v1.RequestRemovePeeringNetworkRequest.networks_request_remove_peering_request_resource:type_name -> google.cloud.compute.v1.NetworksRequestRemovePeeringRequest - 1813, // 1042: google.cloud.compute.v1.Reservation.advanced_deployment_control:type_name -> google.cloud.compute.v1.ReservationAdvancedDeploymentControl - 566, // 1043: google.cloud.compute.v1.Reservation.aggregate_reservation:type_name -> google.cloud.compute.v1.AllocationAggregateReservation - 833, // 1044: google.cloud.compute.v1.Reservation.delete_after_duration:type_name -> google.cloud.compute.v1.Duration - 1824, // 1045: google.cloud.compute.v1.Reservation.params:type_name -> google.cloud.compute.v1.ReservationParams - 569, // 1046: google.cloud.compute.v1.Reservation.reservation_sharing_policy:type_name -> google.cloud.compute.v1.AllocationReservationSharingPolicy - 2439, // 1047: google.cloud.compute.v1.Reservation.resource_policies:type_name -> google.cloud.compute.v1.Reservation.ResourcePoliciesEntry - 570, // 1048: google.cloud.compute.v1.Reservation.resource_status:type_name -> google.cloud.compute.v1.AllocationResourceStatus - 2063, // 1049: google.cloud.compute.v1.Reservation.share_settings:type_name -> google.cloud.compute.v1.ShareSettings - 575, // 1050: google.cloud.compute.v1.Reservation.specific_reservation:type_name -> google.cloud.compute.v1.AllocationSpecificSKUReservation - 2440, // 1051: google.cloud.compute.v1.ReservationAggregatedList.items:type_name -> google.cloud.compute.v1.ReservationAggregatedList.ItemsEntry - 2320, // 1052: google.cloud.compute.v1.ReservationAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1817, // 1053: google.cloud.compute.v1.ReservationBlock.health_info:type_name -> google.cloud.compute.v1.ReservationBlockHealthInfo - 1818, // 1054: google.cloud.compute.v1.ReservationBlock.physical_topology:type_name -> google.cloud.compute.v1.ReservationBlockPhysicalTopology - 1076, // 1055: google.cloud.compute.v1.ReservationBlock.reservation_maintenance:type_name -> google.cloud.compute.v1.GroupMaintenanceInfo - 1819, // 1056: google.cloud.compute.v1.ReservationBlockPhysicalTopology.instances:type_name -> google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstance - 1820, // 1057: google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstance.physical_host_topology:type_name -> google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstancePhysicalHostTopology - 1816, // 1058: google.cloud.compute.v1.ReservationBlocksGetResponse.resource:type_name -> google.cloud.compute.v1.ReservationBlock - 1816, // 1059: google.cloud.compute.v1.ReservationBlocksListResponse.items:type_name -> google.cloud.compute.v1.ReservationBlock - 2320, // 1060: google.cloud.compute.v1.ReservationBlocksListResponse.warning:type_name -> google.cloud.compute.v1.Warning - 1812, // 1061: google.cloud.compute.v1.ReservationList.items:type_name -> google.cloud.compute.v1.Reservation - 2320, // 1062: google.cloud.compute.v1.ReservationList.warning:type_name -> google.cloud.compute.v1.Warning - 2441, // 1063: google.cloud.compute.v1.ReservationParams.resource_manager_tags:type_name -> google.cloud.compute.v1.ReservationParams.ResourceManagerTagsEntry - 1826, // 1064: google.cloud.compute.v1.ReservationSlot.physical_topology:type_name -> google.cloud.compute.v1.ReservationSlotPhysicalTopology - 2063, // 1065: google.cloud.compute.v1.ReservationSlot.share_settings:type_name -> google.cloud.compute.v1.ShareSettings - 1827, // 1066: google.cloud.compute.v1.ReservationSlot.status:type_name -> google.cloud.compute.v1.ReservationSlotStatus - 1826, // 1067: google.cloud.compute.v1.ReservationSlotStatus.physical_topology:type_name -> google.cloud.compute.v1.ReservationSlotPhysicalTopology - 1825, // 1068: google.cloud.compute.v1.ReservationSlotsGetResponse.resource:type_name -> google.cloud.compute.v1.ReservationSlot - 1825, // 1069: google.cloud.compute.v1.ReservationSlotsListResponse.items:type_name -> google.cloud.compute.v1.ReservationSlot - 2320, // 1070: google.cloud.compute.v1.ReservationSlotsListResponse.warning:type_name -> google.cloud.compute.v1.Warning - 477, // 1071: google.cloud.compute.v1.ReservationSubBlock.accelerator_topologies_info:type_name -> google.cloud.compute.v1.AcceleratorTopologiesInfo - 1832, // 1072: google.cloud.compute.v1.ReservationSubBlock.health_info:type_name -> google.cloud.compute.v1.ReservationSubBlockHealthInfo - 1833, // 1073: google.cloud.compute.v1.ReservationSubBlock.physical_topology:type_name -> google.cloud.compute.v1.ReservationSubBlockPhysicalTopology - 1076, // 1074: google.cloud.compute.v1.ReservationSubBlock.reservation_sub_block_maintenance:type_name -> google.cloud.compute.v1.GroupMaintenanceInfo - 1831, // 1075: google.cloud.compute.v1.ReservationSubBlocksGetResponse.resource:type_name -> google.cloud.compute.v1.ReservationSubBlock - 1831, // 1076: google.cloud.compute.v1.ReservationSubBlocksListResponse.items:type_name -> google.cloud.compute.v1.ReservationSubBlock - 2320, // 1077: google.cloud.compute.v1.ReservationSubBlocksListResponse.warning:type_name -> google.cloud.compute.v1.Warning - 1838, // 1078: google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequest.fault_reasons:type_name -> google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequestFaultReason - 1812, // 1079: google.cloud.compute.v1.ReservationsScopedList.reservations:type_name -> google.cloud.compute.v1.Reservation - 2320, // 1080: google.cloud.compute.v1.ReservationsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 826, // 1081: google.cloud.compute.v1.ResizeDiskRequest.disks_resize_request_resource:type_name -> google.cloud.compute.v1.DisksResizeRequest - 1757, // 1082: google.cloud.compute.v1.ResizeRegionDiskRequest.region_disks_resize_request_resource:type_name -> google.cloud.compute.v1.RegionDisksResizeRequest - 1841, // 1083: google.cloud.compute.v1.ResizeReservationRequest.reservations_resize_request_resource:type_name -> google.cloud.compute.v1.ReservationsResizeRequest - 1852, // 1084: google.cloud.compute.v1.ResourcePoliciesScopedList.resource_policies:type_name -> google.cloud.compute.v1.ResourcePolicy - 2320, // 1085: google.cloud.compute.v1.ResourcePoliciesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 1855, // 1086: google.cloud.compute.v1.ResourcePolicy.disk_consistency_group_policy:type_name -> google.cloud.compute.v1.ResourcePolicyDiskConsistencyGroupPolicy - 1856, // 1087: google.cloud.compute.v1.ResourcePolicy.group_placement_policy:type_name -> google.cloud.compute.v1.ResourcePolicyGroupPlacementPolicy - 1858, // 1088: google.cloud.compute.v1.ResourcePolicy.instance_schedule_policy:type_name -> google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicy - 1861, // 1089: google.cloud.compute.v1.ResourcePolicy.resource_status:type_name -> google.cloud.compute.v1.ResourcePolicyResourceStatus - 1863, // 1090: google.cloud.compute.v1.ResourcePolicy.snapshot_schedule_policy:type_name -> google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicy - 1869, // 1091: google.cloud.compute.v1.ResourcePolicy.workload_policy:type_name -> google.cloud.compute.v1.ResourcePolicyWorkloadPolicy - 2442, // 1092: google.cloud.compute.v1.ResourcePolicyAggregatedList.items:type_name -> google.cloud.compute.v1.ResourcePolicyAggregatedList.ItemsEntry - 2320, // 1093: google.cloud.compute.v1.ResourcePolicyAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1859, // 1094: google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicy.vm_start_schedule:type_name -> google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicySchedule - 1859, // 1095: google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicy.vm_stop_schedule:type_name -> google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicySchedule - 1852, // 1096: google.cloud.compute.v1.ResourcePolicyList.items:type_name -> google.cloud.compute.v1.ResourcePolicy - 2320, // 1097: google.cloud.compute.v1.ResourcePolicyList.warning:type_name -> google.cloud.compute.v1.Warning - 1862, // 1098: google.cloud.compute.v1.ResourcePolicyResourceStatus.instance_schedule_policy:type_name -> google.cloud.compute.v1.ResourcePolicyResourceStatusInstanceSchedulePolicyStatus - 1864, // 1099: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicy.retention_policy:type_name -> google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicyRetentionPolicy - 1865, // 1100: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicy.schedule:type_name -> google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySchedule - 1866, // 1101: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicy.snapshot_properties:type_name -> google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySnapshotProperties - 1854, // 1102: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySchedule.daily_schedule:type_name -> google.cloud.compute.v1.ResourcePolicyDailyCycle - 1857, // 1103: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySchedule.hourly_schedule:type_name -> google.cloud.compute.v1.ResourcePolicyHourlyCycle - 1867, // 1104: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySchedule.weekly_schedule:type_name -> google.cloud.compute.v1.ResourcePolicyWeeklyCycle - 2443, // 1105: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySnapshotProperties.labels:type_name -> google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySnapshotProperties.LabelsEntry - 1868, // 1106: google.cloud.compute.v1.ResourcePolicyWeeklyCycle.day_of_weeks:type_name -> google.cloud.compute.v1.ResourcePolicyWeeklyCycleDayOfWeek - 1871, // 1107: google.cloud.compute.v1.ResourceStatus.effective_instance_metadata:type_name -> google.cloud.compute.v1.ResourceStatusEffectiveInstanceMetadata - 1872, // 1108: google.cloud.compute.v1.ResourceStatus.physical_host_topology:type_name -> google.cloud.compute.v1.ResourceStatusPhysicalHostTopology - 1873, // 1109: google.cloud.compute.v1.ResourceStatus.reservation_consumption_info:type_name -> google.cloud.compute.v1.ResourceStatusReservationConsumptionInfo - 1874, // 1110: google.cloud.compute.v1.ResourceStatus.scheduling:type_name -> google.cloud.compute.v1.ResourceStatusScheduling - 2245, // 1111: google.cloud.compute.v1.ResourceStatus.upcoming_maintenance:type_name -> google.cloud.compute.v1.UpcomingMaintenance - 1256, // 1112: google.cloud.compute.v1.ResumeInstancesInstanceGroupManagerRequest.instance_group_managers_resume_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersResumeInstancesRequest - 1772, // 1113: google.cloud.compute.v1.ResumeInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_resume_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersResumeInstancesRequest - 1879, // 1114: google.cloud.compute.v1.Route.as_paths:type_name -> google.cloud.compute.v1.RouteAsPath - 1881, // 1115: google.cloud.compute.v1.Route.params:type_name -> google.cloud.compute.v1.RouteParams - 2321, // 1116: google.cloud.compute.v1.Route.warnings:type_name -> google.cloud.compute.v1.Warnings - 1878, // 1117: google.cloud.compute.v1.RouteList.items:type_name -> google.cloud.compute.v1.Route - 2320, // 1118: google.cloud.compute.v1.RouteList.warning:type_name -> google.cloud.compute.v1.Warning - 2444, // 1119: google.cloud.compute.v1.RouteParams.resource_manager_tags:type_name -> google.cloud.compute.v1.RouteParams.ResourceManagerTagsEntry - 1883, // 1120: google.cloud.compute.v1.RoutePolicy.terms:type_name -> google.cloud.compute.v1.RoutePolicyPolicyTerm - 843, // 1121: google.cloud.compute.v1.RoutePolicyPolicyTerm.actions:type_name -> google.cloud.compute.v1.Expr - 843, // 1122: google.cloud.compute.v1.RoutePolicyPolicyTerm.match:type_name -> google.cloud.compute.v1.Expr - 1887, // 1123: google.cloud.compute.v1.Router.bgp:type_name -> google.cloud.compute.v1.RouterBgp - 1888, // 1124: google.cloud.compute.v1.Router.bgp_peers:type_name -> google.cloud.compute.v1.RouterBgpPeer - 1891, // 1125: google.cloud.compute.v1.Router.interfaces:type_name -> google.cloud.compute.v1.RouterInterface - 1893, // 1126: google.cloud.compute.v1.Router.md5_authentication_keys:type_name -> google.cloud.compute.v1.RouterMd5AuthenticationKey - 1894, // 1127: google.cloud.compute.v1.Router.nats:type_name -> google.cloud.compute.v1.RouterNat - 1900, // 1128: google.cloud.compute.v1.Router.params:type_name -> google.cloud.compute.v1.RouterParams - 2445, // 1129: google.cloud.compute.v1.RouterAggregatedList.items:type_name -> google.cloud.compute.v1.RouterAggregatedList.ItemsEntry - 2320, // 1130: google.cloud.compute.v1.RouterAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1885, // 1131: google.cloud.compute.v1.RouterBgp.advertised_ip_ranges:type_name -> google.cloud.compute.v1.RouterAdvertisedIpRange - 1885, // 1132: google.cloud.compute.v1.RouterBgpPeer.advertised_ip_ranges:type_name -> google.cloud.compute.v1.RouterAdvertisedIpRange - 1889, // 1133: google.cloud.compute.v1.RouterBgpPeer.bfd:type_name -> google.cloud.compute.v1.RouterBgpPeerBfd - 1890, // 1134: google.cloud.compute.v1.RouterBgpPeer.custom_learned_ip_ranges:type_name -> google.cloud.compute.v1.RouterBgpPeerCustomLearnedIpRange - 1884, // 1135: google.cloud.compute.v1.RouterList.items:type_name -> google.cloud.compute.v1.Router - 2320, // 1136: google.cloud.compute.v1.RouterList.warning:type_name -> google.cloud.compute.v1.Warning - 1895, // 1137: google.cloud.compute.v1.RouterNat.log_config:type_name -> google.cloud.compute.v1.RouterNatLogConfig - 1899, // 1138: google.cloud.compute.v1.RouterNat.nat64_subnetworks:type_name -> google.cloud.compute.v1.RouterNatSubnetworkToNat64 - 1896, // 1139: google.cloud.compute.v1.RouterNat.rules:type_name -> google.cloud.compute.v1.RouterNatRule - 1898, // 1140: google.cloud.compute.v1.RouterNat.subnetworks:type_name -> google.cloud.compute.v1.RouterNatSubnetworkToNat - 1897, // 1141: google.cloud.compute.v1.RouterNatRule.action:type_name -> google.cloud.compute.v1.RouterNatRuleAction - 2446, // 1142: google.cloud.compute.v1.RouterParams.resource_manager_tags:type_name -> google.cloud.compute.v1.RouterParams.ResourceManagerTagsEntry - 1878, // 1143: google.cloud.compute.v1.RouterStatus.best_routes:type_name -> google.cloud.compute.v1.Route - 1878, // 1144: google.cloud.compute.v1.RouterStatus.best_routes_for_router:type_name -> google.cloud.compute.v1.Route - 1902, // 1145: google.cloud.compute.v1.RouterStatus.bgp_peer_status:type_name -> google.cloud.compute.v1.RouterStatusBgpPeerStatus - 1903, // 1146: google.cloud.compute.v1.RouterStatus.nat_status:type_name -> google.cloud.compute.v1.RouterStatusNatStatus - 1878, // 1147: google.cloud.compute.v1.RouterStatusBgpPeerStatus.advertised_routes:type_name -> google.cloud.compute.v1.Route - 641, // 1148: google.cloud.compute.v1.RouterStatusBgpPeerStatus.bfd_status:type_name -> google.cloud.compute.v1.BfdStatus - 1904, // 1149: google.cloud.compute.v1.RouterStatusNatStatus.rule_status:type_name -> google.cloud.compute.v1.RouterStatusNatStatusNatRuleStatus - 1901, // 1150: google.cloud.compute.v1.RouterStatusResponse.result:type_name -> google.cloud.compute.v1.RouterStatus - 1882, // 1151: google.cloud.compute.v1.RoutersGetRoutePolicyResponse.resource:type_name -> google.cloud.compute.v1.RoutePolicy - 643, // 1152: google.cloud.compute.v1.RoutersListBgpRoutes.result:type_name -> google.cloud.compute.v1.BgpRoute - 2320, // 1153: google.cloud.compute.v1.RoutersListBgpRoutes.warning:type_name -> google.cloud.compute.v1.Warning - 1882, // 1154: google.cloud.compute.v1.RoutersListRoutePolicies.result:type_name -> google.cloud.compute.v1.RoutePolicy - 2320, // 1155: google.cloud.compute.v1.RoutersListRoutePolicies.warning:type_name -> google.cloud.compute.v1.Warning - 1884, // 1156: google.cloud.compute.v1.RoutersPreviewResponse.resource:type_name -> google.cloud.compute.v1.Router - 1884, // 1157: google.cloud.compute.v1.RoutersScopedList.routers:type_name -> google.cloud.compute.v1.Router - 2320, // 1158: google.cloud.compute.v1.RoutersScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 695, // 1159: google.cloud.compute.v1.SavedAttachedDisk.disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 1080, // 1160: google.cloud.compute.v1.SavedAttachedDisk.guest_os_features:type_name -> google.cloud.compute.v1.GuestOsFeature - 833, // 1161: google.cloud.compute.v1.Scheduling.local_ssd_recovery_timeout:type_name -> google.cloud.compute.v1.Duration - 833, // 1162: google.cloud.compute.v1.Scheduling.max_run_duration:type_name -> google.cloud.compute.v1.Duration - 1916, // 1163: google.cloud.compute.v1.Scheduling.node_affinities:type_name -> google.cloud.compute.v1.SchedulingNodeAffinity - 1917, // 1164: google.cloud.compute.v1.Scheduling.on_instance_stop_action:type_name -> google.cloud.compute.v1.SchedulingOnInstanceStopAction - 2447, // 1165: google.cloud.compute.v1.SecurityPoliciesAggregatedList.items:type_name -> google.cloud.compute.v1.SecurityPoliciesAggregatedList.ItemsEntry - 2320, // 1166: google.cloud.compute.v1.SecurityPoliciesAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1922, // 1167: google.cloud.compute.v1.SecurityPoliciesListPreconfiguredExpressionSetsResponse.preconfigured_expression_sets:type_name -> google.cloud.compute.v1.SecurityPoliciesWafConfig - 1923, // 1168: google.cloud.compute.v1.SecurityPoliciesScopedList.security_policies:type_name -> google.cloud.compute.v1.SecurityPolicy - 2320, // 1169: google.cloud.compute.v1.SecurityPoliciesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 1717, // 1170: google.cloud.compute.v1.SecurityPoliciesWafConfig.waf_rules:type_name -> google.cloud.compute.v1.PreconfiguredWafSet - 1924, // 1171: google.cloud.compute.v1.SecurityPolicy.adaptive_protection_config:type_name -> google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfig - 1928, // 1172: google.cloud.compute.v1.SecurityPolicy.advanced_options_config:type_name -> google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfig - 1930, // 1173: google.cloud.compute.v1.SecurityPolicy.associations:type_name -> google.cloud.compute.v1.SecurityPolicyAssociation - 1931, // 1174: google.cloud.compute.v1.SecurityPolicy.ddos_protection_config:type_name -> google.cloud.compute.v1.SecurityPolicyDdosProtectionConfig - 2448, // 1175: google.cloud.compute.v1.SecurityPolicy.labels:type_name -> google.cloud.compute.v1.SecurityPolicy.LabelsEntry - 1933, // 1176: google.cloud.compute.v1.SecurityPolicy.recaptcha_options_config:type_name -> google.cloud.compute.v1.SecurityPolicyRecaptchaOptionsConfig - 1935, // 1177: google.cloud.compute.v1.SecurityPolicy.rules:type_name -> google.cloud.compute.v1.SecurityPolicyRule - 1951, // 1178: google.cloud.compute.v1.SecurityPolicy.user_defined_fields:type_name -> google.cloud.compute.v1.SecurityPolicyUserDefinedField - 1925, // 1179: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfig.layer7_ddos_defense_config:type_name -> google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig - 1926, // 1180: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig.threshold_configs:type_name -> google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig - 1927, // 1181: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig.traffic_granularity_configs:type_name -> google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig - 1929, // 1182: google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfig.json_custom_config:type_name -> google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfigJsonCustomConfig - 1923, // 1183: google.cloud.compute.v1.SecurityPolicyList.items:type_name -> google.cloud.compute.v1.SecurityPolicy - 2320, // 1184: google.cloud.compute.v1.SecurityPolicyList.warning:type_name -> google.cloud.compute.v1.Warning - 1936, // 1185: google.cloud.compute.v1.SecurityPolicyRule.header_action:type_name -> google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderAction - 1938, // 1186: google.cloud.compute.v1.SecurityPolicyRule.match:type_name -> google.cloud.compute.v1.SecurityPolicyRuleMatcher - 1942, // 1187: google.cloud.compute.v1.SecurityPolicyRule.network_match:type_name -> google.cloud.compute.v1.SecurityPolicyRuleNetworkMatcher - 1944, // 1188: google.cloud.compute.v1.SecurityPolicyRule.preconfigured_waf_config:type_name -> google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfig - 1947, // 1189: google.cloud.compute.v1.SecurityPolicyRule.rate_limit_options:type_name -> google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions - 1950, // 1190: google.cloud.compute.v1.SecurityPolicyRule.redirect_options:type_name -> google.cloud.compute.v1.SecurityPolicyRuleRedirectOptions - 1937, // 1191: google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderAction.request_headers_to_adds:type_name -> google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderActionHttpHeaderOption - 1939, // 1192: google.cloud.compute.v1.SecurityPolicyRuleMatcher.config:type_name -> google.cloud.compute.v1.SecurityPolicyRuleMatcherConfig - 843, // 1193: google.cloud.compute.v1.SecurityPolicyRuleMatcher.expr:type_name -> google.cloud.compute.v1.Expr - 1940, // 1194: google.cloud.compute.v1.SecurityPolicyRuleMatcher.expr_options:type_name -> google.cloud.compute.v1.SecurityPolicyRuleMatcherExprOptions - 1941, // 1195: google.cloud.compute.v1.SecurityPolicyRuleMatcherExprOptions.recaptcha_options:type_name -> google.cloud.compute.v1.SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions - 1943, // 1196: google.cloud.compute.v1.SecurityPolicyRuleNetworkMatcher.user_defined_fields:type_name -> google.cloud.compute.v1.SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch - 1945, // 1197: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfig.exclusions:type_name -> google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion - 1946, // 1198: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion.request_cookies_to_exclude:type_name -> google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams - 1946, // 1199: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion.request_headers_to_exclude:type_name -> google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams - 1946, // 1200: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion.request_query_params_to_exclude:type_name -> google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams - 1946, // 1201: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion.request_uris_to_exclude:type_name -> google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams - 1949, // 1202: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions.ban_threshold:type_name -> google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptionsThreshold - 1948, // 1203: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions.enforce_on_key_configs:type_name -> google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig - 1950, // 1204: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions.exceed_redirect_options:type_name -> google.cloud.compute.v1.SecurityPolicyRuleRedirectOptions - 1949, // 1205: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions.rate_limit_threshold:type_name -> google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptionsThreshold - 473, // 1206: google.cloud.compute.v1.SecuritySettings.aws_v4_authentication:type_name -> google.cloud.compute.v1.AWSV4Signature - 1960, // 1207: google.cloud.compute.v1.ServiceAttachment.connected_endpoints:type_name -> google.cloud.compute.v1.ServiceAttachmentConnectedEndpoint - 1961, // 1208: google.cloud.compute.v1.ServiceAttachment.consumer_accept_lists:type_name -> google.cloud.compute.v1.ServiceAttachmentConsumerProjectLimit - 2449, // 1209: google.cloud.compute.v1.ServiceAttachment.metadata:type_name -> google.cloud.compute.v1.ServiceAttachment.MetadataEntry - 2244, // 1210: google.cloud.compute.v1.ServiceAttachment.psc_service_attachment_id:type_name -> google.cloud.compute.v1.Uint128 - 2450, // 1211: google.cloud.compute.v1.ServiceAttachmentAggregatedList.items:type_name -> google.cloud.compute.v1.ServiceAttachmentAggregatedList.ItemsEntry - 2320, // 1212: google.cloud.compute.v1.ServiceAttachmentAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1958, // 1213: google.cloud.compute.v1.ServiceAttachmentList.items:type_name -> google.cloud.compute.v1.ServiceAttachment - 2320, // 1214: google.cloud.compute.v1.ServiceAttachmentList.warning:type_name -> google.cloud.compute.v1.Warning - 1958, // 1215: google.cloud.compute.v1.ServiceAttachmentsScopedList.service_attachments:type_name -> google.cloud.compute.v1.ServiceAttachment - 2320, // 1216: google.cloud.compute.v1.ServiceAttachmentsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2171, // 1217: google.cloud.compute.v1.SetBackendServiceTargetSslProxyRequest.target_ssl_proxies_set_backend_service_request_resource:type_name -> google.cloud.compute.v1.TargetSslProxiesSetBackendServiceRequest - 2178, // 1218: google.cloud.compute.v1.SetBackendServiceTargetTcpProxyRequest.target_tcp_proxies_set_backend_service_request_resource:type_name -> google.cloud.compute.v1.TargetTcpProxiesSetBackendServiceRequest - 2170, // 1219: google.cloud.compute.v1.SetBackupTargetPoolRequest.target_reference_resource:type_name -> google.cloud.compute.v1.TargetReference - 2151, // 1220: google.cloud.compute.v1.SetCertificateMapTargetHttpsProxyRequest.target_https_proxies_set_certificate_map_request_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxiesSetCertificateMapRequest - 2172, // 1221: google.cloud.compute.v1.SetCertificateMapTargetSslProxyRequest.target_ssl_proxies_set_certificate_map_request_resource:type_name -> google.cloud.compute.v1.TargetSslProxiesSetCertificateMapRequest - 1734, // 1222: google.cloud.compute.v1.SetCloudArmorTierProjectRequest.projects_set_cloud_armor_tier_request_resource:type_name -> google.cloud.compute.v1.ProjectsSetCloudArmorTierRequest - 2451, // 1223: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadata.per_location_operations:type_name -> google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadata.PerLocationOperationsEntry - 2103, // 1224: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo.error:type_name -> google.cloud.compute.v1.Status - 1545, // 1225: google.cloud.compute.v1.SetCommonInstanceMetadataProjectRequest.metadata_resource:type_name -> google.cloud.compute.v1.Metadata - 1735, // 1226: google.cloud.compute.v1.SetDefaultNetworkTierProjectRequest.projects_set_default_network_tier_request_resource:type_name -> google.cloud.compute.v1.ProjectsSetDefaultNetworkTierRequest - 1934, // 1227: google.cloud.compute.v1.SetEdgeSecurityPolicyBackendBucketRequest.security_policy_reference_resource:type_name -> google.cloud.compute.v1.SecurityPolicyReference - 1934, // 1228: google.cloud.compute.v1.SetEdgeSecurityPolicyBackendServiceRequest.security_policy_reference_resource:type_name -> google.cloud.compute.v1.SecurityPolicyReference - 1075, // 1229: google.cloud.compute.v1.SetIamPolicyBackendBucketRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest - 1075, // 1230: google.cloud.compute.v1.SetIamPolicyBackendServiceRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest - 2341, // 1231: google.cloud.compute.v1.SetIamPolicyDiskRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest - 1073, // 1232: google.cloud.compute.v1.SetIamPolicyFirewallPolicyRequest.global_organization_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalOrganizationSetPolicyRequest - 1075, // 1233: google.cloud.compute.v1.SetIamPolicyImageRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest - 2341, // 1234: google.cloud.compute.v1.SetIamPolicyInstanceRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest - 1075, // 1235: google.cloud.compute.v1.SetIamPolicyInstanceTemplateRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest - 2341, // 1236: google.cloud.compute.v1.SetIamPolicyInstantSnapshotRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest - 1075, // 1237: google.cloud.compute.v1.SetIamPolicyInterconnectAttachmentGroupRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest - 1075, // 1238: google.cloud.compute.v1.SetIamPolicyInterconnectGroupRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest - 1075, // 1239: google.cloud.compute.v1.SetIamPolicyLicenseRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest - 1075, // 1240: google.cloud.compute.v1.SetIamPolicyMachineImageRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest - 1787, // 1241: google.cloud.compute.v1.SetIamPolicyNetworkAttachmentRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest - 1075, // 1242: google.cloud.compute.v1.SetIamPolicyNetworkFirewallPolicyRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest - 2341, // 1243: google.cloud.compute.v1.SetIamPolicyNodeGroupRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest - 1787, // 1244: google.cloud.compute.v1.SetIamPolicyNodeTemplateRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest - 1787, // 1245: google.cloud.compute.v1.SetIamPolicyRegionBackendServiceRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest - 1787, // 1246: google.cloud.compute.v1.SetIamPolicyRegionDiskRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest - 1787, // 1247: google.cloud.compute.v1.SetIamPolicyRegionInstantSnapshotRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest - 1787, // 1248: google.cloud.compute.v1.SetIamPolicyRegionNetworkFirewallPolicyRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest - 2340, // 1249: google.cloud.compute.v1.SetIamPolicyReservationBlockRequest.zone_set_nested_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetNestedPolicyRequest - 2341, // 1250: google.cloud.compute.v1.SetIamPolicyReservationRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest - 2340, // 1251: google.cloud.compute.v1.SetIamPolicyReservationSubBlockRequest.zone_set_nested_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetNestedPolicyRequest - 1787, // 1252: google.cloud.compute.v1.SetIamPolicyResourcePolicyRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest - 1787, // 1253: google.cloud.compute.v1.SetIamPolicyServiceAttachmentRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest - 1075, // 1254: google.cloud.compute.v1.SetIamPolicySnapshotRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest - 2341, // 1255: google.cloud.compute.v1.SetIamPolicyStoragePoolRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest - 1787, // 1256: google.cloud.compute.v1.SetIamPolicySubnetworkRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest - 1258, // 1257: google.cloud.compute.v1.SetInstanceTemplateInstanceGroupManagerRequest.instance_group_managers_set_instance_template_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersSetInstanceTemplateRequest - 1774, // 1258: google.cloud.compute.v1.SetInstanceTemplateRegionInstanceGroupManagerRequest.region_instance_group_managers_set_template_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersSetTemplateRequest - 1786, // 1259: google.cloud.compute.v1.SetLabelsAddressRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest - 2339, // 1260: google.cloud.compute.v1.SetLabelsDiskRequest.zone_set_labels_request_resource:type_name -> google.cloud.compute.v1.ZoneSetLabelsRequest - 1074, // 1261: google.cloud.compute.v1.SetLabelsExternalVpnGatewayRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest - 1786, // 1262: google.cloud.compute.v1.SetLabelsForwardingRuleRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest - 1074, // 1263: google.cloud.compute.v1.SetLabelsGlobalAddressRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest - 1074, // 1264: google.cloud.compute.v1.SetLabelsGlobalForwardingRuleRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest - 1074, // 1265: google.cloud.compute.v1.SetLabelsImageRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest - 1295, // 1266: google.cloud.compute.v1.SetLabelsInstanceRequest.instances_set_labels_request_resource:type_name -> google.cloud.compute.v1.InstancesSetLabelsRequest - 2339, // 1267: google.cloud.compute.v1.SetLabelsInstantSnapshotRequest.zone_set_labels_request_resource:type_name -> google.cloud.compute.v1.ZoneSetLabelsRequest - 1786, // 1268: google.cloud.compute.v1.SetLabelsInterconnectAttachmentRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest - 1074, // 1269: google.cloud.compute.v1.SetLabelsInterconnectRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest - 1074, // 1270: google.cloud.compute.v1.SetLabelsMachineImageRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest - 1786, // 1271: google.cloud.compute.v1.SetLabelsRegionDiskRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest - 1786, // 1272: google.cloud.compute.v1.SetLabelsRegionInstantSnapshotRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest - 1786, // 1273: google.cloud.compute.v1.SetLabelsRegionSecurityPolicyRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest - 1074, // 1274: google.cloud.compute.v1.SetLabelsSecurityPolicyRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest - 1074, // 1275: google.cloud.compute.v1.SetLabelsSnapshotRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest - 1786, // 1276: google.cloud.compute.v1.SetLabelsTargetVpnGatewayRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest - 1786, // 1277: google.cloud.compute.v1.SetLabelsVpnGatewayRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest - 1786, // 1278: google.cloud.compute.v1.SetLabelsVpnTunnelRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest - 1296, // 1279: google.cloud.compute.v1.SetMachineResourcesInstanceRequest.instances_set_machine_resources_request_resource:type_name -> google.cloud.compute.v1.InstancesSetMachineResourcesRequest - 1297, // 1280: google.cloud.compute.v1.SetMachineTypeInstanceRequest.instances_set_machine_type_request_resource:type_name -> google.cloud.compute.v1.InstancesSetMachineTypeRequest - 1545, // 1281: google.cloud.compute.v1.SetMetadataInstanceRequest.metadata_resource:type_name -> google.cloud.compute.v1.Metadata - 1298, // 1282: google.cloud.compute.v1.SetMinCpuPlatformInstanceRequest.instances_set_min_cpu_platform_request_resource:type_name -> google.cloud.compute.v1.InstancesSetMinCpuPlatformRequest - 1299, // 1283: google.cloud.compute.v1.SetNameInstanceRequest.instances_set_name_request_resource:type_name -> google.cloud.compute.v1.InstancesSetNameRequest - 1269, // 1284: google.cloud.compute.v1.SetNamedPortsInstanceGroupRequest.instance_groups_set_named_ports_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupsSetNamedPortsRequest - 1780, // 1285: google.cloud.compute.v1.SetNamedPortsRegionInstanceGroupRequest.region_instance_groups_set_named_ports_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupsSetNamedPortsRequest - 1614, // 1286: google.cloud.compute.v1.SetNodeTemplateNodeGroupRequest.node_groups_set_node_template_request_resource:type_name -> google.cloud.compute.v1.NodeGroupsSetNodeTemplateRequest - 2136, // 1287: google.cloud.compute.v1.SetPrivateIpGoogleAccessSubnetworkRequest.subnetworks_set_private_ip_google_access_request_resource:type_name -> google.cloud.compute.v1.SubnetworksSetPrivateIpGoogleAccessRequest - 2173, // 1288: google.cloud.compute.v1.SetProxyHeaderTargetSslProxyRequest.target_ssl_proxies_set_proxy_header_request_resource:type_name -> google.cloud.compute.v1.TargetSslProxiesSetProxyHeaderRequest - 2179, // 1289: google.cloud.compute.v1.SetProxyHeaderTargetTcpProxyRequest.target_tcp_proxies_set_proxy_header_request_resource:type_name -> google.cloud.compute.v1.TargetTcpProxiesSetProxyHeaderRequest - 2152, // 1290: google.cloud.compute.v1.SetQuicOverrideTargetHttpsProxyRequest.target_https_proxies_set_quic_override_request_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxiesSetQuicOverrideRequest - 1915, // 1291: google.cloud.compute.v1.SetSchedulingInstanceRequest.scheduling_resource:type_name -> google.cloud.compute.v1.Scheduling - 1934, // 1292: google.cloud.compute.v1.SetSecurityPolicyBackendServiceRequest.security_policy_reference_resource:type_name -> google.cloud.compute.v1.SecurityPolicyReference - 1300, // 1293: google.cloud.compute.v1.SetSecurityPolicyInstanceRequest.instances_set_security_policy_request_resource:type_name -> google.cloud.compute.v1.InstancesSetSecurityPolicyRequest - 1934, // 1294: google.cloud.compute.v1.SetSecurityPolicyRegionBackendServiceRequest.security_policy_reference_resource:type_name -> google.cloud.compute.v1.SecurityPolicyReference - 1934, // 1295: google.cloud.compute.v1.SetSecurityPolicyTargetInstanceRequest.security_policy_reference_resource:type_name -> google.cloud.compute.v1.SecurityPolicyReference - 1934, // 1296: google.cloud.compute.v1.SetSecurityPolicyTargetPoolRequest.security_policy_reference_resource:type_name -> google.cloud.compute.v1.SecurityPolicyReference - 1301, // 1297: google.cloud.compute.v1.SetServiceAccountInstanceRequest.instances_set_service_account_request_resource:type_name -> google.cloud.compute.v1.InstancesSetServiceAccountRequest - 2068, // 1298: google.cloud.compute.v1.SetShieldedInstanceIntegrityPolicyInstanceRequest.shielded_instance_integrity_policy_resource:type_name -> google.cloud.compute.v1.ShieldedInstanceIntegrityPolicy - 1788, // 1299: google.cloud.compute.v1.SetSslCertificatesRegionTargetHttpsProxyRequest.region_target_https_proxies_set_ssl_certificates_request_resource:type_name -> google.cloud.compute.v1.RegionTargetHttpsProxiesSetSslCertificatesRequest - 2153, // 1300: google.cloud.compute.v1.SetSslCertificatesTargetHttpsProxyRequest.target_https_proxies_set_ssl_certificates_request_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxiesSetSslCertificatesRequest - 2174, // 1301: google.cloud.compute.v1.SetSslCertificatesTargetSslProxyRequest.target_ssl_proxies_set_ssl_certificates_request_resource:type_name -> google.cloud.compute.v1.TargetSslProxiesSetSslCertificatesRequest - 2092, // 1302: google.cloud.compute.v1.SetSslPolicyTargetHttpsProxyRequest.ssl_policy_reference_resource:type_name -> google.cloud.compute.v1.SslPolicyReference - 2092, // 1303: google.cloud.compute.v1.SetSslPolicyTargetSslProxyRequest.ssl_policy_reference_resource:type_name -> google.cloud.compute.v1.SslPolicyReference - 2143, // 1304: google.cloud.compute.v1.SetTagsInstanceRequest.tags_resource:type_name -> google.cloud.compute.v1.Tags - 2170, // 1305: google.cloud.compute.v1.SetTargetForwardingRuleRequest.target_reference_resource:type_name -> google.cloud.compute.v1.TargetReference - 2170, // 1306: google.cloud.compute.v1.SetTargetGlobalForwardingRuleRequest.target_reference_resource:type_name -> google.cloud.compute.v1.TargetReference - 1259, // 1307: google.cloud.compute.v1.SetTargetPoolsInstanceGroupManagerRequest.instance_group_managers_set_target_pools_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersSetTargetPoolsRequest - 1773, // 1308: google.cloud.compute.v1.SetTargetPoolsRegionInstanceGroupManagerRequest.region_instance_group_managers_set_target_pools_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersSetTargetPoolsRequest - 2277, // 1309: google.cloud.compute.v1.SetUrlMapRegionTargetHttpProxyRequest.url_map_reference_resource:type_name -> google.cloud.compute.v1.UrlMapReference - 2277, // 1310: google.cloud.compute.v1.SetUrlMapRegionTargetHttpsProxyRequest.url_map_reference_resource:type_name -> google.cloud.compute.v1.UrlMapReference - 2277, // 1311: google.cloud.compute.v1.SetUrlMapTargetHttpProxyRequest.url_map_reference_resource:type_name -> google.cloud.compute.v1.UrlMapReference - 2277, // 1312: google.cloud.compute.v1.SetUrlMapTargetHttpsProxyRequest.url_map_reference_resource:type_name -> google.cloud.compute.v1.UrlMapReference - 2289, // 1313: google.cloud.compute.v1.SetUsageExportBucketProjectRequest.usage_export_location_resource:type_name -> google.cloud.compute.v1.UsageExportLocation - 2452, // 1314: google.cloud.compute.v1.ShareSettings.project_map:type_name -> google.cloud.compute.v1.ShareSettings.ProjectMapEntry - 2067, // 1315: google.cloud.compute.v1.ShieldedInstanceIdentity.ecc_p256_encryption_key:type_name -> google.cloud.compute.v1.ShieldedInstanceIdentityEntry - 2067, // 1316: google.cloud.compute.v1.ShieldedInstanceIdentity.ecc_p256_signing_key:type_name -> google.cloud.compute.v1.ShieldedInstanceIdentityEntry - 2067, // 1317: google.cloud.compute.v1.ShieldedInstanceIdentity.encryption_key:type_name -> google.cloud.compute.v1.ShieldedInstanceIdentityEntry - 2067, // 1318: google.cloud.compute.v1.ShieldedInstanceIdentity.signing_key:type_name -> google.cloud.compute.v1.ShieldedInstanceIdentityEntry - 1615, // 1319: google.cloud.compute.v1.SimulateMaintenanceEventNodeGroupRequest.node_groups_simulate_maintenance_event_request_resource:type_name -> google.cloud.compute.v1.NodeGroupsSimulateMaintenanceEventRequest - 1080, // 1320: google.cloud.compute.v1.Snapshot.guest_os_features:type_name -> google.cloud.compute.v1.GuestOsFeature - 2453, // 1321: google.cloud.compute.v1.Snapshot.labels:type_name -> google.cloud.compute.v1.Snapshot.LabelsEntry - 2074, // 1322: google.cloud.compute.v1.Snapshot.params:type_name -> google.cloud.compute.v1.SnapshotParams - 695, // 1323: google.cloud.compute.v1.Snapshot.snapshot_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 695, // 1324: google.cloud.compute.v1.Snapshot.source_disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 695, // 1325: google.cloud.compute.v1.Snapshot.source_instant_snapshot_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 2072, // 1326: google.cloud.compute.v1.SnapshotList.items:type_name -> google.cloud.compute.v1.Snapshot - 2320, // 1327: google.cloud.compute.v1.SnapshotList.warning:type_name -> google.cloud.compute.v1.Warning - 2454, // 1328: google.cloud.compute.v1.SnapshotParams.resource_manager_tags:type_name -> google.cloud.compute.v1.SnapshotParams.ResourceManagerTagsEntry - 2076, // 1329: google.cloud.compute.v1.SnapshotSettings.storage_location:type_name -> google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings - 2455, // 1330: google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings.locations:type_name -> google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings.LocationsEntry - 695, // 1331: google.cloud.compute.v1.SourceDiskEncryptionKey.disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey - 814, // 1332: google.cloud.compute.v1.SourceInstanceParams.disk_configs:type_name -> google.cloud.compute.v1.DiskInstantiationConfig - 1912, // 1333: google.cloud.compute.v1.SourceInstanceProperties.disks:type_name -> google.cloud.compute.v1.SavedAttachedDisk - 476, // 1334: google.cloud.compute.v1.SourceInstanceProperties.guest_accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig - 2456, // 1335: google.cloud.compute.v1.SourceInstanceProperties.labels:type_name -> google.cloud.compute.v1.SourceInstanceProperties.LabelsEntry - 1545, // 1336: google.cloud.compute.v1.SourceInstanceProperties.metadata:type_name -> google.cloud.compute.v1.Metadata - 1582, // 1337: google.cloud.compute.v1.SourceInstanceProperties.network_interfaces:type_name -> google.cloud.compute.v1.NetworkInterface - 1915, // 1338: google.cloud.compute.v1.SourceInstanceProperties.scheduling:type_name -> google.cloud.compute.v1.Scheduling - 1957, // 1339: google.cloud.compute.v1.SourceInstanceProperties.service_accounts:type_name -> google.cloud.compute.v1.ServiceAccount - 2143, // 1340: google.cloud.compute.v1.SourceInstanceProperties.tags:type_name -> google.cloud.compute.v1.Tags - 2084, // 1341: google.cloud.compute.v1.SslCertificate.managed:type_name -> google.cloud.compute.v1.SslCertificateManagedSslCertificate - 2085, // 1342: google.cloud.compute.v1.SslCertificate.self_managed:type_name -> google.cloud.compute.v1.SslCertificateSelfManagedSslCertificate - 2457, // 1343: google.cloud.compute.v1.SslCertificateAggregatedList.items:type_name -> google.cloud.compute.v1.SslCertificateAggregatedList.ItemsEntry - 2320, // 1344: google.cloud.compute.v1.SslCertificateAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 2081, // 1345: google.cloud.compute.v1.SslCertificateList.items:type_name -> google.cloud.compute.v1.SslCertificate - 2320, // 1346: google.cloud.compute.v1.SslCertificateList.warning:type_name -> google.cloud.compute.v1.Warning - 2458, // 1347: google.cloud.compute.v1.SslCertificateManagedSslCertificate.domain_status:type_name -> google.cloud.compute.v1.SslCertificateManagedSslCertificate.DomainStatusEntry - 2081, // 1348: google.cloud.compute.v1.SslCertificatesScopedList.ssl_certificates:type_name -> google.cloud.compute.v1.SslCertificate - 2320, // 1349: google.cloud.compute.v1.SslCertificatesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2459, // 1350: google.cloud.compute.v1.SslPoliciesAggregatedList.items:type_name -> google.cloud.compute.v1.SslPoliciesAggregatedList.ItemsEntry - 2320, // 1351: google.cloud.compute.v1.SslPoliciesAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 2091, // 1352: google.cloud.compute.v1.SslPoliciesList.items:type_name -> google.cloud.compute.v1.SslPolicy - 2320, // 1353: google.cloud.compute.v1.SslPoliciesList.warning:type_name -> google.cloud.compute.v1.Warning - 2091, // 1354: google.cloud.compute.v1.SslPoliciesScopedList.ssl_policies:type_name -> google.cloud.compute.v1.SslPolicy - 2320, // 1355: google.cloud.compute.v1.SslPoliciesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2321, // 1356: google.cloud.compute.v1.SslPolicy.warnings:type_name -> google.cloud.compute.v1.Warnings - 828, // 1357: google.cloud.compute.v1.StartAsyncReplicationDiskRequest.disks_start_async_replication_request_resource:type_name -> google.cloud.compute.v1.DisksStartAsyncReplicationRequest - 1758, // 1358: google.cloud.compute.v1.StartAsyncReplicationRegionDiskRequest.region_disks_start_async_replication_request_resource:type_name -> google.cloud.compute.v1.RegionDisksStartAsyncReplicationRequest - 1260, // 1359: google.cloud.compute.v1.StartInstancesInstanceGroupManagerRequest.instance_group_managers_start_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersStartInstancesRequest - 1775, // 1360: google.cloud.compute.v1.StartInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_start_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersStartInstancesRequest - 1302, // 1361: google.cloud.compute.v1.StartWithEncryptionKeyInstanceRequest.instances_start_with_encryption_key_request_resource:type_name -> google.cloud.compute.v1.InstancesStartWithEncryptionKeyRequest - 2100, // 1362: google.cloud.compute.v1.StatefulPolicy.preserved_state:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedState - 2460, // 1363: google.cloud.compute.v1.StatefulPolicyPreservedState.disks:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedState.DisksEntry - 2461, // 1364: google.cloud.compute.v1.StatefulPolicyPreservedState.external_i_ps:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedState.ExternalIPsEntry - 2462, // 1365: google.cloud.compute.v1.StatefulPolicyPreservedState.internal_i_ps:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedState.InternalIPsEntry - 2487, // 1366: google.cloud.compute.v1.Status.details:type_name -> google.protobuf.Any - 829, // 1367: google.cloud.compute.v1.StopGroupAsyncReplicationDiskRequest.disks_stop_group_async_replication_resource_resource:type_name -> google.cloud.compute.v1.DisksStopGroupAsyncReplicationResource - 829, // 1368: google.cloud.compute.v1.StopGroupAsyncReplicationRegionDiskRequest.disks_stop_group_async_replication_resource_resource:type_name -> google.cloud.compute.v1.DisksStopGroupAsyncReplicationResource - 1261, // 1369: google.cloud.compute.v1.StopInstancesInstanceGroupManagerRequest.instance_group_managers_stop_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersStopInstancesRequest - 1776, // 1370: google.cloud.compute.v1.StopInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_stop_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersStopInstancesRequest - 2114, // 1371: google.cloud.compute.v1.StoragePool.exapool_provisioned_capacity_gb:type_name -> google.cloud.compute.v1.StoragePoolExapoolProvisionedCapacityGb - 2463, // 1372: google.cloud.compute.v1.StoragePool.labels:type_name -> google.cloud.compute.v1.StoragePool.LabelsEntry - 2117, // 1373: google.cloud.compute.v1.StoragePool.params:type_name -> google.cloud.compute.v1.StoragePoolParams - 2118, // 1374: google.cloud.compute.v1.StoragePool.resource_status:type_name -> google.cloud.compute.v1.StoragePoolResourceStatus - 2118, // 1375: google.cloud.compute.v1.StoragePool.status:type_name -> google.cloud.compute.v1.StoragePoolResourceStatus - 2464, // 1376: google.cloud.compute.v1.StoragePoolAggregatedList.items:type_name -> google.cloud.compute.v1.StoragePoolAggregatedList.ItemsEntry - 2320, // 1377: google.cloud.compute.v1.StoragePoolAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 2111, // 1378: google.cloud.compute.v1.StoragePoolList.items:type_name -> google.cloud.compute.v1.StoragePool - 2320, // 1379: google.cloud.compute.v1.StoragePoolList.warning:type_name -> google.cloud.compute.v1.Warning - 2113, // 1380: google.cloud.compute.v1.StoragePoolListDisks.items:type_name -> google.cloud.compute.v1.StoragePoolDisk - 2320, // 1381: google.cloud.compute.v1.StoragePoolListDisks.warning:type_name -> google.cloud.compute.v1.Warning - 2465, // 1382: google.cloud.compute.v1.StoragePoolParams.resource_manager_tags:type_name -> google.cloud.compute.v1.StoragePoolParams.ResourceManagerTagsEntry - 803, // 1383: google.cloud.compute.v1.StoragePoolType.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus - 2466, // 1384: google.cloud.compute.v1.StoragePoolTypeAggregatedList.items:type_name -> google.cloud.compute.v1.StoragePoolTypeAggregatedList.ItemsEntry - 2320, // 1385: google.cloud.compute.v1.StoragePoolTypeAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 2119, // 1386: google.cloud.compute.v1.StoragePoolTypeList.items:type_name -> google.cloud.compute.v1.StoragePoolType - 2320, // 1387: google.cloud.compute.v1.StoragePoolTypeList.warning:type_name -> google.cloud.compute.v1.Warning - 2119, // 1388: google.cloud.compute.v1.StoragePoolTypesScopedList.storage_pool_types:type_name -> google.cloud.compute.v1.StoragePoolType - 2320, // 1389: google.cloud.compute.v1.StoragePoolTypesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2111, // 1390: google.cloud.compute.v1.StoragePoolsScopedList.storage_pools:type_name -> google.cloud.compute.v1.StoragePool - 2320, // 1391: google.cloud.compute.v1.StoragePoolsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2127, // 1392: google.cloud.compute.v1.Subnetwork.log_config:type_name -> google.cloud.compute.v1.SubnetworkLogConfig - 2128, // 1393: google.cloud.compute.v1.Subnetwork.params:type_name -> google.cloud.compute.v1.SubnetworkParams - 2129, // 1394: google.cloud.compute.v1.Subnetwork.secondary_ip_ranges:type_name -> google.cloud.compute.v1.SubnetworkSecondaryRange - 2130, // 1395: google.cloud.compute.v1.Subnetwork.utilization_details:type_name -> google.cloud.compute.v1.SubnetworkUtilizationDetails - 2467, // 1396: google.cloud.compute.v1.SubnetworkAggregatedList.items:type_name -> google.cloud.compute.v1.SubnetworkAggregatedList.ItemsEntry - 2320, // 1397: google.cloud.compute.v1.SubnetworkAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 2124, // 1398: google.cloud.compute.v1.SubnetworkList.items:type_name -> google.cloud.compute.v1.Subnetwork - 2320, // 1399: google.cloud.compute.v1.SubnetworkList.warning:type_name -> google.cloud.compute.v1.Warning - 2468, // 1400: google.cloud.compute.v1.SubnetworkParams.resource_manager_tags:type_name -> google.cloud.compute.v1.SubnetworkParams.ResourceManagerTagsEntry - 2132, // 1401: google.cloud.compute.v1.SubnetworkUtilizationDetails.external_ipv6_instance_utilization:type_name -> google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV6Utilization - 2132, // 1402: google.cloud.compute.v1.SubnetworkUtilizationDetails.external_ipv6_lb_utilization:type_name -> google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV6Utilization - 2132, // 1403: google.cloud.compute.v1.SubnetworkUtilizationDetails.internal_ipv6_utilization:type_name -> google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV6Utilization - 2131, // 1404: google.cloud.compute.v1.SubnetworkUtilizationDetails.ipv4_utilizations:type_name -> google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV4Utilization - 2244, // 1405: google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV6Utilization.total_allocated_ip:type_name -> google.cloud.compute.v1.Uint128 - 2244, // 1406: google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV6Utilization.total_free_ip:type_name -> google.cloud.compute.v1.Uint128 - 2124, // 1407: google.cloud.compute.v1.SubnetworksScopedList.subnetworks:type_name -> google.cloud.compute.v1.Subnetwork - 2320, // 1408: google.cloud.compute.v1.SubnetworksScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2320, // 1409: google.cloud.compute.v1.SubnetworksScopedWarning.warning:type_name -> google.cloud.compute.v1.Warning - 1262, // 1410: google.cloud.compute.v1.SuspendInstancesInstanceGroupManagerRequest.instance_group_managers_suspend_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersSuspendInstancesRequest - 1777, // 1411: google.cloud.compute.v1.SuspendInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_suspend_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersSuspendInstancesRequest - 2144, // 1412: google.cloud.compute.v1.TargetGrpcProxyList.items:type_name -> google.cloud.compute.v1.TargetGrpcProxy - 2320, // 1413: google.cloud.compute.v1.TargetGrpcProxyList.warning:type_name -> google.cloud.compute.v1.Warning - 2147, // 1414: google.cloud.compute.v1.TargetHttpProxiesScopedList.target_http_proxies:type_name -> google.cloud.compute.v1.TargetHttpProxy - 2320, // 1415: google.cloud.compute.v1.TargetHttpProxiesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2469, // 1416: google.cloud.compute.v1.TargetHttpProxyAggregatedList.items:type_name -> google.cloud.compute.v1.TargetHttpProxyAggregatedList.ItemsEntry - 2147, // 1417: google.cloud.compute.v1.TargetHttpProxyList.items:type_name -> google.cloud.compute.v1.TargetHttpProxy - 2320, // 1418: google.cloud.compute.v1.TargetHttpProxyList.warning:type_name -> google.cloud.compute.v1.Warning - 2154, // 1419: google.cloud.compute.v1.TargetHttpsProxiesScopedList.target_https_proxies:type_name -> google.cloud.compute.v1.TargetHttpsProxy - 2320, // 1420: google.cloud.compute.v1.TargetHttpsProxiesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2470, // 1421: google.cloud.compute.v1.TargetHttpsProxyAggregatedList.items:type_name -> google.cloud.compute.v1.TargetHttpsProxyAggregatedList.ItemsEntry - 2320, // 1422: google.cloud.compute.v1.TargetHttpsProxyAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 2154, // 1423: google.cloud.compute.v1.TargetHttpsProxyList.items:type_name -> google.cloud.compute.v1.TargetHttpsProxy - 2320, // 1424: google.cloud.compute.v1.TargetHttpsProxyList.warning:type_name -> google.cloud.compute.v1.Warning - 2471, // 1425: google.cloud.compute.v1.TargetInstanceAggregatedList.items:type_name -> google.cloud.compute.v1.TargetInstanceAggregatedList.ItemsEntry - 2320, // 1426: google.cloud.compute.v1.TargetInstanceAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 2157, // 1427: google.cloud.compute.v1.TargetInstanceList.items:type_name -> google.cloud.compute.v1.TargetInstance - 2320, // 1428: google.cloud.compute.v1.TargetInstanceList.warning:type_name -> google.cloud.compute.v1.Warning - 2157, // 1429: google.cloud.compute.v1.TargetInstancesScopedList.target_instances:type_name -> google.cloud.compute.v1.TargetInstance - 2320, // 1430: google.cloud.compute.v1.TargetInstancesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2472, // 1431: google.cloud.compute.v1.TargetPoolAggregatedList.items:type_name -> google.cloud.compute.v1.TargetPoolAggregatedList.ItemsEntry - 2320, // 1432: google.cloud.compute.v1.TargetPoolAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1103, // 1433: google.cloud.compute.v1.TargetPoolInstanceHealth.health_status:type_name -> google.cloud.compute.v1.HealthStatus - 2161, // 1434: google.cloud.compute.v1.TargetPoolList.items:type_name -> google.cloud.compute.v1.TargetPool - 2320, // 1435: google.cloud.compute.v1.TargetPoolList.warning:type_name -> google.cloud.compute.v1.Warning - 1091, // 1436: google.cloud.compute.v1.TargetPoolsAddHealthCheckRequest.health_checks:type_name -> google.cloud.compute.v1.HealthCheckReference - 1279, // 1437: google.cloud.compute.v1.TargetPoolsAddInstanceRequest.instances:type_name -> google.cloud.compute.v1.InstanceReference - 1091, // 1438: google.cloud.compute.v1.TargetPoolsRemoveHealthCheckRequest.health_checks:type_name -> google.cloud.compute.v1.HealthCheckReference - 1279, // 1439: google.cloud.compute.v1.TargetPoolsRemoveInstanceRequest.instances:type_name -> google.cloud.compute.v1.InstanceReference - 2161, // 1440: google.cloud.compute.v1.TargetPoolsScopedList.target_pools:type_name -> google.cloud.compute.v1.TargetPool - 2320, // 1441: google.cloud.compute.v1.TargetPoolsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2175, // 1442: google.cloud.compute.v1.TargetSslProxyList.items:type_name -> google.cloud.compute.v1.TargetSslProxy - 2320, // 1443: google.cloud.compute.v1.TargetSslProxyList.warning:type_name -> google.cloud.compute.v1.Warning - 2180, // 1444: google.cloud.compute.v1.TargetTcpProxiesScopedList.target_tcp_proxies:type_name -> google.cloud.compute.v1.TargetTcpProxy - 2320, // 1445: google.cloud.compute.v1.TargetTcpProxiesScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2473, // 1446: google.cloud.compute.v1.TargetTcpProxyAggregatedList.items:type_name -> google.cloud.compute.v1.TargetTcpProxyAggregatedList.ItemsEntry - 2320, // 1447: google.cloud.compute.v1.TargetTcpProxyAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 2180, // 1448: google.cloud.compute.v1.TargetTcpProxyList.items:type_name -> google.cloud.compute.v1.TargetTcpProxy - 2320, // 1449: google.cloud.compute.v1.TargetTcpProxyList.warning:type_name -> google.cloud.compute.v1.Warning - 2474, // 1450: google.cloud.compute.v1.TargetVpnGateway.labels:type_name -> google.cloud.compute.v1.TargetVpnGateway.LabelsEntry - 2186, // 1451: google.cloud.compute.v1.TargetVpnGateway.params:type_name -> google.cloud.compute.v1.TargetVpnGatewayParams - 2475, // 1452: google.cloud.compute.v1.TargetVpnGatewayAggregatedList.items:type_name -> google.cloud.compute.v1.TargetVpnGatewayAggregatedList.ItemsEntry - 2320, // 1453: google.cloud.compute.v1.TargetVpnGatewayAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 2183, // 1454: google.cloud.compute.v1.TargetVpnGatewayList.items:type_name -> google.cloud.compute.v1.TargetVpnGateway - 2320, // 1455: google.cloud.compute.v1.TargetVpnGatewayList.warning:type_name -> google.cloud.compute.v1.Warning - 2476, // 1456: google.cloud.compute.v1.TargetVpnGatewayParams.resource_manager_tags:type_name -> google.cloud.compute.v1.TargetVpnGatewayParams.ResourceManagerTagsEntry - 2183, // 1457: google.cloud.compute.v1.TargetVpnGatewaysScopedList.target_vpn_gateways:type_name -> google.cloud.compute.v1.TargetVpnGateway - 2320, // 1458: google.cloud.compute.v1.TargetVpnGatewaysScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2279, // 1459: google.cloud.compute.v1.TestFailure.headers:type_name -> google.cloud.compute.v1.UrlMapTestHeader - 2242, // 1460: google.cloud.compute.v1.TestIamPermissionsAddressRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1461: google.cloud.compute.v1.TestIamPermissionsAutoscalerRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1462: google.cloud.compute.v1.TestIamPermissionsBackendBucketRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1463: google.cloud.compute.v1.TestIamPermissionsBackendServiceRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1464: google.cloud.compute.v1.TestIamPermissionsDiskRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1465: google.cloud.compute.v1.TestIamPermissionsExternalVpnGatewayRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1466: google.cloud.compute.v1.TestIamPermissionsFirewallPolicyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1467: google.cloud.compute.v1.TestIamPermissionsFirewallRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1468: google.cloud.compute.v1.TestIamPermissionsGlobalAddressRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1469: google.cloud.compute.v1.TestIamPermissionsHealthCheckRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1470: google.cloud.compute.v1.TestIamPermissionsImageRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1471: google.cloud.compute.v1.TestIamPermissionsInstanceGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1472: google.cloud.compute.v1.TestIamPermissionsInstanceRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1473: google.cloud.compute.v1.TestIamPermissionsInstanceTemplateRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1474: google.cloud.compute.v1.TestIamPermissionsInstantSnapshotRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1475: google.cloud.compute.v1.TestIamPermissionsInterconnectAttachmentGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1476: google.cloud.compute.v1.TestIamPermissionsInterconnectGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1477: google.cloud.compute.v1.TestIamPermissionsLicenseCodeRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1478: google.cloud.compute.v1.TestIamPermissionsLicenseRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1479: google.cloud.compute.v1.TestIamPermissionsMachineImageRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1480: google.cloud.compute.v1.TestIamPermissionsNetworkAttachmentRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1481: google.cloud.compute.v1.TestIamPermissionsNetworkEndpointGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1482: google.cloud.compute.v1.TestIamPermissionsNetworkFirewallPolicyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1483: google.cloud.compute.v1.TestIamPermissionsNodeGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1484: google.cloud.compute.v1.TestIamPermissionsNodeTemplateRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1485: google.cloud.compute.v1.TestIamPermissionsPacketMirroringRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1486: google.cloud.compute.v1.TestIamPermissionsRegionAutoscalerRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1487: google.cloud.compute.v1.TestIamPermissionsRegionBackendServiceRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1488: google.cloud.compute.v1.TestIamPermissionsRegionCompositeHealthCheckRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1489: google.cloud.compute.v1.TestIamPermissionsRegionDiskRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1490: google.cloud.compute.v1.TestIamPermissionsRegionHealthAggregationPolicyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1491: google.cloud.compute.v1.TestIamPermissionsRegionHealthCheckRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1492: google.cloud.compute.v1.TestIamPermissionsRegionHealthCheckServiceRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1493: google.cloud.compute.v1.TestIamPermissionsRegionHealthSourceRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1494: google.cloud.compute.v1.TestIamPermissionsRegionInstanceGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1495: google.cloud.compute.v1.TestIamPermissionsRegionInstantSnapshotRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1496: google.cloud.compute.v1.TestIamPermissionsRegionNetworkFirewallPolicyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1497: google.cloud.compute.v1.TestIamPermissionsRegionNotificationEndpointRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1498: google.cloud.compute.v1.TestIamPermissionsReservationBlockRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1499: google.cloud.compute.v1.TestIamPermissionsReservationRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1500: google.cloud.compute.v1.TestIamPermissionsReservationSubBlockRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1501: google.cloud.compute.v1.TestIamPermissionsResourcePolicyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1502: google.cloud.compute.v1.TestIamPermissionsRouteRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1503: google.cloud.compute.v1.TestIamPermissionsServiceAttachmentRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1504: google.cloud.compute.v1.TestIamPermissionsSnapshotRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1505: google.cloud.compute.v1.TestIamPermissionsStoragePoolRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1506: google.cloud.compute.v1.TestIamPermissionsSubnetworkRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1507: google.cloud.compute.v1.TestIamPermissionsTargetInstanceRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1508: google.cloud.compute.v1.TestIamPermissionsTargetPoolRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1509: google.cloud.compute.v1.TestIamPermissionsTargetSslProxyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1510: google.cloud.compute.v1.TestIamPermissionsTargetTcpProxyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1511: google.cloud.compute.v1.TestIamPermissionsUrlMapRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 2242, // 1512: google.cloud.compute.v1.TestIamPermissionsVpnGatewayRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest - 485, // 1513: google.cloud.compute.v1.UpdateAccessConfigInstanceRequest.access_config_resource:type_name -> google.cloud.compute.v1.AccessConfig - 589, // 1514: google.cloud.compute.v1.UpdateAutoscalerRequest.autoscaler_resource:type_name -> google.cloud.compute.v1.Autoscaler - 602, // 1515: google.cloud.compute.v1.UpdateBackendBucketRequest.backend_bucket_resource:type_name -> google.cloud.compute.v1.BackendBucket - 611, // 1516: google.cloud.compute.v1.UpdateBackendServiceRequest.backend_service_resource:type_name -> google.cloud.compute.v1.BackendService - 810, // 1517: google.cloud.compute.v1.UpdateDiskRequest.disk_resource:type_name -> google.cloud.compute.v1.Disk - 830, // 1518: google.cloud.compute.v1.UpdateDisplayDeviceInstanceRequest.display_device_resource:type_name -> google.cloud.compute.v1.DisplayDevice - 849, // 1519: google.cloud.compute.v1.UpdateFirewallRequest.firewall_resource:type_name -> google.cloud.compute.v1.Firewall - 870, // 1520: google.cloud.compute.v1.UpdateFutureReservationRequest.future_reservation_resource:type_name -> google.cloud.compute.v1.FutureReservation - 1088, // 1521: google.cloud.compute.v1.UpdateHealthCheckRequest.health_check_resource:type_name -> google.cloud.compute.v1.HealthCheck - 1210, // 1522: google.cloud.compute.v1.UpdateInstanceRequest.instance_resource:type_name -> google.cloud.compute.v1.Instance - 1387, // 1523: google.cloud.compute.v1.UpdateLicenseRequest.license_resource:type_name -> google.cloud.compute.v1.License - 1582, // 1524: google.cloud.compute.v1.UpdateNetworkInterfaceInstanceRequest.network_interface_resource:type_name -> google.cloud.compute.v1.NetworkInterface - 1602, // 1525: google.cloud.compute.v1.UpdatePeeringNetworkRequest.networks_update_peering_request_resource:type_name -> google.cloud.compute.v1.NetworksUpdatePeeringRequest - 1263, // 1526: google.cloud.compute.v1.UpdatePerInstanceConfigsInstanceGroupManagerRequest.instance_group_managers_update_per_instance_configs_req_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersUpdatePerInstanceConfigsReq - 1763, // 1527: google.cloud.compute.v1.UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest.region_instance_group_manager_update_instance_config_req_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagerUpdateInstanceConfigReq - 1722, // 1528: google.cloud.compute.v1.UpdatePreviewFeatureRequest.preview_feature_resource:type_name -> google.cloud.compute.v1.PreviewFeature - 589, // 1529: google.cloud.compute.v1.UpdateRegionAutoscalerRequest.autoscaler_resource:type_name -> google.cloud.compute.v1.Autoscaler - 611, // 1530: google.cloud.compute.v1.UpdateRegionBackendServiceRequest.backend_service_resource:type_name -> google.cloud.compute.v1.BackendService - 671, // 1531: google.cloud.compute.v1.UpdateRegionCommitmentRequest.commitment_resource:type_name -> google.cloud.compute.v1.Commitment - 810, // 1532: google.cloud.compute.v1.UpdateRegionDiskRequest.disk_resource:type_name -> google.cloud.compute.v1.Disk - 1088, // 1533: google.cloud.compute.v1.UpdateRegionHealthCheckRequest.health_check_resource:type_name -> google.cloud.compute.v1.HealthCheck - 2275, // 1534: google.cloud.compute.v1.UpdateRegionUrlMapRequest.url_map_resource:type_name -> google.cloud.compute.v1.UrlMap - 1812, // 1535: google.cloud.compute.v1.UpdateReservationRequest.reservation_resource:type_name -> google.cloud.compute.v1.Reservation - 1825, // 1536: google.cloud.compute.v1.UpdateReservationSlotRequest.reservation_slot_resource:type_name -> google.cloud.compute.v1.ReservationSlot - 1882, // 1537: google.cloud.compute.v1.UpdateRoutePolicyRouterRequest.route_policy_resource:type_name -> google.cloud.compute.v1.RoutePolicy - 1884, // 1538: google.cloud.compute.v1.UpdateRouterRequest.router_resource:type_name -> google.cloud.compute.v1.Router - 2065, // 1539: google.cloud.compute.v1.UpdateShieldedInstanceConfigInstanceRequest.shielded_instance_config_resource:type_name -> google.cloud.compute.v1.ShieldedInstanceConfig - 2111, // 1540: google.cloud.compute.v1.UpdateStoragePoolRequest.storage_pool_resource:type_name -> google.cloud.compute.v1.StoragePool - 2275, // 1541: google.cloud.compute.v1.UpdateUrlMapRequest.url_map_resource:type_name -> google.cloud.compute.v1.UrlMap - 693, // 1542: google.cloud.compute.v1.UrlMap.default_custom_error_response_policy:type_name -> google.cloud.compute.v1.CustomErrorResponsePolicy - 1117, // 1543: google.cloud.compute.v1.UrlMap.default_route_action:type_name -> google.cloud.compute.v1.HttpRouteAction - 1115, // 1544: google.cloud.compute.v1.UrlMap.default_url_redirect:type_name -> google.cloud.compute.v1.HttpRedirectAction - 1111, // 1545: google.cloud.compute.v1.UrlMap.header_action:type_name -> google.cloud.compute.v1.HttpHeaderAction - 1107, // 1546: google.cloud.compute.v1.UrlMap.host_rules:type_name -> google.cloud.compute.v1.HostRule - 1708, // 1547: google.cloud.compute.v1.UrlMap.path_matchers:type_name -> google.cloud.compute.v1.PathMatcher - 2278, // 1548: google.cloud.compute.v1.UrlMap.tests:type_name -> google.cloud.compute.v1.UrlMapTest - 2275, // 1549: google.cloud.compute.v1.UrlMapList.items:type_name -> google.cloud.compute.v1.UrlMap - 2320, // 1550: google.cloud.compute.v1.UrlMapList.warning:type_name -> google.cloud.compute.v1.Warning - 2279, // 1551: google.cloud.compute.v1.UrlMapTest.headers:type_name -> google.cloud.compute.v1.UrlMapTestHeader - 2188, // 1552: google.cloud.compute.v1.UrlMapValidationResult.test_failures:type_name -> google.cloud.compute.v1.TestFailure - 2477, // 1553: google.cloud.compute.v1.UrlMapsAggregatedList.items:type_name -> google.cloud.compute.v1.UrlMapsAggregatedList.ItemsEntry - 2320, // 1554: google.cloud.compute.v1.UrlMapsAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 2275, // 1555: google.cloud.compute.v1.UrlMapsScopedList.url_maps:type_name -> google.cloud.compute.v1.UrlMap - 2320, // 1556: google.cloud.compute.v1.UrlMapsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2275, // 1557: google.cloud.compute.v1.UrlMapsValidateRequest.resource:type_name -> google.cloud.compute.v1.UrlMap - 2280, // 1558: google.cloud.compute.v1.UrlMapsValidateResponse.result:type_name -> google.cloud.compute.v1.UrlMapValidationResult - 2287, // 1559: google.cloud.compute.v1.UsableSubnetwork.secondary_ip_ranges:type_name -> google.cloud.compute.v1.UsableSubnetworkSecondaryRange - 2286, // 1560: google.cloud.compute.v1.UsableSubnetworksAggregatedList.items:type_name -> google.cloud.compute.v1.UsableSubnetwork - 2135, // 1561: google.cloud.compute.v1.UsableSubnetworksAggregatedList.scoped_warnings:type_name -> google.cloud.compute.v1.SubnetworksScopedWarning - 2320, // 1562: google.cloud.compute.v1.UsableSubnetworksAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 1789, // 1563: google.cloud.compute.v1.ValidateRegionUrlMapRequest.region_url_maps_validate_request_resource:type_name -> google.cloud.compute.v1.RegionUrlMapsValidateRequest - 2283, // 1564: google.cloud.compute.v1.ValidateUrlMapRequest.url_maps_validate_request_resource:type_name -> google.cloud.compute.v1.UrlMapsValidateRequest - 2293, // 1565: google.cloud.compute.v1.VmEndpointNatMappings.interface_nat_mappings:type_name -> google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappings - 2294, // 1566: google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappings.rule_mappings:type_name -> google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings - 2292, // 1567: google.cloud.compute.v1.VmEndpointNatMappingsList.result:type_name -> google.cloud.compute.v1.VmEndpointNatMappings - 2320, // 1568: google.cloud.compute.v1.VmEndpointNatMappingsList.warning:type_name -> google.cloud.compute.v1.Warning - 2478, // 1569: google.cloud.compute.v1.VpnGateway.labels:type_name -> google.cloud.compute.v1.VpnGateway.LabelsEntry - 2299, // 1570: google.cloud.compute.v1.VpnGateway.params:type_name -> google.cloud.compute.v1.VpnGatewayParams - 2304, // 1571: google.cloud.compute.v1.VpnGateway.vpn_interfaces:type_name -> google.cloud.compute.v1.VpnGatewayVpnGatewayInterface - 2479, // 1572: google.cloud.compute.v1.VpnGatewayAggregatedList.items:type_name -> google.cloud.compute.v1.VpnGatewayAggregatedList.ItemsEntry - 2320, // 1573: google.cloud.compute.v1.VpnGatewayAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 2296, // 1574: google.cloud.compute.v1.VpnGatewayList.items:type_name -> google.cloud.compute.v1.VpnGateway - 2320, // 1575: google.cloud.compute.v1.VpnGatewayList.warning:type_name -> google.cloud.compute.v1.Warning - 2480, // 1576: google.cloud.compute.v1.VpnGatewayParams.resource_manager_tags:type_name -> google.cloud.compute.v1.VpnGatewayParams.ResourceManagerTagsEntry - 2303, // 1577: google.cloud.compute.v1.VpnGatewayStatus.vpn_connections:type_name -> google.cloud.compute.v1.VpnGatewayStatusVpnConnection - 2301, // 1578: google.cloud.compute.v1.VpnGatewayStatusVpnConnection.state:type_name -> google.cloud.compute.v1.VpnGatewayStatusHighAvailabilityRequirementState - 2302, // 1579: google.cloud.compute.v1.VpnGatewayStatusVpnConnection.tunnels:type_name -> google.cloud.compute.v1.VpnGatewayStatusTunnel - 2300, // 1580: google.cloud.compute.v1.VpnGatewaysGetStatusResponse.result:type_name -> google.cloud.compute.v1.VpnGatewayStatus - 2296, // 1581: google.cloud.compute.v1.VpnGatewaysScopedList.vpn_gateways:type_name -> google.cloud.compute.v1.VpnGateway - 2320, // 1582: google.cloud.compute.v1.VpnGatewaysScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2309, // 1583: google.cloud.compute.v1.VpnTunnel.cipher_suite:type_name -> google.cloud.compute.v1.VpnTunnelCipherSuite - 2481, // 1584: google.cloud.compute.v1.VpnTunnel.labels:type_name -> google.cloud.compute.v1.VpnTunnel.LabelsEntry - 2311, // 1585: google.cloud.compute.v1.VpnTunnel.params:type_name -> google.cloud.compute.v1.VpnTunnelParams - 2482, // 1586: google.cloud.compute.v1.VpnTunnelAggregatedList.items:type_name -> google.cloud.compute.v1.VpnTunnelAggregatedList.ItemsEntry - 2320, // 1587: google.cloud.compute.v1.VpnTunnelAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning - 2312, // 1588: google.cloud.compute.v1.VpnTunnelCipherSuite.phase1:type_name -> google.cloud.compute.v1.VpnTunnelPhase1Algorithms - 2313, // 1589: google.cloud.compute.v1.VpnTunnelCipherSuite.phase2:type_name -> google.cloud.compute.v1.VpnTunnelPhase2Algorithms - 2307, // 1590: google.cloud.compute.v1.VpnTunnelList.items:type_name -> google.cloud.compute.v1.VpnTunnel - 2320, // 1591: google.cloud.compute.v1.VpnTunnelList.warning:type_name -> google.cloud.compute.v1.Warning - 2483, // 1592: google.cloud.compute.v1.VpnTunnelParams.resource_manager_tags:type_name -> google.cloud.compute.v1.VpnTunnelParams.ResourceManagerTagsEntry - 2307, // 1593: google.cloud.compute.v1.VpnTunnelsScopedList.vpn_tunnels:type_name -> google.cloud.compute.v1.VpnTunnel - 2320, // 1594: google.cloud.compute.v1.VpnTunnelsScopedList.warning:type_name -> google.cloud.compute.v1.Warning - 2316, // 1595: google.cloud.compute.v1.WafExpressionSet.expressions:type_name -> google.cloud.compute.v1.WafExpressionSetExpression - 697, // 1596: google.cloud.compute.v1.Warning.data:type_name -> google.cloud.compute.v1.Data - 697, // 1597: google.cloud.compute.v1.Warnings.data:type_name -> google.cloud.compute.v1.Data - 1111, // 1598: google.cloud.compute.v1.WeightedBackendService.header_action:type_name -> google.cloud.compute.v1.HttpHeaderAction - 2324, // 1599: google.cloud.compute.v1.Wire.endpoints:type_name -> google.cloud.compute.v1.WireEndpoint - 2331, // 1600: google.cloud.compute.v1.Wire.wire_properties:type_name -> google.cloud.compute.v1.WireProperties - 2484, // 1601: google.cloud.compute.v1.WireGroup.endpoints:type_name -> google.cloud.compute.v1.WireGroup.EndpointsEntry - 2329, // 1602: google.cloud.compute.v1.WireGroup.topology:type_name -> google.cloud.compute.v1.WireGroupTopology - 2331, // 1603: google.cloud.compute.v1.WireGroup.wire_properties:type_name -> google.cloud.compute.v1.WireProperties - 2323, // 1604: google.cloud.compute.v1.WireGroup.wires:type_name -> google.cloud.compute.v1.Wire - 2485, // 1605: google.cloud.compute.v1.WireGroupEndpoint.interconnects:type_name -> google.cloud.compute.v1.WireGroupEndpoint.InterconnectsEntry - 2325, // 1606: google.cloud.compute.v1.WireGroupList.items:type_name -> google.cloud.compute.v1.WireGroup - 2320, // 1607: google.cloud.compute.v1.WireGroupList.warning:type_name -> google.cloud.compute.v1.Warning - 2330, // 1608: google.cloud.compute.v1.WireGroupTopology.endpoints:type_name -> google.cloud.compute.v1.WireGroupTopologyEndpoint - 1729, // 1609: google.cloud.compute.v1.XpnHostList.items:type_name -> google.cloud.compute.v1.Project - 2320, // 1610: google.cloud.compute.v1.XpnHostList.warning:type_name -> google.cloud.compute.v1.Warning - 803, // 1611: google.cloud.compute.v1.Zone.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus - 2337, // 1612: google.cloud.compute.v1.ZoneList.items:type_name -> google.cloud.compute.v1.Zone - 2320, // 1613: google.cloud.compute.v1.ZoneList.warning:type_name -> google.cloud.compute.v1.Warning - 2486, // 1614: google.cloud.compute.v1.ZoneSetLabelsRequest.labels:type_name -> google.cloud.compute.v1.ZoneSetLabelsRequest.LabelsEntry - 646, // 1615: google.cloud.compute.v1.ZoneSetNestedPolicyRequest.bindings:type_name -> google.cloud.compute.v1.Binding - 1716, // 1616: google.cloud.compute.v1.ZoneSetNestedPolicyRequest.policy:type_name -> google.cloud.compute.v1.Policy - 646, // 1617: google.cloud.compute.v1.ZoneSetPolicyRequest.bindings:type_name -> google.cloud.compute.v1.Binding - 1716, // 1618: google.cloud.compute.v1.ZoneSetPolicyRequest.policy:type_name -> google.cloud.compute.v1.Policy - 483, // 1619: google.cloud.compute.v1.AcceleratorTypeAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.AcceleratorTypesScopedList - 512, // 1620: google.cloud.compute.v1.AddressAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.AddressesScopedList - 1914, // 1621: google.cloud.compute.v1.Autoscaler.ScalingScheduleStatusEntry.value:type_name -> google.cloud.compute.v1.ScalingScheduleStatus - 593, // 1622: google.cloud.compute.v1.AutoscalerAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.AutoscalersScopedList - 599, // 1623: google.cloud.compute.v1.AutoscalingPolicy.ScalingSchedulesEntry.value:type_name -> google.cloud.compute.v1.AutoscalingPolicyScalingSchedule - 639, // 1624: google.cloud.compute.v1.BackendServiceAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.BackendServicesScopedList - 651, // 1625: google.cloud.compute.v1.BulkInsertInstanceResource.PerInstancePropertiesEntry.value:type_name -> google.cloud.compute.v1.BulkInsertInstanceResourcePerInstanceProperties - 884, // 1626: google.cloud.compute.v1.CalendarModeAdviceRequest.FutureResourcesSpecsEntry.value:type_name -> google.cloud.compute.v1.FutureResourcesSpec - 882, // 1627: google.cloud.compute.v1.CalendarModeRecommendation.RecommendationsPerSpecEntry.value:type_name -> google.cloud.compute.v1.FutureResourcesRecommendation - 675, // 1628: google.cloud.compute.v1.CommitmentAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.CommitmentsScopedList - 679, // 1629: google.cloud.compute.v1.CompositeHealthCheckAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.CompositeHealthChecksScopedList - 813, // 1630: google.cloud.compute.v1.Disk.AsyncSecondaryDisksEntry.value:type_name -> google.cloud.compute.v1.DiskAsyncReplicationList - 827, // 1631: google.cloud.compute.v1.DiskAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.DisksScopedList - 819, // 1632: google.cloud.compute.v1.DiskResourceStatus.AsyncSecondaryDisksEntry.value:type_name -> google.cloud.compute.v1.DiskResourceStatusAsyncReplicationStatus - 823, // 1633: google.cloud.compute.v1.DiskTypeAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.DiskTypesScopedList - 869, // 1634: google.cloud.compute.v1.ForwardingRuleAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.ForwardingRulesScopedList - 881, // 1635: google.cloud.compute.v1.FutureReservationsAggregatedListResponse.ItemsEntry.value:type_name -> google.cloud.compute.v1.FutureReservationsScopedList - 883, // 1636: google.cloud.compute.v1.FutureResourcesRecommendation.OtherLocationsEntry.value:type_name -> google.cloud.compute.v1.FutureResourcesRecommendationOtherLocation - 888, // 1637: google.cloud.compute.v1.FutureResourcesSpecLocationPolicy.LocationsEntry.value:type_name -> google.cloud.compute.v1.FutureResourcesSpecLocationPolicyLocation - 1084, // 1638: google.cloud.compute.v1.HealthAggregationPolicyAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.HealthAggregationPoliciesScopedList - 1096, // 1639: google.cloud.compute.v1.HealthCheckServiceAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.HealthCheckServicesScopedList - 1098, // 1640: google.cloud.compute.v1.HealthChecksAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.HealthChecksScopedList - 1102, // 1641: google.cloud.compute.v1.HealthSourceAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.HealthSourcesScopedList - 1294, // 1642: google.cloud.compute.v1.InstanceAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.InstancesScopedList - 1215, // 1643: google.cloud.compute.v1.InstanceFlexibilityPolicy.InstanceSelectionsEntry.value:type_name -> google.cloud.compute.v1.InstanceFlexibilityPolicyInstanceSelection - 1268, // 1644: google.cloud.compute.v1.InstanceGroupAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.InstanceGroupsScopedList - 1257, // 1645: google.cloud.compute.v1.InstanceGroupManagerAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.InstanceGroupManagersScopedList - 1225, // 1646: google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicy.InstanceSelectionsEntry.value:type_name -> google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection - 1285, // 1647: google.cloud.compute.v1.InstanceTemplateAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.InstanceTemplatesScopedList - 652, // 1648: google.cloud.compute.v1.InstancesBulkInsertOperationMetadata.PerLocationStatusEntry.value:type_name -> google.cloud.compute.v1.BulkInsertOperationStatus - 1308, // 1649: google.cloud.compute.v1.InstantSnapshotAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.InstantSnapshotsScopedList - 1342, // 1650: google.cloud.compute.v1.InterconnectAttachmentAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.InterconnectAttachmentsScopedList - 1320, // 1651: google.cloud.compute.v1.InterconnectAttachmentGroup.AttachmentsEntry.value:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupAttachment - 1335, // 1652: google.cloud.compute.v1.InterconnectAttachmentL2Forwarding.ApplianceMappingsEntry.value:type_name -> google.cloud.compute.v1.InterconnectAttachmentL2ForwardingApplianceMapping - 1355, // 1653: google.cloud.compute.v1.InterconnectGroup.InterconnectsEntry.value:type_name -> google.cloud.compute.v1.InterconnectGroupInterconnect - 1529, // 1654: google.cloud.compute.v1.LocationPolicy.LocationsEntry.value:type_name -> google.cloud.compute.v1.LocationPolicyLocation - 1538, // 1655: google.cloud.compute.v1.MachineTypeAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.MachineTypesScopedList - 1563, // 1656: google.cloud.compute.v1.NetworkAttachmentAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NetworkAttachmentsScopedList - 1566, // 1657: google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NetworkEdgeSecurityServicesScopedList - 1579, // 1658: google.cloud.compute.v1.NetworkEndpointGroupAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NetworkEndpointGroupsScopedList - 854, // 1659: google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.FirewallPoliciesScopedList - 1613, // 1660: google.cloud.compute.v1.NodeGroupAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NodeGroupsScopedList - 1620, // 1661: google.cloud.compute.v1.NodeTemplateAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NodeTemplatesScopedList - 1624, // 1662: google.cloud.compute.v1.NodeTypeAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NodeTypesScopedList - 1629, // 1663: google.cloud.compute.v1.NotificationEndpointAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NotificationEndpointsScopedList - 1633, // 1664: google.cloud.compute.v1.OperationAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.OperationsScopedList - 1646, // 1665: google.cloud.compute.v1.PacketMirroringAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.PacketMirroringsScopedList - 1719, // 1666: google.cloud.compute.v1.PreservedState.DisksEntry.value:type_name -> google.cloud.compute.v1.PreservedStatePreservedDisk - 1720, // 1667: google.cloud.compute.v1.PreservedState.ExternalIPsEntry.value:type_name -> google.cloud.compute.v1.PreservedStatePreservedNetworkIp - 1720, // 1668: google.cloud.compute.v1.PreservedState.InternalIPsEntry.value:type_name -> google.cloud.compute.v1.PreservedStatePreservedNetworkIp - 1743, // 1669: google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.PublicDelegatedPrefixesScopedList - 1842, // 1670: google.cloud.compute.v1.ReservationAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.ReservationsScopedList - 1851, // 1671: google.cloud.compute.v1.ResourcePolicyAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.ResourcePoliciesScopedList - 1910, // 1672: google.cloud.compute.v1.RouterAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.RoutersScopedList - 1921, // 1673: google.cloud.compute.v1.SecurityPoliciesAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.SecurityPoliciesScopedList - 1963, // 1674: google.cloud.compute.v1.ServiceAttachmentAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.ServiceAttachmentsScopedList - 1971, // 1675: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadata.PerLocationOperationsEntry.value:type_name -> google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo - 2064, // 1676: google.cloud.compute.v1.ShareSettings.ProjectMapEntry.value:type_name -> google.cloud.compute.v1.ShareSettingsProjectConfig - 2077, // 1677: google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings.LocationsEntry.value:type_name -> google.cloud.compute.v1.SnapshotSettingsStorageLocationSettingsStorageLocationPreference - 2086, // 1678: google.cloud.compute.v1.SslCertificateAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.SslCertificatesScopedList - 2090, // 1679: google.cloud.compute.v1.SslPoliciesAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.SslPoliciesScopedList - 2101, // 1680: google.cloud.compute.v1.StatefulPolicyPreservedState.DisksEntry.value:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedStateDiskDevice - 2102, // 1681: google.cloud.compute.v1.StatefulPolicyPreservedState.ExternalIPsEntry.value:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedStateNetworkIp - 2102, // 1682: google.cloud.compute.v1.StatefulPolicyPreservedState.InternalIPsEntry.value:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedStateNetworkIp - 2123, // 1683: google.cloud.compute.v1.StoragePoolAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.StoragePoolsScopedList - 2122, // 1684: google.cloud.compute.v1.StoragePoolTypeAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.StoragePoolTypesScopedList - 2134, // 1685: google.cloud.compute.v1.SubnetworkAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.SubnetworksScopedList - 2146, // 1686: google.cloud.compute.v1.TargetHttpProxyAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.TargetHttpProxiesScopedList - 2150, // 1687: google.cloud.compute.v1.TargetHttpsProxyAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.TargetHttpsProxiesScopedList - 2160, // 1688: google.cloud.compute.v1.TargetInstanceAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.TargetInstancesScopedList - 2169, // 1689: google.cloud.compute.v1.TargetPoolAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.TargetPoolsScopedList - 2177, // 1690: google.cloud.compute.v1.TargetTcpProxyAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.TargetTcpProxiesScopedList - 2187, // 1691: google.cloud.compute.v1.TargetVpnGatewayAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.TargetVpnGatewaysScopedList - 2282, // 1692: google.cloud.compute.v1.UrlMapsAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.UrlMapsScopedList - 2306, // 1693: google.cloud.compute.v1.VpnGatewayAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.VpnGatewaysScopedList - 2314, // 1694: google.cloud.compute.v1.VpnTunnelAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.VpnTunnelsScopedList - 2326, // 1695: google.cloud.compute.v1.WireGroup.EndpointsEntry.value:type_name -> google.cloud.compute.v1.WireGroupEndpoint - 2327, // 1696: google.cloud.compute.v1.WireGroupEndpoint.InterconnectsEntry.value:type_name -> google.cloud.compute.v1.WireGroupEndpointInterconnect - 514, // 1697: google.cloud.compute.v1.AcceleratorTypes.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListAcceleratorTypesRequest - 893, // 1698: google.cloud.compute.v1.AcceleratorTypes.Get:input_type -> google.cloud.compute.v1.GetAcceleratorTypeRequest - 1394, // 1699: google.cloud.compute.v1.AcceleratorTypes.List:input_type -> google.cloud.compute.v1.ListAcceleratorTypesRequest - 515, // 1700: google.cloud.compute.v1.Addresses.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListAddressesRequest - 700, // 1701: google.cloud.compute.v1.Addresses.Delete:input_type -> google.cloud.compute.v1.DeleteAddressRequest - 894, // 1702: google.cloud.compute.v1.Addresses.Get:input_type -> google.cloud.compute.v1.GetAddressRequest - 1125, // 1703: google.cloud.compute.v1.Addresses.Insert:input_type -> google.cloud.compute.v1.InsertAddressRequest - 1395, // 1704: google.cloud.compute.v1.Addresses.List:input_type -> google.cloud.compute.v1.ListAddressesRequest - 1548, // 1705: google.cloud.compute.v1.Addresses.Move:input_type -> google.cloud.compute.v1.MoveAddressRequest - 2008, // 1706: google.cloud.compute.v1.Addresses.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsAddressRequest - 2189, // 1707: google.cloud.compute.v1.Addresses.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsAddressRequest - 663, // 1708: google.cloud.compute.v1.Advice.CalendarMode:input_type -> google.cloud.compute.v1.CalendarModeAdviceRpcRequest - 516, // 1709: google.cloud.compute.v1.Autoscalers.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListAutoscalersRequest - 701, // 1710: google.cloud.compute.v1.Autoscalers.Delete:input_type -> google.cloud.compute.v1.DeleteAutoscalerRequest - 899, // 1711: google.cloud.compute.v1.Autoscalers.Get:input_type -> google.cloud.compute.v1.GetAutoscalerRequest - 1126, // 1712: google.cloud.compute.v1.Autoscalers.Insert:input_type -> google.cloud.compute.v1.InsertAutoscalerRequest - 1398, // 1713: google.cloud.compute.v1.Autoscalers.List:input_type -> google.cloud.compute.v1.ListAutoscalersRequest - 1647, // 1714: google.cloud.compute.v1.Autoscalers.Patch:input_type -> google.cloud.compute.v1.PatchAutoscalerRequest - 2190, // 1715: google.cloud.compute.v1.Autoscalers.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsAutoscalerRequest - 2247, // 1716: google.cloud.compute.v1.Autoscalers.Update:input_type -> google.cloud.compute.v1.UpdateAutoscalerRequest - 507, // 1717: google.cloud.compute.v1.BackendBuckets.AddSignedUrlKey:input_type -> google.cloud.compute.v1.AddSignedUrlKeyBackendBucketRequest - 702, // 1718: google.cloud.compute.v1.BackendBuckets.Delete:input_type -> google.cloud.compute.v1.DeleteBackendBucketRequest - 780, // 1719: google.cloud.compute.v1.BackendBuckets.DeleteSignedUrlKey:input_type -> google.cloud.compute.v1.DeleteSignedUrlKeyBackendBucketRequest - 900, // 1720: google.cloud.compute.v1.BackendBuckets.Get:input_type -> google.cloud.compute.v1.GetBackendBucketRequest - 928, // 1721: google.cloud.compute.v1.BackendBuckets.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyBackendBucketRequest - 1127, // 1722: google.cloud.compute.v1.BackendBuckets.Insert:input_type -> google.cloud.compute.v1.InsertBackendBucketRequest - 1401, // 1723: google.cloud.compute.v1.BackendBuckets.List:input_type -> google.cloud.compute.v1.ListBackendBucketsRequest - 1648, // 1724: google.cloud.compute.v1.BackendBuckets.Patch:input_type -> google.cloud.compute.v1.PatchBackendBucketRequest - 1976, // 1725: google.cloud.compute.v1.BackendBuckets.SetEdgeSecurityPolicy:input_type -> google.cloud.compute.v1.SetEdgeSecurityPolicyBackendBucketRequest - 1978, // 1726: google.cloud.compute.v1.BackendBuckets.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyBackendBucketRequest - 2191, // 1727: google.cloud.compute.v1.BackendBuckets.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsBackendBucketRequest - 2248, // 1728: google.cloud.compute.v1.BackendBuckets.Update:input_type -> google.cloud.compute.v1.UpdateBackendBucketRequest - 508, // 1729: google.cloud.compute.v1.BackendServices.AddSignedUrlKey:input_type -> google.cloud.compute.v1.AddSignedUrlKeyBackendServiceRequest - 517, // 1730: google.cloud.compute.v1.BackendServices.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListBackendServicesRequest - 703, // 1731: google.cloud.compute.v1.BackendServices.Delete:input_type -> google.cloud.compute.v1.DeleteBackendServiceRequest - 781, // 1732: google.cloud.compute.v1.BackendServices.DeleteSignedUrlKey:input_type -> google.cloud.compute.v1.DeleteSignedUrlKeyBackendServiceRequest - 901, // 1733: google.cloud.compute.v1.BackendServices.Get:input_type -> google.cloud.compute.v1.GetBackendServiceRequest - 909, // 1734: google.cloud.compute.v1.BackendServices.GetEffectiveSecurityPolicies:input_type -> google.cloud.compute.v1.GetEffectiveSecurityPoliciesBackendServiceRequest - 924, // 1735: google.cloud.compute.v1.BackendServices.GetHealth:input_type -> google.cloud.compute.v1.GetHealthBackendServiceRequest - 929, // 1736: google.cloud.compute.v1.BackendServices.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyBackendServiceRequest - 1128, // 1737: google.cloud.compute.v1.BackendServices.Insert:input_type -> google.cloud.compute.v1.InsertBackendServiceRequest - 1402, // 1738: google.cloud.compute.v1.BackendServices.List:input_type -> google.cloud.compute.v1.ListBackendServicesRequest - 1517, // 1739: google.cloud.compute.v1.BackendServices.ListUsable:input_type -> google.cloud.compute.v1.ListUsableBackendServicesRequest - 1649, // 1740: google.cloud.compute.v1.BackendServices.Patch:input_type -> google.cloud.compute.v1.PatchBackendServiceRequest - 1977, // 1741: google.cloud.compute.v1.BackendServices.SetEdgeSecurityPolicy:input_type -> google.cloud.compute.v1.SetEdgeSecurityPolicyBackendServiceRequest - 1979, // 1742: google.cloud.compute.v1.BackendServices.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyBackendServiceRequest - 2041, // 1743: google.cloud.compute.v1.BackendServices.SetSecurityPolicy:input_type -> google.cloud.compute.v1.SetSecurityPolicyBackendServiceRequest - 2192, // 1744: google.cloud.compute.v1.BackendServices.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsBackendServiceRequest - 2249, // 1745: google.cloud.compute.v1.BackendServices.Update:input_type -> google.cloud.compute.v1.UpdateBackendServiceRequest - 704, // 1746: google.cloud.compute.v1.CrossSiteNetworks.Delete:input_type -> google.cloud.compute.v1.DeleteCrossSiteNetworkRequest - 902, // 1747: google.cloud.compute.v1.CrossSiteNetworks.Get:input_type -> google.cloud.compute.v1.GetCrossSiteNetworkRequest - 1129, // 1748: google.cloud.compute.v1.CrossSiteNetworks.Insert:input_type -> google.cloud.compute.v1.InsertCrossSiteNetworkRequest - 1404, // 1749: google.cloud.compute.v1.CrossSiteNetworks.List:input_type -> google.cloud.compute.v1.ListCrossSiteNetworksRequest - 1650, // 1750: google.cloud.compute.v1.CrossSiteNetworks.Patch:input_type -> google.cloud.compute.v1.PatchCrossSiteNetworkRequest - 518, // 1751: google.cloud.compute.v1.DiskTypes.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListDiskTypesRequest - 905, // 1752: google.cloud.compute.v1.DiskTypes.Get:input_type -> google.cloud.compute.v1.GetDiskTypeRequest - 1405, // 1753: google.cloud.compute.v1.DiskTypes.List:input_type -> google.cloud.compute.v1.ListDiskTypesRequest - 498, // 1754: google.cloud.compute.v1.Disks.AddResourcePolicies:input_type -> google.cloud.compute.v1.AddResourcePoliciesDiskRequest - 519, // 1755: google.cloud.compute.v1.Disks.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListDisksRequest - 647, // 1756: google.cloud.compute.v1.Disks.BulkInsert:input_type -> google.cloud.compute.v1.BulkInsertDiskRequest - 655, // 1757: google.cloud.compute.v1.Disks.BulkSetLabels:input_type -> google.cloud.compute.v1.BulkSetLabelsDiskRequest - 689, // 1758: google.cloud.compute.v1.Disks.CreateSnapshot:input_type -> google.cloud.compute.v1.CreateSnapshotDiskRequest - 705, // 1759: google.cloud.compute.v1.Disks.Delete:input_type -> google.cloud.compute.v1.DeleteDiskRequest - 904, // 1760: google.cloud.compute.v1.Disks.Get:input_type -> google.cloud.compute.v1.GetDiskRequest - 930, // 1761: google.cloud.compute.v1.Disks.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyDiskRequest - 1130, // 1762: google.cloud.compute.v1.Disks.Insert:input_type -> google.cloud.compute.v1.InsertDiskRequest - 1406, // 1763: google.cloud.compute.v1.Disks.List:input_type -> google.cloud.compute.v1.ListDisksRequest - 1799, // 1764: google.cloud.compute.v1.Disks.RemoveResourcePolicies:input_type -> google.cloud.compute.v1.RemoveResourcePoliciesDiskRequest - 1844, // 1765: google.cloud.compute.v1.Disks.Resize:input_type -> google.cloud.compute.v1.ResizeDiskRequest - 1980, // 1766: google.cloud.compute.v1.Disks.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyDiskRequest - 2009, // 1767: google.cloud.compute.v1.Disks.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsDiskRequest - 2093, // 1768: google.cloud.compute.v1.Disks.StartAsyncReplication:input_type -> google.cloud.compute.v1.StartAsyncReplicationDiskRequest - 2104, // 1769: google.cloud.compute.v1.Disks.StopAsyncReplication:input_type -> google.cloud.compute.v1.StopAsyncReplicationDiskRequest - 2106, // 1770: google.cloud.compute.v1.Disks.StopGroupAsyncReplication:input_type -> google.cloud.compute.v1.StopGroupAsyncReplicationDiskRequest - 2193, // 1771: google.cloud.compute.v1.Disks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsDiskRequest - 2250, // 1772: google.cloud.compute.v1.Disks.Update:input_type -> google.cloud.compute.v1.UpdateDiskRequest - 706, // 1773: google.cloud.compute.v1.ExternalVpnGateways.Delete:input_type -> google.cloud.compute.v1.DeleteExternalVpnGatewayRequest - 911, // 1774: google.cloud.compute.v1.ExternalVpnGateways.Get:input_type -> google.cloud.compute.v1.GetExternalVpnGatewayRequest - 1131, // 1775: google.cloud.compute.v1.ExternalVpnGateways.Insert:input_type -> google.cloud.compute.v1.InsertExternalVpnGatewayRequest - 1410, // 1776: google.cloud.compute.v1.ExternalVpnGateways.List:input_type -> google.cloud.compute.v1.ListExternalVpnGatewaysRequest - 2010, // 1777: google.cloud.compute.v1.ExternalVpnGateways.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsExternalVpnGatewayRequest - 2194, // 1778: google.cloud.compute.v1.ExternalVpnGateways.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsExternalVpnGatewayRequest - 487, // 1779: google.cloud.compute.v1.FirewallPolicies.AddAssociation:input_type -> google.cloud.compute.v1.AddAssociationFirewallPolicyRequest - 501, // 1780: google.cloud.compute.v1.FirewallPolicies.AddRule:input_type -> google.cloud.compute.v1.AddRuleFirewallPolicyRequest - 668, // 1781: google.cloud.compute.v1.FirewallPolicies.CloneRules:input_type -> google.cloud.compute.v1.CloneRulesFirewallPolicyRequest - 707, // 1782: google.cloud.compute.v1.FirewallPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteFirewallPolicyRequest - 912, // 1783: google.cloud.compute.v1.FirewallPolicies.Get:input_type -> google.cloud.compute.v1.GetFirewallPolicyRequest - 895, // 1784: google.cloud.compute.v1.FirewallPolicies.GetAssociation:input_type -> google.cloud.compute.v1.GetAssociationFirewallPolicyRequest - 931, // 1785: google.cloud.compute.v1.FirewallPolicies.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyFirewallPolicyRequest - 1031, // 1786: google.cloud.compute.v1.FirewallPolicies.GetRule:input_type -> google.cloud.compute.v1.GetRuleFirewallPolicyRequest - 1132, // 1787: google.cloud.compute.v1.FirewallPolicies.Insert:input_type -> google.cloud.compute.v1.InsertFirewallPolicyRequest - 1411, // 1788: google.cloud.compute.v1.FirewallPolicies.List:input_type -> google.cloud.compute.v1.ListFirewallPoliciesRequest - 1396, // 1789: google.cloud.compute.v1.FirewallPolicies.ListAssociations:input_type -> google.cloud.compute.v1.ListAssociationsFirewallPolicyRequest - 1550, // 1790: google.cloud.compute.v1.FirewallPolicies.Move:input_type -> google.cloud.compute.v1.MoveFirewallPolicyRequest - 1651, // 1791: google.cloud.compute.v1.FirewallPolicies.Patch:input_type -> google.cloud.compute.v1.PatchFirewallPolicyRequest - 1692, // 1792: google.cloud.compute.v1.FirewallPolicies.PatchRule:input_type -> google.cloud.compute.v1.PatchRuleFirewallPolicyRequest - 1790, // 1793: google.cloud.compute.v1.FirewallPolicies.RemoveAssociation:input_type -> google.cloud.compute.v1.RemoveAssociationFirewallPolicyRequest - 1802, // 1794: google.cloud.compute.v1.FirewallPolicies.RemoveRule:input_type -> google.cloud.compute.v1.RemoveRuleFirewallPolicyRequest - 1981, // 1795: google.cloud.compute.v1.FirewallPolicies.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyFirewallPolicyRequest - 2195, // 1796: google.cloud.compute.v1.FirewallPolicies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsFirewallPolicyRequest - 708, // 1797: google.cloud.compute.v1.Firewalls.Delete:input_type -> google.cloud.compute.v1.DeleteFirewallRequest - 913, // 1798: google.cloud.compute.v1.Firewalls.Get:input_type -> google.cloud.compute.v1.GetFirewallRequest - 1133, // 1799: google.cloud.compute.v1.Firewalls.Insert:input_type -> google.cloud.compute.v1.InsertFirewallRequest - 1412, // 1800: google.cloud.compute.v1.Firewalls.List:input_type -> google.cloud.compute.v1.ListFirewallsRequest - 1652, // 1801: google.cloud.compute.v1.Firewalls.Patch:input_type -> google.cloud.compute.v1.PatchFirewallRequest - 2196, // 1802: google.cloud.compute.v1.Firewalls.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsFirewallRequest - 2252, // 1803: google.cloud.compute.v1.Firewalls.Update:input_type -> google.cloud.compute.v1.UpdateFirewallRequest - 520, // 1804: google.cloud.compute.v1.ForwardingRules.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListForwardingRulesRequest - 709, // 1805: google.cloud.compute.v1.ForwardingRules.Delete:input_type -> google.cloud.compute.v1.DeleteForwardingRuleRequest - 914, // 1806: google.cloud.compute.v1.ForwardingRules.Get:input_type -> google.cloud.compute.v1.GetForwardingRuleRequest - 1134, // 1807: google.cloud.compute.v1.ForwardingRules.Insert:input_type -> google.cloud.compute.v1.InsertForwardingRuleRequest - 1413, // 1808: google.cloud.compute.v1.ForwardingRules.List:input_type -> google.cloud.compute.v1.ListForwardingRulesRequest - 1653, // 1809: google.cloud.compute.v1.ForwardingRules.Patch:input_type -> google.cloud.compute.v1.PatchForwardingRuleRequest - 2011, // 1810: google.cloud.compute.v1.ForwardingRules.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsForwardingRuleRequest - 2054, // 1811: google.cloud.compute.v1.ForwardingRules.SetTarget:input_type -> google.cloud.compute.v1.SetTargetForwardingRuleRequest - 521, // 1812: google.cloud.compute.v1.FutureReservations.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListFutureReservationsRequest - 665, // 1813: google.cloud.compute.v1.FutureReservations.Cancel:input_type -> google.cloud.compute.v1.CancelFutureReservationRequest - 710, // 1814: google.cloud.compute.v1.FutureReservations.Delete:input_type -> google.cloud.compute.v1.DeleteFutureReservationRequest - 916, // 1815: google.cloud.compute.v1.FutureReservations.Get:input_type -> google.cloud.compute.v1.GetFutureReservationRequest - 1135, // 1816: google.cloud.compute.v1.FutureReservations.Insert:input_type -> google.cloud.compute.v1.InsertFutureReservationRequest - 1414, // 1817: google.cloud.compute.v1.FutureReservations.List:input_type -> google.cloud.compute.v1.ListFutureReservationsRequest - 2253, // 1818: google.cloud.compute.v1.FutureReservations.Update:input_type -> google.cloud.compute.v1.UpdateFutureReservationRequest - 711, // 1819: google.cloud.compute.v1.GlobalAddresses.Delete:input_type -> google.cloud.compute.v1.DeleteGlobalAddressRequest - 917, // 1820: google.cloud.compute.v1.GlobalAddresses.Get:input_type -> google.cloud.compute.v1.GetGlobalAddressRequest - 1136, // 1821: google.cloud.compute.v1.GlobalAddresses.Insert:input_type -> google.cloud.compute.v1.InsertGlobalAddressRequest - 1415, // 1822: google.cloud.compute.v1.GlobalAddresses.List:input_type -> google.cloud.compute.v1.ListGlobalAddressesRequest - 1551, // 1823: google.cloud.compute.v1.GlobalAddresses.Move:input_type -> google.cloud.compute.v1.MoveGlobalAddressRequest - 2012, // 1824: google.cloud.compute.v1.GlobalAddresses.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsGlobalAddressRequest - 2197, // 1825: google.cloud.compute.v1.GlobalAddresses.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsGlobalAddressRequest - 712, // 1826: google.cloud.compute.v1.GlobalForwardingRules.Delete:input_type -> google.cloud.compute.v1.DeleteGlobalForwardingRuleRequest - 918, // 1827: google.cloud.compute.v1.GlobalForwardingRules.Get:input_type -> google.cloud.compute.v1.GetGlobalForwardingRuleRequest - 1137, // 1828: google.cloud.compute.v1.GlobalForwardingRules.Insert:input_type -> google.cloud.compute.v1.InsertGlobalForwardingRuleRequest - 1416, // 1829: google.cloud.compute.v1.GlobalForwardingRules.List:input_type -> google.cloud.compute.v1.ListGlobalForwardingRulesRequest - 1654, // 1830: google.cloud.compute.v1.GlobalForwardingRules.Patch:input_type -> google.cloud.compute.v1.PatchGlobalForwardingRuleRequest - 2013, // 1831: google.cloud.compute.v1.GlobalForwardingRules.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsGlobalForwardingRuleRequest - 2055, // 1832: google.cloud.compute.v1.GlobalForwardingRules.SetTarget:input_type -> google.cloud.compute.v1.SetTargetGlobalForwardingRuleRequest - 582, // 1833: google.cloud.compute.v1.GlobalNetworkEndpointGroups.AttachNetworkEndpoints:input_type -> google.cloud.compute.v1.AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest - 713, // 1834: google.cloud.compute.v1.GlobalNetworkEndpointGroups.Delete:input_type -> google.cloud.compute.v1.DeleteGlobalNetworkEndpointGroupRequest - 805, // 1835: google.cloud.compute.v1.GlobalNetworkEndpointGroups.DetachNetworkEndpoints:input_type -> google.cloud.compute.v1.DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest - 919, // 1836: google.cloud.compute.v1.GlobalNetworkEndpointGroups.Get:input_type -> google.cloud.compute.v1.GetGlobalNetworkEndpointGroupRequest - 1138, // 1837: google.cloud.compute.v1.GlobalNetworkEndpointGroups.Insert:input_type -> google.cloud.compute.v1.InsertGlobalNetworkEndpointGroupRequest - 1417, // 1838: google.cloud.compute.v1.GlobalNetworkEndpointGroups.List:input_type -> google.cloud.compute.v1.ListGlobalNetworkEndpointGroupsRequest - 1444, // 1839: google.cloud.compute.v1.GlobalNetworkEndpointGroups.ListNetworkEndpoints:input_type -> google.cloud.compute.v1.ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest - 522, // 1840: google.cloud.compute.v1.GlobalOperations.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListGlobalOperationsRequest - 714, // 1841: google.cloud.compute.v1.GlobalOperations.Delete:input_type -> google.cloud.compute.v1.DeleteGlobalOperationRequest - 920, // 1842: google.cloud.compute.v1.GlobalOperations.Get:input_type -> google.cloud.compute.v1.GetGlobalOperationRequest - 1418, // 1843: google.cloud.compute.v1.GlobalOperations.List:input_type -> google.cloud.compute.v1.ListGlobalOperationsRequest - 2317, // 1844: google.cloud.compute.v1.GlobalOperations.Wait:input_type -> google.cloud.compute.v1.WaitGlobalOperationRequest - 716, // 1845: google.cloud.compute.v1.GlobalOrganizationOperations.Delete:input_type -> google.cloud.compute.v1.DeleteGlobalOrganizationOperationRequest - 921, // 1846: google.cloud.compute.v1.GlobalOrganizationOperations.Get:input_type -> google.cloud.compute.v1.GetGlobalOrganizationOperationRequest - 1419, // 1847: google.cloud.compute.v1.GlobalOrganizationOperations.List:input_type -> google.cloud.compute.v1.ListGlobalOrganizationOperationsRequest - 718, // 1848: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Delete:input_type -> google.cloud.compute.v1.DeleteGlobalPublicDelegatedPrefixeRequest - 922, // 1849: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Get:input_type -> google.cloud.compute.v1.GetGlobalPublicDelegatedPrefixeRequest - 1139, // 1850: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Insert:input_type -> google.cloud.compute.v1.InsertGlobalPublicDelegatedPrefixeRequest - 1420, // 1851: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.List:input_type -> google.cloud.compute.v1.ListGlobalPublicDelegatedPrefixesRequest - 1655, // 1852: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Patch:input_type -> google.cloud.compute.v1.PatchGlobalPublicDelegatedPrefixeRequest - 523, // 1853: google.cloud.compute.v1.HealthChecks.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListHealthChecksRequest - 719, // 1854: google.cloud.compute.v1.HealthChecks.Delete:input_type -> google.cloud.compute.v1.DeleteHealthCheckRequest - 925, // 1855: google.cloud.compute.v1.HealthChecks.Get:input_type -> google.cloud.compute.v1.GetHealthCheckRequest - 1140, // 1856: google.cloud.compute.v1.HealthChecks.Insert:input_type -> google.cloud.compute.v1.InsertHealthCheckRequest - 1421, // 1857: google.cloud.compute.v1.HealthChecks.List:input_type -> google.cloud.compute.v1.ListHealthChecksRequest - 1656, // 1858: google.cloud.compute.v1.HealthChecks.Patch:input_type -> google.cloud.compute.v1.PatchHealthCheckRequest - 2198, // 1859: google.cloud.compute.v1.HealthChecks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsHealthCheckRequest - 2254, // 1860: google.cloud.compute.v1.HealthChecks.Update:input_type -> google.cloud.compute.v1.UpdateHealthCheckRequest - 956, // 1861: google.cloud.compute.v1.ImageFamilyViews.Get:input_type -> google.cloud.compute.v1.GetImageFamilyViewRequest - 720, // 1862: google.cloud.compute.v1.Images.Delete:input_type -> google.cloud.compute.v1.DeleteImageRequest - 802, // 1863: google.cloud.compute.v1.Images.Deprecate:input_type -> google.cloud.compute.v1.DeprecateImageRequest - 957, // 1864: google.cloud.compute.v1.Images.Get:input_type -> google.cloud.compute.v1.GetImageRequest - 915, // 1865: google.cloud.compute.v1.Images.GetFromFamily:input_type -> google.cloud.compute.v1.GetFromFamilyImageRequest - 932, // 1866: google.cloud.compute.v1.Images.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyImageRequest - 1141, // 1867: google.cloud.compute.v1.Images.Insert:input_type -> google.cloud.compute.v1.InsertImageRequest - 1422, // 1868: google.cloud.compute.v1.Images.List:input_type -> google.cloud.compute.v1.ListImagesRequest - 1657, // 1869: google.cloud.compute.v1.Images.Patch:input_type -> google.cloud.compute.v1.PatchImageRequest - 1982, // 1870: google.cloud.compute.v1.Images.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyImageRequest - 2014, // 1871: google.cloud.compute.v1.Images.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsImageRequest - 2199, // 1872: google.cloud.compute.v1.Images.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsImageRequest - 666, // 1873: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Cancel:input_type -> google.cloud.compute.v1.CancelInstanceGroupManagerResizeRequestRequest - 722, // 1874: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Delete:input_type -> google.cloud.compute.v1.DeleteInstanceGroupManagerResizeRequestRequest - 959, // 1875: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Get:input_type -> google.cloud.compute.v1.GetInstanceGroupManagerResizeRequestRequest - 1143, // 1876: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Insert:input_type -> google.cloud.compute.v1.InsertInstanceGroupManagerResizeRequestRequest - 1423, // 1877: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.List:input_type -> google.cloud.compute.v1.ListInstanceGroupManagerResizeRequestsRequest - 474, // 1878: google.cloud.compute.v1.InstanceGroupManagers.AbandonInstances:input_type -> google.cloud.compute.v1.AbandonInstancesInstanceGroupManagerRequest - 524, // 1879: google.cloud.compute.v1.InstanceGroupManagers.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListInstanceGroupManagersRequest - 579, // 1880: google.cloud.compute.v1.InstanceGroupManagers.ApplyUpdatesToInstances:input_type -> google.cloud.compute.v1.ApplyUpdatesToInstancesInstanceGroupManagerRequest - 686, // 1881: google.cloud.compute.v1.InstanceGroupManagers.CreateInstances:input_type -> google.cloud.compute.v1.CreateInstancesInstanceGroupManagerRequest - 721, // 1882: google.cloud.compute.v1.InstanceGroupManagers.Delete:input_type -> google.cloud.compute.v1.DeleteInstanceGroupManagerRequest - 726, // 1883: google.cloud.compute.v1.InstanceGroupManagers.DeleteInstances:input_type -> google.cloud.compute.v1.DeleteInstancesInstanceGroupManagerRequest - 746, // 1884: google.cloud.compute.v1.InstanceGroupManagers.DeletePerInstanceConfigs:input_type -> google.cloud.compute.v1.DeletePerInstanceConfigsInstanceGroupManagerRequest - 958, // 1885: google.cloud.compute.v1.InstanceGroupManagers.Get:input_type -> google.cloud.compute.v1.GetInstanceGroupManagerRequest - 1142, // 1886: google.cloud.compute.v1.InstanceGroupManagers.Insert:input_type -> google.cloud.compute.v1.InsertInstanceGroupManagerRequest - 1424, // 1887: google.cloud.compute.v1.InstanceGroupManagers.List:input_type -> google.cloud.compute.v1.ListInstanceGroupManagersRequest - 1408, // 1888: google.cloud.compute.v1.InstanceGroupManagers.ListErrors:input_type -> google.cloud.compute.v1.ListErrorsInstanceGroupManagersRequest - 1440, // 1889: google.cloud.compute.v1.InstanceGroupManagers.ListManagedInstances:input_type -> google.cloud.compute.v1.ListManagedInstancesInstanceGroupManagersRequest - 1457, // 1890: google.cloud.compute.v1.InstanceGroupManagers.ListPerInstanceConfigs:input_type -> google.cloud.compute.v1.ListPerInstanceConfigsInstanceGroupManagersRequest - 1658, // 1891: google.cloud.compute.v1.InstanceGroupManagers.Patch:input_type -> google.cloud.compute.v1.PatchInstanceGroupManagerRequest - 1672, // 1892: google.cloud.compute.v1.InstanceGroupManagers.PatchPerInstanceConfigs:input_type -> google.cloud.compute.v1.PatchPerInstanceConfigsInstanceGroupManagerRequest - 1748, // 1893: google.cloud.compute.v1.InstanceGroupManagers.RecreateInstances:input_type -> google.cloud.compute.v1.RecreateInstancesInstanceGroupManagerRequest - 1845, // 1894: google.cloud.compute.v1.InstanceGroupManagers.Resize:input_type -> google.cloud.compute.v1.ResizeInstanceGroupManagerRequest - 1876, // 1895: google.cloud.compute.v1.InstanceGroupManagers.ResumeInstances:input_type -> google.cloud.compute.v1.ResumeInstancesInstanceGroupManagerRequest - 2006, // 1896: google.cloud.compute.v1.InstanceGroupManagers.SetInstanceTemplate:input_type -> google.cloud.compute.v1.SetInstanceTemplateInstanceGroupManagerRequest - 2056, // 1897: google.cloud.compute.v1.InstanceGroupManagers.SetTargetPools:input_type -> google.cloud.compute.v1.SetTargetPoolsInstanceGroupManagerRequest - 2096, // 1898: google.cloud.compute.v1.InstanceGroupManagers.StartInstances:input_type -> google.cloud.compute.v1.StartInstancesInstanceGroupManagerRequest - 2109, // 1899: google.cloud.compute.v1.InstanceGroupManagers.StopInstances:input_type -> google.cloud.compute.v1.StopInstancesInstanceGroupManagerRequest - 2139, // 1900: google.cloud.compute.v1.InstanceGroupManagers.SuspendInstances:input_type -> google.cloud.compute.v1.SuspendInstancesInstanceGroupManagerRequest - 2259, // 1901: google.cloud.compute.v1.InstanceGroupManagers.UpdatePerInstanceConfigs:input_type -> google.cloud.compute.v1.UpdatePerInstanceConfigsInstanceGroupManagerRequest - 493, // 1902: google.cloud.compute.v1.InstanceGroups.AddInstances:input_type -> google.cloud.compute.v1.AddInstancesInstanceGroupRequest - 525, // 1903: google.cloud.compute.v1.InstanceGroups.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListInstanceGroupsRequest - 723, // 1904: google.cloud.compute.v1.InstanceGroups.Delete:input_type -> google.cloud.compute.v1.DeleteInstanceGroupRequest - 960, // 1905: google.cloud.compute.v1.InstanceGroups.Get:input_type -> google.cloud.compute.v1.GetInstanceGroupRequest - 1144, // 1906: google.cloud.compute.v1.InstanceGroups.Insert:input_type -> google.cloud.compute.v1.InsertInstanceGroupRequest - 1425, // 1907: google.cloud.compute.v1.InstanceGroups.List:input_type -> google.cloud.compute.v1.ListInstanceGroupsRequest - 1427, // 1908: google.cloud.compute.v1.InstanceGroups.ListInstances:input_type -> google.cloud.compute.v1.ListInstancesInstanceGroupsRequest - 1796, // 1909: google.cloud.compute.v1.InstanceGroups.RemoveInstances:input_type -> google.cloud.compute.v1.RemoveInstancesInstanceGroupRequest - 2033, // 1910: google.cloud.compute.v1.InstanceGroups.SetNamedPorts:input_type -> google.cloud.compute.v1.SetNamedPortsInstanceGroupRequest - 2200, // 1911: google.cloud.compute.v1.InstanceGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInstanceGroupRequest - 962, // 1912: google.cloud.compute.v1.InstanceSettingsService.Get:input_type -> google.cloud.compute.v1.GetInstanceSettingRequest - 1659, // 1913: google.cloud.compute.v1.InstanceSettingsService.Patch:input_type -> google.cloud.compute.v1.PatchInstanceSettingRequest - 526, // 1914: google.cloud.compute.v1.InstanceTemplates.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListInstanceTemplatesRequest - 725, // 1915: google.cloud.compute.v1.InstanceTemplates.Delete:input_type -> google.cloud.compute.v1.DeleteInstanceTemplateRequest - 963, // 1916: google.cloud.compute.v1.InstanceTemplates.Get:input_type -> google.cloud.compute.v1.GetInstanceTemplateRequest - 934, // 1917: google.cloud.compute.v1.InstanceTemplates.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyInstanceTemplateRequest - 1146, // 1918: google.cloud.compute.v1.InstanceTemplates.Insert:input_type -> google.cloud.compute.v1.InsertInstanceTemplateRequest - 1426, // 1919: google.cloud.compute.v1.InstanceTemplates.List:input_type -> google.cloud.compute.v1.ListInstanceTemplatesRequest - 1984, // 1920: google.cloud.compute.v1.InstanceTemplates.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyInstanceTemplateRequest - 2202, // 1921: google.cloud.compute.v1.InstanceTemplates.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInstanceTemplateRequest - 486, // 1922: google.cloud.compute.v1.Instances.AddAccessConfig:input_type -> google.cloud.compute.v1.AddAccessConfigInstanceRequest - 494, // 1923: google.cloud.compute.v1.Instances.AddNetworkInterface:input_type -> google.cloud.compute.v1.AddNetworkInterfaceInstanceRequest - 499, // 1924: google.cloud.compute.v1.Instances.AddResourcePolicies:input_type -> google.cloud.compute.v1.AddResourcePoliciesInstanceRequest - 527, // 1925: google.cloud.compute.v1.Instances.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListInstancesRequest - 581, // 1926: google.cloud.compute.v1.Instances.AttachDisk:input_type -> google.cloud.compute.v1.AttachDiskInstanceRequest - 649, // 1927: google.cloud.compute.v1.Instances.BulkInsert:input_type -> google.cloud.compute.v1.BulkInsertInstanceRequest - 724, // 1928: google.cloud.compute.v1.Instances.Delete:input_type -> google.cloud.compute.v1.DeleteInstanceRequest - 699, // 1929: google.cloud.compute.v1.Instances.DeleteAccessConfig:input_type -> google.cloud.compute.v1.DeleteAccessConfigInstanceRequest - 739, // 1930: google.cloud.compute.v1.Instances.DeleteNetworkInterface:input_type -> google.cloud.compute.v1.DeleteNetworkInterfaceInstanceRequest - 804, // 1931: google.cloud.compute.v1.Instances.DetachDisk:input_type -> google.cloud.compute.v1.DetachDiskInstanceRequest - 961, // 1932: google.cloud.compute.v1.Instances.Get:input_type -> google.cloud.compute.v1.GetInstanceRequest - 906, // 1933: google.cloud.compute.v1.Instances.GetEffectiveFirewalls:input_type -> google.cloud.compute.v1.GetEffectiveFirewallsInstanceRequest - 923, // 1934: google.cloud.compute.v1.Instances.GetGuestAttributes:input_type -> google.cloud.compute.v1.GetGuestAttributesInstanceRequest - 933, // 1935: google.cloud.compute.v1.Instances.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyInstanceRequest - 1037, // 1936: google.cloud.compute.v1.Instances.GetScreenshot:input_type -> google.cloud.compute.v1.GetScreenshotInstanceRequest - 1039, // 1937: google.cloud.compute.v1.Instances.GetSerialPortOutput:input_type -> google.cloud.compute.v1.GetSerialPortOutputInstanceRequest - 1041, // 1938: google.cloud.compute.v1.Instances.GetShieldedInstanceIdentity:input_type -> google.cloud.compute.v1.GetShieldedInstanceIdentityInstanceRequest - 1145, // 1939: google.cloud.compute.v1.Instances.Insert:input_type -> google.cloud.compute.v1.InsertInstanceRequest - 1429, // 1940: google.cloud.compute.v1.Instances.List:input_type -> google.cloud.compute.v1.ListInstancesRequest - 1464, // 1941: google.cloud.compute.v1.Instances.ListReferrers:input_type -> google.cloud.compute.v1.ListReferrersInstancesRequest - 1711, // 1942: google.cloud.compute.v1.Instances.PerformMaintenance:input_type -> google.cloud.compute.v1.PerformMaintenanceInstanceRequest - 1800, // 1943: google.cloud.compute.v1.Instances.RemoveResourcePolicies:input_type -> google.cloud.compute.v1.RemoveResourcePoliciesInstanceRequest - 1809, // 1944: google.cloud.compute.v1.Instances.ReportHostAsFaulty:input_type -> google.cloud.compute.v1.ReportHostAsFaultyInstanceRequest - 1843, // 1945: google.cloud.compute.v1.Instances.Reset:input_type -> google.cloud.compute.v1.ResetInstanceRequest - 1875, // 1946: google.cloud.compute.v1.Instances.Resume:input_type -> google.cloud.compute.v1.ResumeInstanceRequest - 1953, // 1947: google.cloud.compute.v1.Instances.SendDiagnosticInterrupt:input_type -> google.cloud.compute.v1.SendDiagnosticInterruptInstanceRequest - 1974, // 1948: google.cloud.compute.v1.Instances.SetDeletionProtection:input_type -> google.cloud.compute.v1.SetDeletionProtectionInstanceRequest - 1975, // 1949: google.cloud.compute.v1.Instances.SetDiskAutoDelete:input_type -> google.cloud.compute.v1.SetDiskAutoDeleteInstanceRequest - 1983, // 1950: google.cloud.compute.v1.Instances.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyInstanceRequest - 2015, // 1951: google.cloud.compute.v1.Instances.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsInstanceRequest - 2028, // 1952: google.cloud.compute.v1.Instances.SetMachineResources:input_type -> google.cloud.compute.v1.SetMachineResourcesInstanceRequest - 2029, // 1953: google.cloud.compute.v1.Instances.SetMachineType:input_type -> google.cloud.compute.v1.SetMachineTypeInstanceRequest - 2030, // 1954: google.cloud.compute.v1.Instances.SetMetadata:input_type -> google.cloud.compute.v1.SetMetadataInstanceRequest - 2031, // 1955: google.cloud.compute.v1.Instances.SetMinCpuPlatform:input_type -> google.cloud.compute.v1.SetMinCpuPlatformInstanceRequest - 2032, // 1956: google.cloud.compute.v1.Instances.SetName:input_type -> google.cloud.compute.v1.SetNameInstanceRequest - 2040, // 1957: google.cloud.compute.v1.Instances.SetScheduling:input_type -> google.cloud.compute.v1.SetSchedulingInstanceRequest - 2042, // 1958: google.cloud.compute.v1.Instances.SetSecurityPolicy:input_type -> google.cloud.compute.v1.SetSecurityPolicyInstanceRequest - 2046, // 1959: google.cloud.compute.v1.Instances.SetServiceAccount:input_type -> google.cloud.compute.v1.SetServiceAccountInstanceRequest - 2047, // 1960: google.cloud.compute.v1.Instances.SetShieldedInstanceIntegrityPolicy:input_type -> google.cloud.compute.v1.SetShieldedInstanceIntegrityPolicyInstanceRequest - 2053, // 1961: google.cloud.compute.v1.Instances.SetTags:input_type -> google.cloud.compute.v1.SetTagsInstanceRequest - 2070, // 1962: google.cloud.compute.v1.Instances.SimulateMaintenanceEvent:input_type -> google.cloud.compute.v1.SimulateMaintenanceEventInstanceRequest - 2095, // 1963: google.cloud.compute.v1.Instances.Start:input_type -> google.cloud.compute.v1.StartInstanceRequest - 2098, // 1964: google.cloud.compute.v1.Instances.StartWithEncryptionKey:input_type -> google.cloud.compute.v1.StartWithEncryptionKeyInstanceRequest - 2108, // 1965: google.cloud.compute.v1.Instances.Stop:input_type -> google.cloud.compute.v1.StopInstanceRequest - 2138, // 1966: google.cloud.compute.v1.Instances.Suspend:input_type -> google.cloud.compute.v1.SuspendInstanceRequest - 2201, // 1967: google.cloud.compute.v1.Instances.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInstanceRequest - 2255, // 1968: google.cloud.compute.v1.Instances.Update:input_type -> google.cloud.compute.v1.UpdateInstanceRequest - 2246, // 1969: google.cloud.compute.v1.Instances.UpdateAccessConfig:input_type -> google.cloud.compute.v1.UpdateAccessConfigInstanceRequest - 2251, // 1970: google.cloud.compute.v1.Instances.UpdateDisplayDevice:input_type -> google.cloud.compute.v1.UpdateDisplayDeviceInstanceRequest - 2257, // 1971: google.cloud.compute.v1.Instances.UpdateNetworkInterface:input_type -> google.cloud.compute.v1.UpdateNetworkInterfaceInstanceRequest - 2272, // 1972: google.cloud.compute.v1.Instances.UpdateShieldedInstanceConfig:input_type -> google.cloud.compute.v1.UpdateShieldedInstanceConfigInstanceRequest - 528, // 1973: google.cloud.compute.v1.InstantSnapshots.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListInstantSnapshotsRequest - 728, // 1974: google.cloud.compute.v1.InstantSnapshots.Delete:input_type -> google.cloud.compute.v1.DeleteInstantSnapshotRequest - 964, // 1975: google.cloud.compute.v1.InstantSnapshots.Get:input_type -> google.cloud.compute.v1.GetInstantSnapshotRequest - 935, // 1976: google.cloud.compute.v1.InstantSnapshots.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyInstantSnapshotRequest - 1147, // 1977: google.cloud.compute.v1.InstantSnapshots.Insert:input_type -> google.cloud.compute.v1.InsertInstantSnapshotRequest - 1430, // 1978: google.cloud.compute.v1.InstantSnapshots.List:input_type -> google.cloud.compute.v1.ListInstantSnapshotsRequest - 1985, // 1979: google.cloud.compute.v1.InstantSnapshots.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyInstantSnapshotRequest - 2016, // 1980: google.cloud.compute.v1.InstantSnapshots.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsInstantSnapshotRequest - 2203, // 1981: google.cloud.compute.v1.InstantSnapshots.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInstantSnapshotRequest - 729, // 1982: google.cloud.compute.v1.InterconnectAttachmentGroups.Delete:input_type -> google.cloud.compute.v1.DeleteInterconnectAttachmentGroupRequest - 965, // 1983: google.cloud.compute.v1.InterconnectAttachmentGroups.Get:input_type -> google.cloud.compute.v1.GetInterconnectAttachmentGroupRequest - 936, // 1984: google.cloud.compute.v1.InterconnectAttachmentGroups.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyInterconnectAttachmentGroupRequest - 987, // 1985: google.cloud.compute.v1.InterconnectAttachmentGroups.GetOperationalStatus:input_type -> google.cloud.compute.v1.GetOperationalStatusInterconnectAttachmentGroupRequest - 1148, // 1986: google.cloud.compute.v1.InterconnectAttachmentGroups.Insert:input_type -> google.cloud.compute.v1.InsertInterconnectAttachmentGroupRequest - 1431, // 1987: google.cloud.compute.v1.InterconnectAttachmentGroups.List:input_type -> google.cloud.compute.v1.ListInterconnectAttachmentGroupsRequest - 1660, // 1988: google.cloud.compute.v1.InterconnectAttachmentGroups.Patch:input_type -> google.cloud.compute.v1.PatchInterconnectAttachmentGroupRequest - 1986, // 1989: google.cloud.compute.v1.InterconnectAttachmentGroups.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyInterconnectAttachmentGroupRequest - 2204, // 1990: google.cloud.compute.v1.InterconnectAttachmentGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInterconnectAttachmentGroupRequest - 529, // 1991: google.cloud.compute.v1.InterconnectAttachments.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListInterconnectAttachmentsRequest - 730, // 1992: google.cloud.compute.v1.InterconnectAttachments.Delete:input_type -> google.cloud.compute.v1.DeleteInterconnectAttachmentRequest - 966, // 1993: google.cloud.compute.v1.InterconnectAttachments.Get:input_type -> google.cloud.compute.v1.GetInterconnectAttachmentRequest - 1149, // 1994: google.cloud.compute.v1.InterconnectAttachments.Insert:input_type -> google.cloud.compute.v1.InsertInterconnectAttachmentRequest - 1432, // 1995: google.cloud.compute.v1.InterconnectAttachments.List:input_type -> google.cloud.compute.v1.ListInterconnectAttachmentsRequest - 1661, // 1996: google.cloud.compute.v1.InterconnectAttachments.Patch:input_type -> google.cloud.compute.v1.PatchInterconnectAttachmentRequest - 2017, // 1997: google.cloud.compute.v1.InterconnectAttachments.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsInterconnectAttachmentRequest - 688, // 1998: google.cloud.compute.v1.InterconnectGroups.CreateMembers:input_type -> google.cloud.compute.v1.CreateMembersInterconnectGroupRequest - 731, // 1999: google.cloud.compute.v1.InterconnectGroups.Delete:input_type -> google.cloud.compute.v1.DeleteInterconnectGroupRequest - 967, // 2000: google.cloud.compute.v1.InterconnectGroups.Get:input_type -> google.cloud.compute.v1.GetInterconnectGroupRequest - 937, // 2001: google.cloud.compute.v1.InterconnectGroups.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyInterconnectGroupRequest - 988, // 2002: google.cloud.compute.v1.InterconnectGroups.GetOperationalStatus:input_type -> google.cloud.compute.v1.GetOperationalStatusInterconnectGroupRequest - 1150, // 2003: google.cloud.compute.v1.InterconnectGroups.Insert:input_type -> google.cloud.compute.v1.InsertInterconnectGroupRequest - 1433, // 2004: google.cloud.compute.v1.InterconnectGroups.List:input_type -> google.cloud.compute.v1.ListInterconnectGroupsRequest - 1662, // 2005: google.cloud.compute.v1.InterconnectGroups.Patch:input_type -> google.cloud.compute.v1.PatchInterconnectGroupRequest - 1987, // 2006: google.cloud.compute.v1.InterconnectGroups.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyInterconnectGroupRequest - 2205, // 2007: google.cloud.compute.v1.InterconnectGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInterconnectGroupRequest - 968, // 2008: google.cloud.compute.v1.InterconnectLocations.Get:input_type -> google.cloud.compute.v1.GetInterconnectLocationRequest - 1434, // 2009: google.cloud.compute.v1.InterconnectLocations.List:input_type -> google.cloud.compute.v1.ListInterconnectLocationsRequest - 969, // 2010: google.cloud.compute.v1.InterconnectRemoteLocations.Get:input_type -> google.cloud.compute.v1.GetInterconnectRemoteLocationRequest - 1435, // 2011: google.cloud.compute.v1.InterconnectRemoteLocations.List:input_type -> google.cloud.compute.v1.ListInterconnectRemoteLocationsRequest - 732, // 2012: google.cloud.compute.v1.Interconnects.Delete:input_type -> google.cloud.compute.v1.DeleteInterconnectRequest - 970, // 2013: google.cloud.compute.v1.Interconnects.Get:input_type -> google.cloud.compute.v1.GetInterconnectRequest - 903, // 2014: google.cloud.compute.v1.Interconnects.GetDiagnostics:input_type -> google.cloud.compute.v1.GetDiagnosticsInterconnectRequest - 975, // 2015: google.cloud.compute.v1.Interconnects.GetMacsecConfig:input_type -> google.cloud.compute.v1.GetMacsecConfigInterconnectRequest - 1151, // 2016: google.cloud.compute.v1.Interconnects.Insert:input_type -> google.cloud.compute.v1.InsertInterconnectRequest - 1436, // 2017: google.cloud.compute.v1.Interconnects.List:input_type -> google.cloud.compute.v1.ListInterconnectsRequest - 1663, // 2018: google.cloud.compute.v1.Interconnects.Patch:input_type -> google.cloud.compute.v1.PatchInterconnectRequest - 2018, // 2019: google.cloud.compute.v1.Interconnects.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsInterconnectRequest - 971, // 2020: google.cloud.compute.v1.LicenseCodes.Get:input_type -> google.cloud.compute.v1.GetLicenseCodeRequest - 2206, // 2021: google.cloud.compute.v1.LicenseCodes.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsLicenseCodeRequest - 733, // 2022: google.cloud.compute.v1.Licenses.Delete:input_type -> google.cloud.compute.v1.DeleteLicenseRequest - 972, // 2023: google.cloud.compute.v1.Licenses.Get:input_type -> google.cloud.compute.v1.GetLicenseRequest - 938, // 2024: google.cloud.compute.v1.Licenses.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyLicenseRequest - 1152, // 2025: google.cloud.compute.v1.Licenses.Insert:input_type -> google.cloud.compute.v1.InsertLicenseRequest - 1437, // 2026: google.cloud.compute.v1.Licenses.List:input_type -> google.cloud.compute.v1.ListLicensesRequest - 1988, // 2027: google.cloud.compute.v1.Licenses.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyLicenseRequest - 2207, // 2028: google.cloud.compute.v1.Licenses.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsLicenseRequest - 2256, // 2029: google.cloud.compute.v1.Licenses.Update:input_type -> google.cloud.compute.v1.UpdateLicenseRequest - 734, // 2030: google.cloud.compute.v1.MachineImages.Delete:input_type -> google.cloud.compute.v1.DeleteMachineImageRequest - 973, // 2031: google.cloud.compute.v1.MachineImages.Get:input_type -> google.cloud.compute.v1.GetMachineImageRequest - 939, // 2032: google.cloud.compute.v1.MachineImages.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyMachineImageRequest - 1153, // 2033: google.cloud.compute.v1.MachineImages.Insert:input_type -> google.cloud.compute.v1.InsertMachineImageRequest - 1438, // 2034: google.cloud.compute.v1.MachineImages.List:input_type -> google.cloud.compute.v1.ListMachineImagesRequest - 1989, // 2035: google.cloud.compute.v1.MachineImages.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyMachineImageRequest - 2019, // 2036: google.cloud.compute.v1.MachineImages.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsMachineImageRequest - 2208, // 2037: google.cloud.compute.v1.MachineImages.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsMachineImageRequest - 530, // 2038: google.cloud.compute.v1.MachineTypes.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListMachineTypesRequest - 974, // 2039: google.cloud.compute.v1.MachineTypes.Get:input_type -> google.cloud.compute.v1.GetMachineTypeRequest - 1439, // 2040: google.cloud.compute.v1.MachineTypes.List:input_type -> google.cloud.compute.v1.ListMachineTypesRequest - 531, // 2041: google.cloud.compute.v1.NetworkAttachments.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNetworkAttachmentsRequest - 735, // 2042: google.cloud.compute.v1.NetworkAttachments.Delete:input_type -> google.cloud.compute.v1.DeleteNetworkAttachmentRequest - 978, // 2043: google.cloud.compute.v1.NetworkAttachments.Get:input_type -> google.cloud.compute.v1.GetNetworkAttachmentRequest - 940, // 2044: google.cloud.compute.v1.NetworkAttachments.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyNetworkAttachmentRequest - 1154, // 2045: google.cloud.compute.v1.NetworkAttachments.Insert:input_type -> google.cloud.compute.v1.InsertNetworkAttachmentRequest - 1442, // 2046: google.cloud.compute.v1.NetworkAttachments.List:input_type -> google.cloud.compute.v1.ListNetworkAttachmentsRequest - 1664, // 2047: google.cloud.compute.v1.NetworkAttachments.Patch:input_type -> google.cloud.compute.v1.PatchNetworkAttachmentRequest - 1990, // 2048: google.cloud.compute.v1.NetworkAttachments.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyNetworkAttachmentRequest - 2209, // 2049: google.cloud.compute.v1.NetworkAttachments.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsNetworkAttachmentRequest - 532, // 2050: google.cloud.compute.v1.NetworkEdgeSecurityServices.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNetworkEdgeSecurityServicesRequest - 736, // 2051: google.cloud.compute.v1.NetworkEdgeSecurityServices.Delete:input_type -> google.cloud.compute.v1.DeleteNetworkEdgeSecurityServiceRequest - 979, // 2052: google.cloud.compute.v1.NetworkEdgeSecurityServices.Get:input_type -> google.cloud.compute.v1.GetNetworkEdgeSecurityServiceRequest - 1155, // 2053: google.cloud.compute.v1.NetworkEdgeSecurityServices.Insert:input_type -> google.cloud.compute.v1.InsertNetworkEdgeSecurityServiceRequest - 1665, // 2054: google.cloud.compute.v1.NetworkEdgeSecurityServices.Patch:input_type -> google.cloud.compute.v1.PatchNetworkEdgeSecurityServiceRequest - 533, // 2055: google.cloud.compute.v1.NetworkEndpointGroups.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNetworkEndpointGroupsRequest - 583, // 2056: google.cloud.compute.v1.NetworkEndpointGroups.AttachNetworkEndpoints:input_type -> google.cloud.compute.v1.AttachNetworkEndpointsNetworkEndpointGroupRequest - 737, // 2057: google.cloud.compute.v1.NetworkEndpointGroups.Delete:input_type -> google.cloud.compute.v1.DeleteNetworkEndpointGroupRequest - 806, // 2058: google.cloud.compute.v1.NetworkEndpointGroups.DetachNetworkEndpoints:input_type -> google.cloud.compute.v1.DetachNetworkEndpointsNetworkEndpointGroupRequest - 980, // 2059: google.cloud.compute.v1.NetworkEndpointGroups.Get:input_type -> google.cloud.compute.v1.GetNetworkEndpointGroupRequest - 1156, // 2060: google.cloud.compute.v1.NetworkEndpointGroups.Insert:input_type -> google.cloud.compute.v1.InsertNetworkEndpointGroupRequest - 1443, // 2061: google.cloud.compute.v1.NetworkEndpointGroups.List:input_type -> google.cloud.compute.v1.ListNetworkEndpointGroupsRequest - 1445, // 2062: google.cloud.compute.v1.NetworkEndpointGroups.ListNetworkEndpoints:input_type -> google.cloud.compute.v1.ListNetworkEndpointsNetworkEndpointGroupsRequest - 2210, // 2063: google.cloud.compute.v1.NetworkEndpointGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsNetworkEndpointGroupRequest - 488, // 2064: google.cloud.compute.v1.NetworkFirewallPolicies.AddAssociation:input_type -> google.cloud.compute.v1.AddAssociationNetworkFirewallPolicyRequest - 496, // 2065: google.cloud.compute.v1.NetworkFirewallPolicies.AddPacketMirroringRule:input_type -> google.cloud.compute.v1.AddPacketMirroringRuleNetworkFirewallPolicyRequest - 502, // 2066: google.cloud.compute.v1.NetworkFirewallPolicies.AddRule:input_type -> google.cloud.compute.v1.AddRuleNetworkFirewallPolicyRequest - 534, // 2067: google.cloud.compute.v1.NetworkFirewallPolicies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNetworkFirewallPoliciesRequest - 669, // 2068: google.cloud.compute.v1.NetworkFirewallPolicies.CloneRules:input_type -> google.cloud.compute.v1.CloneRulesNetworkFirewallPolicyRequest - 738, // 2069: google.cloud.compute.v1.NetworkFirewallPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteNetworkFirewallPolicyRequest - 981, // 2070: google.cloud.compute.v1.NetworkFirewallPolicies.Get:input_type -> google.cloud.compute.v1.GetNetworkFirewallPolicyRequest - 896, // 2071: google.cloud.compute.v1.NetworkFirewallPolicies.GetAssociation:input_type -> google.cloud.compute.v1.GetAssociationNetworkFirewallPolicyRequest - 941, // 2072: google.cloud.compute.v1.NetworkFirewallPolicies.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyNetworkFirewallPolicyRequest - 991, // 2073: google.cloud.compute.v1.NetworkFirewallPolicies.GetPacketMirroringRule:input_type -> google.cloud.compute.v1.GetPacketMirroringRuleNetworkFirewallPolicyRequest - 1032, // 2074: google.cloud.compute.v1.NetworkFirewallPolicies.GetRule:input_type -> google.cloud.compute.v1.GetRuleNetworkFirewallPolicyRequest - 1157, // 2075: google.cloud.compute.v1.NetworkFirewallPolicies.Insert:input_type -> google.cloud.compute.v1.InsertNetworkFirewallPolicyRequest - 1447, // 2076: google.cloud.compute.v1.NetworkFirewallPolicies.List:input_type -> google.cloud.compute.v1.ListNetworkFirewallPoliciesRequest - 1666, // 2077: google.cloud.compute.v1.NetworkFirewallPolicies.Patch:input_type -> google.cloud.compute.v1.PatchNetworkFirewallPolicyRequest - 1671, // 2078: google.cloud.compute.v1.NetworkFirewallPolicies.PatchPacketMirroringRule:input_type -> google.cloud.compute.v1.PatchPacketMirroringRuleNetworkFirewallPolicyRequest - 1693, // 2079: google.cloud.compute.v1.NetworkFirewallPolicies.PatchRule:input_type -> google.cloud.compute.v1.PatchRuleNetworkFirewallPolicyRequest - 1791, // 2080: google.cloud.compute.v1.NetworkFirewallPolicies.RemoveAssociation:input_type -> google.cloud.compute.v1.RemoveAssociationNetworkFirewallPolicyRequest - 1797, // 2081: google.cloud.compute.v1.NetworkFirewallPolicies.RemovePacketMirroringRule:input_type -> google.cloud.compute.v1.RemovePacketMirroringRuleNetworkFirewallPolicyRequest - 1803, // 2082: google.cloud.compute.v1.NetworkFirewallPolicies.RemoveRule:input_type -> google.cloud.compute.v1.RemoveRuleNetworkFirewallPolicyRequest - 1991, // 2083: google.cloud.compute.v1.NetworkFirewallPolicies.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyNetworkFirewallPolicyRequest - 2211, // 2084: google.cloud.compute.v1.NetworkFirewallPolicies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsNetworkFirewallPolicyRequest - 982, // 2085: google.cloud.compute.v1.NetworkProfiles.Get:input_type -> google.cloud.compute.v1.GetNetworkProfileRequest - 1448, // 2086: google.cloud.compute.v1.NetworkProfiles.List:input_type -> google.cloud.compute.v1.ListNetworkProfilesRequest - 497, // 2087: google.cloud.compute.v1.Networks.AddPeering:input_type -> google.cloud.compute.v1.AddPeeringNetworkRequest - 740, // 2088: google.cloud.compute.v1.Networks.Delete:input_type -> google.cloud.compute.v1.DeleteNetworkRequest - 983, // 2089: google.cloud.compute.v1.Networks.Get:input_type -> google.cloud.compute.v1.GetNetworkRequest - 907, // 2090: google.cloud.compute.v1.Networks.GetEffectiveFirewalls:input_type -> google.cloud.compute.v1.GetEffectiveFirewallsNetworkRequest - 1158, // 2091: google.cloud.compute.v1.Networks.Insert:input_type -> google.cloud.compute.v1.InsertNetworkRequest - 1449, // 2092: google.cloud.compute.v1.Networks.List:input_type -> google.cloud.compute.v1.ListNetworksRequest - 1456, // 2093: google.cloud.compute.v1.Networks.ListPeeringRoutes:input_type -> google.cloud.compute.v1.ListPeeringRoutesNetworksRequest - 1667, // 2094: google.cloud.compute.v1.Networks.Patch:input_type -> google.cloud.compute.v1.PatchNetworkRequest - 1798, // 2095: google.cloud.compute.v1.Networks.RemovePeering:input_type -> google.cloud.compute.v1.RemovePeeringNetworkRequest - 1811, // 2096: google.cloud.compute.v1.Networks.RequestRemovePeering:input_type -> google.cloud.compute.v1.RequestRemovePeeringNetworkRequest - 2141, // 2097: google.cloud.compute.v1.Networks.SwitchToCustomMode:input_type -> google.cloud.compute.v1.SwitchToCustomModeNetworkRequest - 2258, // 2098: google.cloud.compute.v1.Networks.UpdatePeering:input_type -> google.cloud.compute.v1.UpdatePeeringNetworkRequest - 495, // 2099: google.cloud.compute.v1.NodeGroups.AddNodes:input_type -> google.cloud.compute.v1.AddNodesNodeGroupRequest - 535, // 2100: google.cloud.compute.v1.NodeGroups.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNodeGroupsRequest - 741, // 2101: google.cloud.compute.v1.NodeGroups.Delete:input_type -> google.cloud.compute.v1.DeleteNodeGroupRequest - 743, // 2102: google.cloud.compute.v1.NodeGroups.DeleteNodes:input_type -> google.cloud.compute.v1.DeleteNodesNodeGroupRequest - 984, // 2103: google.cloud.compute.v1.NodeGroups.Get:input_type -> google.cloud.compute.v1.GetNodeGroupRequest - 942, // 2104: google.cloud.compute.v1.NodeGroups.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyNodeGroupRequest - 1159, // 2105: google.cloud.compute.v1.NodeGroups.Insert:input_type -> google.cloud.compute.v1.InsertNodeGroupRequest - 1450, // 2106: google.cloud.compute.v1.NodeGroups.List:input_type -> google.cloud.compute.v1.ListNodeGroupsRequest - 1453, // 2107: google.cloud.compute.v1.NodeGroups.ListNodes:input_type -> google.cloud.compute.v1.ListNodesNodeGroupsRequest - 1668, // 2108: google.cloud.compute.v1.NodeGroups.Patch:input_type -> google.cloud.compute.v1.PatchNodeGroupRequest - 1712, // 2109: google.cloud.compute.v1.NodeGroups.PerformMaintenance:input_type -> google.cloud.compute.v1.PerformMaintenanceNodeGroupRequest - 1992, // 2110: google.cloud.compute.v1.NodeGroups.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyNodeGroupRequest - 2035, // 2111: google.cloud.compute.v1.NodeGroups.SetNodeTemplate:input_type -> google.cloud.compute.v1.SetNodeTemplateNodeGroupRequest - 2071, // 2112: google.cloud.compute.v1.NodeGroups.SimulateMaintenanceEvent:input_type -> google.cloud.compute.v1.SimulateMaintenanceEventNodeGroupRequest - 2212, // 2113: google.cloud.compute.v1.NodeGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsNodeGroupRequest - 536, // 2114: google.cloud.compute.v1.NodeTemplates.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNodeTemplatesRequest - 742, // 2115: google.cloud.compute.v1.NodeTemplates.Delete:input_type -> google.cloud.compute.v1.DeleteNodeTemplateRequest - 985, // 2116: google.cloud.compute.v1.NodeTemplates.Get:input_type -> google.cloud.compute.v1.GetNodeTemplateRequest - 943, // 2117: google.cloud.compute.v1.NodeTemplates.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyNodeTemplateRequest - 1160, // 2118: google.cloud.compute.v1.NodeTemplates.Insert:input_type -> google.cloud.compute.v1.InsertNodeTemplateRequest - 1451, // 2119: google.cloud.compute.v1.NodeTemplates.List:input_type -> google.cloud.compute.v1.ListNodeTemplatesRequest - 1993, // 2120: google.cloud.compute.v1.NodeTemplates.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyNodeTemplateRequest - 2213, // 2121: google.cloud.compute.v1.NodeTemplates.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsNodeTemplateRequest - 537, // 2122: google.cloud.compute.v1.NodeTypes.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNodeTypesRequest - 986, // 2123: google.cloud.compute.v1.NodeTypes.Get:input_type -> google.cloud.compute.v1.GetNodeTypeRequest - 1452, // 2124: google.cloud.compute.v1.NodeTypes.List:input_type -> google.cloud.compute.v1.ListNodeTypesRequest - 489, // 2125: google.cloud.compute.v1.OrganizationSecurityPolicies.AddAssociation:input_type -> google.cloud.compute.v1.AddAssociationOrganizationSecurityPolicyRequest - 503, // 2126: google.cloud.compute.v1.OrganizationSecurityPolicies.AddRule:input_type -> google.cloud.compute.v1.AddRuleOrganizationSecurityPolicyRequest - 684, // 2127: google.cloud.compute.v1.OrganizationSecurityPolicies.CopyRules:input_type -> google.cloud.compute.v1.CopyRulesOrganizationSecurityPolicyRequest - 744, // 2128: google.cloud.compute.v1.OrganizationSecurityPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteOrganizationSecurityPolicyRequest - 989, // 2129: google.cloud.compute.v1.OrganizationSecurityPolicies.Get:input_type -> google.cloud.compute.v1.GetOrganizationSecurityPolicyRequest - 897, // 2130: google.cloud.compute.v1.OrganizationSecurityPolicies.GetAssociation:input_type -> google.cloud.compute.v1.GetAssociationOrganizationSecurityPolicyRequest - 1033, // 2131: google.cloud.compute.v1.OrganizationSecurityPolicies.GetRule:input_type -> google.cloud.compute.v1.GetRuleOrganizationSecurityPolicyRequest - 1161, // 2132: google.cloud.compute.v1.OrganizationSecurityPolicies.Insert:input_type -> google.cloud.compute.v1.InsertOrganizationSecurityPolicyRequest - 1454, // 2133: google.cloud.compute.v1.OrganizationSecurityPolicies.List:input_type -> google.cloud.compute.v1.ListOrganizationSecurityPoliciesRequest - 1397, // 2134: google.cloud.compute.v1.OrganizationSecurityPolicies.ListAssociations:input_type -> google.cloud.compute.v1.ListAssociationsOrganizationSecurityPolicyRequest - 1459, // 2135: google.cloud.compute.v1.OrganizationSecurityPolicies.ListPreconfiguredExpressionSets:input_type -> google.cloud.compute.v1.ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest - 1553, // 2136: google.cloud.compute.v1.OrganizationSecurityPolicies.Move:input_type -> google.cloud.compute.v1.MoveOrganizationSecurityPolicyRequest - 1669, // 2137: google.cloud.compute.v1.OrganizationSecurityPolicies.Patch:input_type -> google.cloud.compute.v1.PatchOrganizationSecurityPolicyRequest - 1694, // 2138: google.cloud.compute.v1.OrganizationSecurityPolicies.PatchRule:input_type -> google.cloud.compute.v1.PatchRuleOrganizationSecurityPolicyRequest - 1792, // 2139: google.cloud.compute.v1.OrganizationSecurityPolicies.RemoveAssociation:input_type -> google.cloud.compute.v1.RemoveAssociationOrganizationSecurityPolicyRequest - 1804, // 2140: google.cloud.compute.v1.OrganizationSecurityPolicies.RemoveRule:input_type -> google.cloud.compute.v1.RemoveRuleOrganizationSecurityPolicyRequest - 538, // 2141: google.cloud.compute.v1.PacketMirrorings.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListPacketMirroringsRequest - 745, // 2142: google.cloud.compute.v1.PacketMirrorings.Delete:input_type -> google.cloud.compute.v1.DeletePacketMirroringRequest - 990, // 2143: google.cloud.compute.v1.PacketMirrorings.Get:input_type -> google.cloud.compute.v1.GetPacketMirroringRequest - 1162, // 2144: google.cloud.compute.v1.PacketMirrorings.Insert:input_type -> google.cloud.compute.v1.InsertPacketMirroringRequest - 1455, // 2145: google.cloud.compute.v1.PacketMirrorings.List:input_type -> google.cloud.compute.v1.ListPacketMirroringsRequest - 1670, // 2146: google.cloud.compute.v1.PacketMirrorings.Patch:input_type -> google.cloud.compute.v1.PatchPacketMirroringRequest - 2214, // 2147: google.cloud.compute.v1.PacketMirrorings.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsPacketMirroringRequest - 992, // 2148: google.cloud.compute.v1.PreviewFeatures.Get:input_type -> google.cloud.compute.v1.GetPreviewFeatureRequest - 1461, // 2149: google.cloud.compute.v1.PreviewFeatures.List:input_type -> google.cloud.compute.v1.ListPreviewFeaturesRequest - 2261, // 2150: google.cloud.compute.v1.PreviewFeatures.Update:input_type -> google.cloud.compute.v1.UpdatePreviewFeatureRequest - 808, // 2151: google.cloud.compute.v1.Projects.DisableXpnHost:input_type -> google.cloud.compute.v1.DisableXpnHostProjectRequest - 809, // 2152: google.cloud.compute.v1.Projects.DisableXpnResource:input_type -> google.cloud.compute.v1.DisableXpnResourceProjectRequest - 834, // 2153: google.cloud.compute.v1.Projects.EnableXpnHost:input_type -> google.cloud.compute.v1.EnableXpnHostProjectRequest - 835, // 2154: google.cloud.compute.v1.Projects.EnableXpnResource:input_type -> google.cloud.compute.v1.EnableXpnResourceProjectRequest - 993, // 2155: google.cloud.compute.v1.Projects.Get:input_type -> google.cloud.compute.v1.GetProjectRequest - 1066, // 2156: google.cloud.compute.v1.Projects.GetXpnHost:input_type -> google.cloud.compute.v1.GetXpnHostProjectRequest - 1067, // 2157: google.cloud.compute.v1.Projects.GetXpnResources:input_type -> google.cloud.compute.v1.GetXpnResourcesProjectsRequest - 1523, // 2158: google.cloud.compute.v1.Projects.ListXpnHosts:input_type -> google.cloud.compute.v1.ListXpnHostsProjectsRequest - 1549, // 2159: google.cloud.compute.v1.Projects.MoveDisk:input_type -> google.cloud.compute.v1.MoveDiskProjectRequest - 1552, // 2160: google.cloud.compute.v1.Projects.MoveInstance:input_type -> google.cloud.compute.v1.MoveInstanceProjectRequest - 1969, // 2161: google.cloud.compute.v1.Projects.SetCloudArmorTier:input_type -> google.cloud.compute.v1.SetCloudArmorTierProjectRequest - 1972, // 2162: google.cloud.compute.v1.Projects.SetCommonInstanceMetadata:input_type -> google.cloud.compute.v1.SetCommonInstanceMetadataProjectRequest - 1973, // 2163: google.cloud.compute.v1.Projects.SetDefaultNetworkTier:input_type -> google.cloud.compute.v1.SetDefaultNetworkTierProjectRequest - 2062, // 2164: google.cloud.compute.v1.Projects.SetUsageExportBucket:input_type -> google.cloud.compute.v1.SetUsageExportBucketProjectRequest - 577, // 2165: google.cloud.compute.v1.PublicAdvertisedPrefixes.Announce:input_type -> google.cloud.compute.v1.AnnouncePublicAdvertisedPrefixeRequest - 748, // 2166: google.cloud.compute.v1.PublicAdvertisedPrefixes.Delete:input_type -> google.cloud.compute.v1.DeletePublicAdvertisedPrefixeRequest - 994, // 2167: google.cloud.compute.v1.PublicAdvertisedPrefixes.Get:input_type -> google.cloud.compute.v1.GetPublicAdvertisedPrefixeRequest - 1163, // 2168: google.cloud.compute.v1.PublicAdvertisedPrefixes.Insert:input_type -> google.cloud.compute.v1.InsertPublicAdvertisedPrefixeRequest - 1462, // 2169: google.cloud.compute.v1.PublicAdvertisedPrefixes.List:input_type -> google.cloud.compute.v1.ListPublicAdvertisedPrefixesRequest - 1674, // 2170: google.cloud.compute.v1.PublicAdvertisedPrefixes.Patch:input_type -> google.cloud.compute.v1.PatchPublicAdvertisedPrefixeRequest - 2332, // 2171: google.cloud.compute.v1.PublicAdvertisedPrefixes.Withdraw:input_type -> google.cloud.compute.v1.WithdrawPublicAdvertisedPrefixeRequest - 539, // 2172: google.cloud.compute.v1.PublicDelegatedPrefixes.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListPublicDelegatedPrefixesRequest - 578, // 2173: google.cloud.compute.v1.PublicDelegatedPrefixes.Announce:input_type -> google.cloud.compute.v1.AnnouncePublicDelegatedPrefixeRequest - 749, // 2174: google.cloud.compute.v1.PublicDelegatedPrefixes.Delete:input_type -> google.cloud.compute.v1.DeletePublicDelegatedPrefixeRequest - 995, // 2175: google.cloud.compute.v1.PublicDelegatedPrefixes.Get:input_type -> google.cloud.compute.v1.GetPublicDelegatedPrefixeRequest - 1164, // 2176: google.cloud.compute.v1.PublicDelegatedPrefixes.Insert:input_type -> google.cloud.compute.v1.InsertPublicDelegatedPrefixeRequest - 1463, // 2177: google.cloud.compute.v1.PublicDelegatedPrefixes.List:input_type -> google.cloud.compute.v1.ListPublicDelegatedPrefixesRequest - 1675, // 2178: google.cloud.compute.v1.PublicDelegatedPrefixes.Patch:input_type -> google.cloud.compute.v1.PatchPublicDelegatedPrefixeRequest - 2333, // 2179: google.cloud.compute.v1.PublicDelegatedPrefixes.Withdraw:input_type -> google.cloud.compute.v1.WithdrawPublicDelegatedPrefixeRequest - 750, // 2180: google.cloud.compute.v1.RegionAutoscalers.Delete:input_type -> google.cloud.compute.v1.DeleteRegionAutoscalerRequest - 996, // 2181: google.cloud.compute.v1.RegionAutoscalers.Get:input_type -> google.cloud.compute.v1.GetRegionAutoscalerRequest - 1165, // 2182: google.cloud.compute.v1.RegionAutoscalers.Insert:input_type -> google.cloud.compute.v1.InsertRegionAutoscalerRequest - 1465, // 2183: google.cloud.compute.v1.RegionAutoscalers.List:input_type -> google.cloud.compute.v1.ListRegionAutoscalersRequest - 1676, // 2184: google.cloud.compute.v1.RegionAutoscalers.Patch:input_type -> google.cloud.compute.v1.PatchRegionAutoscalerRequest - 2215, // 2185: google.cloud.compute.v1.RegionAutoscalers.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionAutoscalerRequest - 2262, // 2186: google.cloud.compute.v1.RegionAutoscalers.Update:input_type -> google.cloud.compute.v1.UpdateRegionAutoscalerRequest - 751, // 2187: google.cloud.compute.v1.RegionBackendServices.Delete:input_type -> google.cloud.compute.v1.DeleteRegionBackendServiceRequest - 997, // 2188: google.cloud.compute.v1.RegionBackendServices.Get:input_type -> google.cloud.compute.v1.GetRegionBackendServiceRequest - 926, // 2189: google.cloud.compute.v1.RegionBackendServices.GetHealth:input_type -> google.cloud.compute.v1.GetHealthRegionBackendServiceRequest - 944, // 2190: google.cloud.compute.v1.RegionBackendServices.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyRegionBackendServiceRequest - 1166, // 2191: google.cloud.compute.v1.RegionBackendServices.Insert:input_type -> google.cloud.compute.v1.InsertRegionBackendServiceRequest - 1466, // 2192: google.cloud.compute.v1.RegionBackendServices.List:input_type -> google.cloud.compute.v1.ListRegionBackendServicesRequest - 1518, // 2193: google.cloud.compute.v1.RegionBackendServices.ListUsable:input_type -> google.cloud.compute.v1.ListUsableRegionBackendServicesRequest - 1677, // 2194: google.cloud.compute.v1.RegionBackendServices.Patch:input_type -> google.cloud.compute.v1.PatchRegionBackendServiceRequest - 1994, // 2195: google.cloud.compute.v1.RegionBackendServices.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyRegionBackendServiceRequest - 2043, // 2196: google.cloud.compute.v1.RegionBackendServices.SetSecurityPolicy:input_type -> google.cloud.compute.v1.SetSecurityPolicyRegionBackendServiceRequest - 2216, // 2197: google.cloud.compute.v1.RegionBackendServices.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionBackendServiceRequest - 2263, // 2198: google.cloud.compute.v1.RegionBackendServices.Update:input_type -> google.cloud.compute.v1.UpdateRegionBackendServiceRequest - 540, // 2199: google.cloud.compute.v1.RegionCommitments.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRegionCommitmentsRequest - 998, // 2200: google.cloud.compute.v1.RegionCommitments.Get:input_type -> google.cloud.compute.v1.GetRegionCommitmentRequest - 1167, // 2201: google.cloud.compute.v1.RegionCommitments.Insert:input_type -> google.cloud.compute.v1.InsertRegionCommitmentRequest - 1467, // 2202: google.cloud.compute.v1.RegionCommitments.List:input_type -> google.cloud.compute.v1.ListRegionCommitmentsRequest - 2264, // 2203: google.cloud.compute.v1.RegionCommitments.Update:input_type -> google.cloud.compute.v1.UpdateRegionCommitmentRequest - 541, // 2204: google.cloud.compute.v1.RegionCompositeHealthChecks.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRegionCompositeHealthChecksRequest - 752, // 2205: google.cloud.compute.v1.RegionCompositeHealthChecks.Delete:input_type -> google.cloud.compute.v1.DeleteRegionCompositeHealthCheckRequest - 999, // 2206: google.cloud.compute.v1.RegionCompositeHealthChecks.Get:input_type -> google.cloud.compute.v1.GetRegionCompositeHealthCheckRequest - 1168, // 2207: google.cloud.compute.v1.RegionCompositeHealthChecks.Insert:input_type -> google.cloud.compute.v1.InsertRegionCompositeHealthCheckRequest - 1468, // 2208: google.cloud.compute.v1.RegionCompositeHealthChecks.List:input_type -> google.cloud.compute.v1.ListRegionCompositeHealthChecksRequest - 1678, // 2209: google.cloud.compute.v1.RegionCompositeHealthChecks.Patch:input_type -> google.cloud.compute.v1.PatchRegionCompositeHealthCheckRequest - 2217, // 2210: google.cloud.compute.v1.RegionCompositeHealthChecks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionCompositeHealthCheckRequest - 1001, // 2211: google.cloud.compute.v1.RegionDiskTypes.Get:input_type -> google.cloud.compute.v1.GetRegionDiskTypeRequest - 1469, // 2212: google.cloud.compute.v1.RegionDiskTypes.List:input_type -> google.cloud.compute.v1.ListRegionDiskTypesRequest - 500, // 2213: google.cloud.compute.v1.RegionDisks.AddResourcePolicies:input_type -> google.cloud.compute.v1.AddResourcePoliciesRegionDiskRequest - 653, // 2214: google.cloud.compute.v1.RegionDisks.BulkInsert:input_type -> google.cloud.compute.v1.BulkInsertRegionDiskRequest - 690, // 2215: google.cloud.compute.v1.RegionDisks.CreateSnapshot:input_type -> google.cloud.compute.v1.CreateSnapshotRegionDiskRequest - 753, // 2216: google.cloud.compute.v1.RegionDisks.Delete:input_type -> google.cloud.compute.v1.DeleteRegionDiskRequest - 1000, // 2217: google.cloud.compute.v1.RegionDisks.Get:input_type -> google.cloud.compute.v1.GetRegionDiskRequest - 945, // 2218: google.cloud.compute.v1.RegionDisks.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyRegionDiskRequest - 1169, // 2219: google.cloud.compute.v1.RegionDisks.Insert:input_type -> google.cloud.compute.v1.InsertRegionDiskRequest - 1470, // 2220: google.cloud.compute.v1.RegionDisks.List:input_type -> google.cloud.compute.v1.ListRegionDisksRequest - 1801, // 2221: google.cloud.compute.v1.RegionDisks.RemoveResourcePolicies:input_type -> google.cloud.compute.v1.RemoveResourcePoliciesRegionDiskRequest - 1846, // 2222: google.cloud.compute.v1.RegionDisks.Resize:input_type -> google.cloud.compute.v1.ResizeRegionDiskRequest - 1995, // 2223: google.cloud.compute.v1.RegionDisks.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyRegionDiskRequest - 2020, // 2224: google.cloud.compute.v1.RegionDisks.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsRegionDiskRequest - 2094, // 2225: google.cloud.compute.v1.RegionDisks.StartAsyncReplication:input_type -> google.cloud.compute.v1.StartAsyncReplicationRegionDiskRequest - 2105, // 2226: google.cloud.compute.v1.RegionDisks.StopAsyncReplication:input_type -> google.cloud.compute.v1.StopAsyncReplicationRegionDiskRequest - 2107, // 2227: google.cloud.compute.v1.RegionDisks.StopGroupAsyncReplication:input_type -> google.cloud.compute.v1.StopGroupAsyncReplicationRegionDiskRequest - 2218, // 2228: google.cloud.compute.v1.RegionDisks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionDiskRequest - 2265, // 2229: google.cloud.compute.v1.RegionDisks.Update:input_type -> google.cloud.compute.v1.UpdateRegionDiskRequest - 542, // 2230: google.cloud.compute.v1.RegionHealthAggregationPolicies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRegionHealthAggregationPoliciesRequest - 754, // 2231: google.cloud.compute.v1.RegionHealthAggregationPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionHealthAggregationPolicyRequest - 1002, // 2232: google.cloud.compute.v1.RegionHealthAggregationPolicies.Get:input_type -> google.cloud.compute.v1.GetRegionHealthAggregationPolicyRequest - 1170, // 2233: google.cloud.compute.v1.RegionHealthAggregationPolicies.Insert:input_type -> google.cloud.compute.v1.InsertRegionHealthAggregationPolicyRequest - 1471, // 2234: google.cloud.compute.v1.RegionHealthAggregationPolicies.List:input_type -> google.cloud.compute.v1.ListRegionHealthAggregationPoliciesRequest - 1679, // 2235: google.cloud.compute.v1.RegionHealthAggregationPolicies.Patch:input_type -> google.cloud.compute.v1.PatchRegionHealthAggregationPolicyRequest - 2219, // 2236: google.cloud.compute.v1.RegionHealthAggregationPolicies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionHealthAggregationPolicyRequest - 543, // 2237: google.cloud.compute.v1.RegionHealthCheckServices.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRegionHealthCheckServicesRequest - 756, // 2238: google.cloud.compute.v1.RegionHealthCheckServices.Delete:input_type -> google.cloud.compute.v1.DeleteRegionHealthCheckServiceRequest - 1004, // 2239: google.cloud.compute.v1.RegionHealthCheckServices.Get:input_type -> google.cloud.compute.v1.GetRegionHealthCheckServiceRequest - 1172, // 2240: google.cloud.compute.v1.RegionHealthCheckServices.Insert:input_type -> google.cloud.compute.v1.InsertRegionHealthCheckServiceRequest - 1472, // 2241: google.cloud.compute.v1.RegionHealthCheckServices.List:input_type -> google.cloud.compute.v1.ListRegionHealthCheckServicesRequest - 1681, // 2242: google.cloud.compute.v1.RegionHealthCheckServices.Patch:input_type -> google.cloud.compute.v1.PatchRegionHealthCheckServiceRequest - 2221, // 2243: google.cloud.compute.v1.RegionHealthCheckServices.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionHealthCheckServiceRequest - 755, // 2244: google.cloud.compute.v1.RegionHealthChecks.Delete:input_type -> google.cloud.compute.v1.DeleteRegionHealthCheckRequest - 1003, // 2245: google.cloud.compute.v1.RegionHealthChecks.Get:input_type -> google.cloud.compute.v1.GetRegionHealthCheckRequest - 1171, // 2246: google.cloud.compute.v1.RegionHealthChecks.Insert:input_type -> google.cloud.compute.v1.InsertRegionHealthCheckRequest - 1473, // 2247: google.cloud.compute.v1.RegionHealthChecks.List:input_type -> google.cloud.compute.v1.ListRegionHealthChecksRequest - 1680, // 2248: google.cloud.compute.v1.RegionHealthChecks.Patch:input_type -> google.cloud.compute.v1.PatchRegionHealthCheckRequest - 2220, // 2249: google.cloud.compute.v1.RegionHealthChecks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionHealthCheckRequest - 2266, // 2250: google.cloud.compute.v1.RegionHealthChecks.Update:input_type -> google.cloud.compute.v1.UpdateRegionHealthCheckRequest - 544, // 2251: google.cloud.compute.v1.RegionHealthSources.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRegionHealthSourcesRequest - 757, // 2252: google.cloud.compute.v1.RegionHealthSources.Delete:input_type -> google.cloud.compute.v1.DeleteRegionHealthSourceRequest - 1005, // 2253: google.cloud.compute.v1.RegionHealthSources.Get:input_type -> google.cloud.compute.v1.GetRegionHealthSourceRequest - 1173, // 2254: google.cloud.compute.v1.RegionHealthSources.Insert:input_type -> google.cloud.compute.v1.InsertRegionHealthSourceRequest - 1474, // 2255: google.cloud.compute.v1.RegionHealthSources.List:input_type -> google.cloud.compute.v1.ListRegionHealthSourcesRequest - 1682, // 2256: google.cloud.compute.v1.RegionHealthSources.Patch:input_type -> google.cloud.compute.v1.PatchRegionHealthSourceRequest - 2222, // 2257: google.cloud.compute.v1.RegionHealthSources.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionHealthSourceRequest - 475, // 2258: google.cloud.compute.v1.RegionInstanceGroupManagers.AbandonInstances:input_type -> google.cloud.compute.v1.AbandonInstancesRegionInstanceGroupManagerRequest - 580, // 2259: google.cloud.compute.v1.RegionInstanceGroupManagers.ApplyUpdatesToInstances:input_type -> google.cloud.compute.v1.ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest - 687, // 2260: google.cloud.compute.v1.RegionInstanceGroupManagers.CreateInstances:input_type -> google.cloud.compute.v1.CreateInstancesRegionInstanceGroupManagerRequest - 758, // 2261: google.cloud.compute.v1.RegionInstanceGroupManagers.Delete:input_type -> google.cloud.compute.v1.DeleteRegionInstanceGroupManagerRequest - 727, // 2262: google.cloud.compute.v1.RegionInstanceGroupManagers.DeleteInstances:input_type -> google.cloud.compute.v1.DeleteInstancesRegionInstanceGroupManagerRequest - 747, // 2263: google.cloud.compute.v1.RegionInstanceGroupManagers.DeletePerInstanceConfigs:input_type -> google.cloud.compute.v1.DeletePerInstanceConfigsRegionInstanceGroupManagerRequest - 1006, // 2264: google.cloud.compute.v1.RegionInstanceGroupManagers.Get:input_type -> google.cloud.compute.v1.GetRegionInstanceGroupManagerRequest - 1174, // 2265: google.cloud.compute.v1.RegionInstanceGroupManagers.Insert:input_type -> google.cloud.compute.v1.InsertRegionInstanceGroupManagerRequest - 1475, // 2266: google.cloud.compute.v1.RegionInstanceGroupManagers.List:input_type -> google.cloud.compute.v1.ListRegionInstanceGroupManagersRequest - 1409, // 2267: google.cloud.compute.v1.RegionInstanceGroupManagers.ListErrors:input_type -> google.cloud.compute.v1.ListErrorsRegionInstanceGroupManagersRequest - 1441, // 2268: google.cloud.compute.v1.RegionInstanceGroupManagers.ListManagedInstances:input_type -> google.cloud.compute.v1.ListManagedInstancesRegionInstanceGroupManagersRequest - 1458, // 2269: google.cloud.compute.v1.RegionInstanceGroupManagers.ListPerInstanceConfigs:input_type -> google.cloud.compute.v1.ListPerInstanceConfigsRegionInstanceGroupManagersRequest - 1683, // 2270: google.cloud.compute.v1.RegionInstanceGroupManagers.Patch:input_type -> google.cloud.compute.v1.PatchRegionInstanceGroupManagerRequest - 1673, // 2271: google.cloud.compute.v1.RegionInstanceGroupManagers.PatchPerInstanceConfigs:input_type -> google.cloud.compute.v1.PatchPerInstanceConfigsRegionInstanceGroupManagerRequest - 1749, // 2272: google.cloud.compute.v1.RegionInstanceGroupManagers.RecreateInstances:input_type -> google.cloud.compute.v1.RecreateInstancesRegionInstanceGroupManagerRequest - 1847, // 2273: google.cloud.compute.v1.RegionInstanceGroupManagers.Resize:input_type -> google.cloud.compute.v1.ResizeRegionInstanceGroupManagerRequest - 1877, // 2274: google.cloud.compute.v1.RegionInstanceGroupManagers.ResumeInstances:input_type -> google.cloud.compute.v1.ResumeInstancesRegionInstanceGroupManagerRequest - 2007, // 2275: google.cloud.compute.v1.RegionInstanceGroupManagers.SetInstanceTemplate:input_type -> google.cloud.compute.v1.SetInstanceTemplateRegionInstanceGroupManagerRequest - 2057, // 2276: google.cloud.compute.v1.RegionInstanceGroupManagers.SetTargetPools:input_type -> google.cloud.compute.v1.SetTargetPoolsRegionInstanceGroupManagerRequest - 2097, // 2277: google.cloud.compute.v1.RegionInstanceGroupManagers.StartInstances:input_type -> google.cloud.compute.v1.StartInstancesRegionInstanceGroupManagerRequest - 2110, // 2278: google.cloud.compute.v1.RegionInstanceGroupManagers.StopInstances:input_type -> google.cloud.compute.v1.StopInstancesRegionInstanceGroupManagerRequest - 2140, // 2279: google.cloud.compute.v1.RegionInstanceGroupManagers.SuspendInstances:input_type -> google.cloud.compute.v1.SuspendInstancesRegionInstanceGroupManagerRequest - 2260, // 2280: google.cloud.compute.v1.RegionInstanceGroupManagers.UpdatePerInstanceConfigs:input_type -> google.cloud.compute.v1.UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest - 1007, // 2281: google.cloud.compute.v1.RegionInstanceGroups.Get:input_type -> google.cloud.compute.v1.GetRegionInstanceGroupRequest - 1476, // 2282: google.cloud.compute.v1.RegionInstanceGroups.List:input_type -> google.cloud.compute.v1.ListRegionInstanceGroupsRequest - 1428, // 2283: google.cloud.compute.v1.RegionInstanceGroups.ListInstances:input_type -> google.cloud.compute.v1.ListInstancesRegionInstanceGroupsRequest - 2034, // 2284: google.cloud.compute.v1.RegionInstanceGroups.SetNamedPorts:input_type -> google.cloud.compute.v1.SetNamedPortsRegionInstanceGroupRequest - 2223, // 2285: google.cloud.compute.v1.RegionInstanceGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionInstanceGroupRequest - 759, // 2286: google.cloud.compute.v1.RegionInstanceTemplates.Delete:input_type -> google.cloud.compute.v1.DeleteRegionInstanceTemplateRequest - 1008, // 2287: google.cloud.compute.v1.RegionInstanceTemplates.Get:input_type -> google.cloud.compute.v1.GetRegionInstanceTemplateRequest - 1175, // 2288: google.cloud.compute.v1.RegionInstanceTemplates.Insert:input_type -> google.cloud.compute.v1.InsertRegionInstanceTemplateRequest - 1477, // 2289: google.cloud.compute.v1.RegionInstanceTemplates.List:input_type -> google.cloud.compute.v1.ListRegionInstanceTemplatesRequest - 654, // 2290: google.cloud.compute.v1.RegionInstances.BulkInsert:input_type -> google.cloud.compute.v1.BulkInsertRegionInstanceRequest - 760, // 2291: google.cloud.compute.v1.RegionInstantSnapshots.Delete:input_type -> google.cloud.compute.v1.DeleteRegionInstantSnapshotRequest - 1009, // 2292: google.cloud.compute.v1.RegionInstantSnapshots.Get:input_type -> google.cloud.compute.v1.GetRegionInstantSnapshotRequest - 946, // 2293: google.cloud.compute.v1.RegionInstantSnapshots.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyRegionInstantSnapshotRequest - 1176, // 2294: google.cloud.compute.v1.RegionInstantSnapshots.Insert:input_type -> google.cloud.compute.v1.InsertRegionInstantSnapshotRequest - 1478, // 2295: google.cloud.compute.v1.RegionInstantSnapshots.List:input_type -> google.cloud.compute.v1.ListRegionInstantSnapshotsRequest - 1996, // 2296: google.cloud.compute.v1.RegionInstantSnapshots.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyRegionInstantSnapshotRequest - 2021, // 2297: google.cloud.compute.v1.RegionInstantSnapshots.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsRegionInstantSnapshotRequest - 2224, // 2298: google.cloud.compute.v1.RegionInstantSnapshots.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionInstantSnapshotRequest - 584, // 2299: google.cloud.compute.v1.RegionNetworkEndpointGroups.AttachNetworkEndpoints:input_type -> google.cloud.compute.v1.AttachNetworkEndpointsRegionNetworkEndpointGroupRequest - 761, // 2300: google.cloud.compute.v1.RegionNetworkEndpointGroups.Delete:input_type -> google.cloud.compute.v1.DeleteRegionNetworkEndpointGroupRequest - 807, // 2301: google.cloud.compute.v1.RegionNetworkEndpointGroups.DetachNetworkEndpoints:input_type -> google.cloud.compute.v1.DetachNetworkEndpointsRegionNetworkEndpointGroupRequest - 1010, // 2302: google.cloud.compute.v1.RegionNetworkEndpointGroups.Get:input_type -> google.cloud.compute.v1.GetRegionNetworkEndpointGroupRequest - 1177, // 2303: google.cloud.compute.v1.RegionNetworkEndpointGroups.Insert:input_type -> google.cloud.compute.v1.InsertRegionNetworkEndpointGroupRequest - 1479, // 2304: google.cloud.compute.v1.RegionNetworkEndpointGroups.List:input_type -> google.cloud.compute.v1.ListRegionNetworkEndpointGroupsRequest - 1446, // 2305: google.cloud.compute.v1.RegionNetworkEndpointGroups.ListNetworkEndpoints:input_type -> google.cloud.compute.v1.ListNetworkEndpointsRegionNetworkEndpointGroupsRequest - 490, // 2306: google.cloud.compute.v1.RegionNetworkFirewallPolicies.AddAssociation:input_type -> google.cloud.compute.v1.AddAssociationRegionNetworkFirewallPolicyRequest - 504, // 2307: google.cloud.compute.v1.RegionNetworkFirewallPolicies.AddRule:input_type -> google.cloud.compute.v1.AddRuleRegionNetworkFirewallPolicyRequest - 670, // 2308: google.cloud.compute.v1.RegionNetworkFirewallPolicies.CloneRules:input_type -> google.cloud.compute.v1.CloneRulesRegionNetworkFirewallPolicyRequest - 762, // 2309: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionNetworkFirewallPolicyRequest - 1011, // 2310: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Get:input_type -> google.cloud.compute.v1.GetRegionNetworkFirewallPolicyRequest - 898, // 2311: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetAssociation:input_type -> google.cloud.compute.v1.GetAssociationRegionNetworkFirewallPolicyRequest - 908, // 2312: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetEffectiveFirewalls:input_type -> google.cloud.compute.v1.GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest - 947, // 2313: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyRegionNetworkFirewallPolicyRequest - 1034, // 2314: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetRule:input_type -> google.cloud.compute.v1.GetRuleRegionNetworkFirewallPolicyRequest - 1178, // 2315: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Insert:input_type -> google.cloud.compute.v1.InsertRegionNetworkFirewallPolicyRequest - 1480, // 2316: google.cloud.compute.v1.RegionNetworkFirewallPolicies.List:input_type -> google.cloud.compute.v1.ListRegionNetworkFirewallPoliciesRequest - 1684, // 2317: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Patch:input_type -> google.cloud.compute.v1.PatchRegionNetworkFirewallPolicyRequest - 1695, // 2318: google.cloud.compute.v1.RegionNetworkFirewallPolicies.PatchRule:input_type -> google.cloud.compute.v1.PatchRuleRegionNetworkFirewallPolicyRequest - 1793, // 2319: google.cloud.compute.v1.RegionNetworkFirewallPolicies.RemoveAssociation:input_type -> google.cloud.compute.v1.RemoveAssociationRegionNetworkFirewallPolicyRequest - 1805, // 2320: google.cloud.compute.v1.RegionNetworkFirewallPolicies.RemoveRule:input_type -> google.cloud.compute.v1.RemoveRuleRegionNetworkFirewallPolicyRequest - 1997, // 2321: google.cloud.compute.v1.RegionNetworkFirewallPolicies.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyRegionNetworkFirewallPolicyRequest - 2225, // 2322: google.cloud.compute.v1.RegionNetworkFirewallPolicies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionNetworkFirewallPolicyRequest - 545, // 2323: google.cloud.compute.v1.RegionNotificationEndpoints.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRegionNotificationEndpointsRequest - 763, // 2324: google.cloud.compute.v1.RegionNotificationEndpoints.Delete:input_type -> google.cloud.compute.v1.DeleteRegionNotificationEndpointRequest - 1012, // 2325: google.cloud.compute.v1.RegionNotificationEndpoints.Get:input_type -> google.cloud.compute.v1.GetRegionNotificationEndpointRequest - 1179, // 2326: google.cloud.compute.v1.RegionNotificationEndpoints.Insert:input_type -> google.cloud.compute.v1.InsertRegionNotificationEndpointRequest - 1481, // 2327: google.cloud.compute.v1.RegionNotificationEndpoints.List:input_type -> google.cloud.compute.v1.ListRegionNotificationEndpointsRequest - 2226, // 2328: google.cloud.compute.v1.RegionNotificationEndpoints.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionNotificationEndpointRequest - 764, // 2329: google.cloud.compute.v1.RegionOperations.Delete:input_type -> google.cloud.compute.v1.DeleteRegionOperationRequest - 1013, // 2330: google.cloud.compute.v1.RegionOperations.Get:input_type -> google.cloud.compute.v1.GetRegionOperationRequest - 1482, // 2331: google.cloud.compute.v1.RegionOperations.List:input_type -> google.cloud.compute.v1.ListRegionOperationsRequest - 2318, // 2332: google.cloud.compute.v1.RegionOperations.Wait:input_type -> google.cloud.compute.v1.WaitRegionOperationRequest - 505, // 2333: google.cloud.compute.v1.RegionSecurityPolicies.AddRule:input_type -> google.cloud.compute.v1.AddRuleRegionSecurityPolicyRequest - 766, // 2334: google.cloud.compute.v1.RegionSecurityPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionSecurityPolicyRequest - 1015, // 2335: google.cloud.compute.v1.RegionSecurityPolicies.Get:input_type -> google.cloud.compute.v1.GetRegionSecurityPolicyRequest - 1035, // 2336: google.cloud.compute.v1.RegionSecurityPolicies.GetRule:input_type -> google.cloud.compute.v1.GetRuleRegionSecurityPolicyRequest - 1180, // 2337: google.cloud.compute.v1.RegionSecurityPolicies.Insert:input_type -> google.cloud.compute.v1.InsertRegionSecurityPolicyRequest - 1483, // 2338: google.cloud.compute.v1.RegionSecurityPolicies.List:input_type -> google.cloud.compute.v1.ListRegionSecurityPoliciesRequest - 1685, // 2339: google.cloud.compute.v1.RegionSecurityPolicies.Patch:input_type -> google.cloud.compute.v1.PatchRegionSecurityPolicyRequest - 1696, // 2340: google.cloud.compute.v1.RegionSecurityPolicies.PatchRule:input_type -> google.cloud.compute.v1.PatchRuleRegionSecurityPolicyRequest - 1806, // 2341: google.cloud.compute.v1.RegionSecurityPolicies.RemoveRule:input_type -> google.cloud.compute.v1.RemoveRuleRegionSecurityPolicyRequest - 2022, // 2342: google.cloud.compute.v1.RegionSecurityPolicies.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsRegionSecurityPolicyRequest - 767, // 2343: google.cloud.compute.v1.RegionSslCertificates.Delete:input_type -> google.cloud.compute.v1.DeleteRegionSslCertificateRequest - 1016, // 2344: google.cloud.compute.v1.RegionSslCertificates.Get:input_type -> google.cloud.compute.v1.GetRegionSslCertificateRequest - 1181, // 2345: google.cloud.compute.v1.RegionSslCertificates.Insert:input_type -> google.cloud.compute.v1.InsertRegionSslCertificateRequest - 1484, // 2346: google.cloud.compute.v1.RegionSslCertificates.List:input_type -> google.cloud.compute.v1.ListRegionSslCertificatesRequest - 768, // 2347: google.cloud.compute.v1.RegionSslPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionSslPolicyRequest - 1017, // 2348: google.cloud.compute.v1.RegionSslPolicies.Get:input_type -> google.cloud.compute.v1.GetRegionSslPolicyRequest - 1182, // 2349: google.cloud.compute.v1.RegionSslPolicies.Insert:input_type -> google.cloud.compute.v1.InsertRegionSslPolicyRequest - 1485, // 2350: google.cloud.compute.v1.RegionSslPolicies.List:input_type -> google.cloud.compute.v1.ListRegionSslPoliciesRequest - 1399, // 2351: google.cloud.compute.v1.RegionSslPolicies.ListAvailableFeatures:input_type -> google.cloud.compute.v1.ListAvailableFeaturesRegionSslPoliciesRequest - 1686, // 2352: google.cloud.compute.v1.RegionSslPolicies.Patch:input_type -> google.cloud.compute.v1.PatchRegionSslPolicyRequest - 769, // 2353: google.cloud.compute.v1.RegionTargetHttpProxies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionTargetHttpProxyRequest - 1018, // 2354: google.cloud.compute.v1.RegionTargetHttpProxies.Get:input_type -> google.cloud.compute.v1.GetRegionTargetHttpProxyRequest - 1183, // 2355: google.cloud.compute.v1.RegionTargetHttpProxies.Insert:input_type -> google.cloud.compute.v1.InsertRegionTargetHttpProxyRequest - 1486, // 2356: google.cloud.compute.v1.RegionTargetHttpProxies.List:input_type -> google.cloud.compute.v1.ListRegionTargetHttpProxiesRequest - 2058, // 2357: google.cloud.compute.v1.RegionTargetHttpProxies.SetUrlMap:input_type -> google.cloud.compute.v1.SetUrlMapRegionTargetHttpProxyRequest - 770, // 2358: google.cloud.compute.v1.RegionTargetHttpsProxies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionTargetHttpsProxyRequest - 1019, // 2359: google.cloud.compute.v1.RegionTargetHttpsProxies.Get:input_type -> google.cloud.compute.v1.GetRegionTargetHttpsProxyRequest - 1184, // 2360: google.cloud.compute.v1.RegionTargetHttpsProxies.Insert:input_type -> google.cloud.compute.v1.InsertRegionTargetHttpsProxyRequest - 1487, // 2361: google.cloud.compute.v1.RegionTargetHttpsProxies.List:input_type -> google.cloud.compute.v1.ListRegionTargetHttpsProxiesRequest - 1687, // 2362: google.cloud.compute.v1.RegionTargetHttpsProxies.Patch:input_type -> google.cloud.compute.v1.PatchRegionTargetHttpsProxyRequest - 2048, // 2363: google.cloud.compute.v1.RegionTargetHttpsProxies.SetSslCertificates:input_type -> google.cloud.compute.v1.SetSslCertificatesRegionTargetHttpsProxyRequest - 2059, // 2364: google.cloud.compute.v1.RegionTargetHttpsProxies.SetUrlMap:input_type -> google.cloud.compute.v1.SetUrlMapRegionTargetHttpsProxyRequest - 771, // 2365: google.cloud.compute.v1.RegionTargetTcpProxies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionTargetTcpProxyRequest - 1020, // 2366: google.cloud.compute.v1.RegionTargetTcpProxies.Get:input_type -> google.cloud.compute.v1.GetRegionTargetTcpProxyRequest - 1185, // 2367: google.cloud.compute.v1.RegionTargetTcpProxies.Insert:input_type -> google.cloud.compute.v1.InsertRegionTargetTcpProxyRequest - 1488, // 2368: google.cloud.compute.v1.RegionTargetTcpProxies.List:input_type -> google.cloud.compute.v1.ListRegionTargetTcpProxiesRequest - 772, // 2369: google.cloud.compute.v1.RegionUrlMaps.Delete:input_type -> google.cloud.compute.v1.DeleteRegionUrlMapRequest - 1021, // 2370: google.cloud.compute.v1.RegionUrlMaps.Get:input_type -> google.cloud.compute.v1.GetRegionUrlMapRequest - 1186, // 2371: google.cloud.compute.v1.RegionUrlMaps.Insert:input_type -> google.cloud.compute.v1.InsertRegionUrlMapRequest - 1489, // 2372: google.cloud.compute.v1.RegionUrlMaps.List:input_type -> google.cloud.compute.v1.ListRegionUrlMapsRequest - 1688, // 2373: google.cloud.compute.v1.RegionUrlMaps.Patch:input_type -> google.cloud.compute.v1.PatchRegionUrlMapRequest - 2267, // 2374: google.cloud.compute.v1.RegionUrlMaps.Update:input_type -> google.cloud.compute.v1.UpdateRegionUrlMapRequest - 2290, // 2375: google.cloud.compute.v1.RegionUrlMaps.Validate:input_type -> google.cloud.compute.v1.ValidateRegionUrlMapRequest - 1490, // 2376: google.cloud.compute.v1.RegionZones.List:input_type -> google.cloud.compute.v1.ListRegionZonesRequest - 1014, // 2377: google.cloud.compute.v1.Regions.Get:input_type -> google.cloud.compute.v1.GetRegionRequest - 1491, // 2378: google.cloud.compute.v1.Regions.List:input_type -> google.cloud.compute.v1.ListRegionsRequest - 1022, // 2379: google.cloud.compute.v1.ReservationBlocks.Get:input_type -> google.cloud.compute.v1.GetReservationBlockRequest - 948, // 2380: google.cloud.compute.v1.ReservationBlocks.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyReservationBlockRequest - 1492, // 2381: google.cloud.compute.v1.ReservationBlocks.List:input_type -> google.cloud.compute.v1.ListReservationBlocksRequest - 1713, // 2382: google.cloud.compute.v1.ReservationBlocks.PerformMaintenance:input_type -> google.cloud.compute.v1.PerformMaintenanceReservationBlockRequest - 1998, // 2383: google.cloud.compute.v1.ReservationBlocks.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyReservationBlockRequest - 2227, // 2384: google.cloud.compute.v1.ReservationBlocks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsReservationBlockRequest - 1024, // 2385: google.cloud.compute.v1.ReservationSlots.Get:input_type -> google.cloud.compute.v1.GetReservationSlotRequest - 1061, // 2386: google.cloud.compute.v1.ReservationSlots.GetVersion:input_type -> google.cloud.compute.v1.GetVersionReservationSlotRequest - 1493, // 2387: google.cloud.compute.v1.ReservationSlots.List:input_type -> google.cloud.compute.v1.ListReservationSlotsRequest - 2269, // 2388: google.cloud.compute.v1.ReservationSlots.Update:input_type -> google.cloud.compute.v1.UpdateReservationSlotRequest - 1025, // 2389: google.cloud.compute.v1.ReservationSubBlocks.Get:input_type -> google.cloud.compute.v1.GetReservationSubBlockRequest - 950, // 2390: google.cloud.compute.v1.ReservationSubBlocks.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyReservationSubBlockRequest - 1062, // 2391: google.cloud.compute.v1.ReservationSubBlocks.GetVersion:input_type -> google.cloud.compute.v1.GetVersionReservationSubBlockRequest - 1494, // 2392: google.cloud.compute.v1.ReservationSubBlocks.List:input_type -> google.cloud.compute.v1.ListReservationSubBlocksRequest - 1715, // 2393: google.cloud.compute.v1.ReservationSubBlocks.PerformMaintenance:input_type -> google.cloud.compute.v1.PerformMaintenanceReservationSubBlockRequest - 1808, // 2394: google.cloud.compute.v1.ReservationSubBlocks.ReportFaulty:input_type -> google.cloud.compute.v1.ReportFaultyReservationSubBlockRequest - 2000, // 2395: google.cloud.compute.v1.ReservationSubBlocks.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyReservationSubBlockRequest - 2229, // 2396: google.cloud.compute.v1.ReservationSubBlocks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsReservationSubBlockRequest - 546, // 2397: google.cloud.compute.v1.Reservations.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListReservationsRequest - 773, // 2398: google.cloud.compute.v1.Reservations.Delete:input_type -> google.cloud.compute.v1.DeleteReservationRequest - 1023, // 2399: google.cloud.compute.v1.Reservations.Get:input_type -> google.cloud.compute.v1.GetReservationRequest - 949, // 2400: google.cloud.compute.v1.Reservations.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyReservationRequest - 1187, // 2401: google.cloud.compute.v1.Reservations.Insert:input_type -> google.cloud.compute.v1.InsertReservationRequest - 1495, // 2402: google.cloud.compute.v1.Reservations.List:input_type -> google.cloud.compute.v1.ListReservationsRequest - 1714, // 2403: google.cloud.compute.v1.Reservations.PerformMaintenance:input_type -> google.cloud.compute.v1.PerformMaintenanceReservationRequest - 1848, // 2404: google.cloud.compute.v1.Reservations.Resize:input_type -> google.cloud.compute.v1.ResizeReservationRequest - 1999, // 2405: google.cloud.compute.v1.Reservations.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyReservationRequest - 2228, // 2406: google.cloud.compute.v1.Reservations.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsReservationRequest - 2268, // 2407: google.cloud.compute.v1.Reservations.Update:input_type -> google.cloud.compute.v1.UpdateReservationRequest - 547, // 2408: google.cloud.compute.v1.ResourcePolicies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListResourcePoliciesRequest - 774, // 2409: google.cloud.compute.v1.ResourcePolicies.Delete:input_type -> google.cloud.compute.v1.DeleteResourcePolicyRequest - 1026, // 2410: google.cloud.compute.v1.ResourcePolicies.Get:input_type -> google.cloud.compute.v1.GetResourcePolicyRequest - 951, // 2411: google.cloud.compute.v1.ResourcePolicies.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyResourcePolicyRequest - 1188, // 2412: google.cloud.compute.v1.ResourcePolicies.Insert:input_type -> google.cloud.compute.v1.InsertResourcePolicyRequest - 1496, // 2413: google.cloud.compute.v1.ResourcePolicies.List:input_type -> google.cloud.compute.v1.ListResourcePoliciesRequest - 1689, // 2414: google.cloud.compute.v1.ResourcePolicies.Patch:input_type -> google.cloud.compute.v1.PatchResourcePolicyRequest - 2001, // 2415: google.cloud.compute.v1.ResourcePolicies.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyResourcePolicyRequest - 2230, // 2416: google.cloud.compute.v1.ResourcePolicies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsResourcePolicyRequest - 548, // 2417: google.cloud.compute.v1.Routers.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRoutersRequest - 777, // 2418: google.cloud.compute.v1.Routers.Delete:input_type -> google.cloud.compute.v1.DeleteRouterRequest - 775, // 2419: google.cloud.compute.v1.Routers.DeleteRoutePolicy:input_type -> google.cloud.compute.v1.DeleteRoutePolicyRouterRequest - 1029, // 2420: google.cloud.compute.v1.Routers.Get:input_type -> google.cloud.compute.v1.GetRouterRequest - 976, // 2421: google.cloud.compute.v1.Routers.GetNatIpInfo:input_type -> google.cloud.compute.v1.GetNatIpInfoRouterRequest - 977, // 2422: google.cloud.compute.v1.Routers.GetNatMappingInfo:input_type -> google.cloud.compute.v1.GetNatMappingInfoRoutersRequest - 1027, // 2423: google.cloud.compute.v1.Routers.GetRoutePolicy:input_type -> google.cloud.compute.v1.GetRoutePolicyRouterRequest - 1030, // 2424: google.cloud.compute.v1.Routers.GetRouterStatus:input_type -> google.cloud.compute.v1.GetRouterStatusRouterRequest - 1190, // 2425: google.cloud.compute.v1.Routers.Insert:input_type -> google.cloud.compute.v1.InsertRouterRequest - 1498, // 2426: google.cloud.compute.v1.Routers.List:input_type -> google.cloud.compute.v1.ListRoutersRequest - 1403, // 2427: google.cloud.compute.v1.Routers.ListBgpRoutes:input_type -> google.cloud.compute.v1.ListBgpRoutesRoutersRequest - 1497, // 2428: google.cloud.compute.v1.Routers.ListRoutePolicies:input_type -> google.cloud.compute.v1.ListRoutePoliciesRoutersRequest - 1691, // 2429: google.cloud.compute.v1.Routers.Patch:input_type -> google.cloud.compute.v1.PatchRouterRequest - 1690, // 2430: google.cloud.compute.v1.Routers.PatchRoutePolicy:input_type -> google.cloud.compute.v1.PatchRoutePolicyRouterRequest - 1728, // 2431: google.cloud.compute.v1.Routers.Preview:input_type -> google.cloud.compute.v1.PreviewRouterRequest - 2271, // 2432: google.cloud.compute.v1.Routers.Update:input_type -> google.cloud.compute.v1.UpdateRouterRequest - 2270, // 2433: google.cloud.compute.v1.Routers.UpdateRoutePolicy:input_type -> google.cloud.compute.v1.UpdateRoutePolicyRouterRequest - 776, // 2434: google.cloud.compute.v1.Routes.Delete:input_type -> google.cloud.compute.v1.DeleteRouteRequest - 1028, // 2435: google.cloud.compute.v1.Routes.Get:input_type -> google.cloud.compute.v1.GetRouteRequest - 1189, // 2436: google.cloud.compute.v1.Routes.Insert:input_type -> google.cloud.compute.v1.InsertRouteRequest - 1499, // 2437: google.cloud.compute.v1.Routes.List:input_type -> google.cloud.compute.v1.ListRoutesRequest - 2231, // 2438: google.cloud.compute.v1.Routes.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRouteRequest - 506, // 2439: google.cloud.compute.v1.SecurityPolicies.AddRule:input_type -> google.cloud.compute.v1.AddRuleSecurityPolicyRequest - 549, // 2440: google.cloud.compute.v1.SecurityPolicies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListSecurityPoliciesRequest - 778, // 2441: google.cloud.compute.v1.SecurityPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteSecurityPolicyRequest - 1038, // 2442: google.cloud.compute.v1.SecurityPolicies.Get:input_type -> google.cloud.compute.v1.GetSecurityPolicyRequest - 1036, // 2443: google.cloud.compute.v1.SecurityPolicies.GetRule:input_type -> google.cloud.compute.v1.GetRuleSecurityPolicyRequest - 1191, // 2444: google.cloud.compute.v1.SecurityPolicies.Insert:input_type -> google.cloud.compute.v1.InsertSecurityPolicyRequest - 1500, // 2445: google.cloud.compute.v1.SecurityPolicies.List:input_type -> google.cloud.compute.v1.ListSecurityPoliciesRequest - 1460, // 2446: google.cloud.compute.v1.SecurityPolicies.ListPreconfiguredExpressionSets:input_type -> google.cloud.compute.v1.ListPreconfiguredExpressionSetsSecurityPoliciesRequest - 1698, // 2447: google.cloud.compute.v1.SecurityPolicies.Patch:input_type -> google.cloud.compute.v1.PatchSecurityPolicyRequest - 1697, // 2448: google.cloud.compute.v1.SecurityPolicies.PatchRule:input_type -> google.cloud.compute.v1.PatchRuleSecurityPolicyRequest - 1807, // 2449: google.cloud.compute.v1.SecurityPolicies.RemoveRule:input_type -> google.cloud.compute.v1.RemoveRuleSecurityPolicyRequest - 2023, // 2450: google.cloud.compute.v1.SecurityPolicies.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsSecurityPolicyRequest - 550, // 2451: google.cloud.compute.v1.ServiceAttachments.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListServiceAttachmentsRequest - 779, // 2452: google.cloud.compute.v1.ServiceAttachments.Delete:input_type -> google.cloud.compute.v1.DeleteServiceAttachmentRequest - 1040, // 2453: google.cloud.compute.v1.ServiceAttachments.Get:input_type -> google.cloud.compute.v1.GetServiceAttachmentRequest - 952, // 2454: google.cloud.compute.v1.ServiceAttachments.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyServiceAttachmentRequest - 1192, // 2455: google.cloud.compute.v1.ServiceAttachments.Insert:input_type -> google.cloud.compute.v1.InsertServiceAttachmentRequest - 1501, // 2456: google.cloud.compute.v1.ServiceAttachments.List:input_type -> google.cloud.compute.v1.ListServiceAttachmentsRequest - 1699, // 2457: google.cloud.compute.v1.ServiceAttachments.Patch:input_type -> google.cloud.compute.v1.PatchServiceAttachmentRequest - 2002, // 2458: google.cloud.compute.v1.ServiceAttachments.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyServiceAttachmentRequest - 2232, // 2459: google.cloud.compute.v1.ServiceAttachments.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsServiceAttachmentRequest - 1043, // 2460: google.cloud.compute.v1.SnapshotSettingsService.Get:input_type -> google.cloud.compute.v1.GetSnapshotSettingRequest - 1700, // 2461: google.cloud.compute.v1.SnapshotSettingsService.Patch:input_type -> google.cloud.compute.v1.PatchSnapshotSettingRequest - 782, // 2462: google.cloud.compute.v1.Snapshots.Delete:input_type -> google.cloud.compute.v1.DeleteSnapshotRequest - 1042, // 2463: google.cloud.compute.v1.Snapshots.Get:input_type -> google.cloud.compute.v1.GetSnapshotRequest - 953, // 2464: google.cloud.compute.v1.Snapshots.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicySnapshotRequest - 1193, // 2465: google.cloud.compute.v1.Snapshots.Insert:input_type -> google.cloud.compute.v1.InsertSnapshotRequest - 1502, // 2466: google.cloud.compute.v1.Snapshots.List:input_type -> google.cloud.compute.v1.ListSnapshotsRequest - 2003, // 2467: google.cloud.compute.v1.Snapshots.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicySnapshotRequest - 2024, // 2468: google.cloud.compute.v1.Snapshots.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsSnapshotRequest - 2233, // 2469: google.cloud.compute.v1.Snapshots.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsSnapshotRequest - 551, // 2470: google.cloud.compute.v1.SslCertificates.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListSslCertificatesRequest - 783, // 2471: google.cloud.compute.v1.SslCertificates.Delete:input_type -> google.cloud.compute.v1.DeleteSslCertificateRequest - 1044, // 2472: google.cloud.compute.v1.SslCertificates.Get:input_type -> google.cloud.compute.v1.GetSslCertificateRequest - 1194, // 2473: google.cloud.compute.v1.SslCertificates.Insert:input_type -> google.cloud.compute.v1.InsertSslCertificateRequest - 1503, // 2474: google.cloud.compute.v1.SslCertificates.List:input_type -> google.cloud.compute.v1.ListSslCertificatesRequest - 552, // 2475: google.cloud.compute.v1.SslPolicies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListSslPoliciesRequest - 784, // 2476: google.cloud.compute.v1.SslPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteSslPolicyRequest - 1045, // 2477: google.cloud.compute.v1.SslPolicies.Get:input_type -> google.cloud.compute.v1.GetSslPolicyRequest - 1195, // 2478: google.cloud.compute.v1.SslPolicies.Insert:input_type -> google.cloud.compute.v1.InsertSslPolicyRequest - 1504, // 2479: google.cloud.compute.v1.SslPolicies.List:input_type -> google.cloud.compute.v1.ListSslPoliciesRequest - 1400, // 2480: google.cloud.compute.v1.SslPolicies.ListAvailableFeatures:input_type -> google.cloud.compute.v1.ListAvailableFeaturesSslPoliciesRequest - 1701, // 2481: google.cloud.compute.v1.SslPolicies.Patch:input_type -> google.cloud.compute.v1.PatchSslPolicyRequest - 553, // 2482: google.cloud.compute.v1.StoragePoolTypes.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListStoragePoolTypesRequest - 1048, // 2483: google.cloud.compute.v1.StoragePoolTypes.Get:input_type -> google.cloud.compute.v1.GetStoragePoolTypeRequest - 1505, // 2484: google.cloud.compute.v1.StoragePoolTypes.List:input_type -> google.cloud.compute.v1.ListStoragePoolTypesRequest - 554, // 2485: google.cloud.compute.v1.StoragePools.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListStoragePoolsRequest - 785, // 2486: google.cloud.compute.v1.StoragePools.Delete:input_type -> google.cloud.compute.v1.DeleteStoragePoolRequest - 1047, // 2487: google.cloud.compute.v1.StoragePools.Get:input_type -> google.cloud.compute.v1.GetStoragePoolRequest - 954, // 2488: google.cloud.compute.v1.StoragePools.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyStoragePoolRequest - 1196, // 2489: google.cloud.compute.v1.StoragePools.Insert:input_type -> google.cloud.compute.v1.InsertStoragePoolRequest - 1506, // 2490: google.cloud.compute.v1.StoragePools.List:input_type -> google.cloud.compute.v1.ListStoragePoolsRequest - 1407, // 2491: google.cloud.compute.v1.StoragePools.ListDisks:input_type -> google.cloud.compute.v1.ListDisksStoragePoolsRequest - 2004, // 2492: google.cloud.compute.v1.StoragePools.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyStoragePoolRequest - 2234, // 2493: google.cloud.compute.v1.StoragePools.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsStoragePoolRequest - 2273, // 2494: google.cloud.compute.v1.StoragePools.Update:input_type -> google.cloud.compute.v1.UpdateStoragePoolRequest - 555, // 2495: google.cloud.compute.v1.Subnetworks.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListSubnetworksRequest - 786, // 2496: google.cloud.compute.v1.Subnetworks.Delete:input_type -> google.cloud.compute.v1.DeleteSubnetworkRequest - 842, // 2497: google.cloud.compute.v1.Subnetworks.ExpandIpCidrRange:input_type -> google.cloud.compute.v1.ExpandIpCidrRangeSubnetworkRequest - 1049, // 2498: google.cloud.compute.v1.Subnetworks.Get:input_type -> google.cloud.compute.v1.GetSubnetworkRequest - 955, // 2499: google.cloud.compute.v1.Subnetworks.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicySubnetworkRequest - 1197, // 2500: google.cloud.compute.v1.Subnetworks.Insert:input_type -> google.cloud.compute.v1.InsertSubnetworkRequest - 1507, // 2501: google.cloud.compute.v1.Subnetworks.List:input_type -> google.cloud.compute.v1.ListSubnetworksRequest - 1519, // 2502: google.cloud.compute.v1.Subnetworks.ListUsable:input_type -> google.cloud.compute.v1.ListUsableSubnetworksRequest - 1702, // 2503: google.cloud.compute.v1.Subnetworks.Patch:input_type -> google.cloud.compute.v1.PatchSubnetworkRequest - 2005, // 2504: google.cloud.compute.v1.Subnetworks.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicySubnetworkRequest - 2036, // 2505: google.cloud.compute.v1.Subnetworks.SetPrivateIpGoogleAccess:input_type -> google.cloud.compute.v1.SetPrivateIpGoogleAccessSubnetworkRequest - 2235, // 2506: google.cloud.compute.v1.Subnetworks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsSubnetworkRequest - 787, // 2507: google.cloud.compute.v1.TargetGrpcProxies.Delete:input_type -> google.cloud.compute.v1.DeleteTargetGrpcProxyRequest - 1050, // 2508: google.cloud.compute.v1.TargetGrpcProxies.Get:input_type -> google.cloud.compute.v1.GetTargetGrpcProxyRequest - 1198, // 2509: google.cloud.compute.v1.TargetGrpcProxies.Insert:input_type -> google.cloud.compute.v1.InsertTargetGrpcProxyRequest - 1508, // 2510: google.cloud.compute.v1.TargetGrpcProxies.List:input_type -> google.cloud.compute.v1.ListTargetGrpcProxiesRequest - 1703, // 2511: google.cloud.compute.v1.TargetGrpcProxies.Patch:input_type -> google.cloud.compute.v1.PatchTargetGrpcProxyRequest - 556, // 2512: google.cloud.compute.v1.TargetHttpProxies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListTargetHttpProxiesRequest - 788, // 2513: google.cloud.compute.v1.TargetHttpProxies.Delete:input_type -> google.cloud.compute.v1.DeleteTargetHttpProxyRequest - 1051, // 2514: google.cloud.compute.v1.TargetHttpProxies.Get:input_type -> google.cloud.compute.v1.GetTargetHttpProxyRequest - 1199, // 2515: google.cloud.compute.v1.TargetHttpProxies.Insert:input_type -> google.cloud.compute.v1.InsertTargetHttpProxyRequest - 1509, // 2516: google.cloud.compute.v1.TargetHttpProxies.List:input_type -> google.cloud.compute.v1.ListTargetHttpProxiesRequest - 1704, // 2517: google.cloud.compute.v1.TargetHttpProxies.Patch:input_type -> google.cloud.compute.v1.PatchTargetHttpProxyRequest - 2060, // 2518: google.cloud.compute.v1.TargetHttpProxies.SetUrlMap:input_type -> google.cloud.compute.v1.SetUrlMapTargetHttpProxyRequest - 557, // 2519: google.cloud.compute.v1.TargetHttpsProxies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListTargetHttpsProxiesRequest - 789, // 2520: google.cloud.compute.v1.TargetHttpsProxies.Delete:input_type -> google.cloud.compute.v1.DeleteTargetHttpsProxyRequest - 1052, // 2521: google.cloud.compute.v1.TargetHttpsProxies.Get:input_type -> google.cloud.compute.v1.GetTargetHttpsProxyRequest - 1200, // 2522: google.cloud.compute.v1.TargetHttpsProxies.Insert:input_type -> google.cloud.compute.v1.InsertTargetHttpsProxyRequest - 1510, // 2523: google.cloud.compute.v1.TargetHttpsProxies.List:input_type -> google.cloud.compute.v1.ListTargetHttpsProxiesRequest - 1705, // 2524: google.cloud.compute.v1.TargetHttpsProxies.Patch:input_type -> google.cloud.compute.v1.PatchTargetHttpsProxyRequest - 1967, // 2525: google.cloud.compute.v1.TargetHttpsProxies.SetCertificateMap:input_type -> google.cloud.compute.v1.SetCertificateMapTargetHttpsProxyRequest - 2039, // 2526: google.cloud.compute.v1.TargetHttpsProxies.SetQuicOverride:input_type -> google.cloud.compute.v1.SetQuicOverrideTargetHttpsProxyRequest - 2049, // 2527: google.cloud.compute.v1.TargetHttpsProxies.SetSslCertificates:input_type -> google.cloud.compute.v1.SetSslCertificatesTargetHttpsProxyRequest - 2051, // 2528: google.cloud.compute.v1.TargetHttpsProxies.SetSslPolicy:input_type -> google.cloud.compute.v1.SetSslPolicyTargetHttpsProxyRequest - 2061, // 2529: google.cloud.compute.v1.TargetHttpsProxies.SetUrlMap:input_type -> google.cloud.compute.v1.SetUrlMapTargetHttpsProxyRequest - 558, // 2530: google.cloud.compute.v1.TargetInstances.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListTargetInstancesRequest - 790, // 2531: google.cloud.compute.v1.TargetInstances.Delete:input_type -> google.cloud.compute.v1.DeleteTargetInstanceRequest - 1053, // 2532: google.cloud.compute.v1.TargetInstances.Get:input_type -> google.cloud.compute.v1.GetTargetInstanceRequest - 1201, // 2533: google.cloud.compute.v1.TargetInstances.Insert:input_type -> google.cloud.compute.v1.InsertTargetInstanceRequest - 1511, // 2534: google.cloud.compute.v1.TargetInstances.List:input_type -> google.cloud.compute.v1.ListTargetInstancesRequest - 2044, // 2535: google.cloud.compute.v1.TargetInstances.SetSecurityPolicy:input_type -> google.cloud.compute.v1.SetSecurityPolicyTargetInstanceRequest - 2236, // 2536: google.cloud.compute.v1.TargetInstances.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsTargetInstanceRequest - 491, // 2537: google.cloud.compute.v1.TargetPools.AddHealthCheck:input_type -> google.cloud.compute.v1.AddHealthCheckTargetPoolRequest - 492, // 2538: google.cloud.compute.v1.TargetPools.AddInstance:input_type -> google.cloud.compute.v1.AddInstanceTargetPoolRequest - 559, // 2539: google.cloud.compute.v1.TargetPools.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListTargetPoolsRequest - 791, // 2540: google.cloud.compute.v1.TargetPools.Delete:input_type -> google.cloud.compute.v1.DeleteTargetPoolRequest - 1054, // 2541: google.cloud.compute.v1.TargetPools.Get:input_type -> google.cloud.compute.v1.GetTargetPoolRequest - 927, // 2542: google.cloud.compute.v1.TargetPools.GetHealth:input_type -> google.cloud.compute.v1.GetHealthTargetPoolRequest - 1202, // 2543: google.cloud.compute.v1.TargetPools.Insert:input_type -> google.cloud.compute.v1.InsertTargetPoolRequest - 1512, // 2544: google.cloud.compute.v1.TargetPools.List:input_type -> google.cloud.compute.v1.ListTargetPoolsRequest - 1794, // 2545: google.cloud.compute.v1.TargetPools.RemoveHealthCheck:input_type -> google.cloud.compute.v1.RemoveHealthCheckTargetPoolRequest - 1795, // 2546: google.cloud.compute.v1.TargetPools.RemoveInstance:input_type -> google.cloud.compute.v1.RemoveInstanceTargetPoolRequest - 1966, // 2547: google.cloud.compute.v1.TargetPools.SetBackup:input_type -> google.cloud.compute.v1.SetBackupTargetPoolRequest - 2045, // 2548: google.cloud.compute.v1.TargetPools.SetSecurityPolicy:input_type -> google.cloud.compute.v1.SetSecurityPolicyTargetPoolRequest - 2237, // 2549: google.cloud.compute.v1.TargetPools.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsTargetPoolRequest - 792, // 2550: google.cloud.compute.v1.TargetSslProxies.Delete:input_type -> google.cloud.compute.v1.DeleteTargetSslProxyRequest - 1055, // 2551: google.cloud.compute.v1.TargetSslProxies.Get:input_type -> google.cloud.compute.v1.GetTargetSslProxyRequest - 1203, // 2552: google.cloud.compute.v1.TargetSslProxies.Insert:input_type -> google.cloud.compute.v1.InsertTargetSslProxyRequest - 1513, // 2553: google.cloud.compute.v1.TargetSslProxies.List:input_type -> google.cloud.compute.v1.ListTargetSslProxiesRequest - 1964, // 2554: google.cloud.compute.v1.TargetSslProxies.SetBackendService:input_type -> google.cloud.compute.v1.SetBackendServiceTargetSslProxyRequest - 1968, // 2555: google.cloud.compute.v1.TargetSslProxies.SetCertificateMap:input_type -> google.cloud.compute.v1.SetCertificateMapTargetSslProxyRequest - 2037, // 2556: google.cloud.compute.v1.TargetSslProxies.SetProxyHeader:input_type -> google.cloud.compute.v1.SetProxyHeaderTargetSslProxyRequest - 2050, // 2557: google.cloud.compute.v1.TargetSslProxies.SetSslCertificates:input_type -> google.cloud.compute.v1.SetSslCertificatesTargetSslProxyRequest - 2052, // 2558: google.cloud.compute.v1.TargetSslProxies.SetSslPolicy:input_type -> google.cloud.compute.v1.SetSslPolicyTargetSslProxyRequest - 2238, // 2559: google.cloud.compute.v1.TargetSslProxies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsTargetSslProxyRequest - 560, // 2560: google.cloud.compute.v1.TargetTcpProxies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListTargetTcpProxiesRequest - 793, // 2561: google.cloud.compute.v1.TargetTcpProxies.Delete:input_type -> google.cloud.compute.v1.DeleteTargetTcpProxyRequest - 1056, // 2562: google.cloud.compute.v1.TargetTcpProxies.Get:input_type -> google.cloud.compute.v1.GetTargetTcpProxyRequest - 1204, // 2563: google.cloud.compute.v1.TargetTcpProxies.Insert:input_type -> google.cloud.compute.v1.InsertTargetTcpProxyRequest - 1514, // 2564: google.cloud.compute.v1.TargetTcpProxies.List:input_type -> google.cloud.compute.v1.ListTargetTcpProxiesRequest - 1965, // 2565: google.cloud.compute.v1.TargetTcpProxies.SetBackendService:input_type -> google.cloud.compute.v1.SetBackendServiceTargetTcpProxyRequest - 2038, // 2566: google.cloud.compute.v1.TargetTcpProxies.SetProxyHeader:input_type -> google.cloud.compute.v1.SetProxyHeaderTargetTcpProxyRequest - 2239, // 2567: google.cloud.compute.v1.TargetTcpProxies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsTargetTcpProxyRequest - 561, // 2568: google.cloud.compute.v1.TargetVpnGateways.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListTargetVpnGatewaysRequest - 794, // 2569: google.cloud.compute.v1.TargetVpnGateways.Delete:input_type -> google.cloud.compute.v1.DeleteTargetVpnGatewayRequest - 1057, // 2570: google.cloud.compute.v1.TargetVpnGateways.Get:input_type -> google.cloud.compute.v1.GetTargetVpnGatewayRequest - 1205, // 2571: google.cloud.compute.v1.TargetVpnGateways.Insert:input_type -> google.cloud.compute.v1.InsertTargetVpnGatewayRequest - 1515, // 2572: google.cloud.compute.v1.TargetVpnGateways.List:input_type -> google.cloud.compute.v1.ListTargetVpnGatewaysRequest - 2025, // 2573: google.cloud.compute.v1.TargetVpnGateways.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsTargetVpnGatewayRequest - 562, // 2574: google.cloud.compute.v1.UrlMaps.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListUrlMapsRequest - 795, // 2575: google.cloud.compute.v1.UrlMaps.Delete:input_type -> google.cloud.compute.v1.DeleteUrlMapRequest - 1058, // 2576: google.cloud.compute.v1.UrlMaps.Get:input_type -> google.cloud.compute.v1.GetUrlMapRequest - 1206, // 2577: google.cloud.compute.v1.UrlMaps.Insert:input_type -> google.cloud.compute.v1.InsertUrlMapRequest - 1385, // 2578: google.cloud.compute.v1.UrlMaps.InvalidateCache:input_type -> google.cloud.compute.v1.InvalidateCacheUrlMapRequest - 1516, // 2579: google.cloud.compute.v1.UrlMaps.List:input_type -> google.cloud.compute.v1.ListUrlMapsRequest - 1706, // 2580: google.cloud.compute.v1.UrlMaps.Patch:input_type -> google.cloud.compute.v1.PatchUrlMapRequest - 2240, // 2581: google.cloud.compute.v1.UrlMaps.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsUrlMapRequest - 2274, // 2582: google.cloud.compute.v1.UrlMaps.Update:input_type -> google.cloud.compute.v1.UpdateUrlMapRequest - 2291, // 2583: google.cloud.compute.v1.UrlMaps.Validate:input_type -> google.cloud.compute.v1.ValidateUrlMapRequest - 563, // 2584: google.cloud.compute.v1.VpnGateways.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListVpnGatewaysRequest - 796, // 2585: google.cloud.compute.v1.VpnGateways.Delete:input_type -> google.cloud.compute.v1.DeleteVpnGatewayRequest - 1063, // 2586: google.cloud.compute.v1.VpnGateways.Get:input_type -> google.cloud.compute.v1.GetVpnGatewayRequest - 1046, // 2587: google.cloud.compute.v1.VpnGateways.GetStatus:input_type -> google.cloud.compute.v1.GetStatusVpnGatewayRequest - 1207, // 2588: google.cloud.compute.v1.VpnGateways.Insert:input_type -> google.cloud.compute.v1.InsertVpnGatewayRequest - 1520, // 2589: google.cloud.compute.v1.VpnGateways.List:input_type -> google.cloud.compute.v1.ListVpnGatewaysRequest - 2026, // 2590: google.cloud.compute.v1.VpnGateways.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsVpnGatewayRequest - 2241, // 2591: google.cloud.compute.v1.VpnGateways.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsVpnGatewayRequest - 564, // 2592: google.cloud.compute.v1.VpnTunnels.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListVpnTunnelsRequest - 797, // 2593: google.cloud.compute.v1.VpnTunnels.Delete:input_type -> google.cloud.compute.v1.DeleteVpnTunnelRequest - 1064, // 2594: google.cloud.compute.v1.VpnTunnels.Get:input_type -> google.cloud.compute.v1.GetVpnTunnelRequest - 1208, // 2595: google.cloud.compute.v1.VpnTunnels.Insert:input_type -> google.cloud.compute.v1.InsertVpnTunnelRequest - 1521, // 2596: google.cloud.compute.v1.VpnTunnels.List:input_type -> google.cloud.compute.v1.ListVpnTunnelsRequest - 2027, // 2597: google.cloud.compute.v1.VpnTunnels.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsVpnTunnelRequest - 798, // 2598: google.cloud.compute.v1.WireGroups.Delete:input_type -> google.cloud.compute.v1.DeleteWireGroupRequest - 1065, // 2599: google.cloud.compute.v1.WireGroups.Get:input_type -> google.cloud.compute.v1.GetWireGroupRequest - 1209, // 2600: google.cloud.compute.v1.WireGroups.Insert:input_type -> google.cloud.compute.v1.InsertWireGroupRequest - 1522, // 2601: google.cloud.compute.v1.WireGroups.List:input_type -> google.cloud.compute.v1.ListWireGroupsRequest - 1707, // 2602: google.cloud.compute.v1.WireGroups.Patch:input_type -> google.cloud.compute.v1.PatchWireGroupRequest - 799, // 2603: google.cloud.compute.v1.ZoneOperations.Delete:input_type -> google.cloud.compute.v1.DeleteZoneOperationRequest - 1068, // 2604: google.cloud.compute.v1.ZoneOperations.Get:input_type -> google.cloud.compute.v1.GetZoneOperationRequest - 1524, // 2605: google.cloud.compute.v1.ZoneOperations.List:input_type -> google.cloud.compute.v1.ListZoneOperationsRequest - 2319, // 2606: google.cloud.compute.v1.ZoneOperations.Wait:input_type -> google.cloud.compute.v1.WaitZoneOperationRequest - 1069, // 2607: google.cloud.compute.v1.Zones.Get:input_type -> google.cloud.compute.v1.GetZoneRequest - 1525, // 2608: google.cloud.compute.v1.Zones.List:input_type -> google.cloud.compute.v1.ListZonesRequest - 481, // 2609: google.cloud.compute.v1.AcceleratorTypes.AggregatedList:output_type -> google.cloud.compute.v1.AcceleratorTypeAggregatedList - 480, // 2610: google.cloud.compute.v1.AcceleratorTypes.Get:output_type -> google.cloud.compute.v1.AcceleratorType - 482, // 2611: google.cloud.compute.v1.AcceleratorTypes.List:output_type -> google.cloud.compute.v1.AcceleratorTypeList - 510, // 2612: google.cloud.compute.v1.Addresses.AggregatedList:output_type -> google.cloud.compute.v1.AddressAggregatedList - 1630, // 2613: google.cloud.compute.v1.Addresses.Delete:output_type -> google.cloud.compute.v1.Operation - 509, // 2614: google.cloud.compute.v1.Addresses.Get:output_type -> google.cloud.compute.v1.Address - 1630, // 2615: google.cloud.compute.v1.Addresses.Insert:output_type -> google.cloud.compute.v1.Operation - 511, // 2616: google.cloud.compute.v1.Addresses.List:output_type -> google.cloud.compute.v1.AddressList - 1630, // 2617: google.cloud.compute.v1.Addresses.Move:output_type -> google.cloud.compute.v1.Operation - 1630, // 2618: google.cloud.compute.v1.Addresses.SetLabels:output_type -> google.cloud.compute.v1.Operation - 2243, // 2619: google.cloud.compute.v1.Addresses.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 662, // 2620: google.cloud.compute.v1.Advice.CalendarMode:output_type -> google.cloud.compute.v1.CalendarModeAdviceResponse - 590, // 2621: google.cloud.compute.v1.Autoscalers.AggregatedList:output_type -> google.cloud.compute.v1.AutoscalerAggregatedList - 1630, // 2622: google.cloud.compute.v1.Autoscalers.Delete:output_type -> google.cloud.compute.v1.Operation - 589, // 2623: google.cloud.compute.v1.Autoscalers.Get:output_type -> google.cloud.compute.v1.Autoscaler - 1630, // 2624: google.cloud.compute.v1.Autoscalers.Insert:output_type -> google.cloud.compute.v1.Operation - 591, // 2625: google.cloud.compute.v1.Autoscalers.List:output_type -> google.cloud.compute.v1.AutoscalerList - 1630, // 2626: google.cloud.compute.v1.Autoscalers.Patch:output_type -> google.cloud.compute.v1.Operation - 2243, // 2627: google.cloud.compute.v1.Autoscalers.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2628: google.cloud.compute.v1.Autoscalers.Update:output_type -> google.cloud.compute.v1.Operation - 1630, // 2629: google.cloud.compute.v1.BackendBuckets.AddSignedUrlKey:output_type -> google.cloud.compute.v1.Operation - 1630, // 2630: google.cloud.compute.v1.BackendBuckets.Delete:output_type -> google.cloud.compute.v1.Operation - 1630, // 2631: google.cloud.compute.v1.BackendBuckets.DeleteSignedUrlKey:output_type -> google.cloud.compute.v1.Operation - 602, // 2632: google.cloud.compute.v1.BackendBuckets.Get:output_type -> google.cloud.compute.v1.BackendBucket - 1716, // 2633: google.cloud.compute.v1.BackendBuckets.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2634: google.cloud.compute.v1.BackendBuckets.Insert:output_type -> google.cloud.compute.v1.Operation - 607, // 2635: google.cloud.compute.v1.BackendBuckets.List:output_type -> google.cloud.compute.v1.BackendBucketList - 1630, // 2636: google.cloud.compute.v1.BackendBuckets.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 2637: google.cloud.compute.v1.BackendBuckets.SetEdgeSecurityPolicy:output_type -> google.cloud.compute.v1.Operation - 1716, // 2638: google.cloud.compute.v1.BackendBuckets.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 2639: google.cloud.compute.v1.BackendBuckets.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2640: google.cloud.compute.v1.BackendBuckets.Update:output_type -> google.cloud.compute.v1.Operation - 1630, // 2641: google.cloud.compute.v1.BackendServices.AddSignedUrlKey:output_type -> google.cloud.compute.v1.Operation - 612, // 2642: google.cloud.compute.v1.BackendServices.AggregatedList:output_type -> google.cloud.compute.v1.BackendServiceAggregatedList - 1630, // 2643: google.cloud.compute.v1.BackendServices.Delete:output_type -> google.cloud.compute.v1.Operation - 1630, // 2644: google.cloud.compute.v1.BackendServices.DeleteSignedUrlKey:output_type -> google.cloud.compute.v1.Operation - 611, // 2645: google.cloud.compute.v1.BackendServices.Get:output_type -> google.cloud.compute.v1.BackendService - 910, // 2646: google.cloud.compute.v1.BackendServices.GetEffectiveSecurityPolicies:output_type -> google.cloud.compute.v1.GetEffectiveSecurityPoliciesBackendServiceResponse - 619, // 2647: google.cloud.compute.v1.BackendServices.GetHealth:output_type -> google.cloud.compute.v1.BackendServiceGroupHealth - 1716, // 2648: google.cloud.compute.v1.BackendServices.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2649: google.cloud.compute.v1.BackendServices.Insert:output_type -> google.cloud.compute.v1.Operation - 625, // 2650: google.cloud.compute.v1.BackendServices.List:output_type -> google.cloud.compute.v1.BackendServiceList - 626, // 2651: google.cloud.compute.v1.BackendServices.ListUsable:output_type -> google.cloud.compute.v1.BackendServiceListUsable - 1630, // 2652: google.cloud.compute.v1.BackendServices.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 2653: google.cloud.compute.v1.BackendServices.SetEdgeSecurityPolicy:output_type -> google.cloud.compute.v1.Operation - 1716, // 2654: google.cloud.compute.v1.BackendServices.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2655: google.cloud.compute.v1.BackendServices.SetSecurityPolicy:output_type -> google.cloud.compute.v1.Operation - 2243, // 2656: google.cloud.compute.v1.BackendServices.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2657: google.cloud.compute.v1.BackendServices.Update:output_type -> google.cloud.compute.v1.Operation - 1630, // 2658: google.cloud.compute.v1.CrossSiteNetworks.Delete:output_type -> google.cloud.compute.v1.Operation - 691, // 2659: google.cloud.compute.v1.CrossSiteNetworks.Get:output_type -> google.cloud.compute.v1.CrossSiteNetwork - 1630, // 2660: google.cloud.compute.v1.CrossSiteNetworks.Insert:output_type -> google.cloud.compute.v1.Operation - 692, // 2661: google.cloud.compute.v1.CrossSiteNetworks.List:output_type -> google.cloud.compute.v1.CrossSiteNetworkList - 1630, // 2662: google.cloud.compute.v1.CrossSiteNetworks.Patch:output_type -> google.cloud.compute.v1.Operation - 821, // 2663: google.cloud.compute.v1.DiskTypes.AggregatedList:output_type -> google.cloud.compute.v1.DiskTypeAggregatedList - 820, // 2664: google.cloud.compute.v1.DiskTypes.Get:output_type -> google.cloud.compute.v1.DiskType - 822, // 2665: google.cloud.compute.v1.DiskTypes.List:output_type -> google.cloud.compute.v1.DiskTypeList - 1630, // 2666: google.cloud.compute.v1.Disks.AddResourcePolicies:output_type -> google.cloud.compute.v1.Operation - 811, // 2667: google.cloud.compute.v1.Disks.AggregatedList:output_type -> google.cloud.compute.v1.DiskAggregatedList - 1630, // 2668: google.cloud.compute.v1.Disks.BulkInsert:output_type -> google.cloud.compute.v1.Operation - 1630, // 2669: google.cloud.compute.v1.Disks.BulkSetLabels:output_type -> google.cloud.compute.v1.Operation - 1630, // 2670: google.cloud.compute.v1.Disks.CreateSnapshot:output_type -> google.cloud.compute.v1.Operation - 1630, // 2671: google.cloud.compute.v1.Disks.Delete:output_type -> google.cloud.compute.v1.Operation - 810, // 2672: google.cloud.compute.v1.Disks.Get:output_type -> google.cloud.compute.v1.Disk - 1716, // 2673: google.cloud.compute.v1.Disks.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2674: google.cloud.compute.v1.Disks.Insert:output_type -> google.cloud.compute.v1.Operation - 815, // 2675: google.cloud.compute.v1.Disks.List:output_type -> google.cloud.compute.v1.DiskList - 1630, // 2676: google.cloud.compute.v1.Disks.RemoveResourcePolicies:output_type -> google.cloud.compute.v1.Operation - 1630, // 2677: google.cloud.compute.v1.Disks.Resize:output_type -> google.cloud.compute.v1.Operation - 1716, // 2678: google.cloud.compute.v1.Disks.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2679: google.cloud.compute.v1.Disks.SetLabels:output_type -> google.cloud.compute.v1.Operation - 1630, // 2680: google.cloud.compute.v1.Disks.StartAsyncReplication:output_type -> google.cloud.compute.v1.Operation - 1630, // 2681: google.cloud.compute.v1.Disks.StopAsyncReplication:output_type -> google.cloud.compute.v1.Operation - 1630, // 2682: google.cloud.compute.v1.Disks.StopGroupAsyncReplication:output_type -> google.cloud.compute.v1.Operation - 2243, // 2683: google.cloud.compute.v1.Disks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2684: google.cloud.compute.v1.Disks.Update:output_type -> google.cloud.compute.v1.Operation - 1630, // 2685: google.cloud.compute.v1.ExternalVpnGateways.Delete:output_type -> google.cloud.compute.v1.Operation - 844, // 2686: google.cloud.compute.v1.ExternalVpnGateways.Get:output_type -> google.cloud.compute.v1.ExternalVpnGateway - 1630, // 2687: google.cloud.compute.v1.ExternalVpnGateways.Insert:output_type -> google.cloud.compute.v1.Operation - 846, // 2688: google.cloud.compute.v1.ExternalVpnGateways.List:output_type -> google.cloud.compute.v1.ExternalVpnGatewayList - 1630, // 2689: google.cloud.compute.v1.ExternalVpnGateways.SetLabels:output_type -> google.cloud.compute.v1.Operation - 2243, // 2690: google.cloud.compute.v1.ExternalVpnGateways.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2691: google.cloud.compute.v1.FirewallPolicies.AddAssociation:output_type -> google.cloud.compute.v1.Operation - 1630, // 2692: google.cloud.compute.v1.FirewallPolicies.AddRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 2693: google.cloud.compute.v1.FirewallPolicies.CloneRules:output_type -> google.cloud.compute.v1.Operation - 1630, // 2694: google.cloud.compute.v1.FirewallPolicies.Delete:output_type -> google.cloud.compute.v1.Operation - 855, // 2695: google.cloud.compute.v1.FirewallPolicies.Get:output_type -> google.cloud.compute.v1.FirewallPolicy - 856, // 2696: google.cloud.compute.v1.FirewallPolicies.GetAssociation:output_type -> google.cloud.compute.v1.FirewallPolicyAssociation - 1716, // 2697: google.cloud.compute.v1.FirewallPolicies.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 858, // 2698: google.cloud.compute.v1.FirewallPolicies.GetRule:output_type -> google.cloud.compute.v1.FirewallPolicyRule - 1630, // 2699: google.cloud.compute.v1.FirewallPolicies.Insert:output_type -> google.cloud.compute.v1.Operation - 857, // 2700: google.cloud.compute.v1.FirewallPolicies.List:output_type -> google.cloud.compute.v1.FirewallPolicyList - 853, // 2701: google.cloud.compute.v1.FirewallPolicies.ListAssociations:output_type -> google.cloud.compute.v1.FirewallPoliciesListAssociationsResponse - 1630, // 2702: google.cloud.compute.v1.FirewallPolicies.Move:output_type -> google.cloud.compute.v1.Operation - 1630, // 2703: google.cloud.compute.v1.FirewallPolicies.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 2704: google.cloud.compute.v1.FirewallPolicies.PatchRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 2705: google.cloud.compute.v1.FirewallPolicies.RemoveAssociation:output_type -> google.cloud.compute.v1.Operation - 1630, // 2706: google.cloud.compute.v1.FirewallPolicies.RemoveRule:output_type -> google.cloud.compute.v1.Operation - 1716, // 2707: google.cloud.compute.v1.FirewallPolicies.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 2708: google.cloud.compute.v1.FirewallPolicies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2709: google.cloud.compute.v1.Firewalls.Delete:output_type -> google.cloud.compute.v1.Operation - 849, // 2710: google.cloud.compute.v1.Firewalls.Get:output_type -> google.cloud.compute.v1.Firewall - 1630, // 2711: google.cloud.compute.v1.Firewalls.Insert:output_type -> google.cloud.compute.v1.Operation - 850, // 2712: google.cloud.compute.v1.Firewalls.List:output_type -> google.cloud.compute.v1.FirewallList - 1630, // 2713: google.cloud.compute.v1.Firewalls.Patch:output_type -> google.cloud.compute.v1.Operation - 2243, // 2714: google.cloud.compute.v1.Firewalls.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2715: google.cloud.compute.v1.Firewalls.Update:output_type -> google.cloud.compute.v1.Operation - 865, // 2716: google.cloud.compute.v1.ForwardingRules.AggregatedList:output_type -> google.cloud.compute.v1.ForwardingRuleAggregatedList - 1630, // 2717: google.cloud.compute.v1.ForwardingRules.Delete:output_type -> google.cloud.compute.v1.Operation - 864, // 2718: google.cloud.compute.v1.ForwardingRules.Get:output_type -> google.cloud.compute.v1.ForwardingRule - 1630, // 2719: google.cloud.compute.v1.ForwardingRules.Insert:output_type -> google.cloud.compute.v1.Operation - 866, // 2720: google.cloud.compute.v1.ForwardingRules.List:output_type -> google.cloud.compute.v1.ForwardingRuleList - 1630, // 2721: google.cloud.compute.v1.ForwardingRules.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 2722: google.cloud.compute.v1.ForwardingRules.SetLabels:output_type -> google.cloud.compute.v1.Operation - 1630, // 2723: google.cloud.compute.v1.ForwardingRules.SetTarget:output_type -> google.cloud.compute.v1.Operation - 879, // 2724: google.cloud.compute.v1.FutureReservations.AggregatedList:output_type -> google.cloud.compute.v1.FutureReservationsAggregatedListResponse - 1630, // 2725: google.cloud.compute.v1.FutureReservations.Cancel:output_type -> google.cloud.compute.v1.Operation - 1630, // 2726: google.cloud.compute.v1.FutureReservations.Delete:output_type -> google.cloud.compute.v1.Operation - 870, // 2727: google.cloud.compute.v1.FutureReservations.Get:output_type -> google.cloud.compute.v1.FutureReservation - 1630, // 2728: google.cloud.compute.v1.FutureReservations.Insert:output_type -> google.cloud.compute.v1.Operation - 880, // 2729: google.cloud.compute.v1.FutureReservations.List:output_type -> google.cloud.compute.v1.FutureReservationsListResponse - 1630, // 2730: google.cloud.compute.v1.FutureReservations.Update:output_type -> google.cloud.compute.v1.Operation - 1630, // 2731: google.cloud.compute.v1.GlobalAddresses.Delete:output_type -> google.cloud.compute.v1.Operation - 509, // 2732: google.cloud.compute.v1.GlobalAddresses.Get:output_type -> google.cloud.compute.v1.Address - 1630, // 2733: google.cloud.compute.v1.GlobalAddresses.Insert:output_type -> google.cloud.compute.v1.Operation - 511, // 2734: google.cloud.compute.v1.GlobalAddresses.List:output_type -> google.cloud.compute.v1.AddressList - 1630, // 2735: google.cloud.compute.v1.GlobalAddresses.Move:output_type -> google.cloud.compute.v1.Operation - 1630, // 2736: google.cloud.compute.v1.GlobalAddresses.SetLabels:output_type -> google.cloud.compute.v1.Operation - 2243, // 2737: google.cloud.compute.v1.GlobalAddresses.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2738: google.cloud.compute.v1.GlobalForwardingRules.Delete:output_type -> google.cloud.compute.v1.Operation - 864, // 2739: google.cloud.compute.v1.GlobalForwardingRules.Get:output_type -> google.cloud.compute.v1.ForwardingRule - 1630, // 2740: google.cloud.compute.v1.GlobalForwardingRules.Insert:output_type -> google.cloud.compute.v1.Operation - 866, // 2741: google.cloud.compute.v1.GlobalForwardingRules.List:output_type -> google.cloud.compute.v1.ForwardingRuleList - 1630, // 2742: google.cloud.compute.v1.GlobalForwardingRules.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 2743: google.cloud.compute.v1.GlobalForwardingRules.SetLabels:output_type -> google.cloud.compute.v1.Operation - 1630, // 2744: google.cloud.compute.v1.GlobalForwardingRules.SetTarget:output_type -> google.cloud.compute.v1.Operation - 1630, // 2745: google.cloud.compute.v1.GlobalNetworkEndpointGroups.AttachNetworkEndpoints:output_type -> google.cloud.compute.v1.Operation - 1630, // 2746: google.cloud.compute.v1.GlobalNetworkEndpointGroups.Delete:output_type -> google.cloud.compute.v1.Operation - 1630, // 2747: google.cloud.compute.v1.GlobalNetworkEndpointGroups.DetachNetworkEndpoints:output_type -> google.cloud.compute.v1.Operation - 1568, // 2748: google.cloud.compute.v1.GlobalNetworkEndpointGroups.Get:output_type -> google.cloud.compute.v1.NetworkEndpointGroup - 1630, // 2749: google.cloud.compute.v1.GlobalNetworkEndpointGroups.Insert:output_type -> google.cloud.compute.v1.Operation - 1573, // 2750: google.cloud.compute.v1.GlobalNetworkEndpointGroups.List:output_type -> google.cloud.compute.v1.NetworkEndpointGroupList - 1578, // 2751: google.cloud.compute.v1.GlobalNetworkEndpointGroups.ListNetworkEndpoints:output_type -> google.cloud.compute.v1.NetworkEndpointGroupsListNetworkEndpoints - 1631, // 2752: google.cloud.compute.v1.GlobalOperations.AggregatedList:output_type -> google.cloud.compute.v1.OperationAggregatedList - 715, // 2753: google.cloud.compute.v1.GlobalOperations.Delete:output_type -> google.cloud.compute.v1.DeleteGlobalOperationResponse - 1630, // 2754: google.cloud.compute.v1.GlobalOperations.Get:output_type -> google.cloud.compute.v1.Operation - 1632, // 2755: google.cloud.compute.v1.GlobalOperations.List:output_type -> google.cloud.compute.v1.OperationList - 1630, // 2756: google.cloud.compute.v1.GlobalOperations.Wait:output_type -> google.cloud.compute.v1.Operation - 717, // 2757: google.cloud.compute.v1.GlobalOrganizationOperations.Delete:output_type -> google.cloud.compute.v1.DeleteGlobalOrganizationOperationResponse - 1630, // 2758: google.cloud.compute.v1.GlobalOrganizationOperations.Get:output_type -> google.cloud.compute.v1.Operation - 1632, // 2759: google.cloud.compute.v1.GlobalOrganizationOperations.List:output_type -> google.cloud.compute.v1.OperationList - 1630, // 2760: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Delete:output_type -> google.cloud.compute.v1.Operation - 1739, // 2761: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Get:output_type -> google.cloud.compute.v1.PublicDelegatedPrefix - 1630, // 2762: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Insert:output_type -> google.cloud.compute.v1.Operation - 1741, // 2763: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.List:output_type -> google.cloud.compute.v1.PublicDelegatedPrefixList - 1630, // 2764: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Patch:output_type -> google.cloud.compute.v1.Operation - 1097, // 2765: google.cloud.compute.v1.HealthChecks.AggregatedList:output_type -> google.cloud.compute.v1.HealthChecksAggregatedList - 1630, // 2766: google.cloud.compute.v1.HealthChecks.Delete:output_type -> google.cloud.compute.v1.Operation - 1088, // 2767: google.cloud.compute.v1.HealthChecks.Get:output_type -> google.cloud.compute.v1.HealthCheck - 1630, // 2768: google.cloud.compute.v1.HealthChecks.Insert:output_type -> google.cloud.compute.v1.Operation - 1089, // 2769: google.cloud.compute.v1.HealthChecks.List:output_type -> google.cloud.compute.v1.HealthCheckList - 1630, // 2770: google.cloud.compute.v1.HealthChecks.Patch:output_type -> google.cloud.compute.v1.Operation - 2243, // 2771: google.cloud.compute.v1.HealthChecks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2772: google.cloud.compute.v1.HealthChecks.Update:output_type -> google.cloud.compute.v1.Operation - 1121, // 2773: google.cloud.compute.v1.ImageFamilyViews.Get:output_type -> google.cloud.compute.v1.ImageFamilyView - 1630, // 2774: google.cloud.compute.v1.Images.Delete:output_type -> google.cloud.compute.v1.Operation - 1630, // 2775: google.cloud.compute.v1.Images.Deprecate:output_type -> google.cloud.compute.v1.Operation - 1120, // 2776: google.cloud.compute.v1.Images.Get:output_type -> google.cloud.compute.v1.Image - 1120, // 2777: google.cloud.compute.v1.Images.GetFromFamily:output_type -> google.cloud.compute.v1.Image - 1716, // 2778: google.cloud.compute.v1.Images.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2779: google.cloud.compute.v1.Images.Insert:output_type -> google.cloud.compute.v1.Operation - 1122, // 2780: google.cloud.compute.v1.Images.List:output_type -> google.cloud.compute.v1.ImageList - 1630, // 2781: google.cloud.compute.v1.Images.Patch:output_type -> google.cloud.compute.v1.Operation - 1716, // 2782: google.cloud.compute.v1.Images.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2783: google.cloud.compute.v1.Images.SetLabels:output_type -> google.cloud.compute.v1.Operation - 2243, // 2784: google.cloud.compute.v1.Images.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2785: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Cancel:output_type -> google.cloud.compute.v1.Operation - 1630, // 2786: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Delete:output_type -> google.cloud.compute.v1.Operation - 1228, // 2787: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Get:output_type -> google.cloud.compute.v1.InstanceGroupManagerResizeRequest - 1630, // 2788: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Insert:output_type -> google.cloud.compute.v1.Operation - 1231, // 2789: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.List:output_type -> google.cloud.compute.v1.InstanceGroupManagerResizeRequestsListResponse - 1630, // 2790: google.cloud.compute.v1.InstanceGroupManagers.AbandonInstances:output_type -> google.cloud.compute.v1.Operation - 1221, // 2791: google.cloud.compute.v1.InstanceGroupManagers.AggregatedList:output_type -> google.cloud.compute.v1.InstanceGroupManagerAggregatedList - 1630, // 2792: google.cloud.compute.v1.InstanceGroupManagers.ApplyUpdatesToInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 2793: google.cloud.compute.v1.InstanceGroupManagers.CreateInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 2794: google.cloud.compute.v1.InstanceGroupManagers.Delete:output_type -> google.cloud.compute.v1.Operation - 1630, // 2795: google.cloud.compute.v1.InstanceGroupManagers.DeleteInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 2796: google.cloud.compute.v1.InstanceGroupManagers.DeletePerInstanceConfigs:output_type -> google.cloud.compute.v1.Operation - 1219, // 2797: google.cloud.compute.v1.InstanceGroupManagers.Get:output_type -> google.cloud.compute.v1.InstanceGroupManager - 1630, // 2798: google.cloud.compute.v1.InstanceGroupManagers.Insert:output_type -> google.cloud.compute.v1.Operation - 1227, // 2799: google.cloud.compute.v1.InstanceGroupManagers.List:output_type -> google.cloud.compute.v1.InstanceGroupManagerList - 1251, // 2800: google.cloud.compute.v1.InstanceGroupManagers.ListErrors:output_type -> google.cloud.compute.v1.InstanceGroupManagersListErrorsResponse - 1252, // 2801: google.cloud.compute.v1.InstanceGroupManagers.ListManagedInstances:output_type -> google.cloud.compute.v1.InstanceGroupManagersListManagedInstancesResponse - 1253, // 2802: google.cloud.compute.v1.InstanceGroupManagers.ListPerInstanceConfigs:output_type -> google.cloud.compute.v1.InstanceGroupManagersListPerInstanceConfigsResp - 1630, // 2803: google.cloud.compute.v1.InstanceGroupManagers.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 2804: google.cloud.compute.v1.InstanceGroupManagers.PatchPerInstanceConfigs:output_type -> google.cloud.compute.v1.Operation - 1630, // 2805: google.cloud.compute.v1.InstanceGroupManagers.RecreateInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 2806: google.cloud.compute.v1.InstanceGroupManagers.Resize:output_type -> google.cloud.compute.v1.Operation - 1630, // 2807: google.cloud.compute.v1.InstanceGroupManagers.ResumeInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 2808: google.cloud.compute.v1.InstanceGroupManagers.SetInstanceTemplate:output_type -> google.cloud.compute.v1.Operation - 1630, // 2809: google.cloud.compute.v1.InstanceGroupManagers.SetTargetPools:output_type -> google.cloud.compute.v1.Operation - 1630, // 2810: google.cloud.compute.v1.InstanceGroupManagers.StartInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 2811: google.cloud.compute.v1.InstanceGroupManagers.StopInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 2812: google.cloud.compute.v1.InstanceGroupManagers.SuspendInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 2813: google.cloud.compute.v1.InstanceGroupManagers.UpdatePerInstanceConfigs:output_type -> google.cloud.compute.v1.Operation - 1630, // 2814: google.cloud.compute.v1.InstanceGroups.AddInstances:output_type -> google.cloud.compute.v1.Operation - 1217, // 2815: google.cloud.compute.v1.InstanceGroups.AggregatedList:output_type -> google.cloud.compute.v1.InstanceGroupAggregatedList - 1630, // 2816: google.cloud.compute.v1.InstanceGroups.Delete:output_type -> google.cloud.compute.v1.Operation - 1216, // 2817: google.cloud.compute.v1.InstanceGroups.Get:output_type -> google.cloud.compute.v1.InstanceGroup - 1630, // 2818: google.cloud.compute.v1.InstanceGroups.Insert:output_type -> google.cloud.compute.v1.Operation - 1218, // 2819: google.cloud.compute.v1.InstanceGroups.List:output_type -> google.cloud.compute.v1.InstanceGroupList - 1265, // 2820: google.cloud.compute.v1.InstanceGroups.ListInstances:output_type -> google.cloud.compute.v1.InstanceGroupsListInstances - 1630, // 2821: google.cloud.compute.v1.InstanceGroups.RemoveInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 2822: google.cloud.compute.v1.InstanceGroups.SetNamedPorts:output_type -> google.cloud.compute.v1.Operation - 2243, // 2823: google.cloud.compute.v1.InstanceGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1280, // 2824: google.cloud.compute.v1.InstanceSettingsService.Get:output_type -> google.cloud.compute.v1.InstanceSettings - 1630, // 2825: google.cloud.compute.v1.InstanceSettingsService.Patch:output_type -> google.cloud.compute.v1.Operation - 1283, // 2826: google.cloud.compute.v1.InstanceTemplates.AggregatedList:output_type -> google.cloud.compute.v1.InstanceTemplateAggregatedList - 1630, // 2827: google.cloud.compute.v1.InstanceTemplates.Delete:output_type -> google.cloud.compute.v1.Operation - 1282, // 2828: google.cloud.compute.v1.InstanceTemplates.Get:output_type -> google.cloud.compute.v1.InstanceTemplate - 1716, // 2829: google.cloud.compute.v1.InstanceTemplates.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2830: google.cloud.compute.v1.InstanceTemplates.Insert:output_type -> google.cloud.compute.v1.Operation - 1284, // 2831: google.cloud.compute.v1.InstanceTemplates.List:output_type -> google.cloud.compute.v1.InstanceTemplateList - 1716, // 2832: google.cloud.compute.v1.InstanceTemplates.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 2833: google.cloud.compute.v1.InstanceTemplates.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2834: google.cloud.compute.v1.Instances.AddAccessConfig:output_type -> google.cloud.compute.v1.Operation - 1630, // 2835: google.cloud.compute.v1.Instances.AddNetworkInterface:output_type -> google.cloud.compute.v1.Operation - 1630, // 2836: google.cloud.compute.v1.Instances.AddResourcePolicies:output_type -> google.cloud.compute.v1.Operation - 1211, // 2837: google.cloud.compute.v1.Instances.AggregatedList:output_type -> google.cloud.compute.v1.InstanceAggregatedList - 1630, // 2838: google.cloud.compute.v1.Instances.AttachDisk:output_type -> google.cloud.compute.v1.Operation - 1630, // 2839: google.cloud.compute.v1.Instances.BulkInsert:output_type -> google.cloud.compute.v1.Operation - 1630, // 2840: google.cloud.compute.v1.Instances.Delete:output_type -> google.cloud.compute.v1.Operation - 1630, // 2841: google.cloud.compute.v1.Instances.DeleteAccessConfig:output_type -> google.cloud.compute.v1.Operation - 1630, // 2842: google.cloud.compute.v1.Instances.DeleteNetworkInterface:output_type -> google.cloud.compute.v1.Operation - 1630, // 2843: google.cloud.compute.v1.Instances.DetachDisk:output_type -> google.cloud.compute.v1.Operation - 1210, // 2844: google.cloud.compute.v1.Instances.Get:output_type -> google.cloud.compute.v1.Instance - 1289, // 2845: google.cloud.compute.v1.Instances.GetEffectiveFirewalls:output_type -> google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponse - 1077, // 2846: google.cloud.compute.v1.Instances.GetGuestAttributes:output_type -> google.cloud.compute.v1.GuestAttributes - 1716, // 2847: google.cloud.compute.v1.Instances.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1918, // 2848: google.cloud.compute.v1.Instances.GetScreenshot:output_type -> google.cloud.compute.v1.Screenshot - 1955, // 2849: google.cloud.compute.v1.Instances.GetSerialPortOutput:output_type -> google.cloud.compute.v1.SerialPortOutput - 2066, // 2850: google.cloud.compute.v1.Instances.GetShieldedInstanceIdentity:output_type -> google.cloud.compute.v1.ShieldedInstanceIdentity - 1630, // 2851: google.cloud.compute.v1.Instances.Insert:output_type -> google.cloud.compute.v1.Operation - 1270, // 2852: google.cloud.compute.v1.Instances.List:output_type -> google.cloud.compute.v1.InstanceList - 1271, // 2853: google.cloud.compute.v1.Instances.ListReferrers:output_type -> google.cloud.compute.v1.InstanceListReferrers - 1630, // 2854: google.cloud.compute.v1.Instances.PerformMaintenance:output_type -> google.cloud.compute.v1.Operation - 1630, // 2855: google.cloud.compute.v1.Instances.RemoveResourcePolicies:output_type -> google.cloud.compute.v1.Operation - 1630, // 2856: google.cloud.compute.v1.Instances.ReportHostAsFaulty:output_type -> google.cloud.compute.v1.Operation - 1630, // 2857: google.cloud.compute.v1.Instances.Reset:output_type -> google.cloud.compute.v1.Operation - 1630, // 2858: google.cloud.compute.v1.Instances.Resume:output_type -> google.cloud.compute.v1.Operation - 1954, // 2859: google.cloud.compute.v1.Instances.SendDiagnosticInterrupt:output_type -> google.cloud.compute.v1.SendDiagnosticInterruptInstanceResponse - 1630, // 2860: google.cloud.compute.v1.Instances.SetDeletionProtection:output_type -> google.cloud.compute.v1.Operation - 1630, // 2861: google.cloud.compute.v1.Instances.SetDiskAutoDelete:output_type -> google.cloud.compute.v1.Operation - 1716, // 2862: google.cloud.compute.v1.Instances.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2863: google.cloud.compute.v1.Instances.SetLabels:output_type -> google.cloud.compute.v1.Operation - 1630, // 2864: google.cloud.compute.v1.Instances.SetMachineResources:output_type -> google.cloud.compute.v1.Operation - 1630, // 2865: google.cloud.compute.v1.Instances.SetMachineType:output_type -> google.cloud.compute.v1.Operation - 1630, // 2866: google.cloud.compute.v1.Instances.SetMetadata:output_type -> google.cloud.compute.v1.Operation - 1630, // 2867: google.cloud.compute.v1.Instances.SetMinCpuPlatform:output_type -> google.cloud.compute.v1.Operation - 1630, // 2868: google.cloud.compute.v1.Instances.SetName:output_type -> google.cloud.compute.v1.Operation - 1630, // 2869: google.cloud.compute.v1.Instances.SetScheduling:output_type -> google.cloud.compute.v1.Operation - 1630, // 2870: google.cloud.compute.v1.Instances.SetSecurityPolicy:output_type -> google.cloud.compute.v1.Operation - 1630, // 2871: google.cloud.compute.v1.Instances.SetServiceAccount:output_type -> google.cloud.compute.v1.Operation - 1630, // 2872: google.cloud.compute.v1.Instances.SetShieldedInstanceIntegrityPolicy:output_type -> google.cloud.compute.v1.Operation - 1630, // 2873: google.cloud.compute.v1.Instances.SetTags:output_type -> google.cloud.compute.v1.Operation - 1630, // 2874: google.cloud.compute.v1.Instances.SimulateMaintenanceEvent:output_type -> google.cloud.compute.v1.Operation - 1630, // 2875: google.cloud.compute.v1.Instances.Start:output_type -> google.cloud.compute.v1.Operation - 1630, // 2876: google.cloud.compute.v1.Instances.StartWithEncryptionKey:output_type -> google.cloud.compute.v1.Operation - 1630, // 2877: google.cloud.compute.v1.Instances.Stop:output_type -> google.cloud.compute.v1.Operation - 1630, // 2878: google.cloud.compute.v1.Instances.Suspend:output_type -> google.cloud.compute.v1.Operation - 2243, // 2879: google.cloud.compute.v1.Instances.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2880: google.cloud.compute.v1.Instances.Update:output_type -> google.cloud.compute.v1.Operation - 1630, // 2881: google.cloud.compute.v1.Instances.UpdateAccessConfig:output_type -> google.cloud.compute.v1.Operation - 1630, // 2882: google.cloud.compute.v1.Instances.UpdateDisplayDevice:output_type -> google.cloud.compute.v1.Operation - 1630, // 2883: google.cloud.compute.v1.Instances.UpdateNetworkInterface:output_type -> google.cloud.compute.v1.Operation - 1630, // 2884: google.cloud.compute.v1.Instances.UpdateShieldedInstanceConfig:output_type -> google.cloud.compute.v1.Operation - 1304, // 2885: google.cloud.compute.v1.InstantSnapshots.AggregatedList:output_type -> google.cloud.compute.v1.InstantSnapshotAggregatedList - 1630, // 2886: google.cloud.compute.v1.InstantSnapshots.Delete:output_type -> google.cloud.compute.v1.Operation - 1303, // 2887: google.cloud.compute.v1.InstantSnapshots.Get:output_type -> google.cloud.compute.v1.InstantSnapshot - 1716, // 2888: google.cloud.compute.v1.InstantSnapshots.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2889: google.cloud.compute.v1.InstantSnapshots.Insert:output_type -> google.cloud.compute.v1.Operation - 1305, // 2890: google.cloud.compute.v1.InstantSnapshots.List:output_type -> google.cloud.compute.v1.InstantSnapshotList - 1716, // 2891: google.cloud.compute.v1.InstantSnapshots.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2892: google.cloud.compute.v1.InstantSnapshots.SetLabels:output_type -> google.cloud.compute.v1.Operation - 2243, // 2893: google.cloud.compute.v1.InstantSnapshots.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2894: google.cloud.compute.v1.InterconnectAttachmentGroups.Delete:output_type -> google.cloud.compute.v1.Operation - 1319, // 2895: google.cloud.compute.v1.InterconnectAttachmentGroups.Get:output_type -> google.cloud.compute.v1.InterconnectAttachmentGroup - 1716, // 2896: google.cloud.compute.v1.InterconnectAttachmentGroups.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1330, // 2897: google.cloud.compute.v1.InterconnectAttachmentGroups.GetOperationalStatus:output_type -> google.cloud.compute.v1.InterconnectAttachmentGroupsGetOperationalStatusResponse - 1630, // 2898: google.cloud.compute.v1.InterconnectAttachmentGroups.Insert:output_type -> google.cloud.compute.v1.Operation - 1331, // 2899: google.cloud.compute.v1.InterconnectAttachmentGroups.List:output_type -> google.cloud.compute.v1.InterconnectAttachmentGroupsListResponse - 1630, // 2900: google.cloud.compute.v1.InterconnectAttachmentGroups.Patch:output_type -> google.cloud.compute.v1.Operation - 1716, // 2901: google.cloud.compute.v1.InterconnectAttachmentGroups.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 2902: google.cloud.compute.v1.InterconnectAttachmentGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1316, // 2903: google.cloud.compute.v1.InterconnectAttachments.AggregatedList:output_type -> google.cloud.compute.v1.InterconnectAttachmentAggregatedList - 1630, // 2904: google.cloud.compute.v1.InterconnectAttachments.Delete:output_type -> google.cloud.compute.v1.Operation - 1315, // 2905: google.cloud.compute.v1.InterconnectAttachments.Get:output_type -> google.cloud.compute.v1.InterconnectAttachment - 1630, // 2906: google.cloud.compute.v1.InterconnectAttachments.Insert:output_type -> google.cloud.compute.v1.Operation - 1338, // 2907: google.cloud.compute.v1.InterconnectAttachments.List:output_type -> google.cloud.compute.v1.InterconnectAttachmentList - 1630, // 2908: google.cloud.compute.v1.InterconnectAttachments.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 2909: google.cloud.compute.v1.InterconnectAttachments.SetLabels:output_type -> google.cloud.compute.v1.Operation - 1630, // 2910: google.cloud.compute.v1.InterconnectGroups.CreateMembers:output_type -> google.cloud.compute.v1.Operation - 1630, // 2911: google.cloud.compute.v1.InterconnectGroups.Delete:output_type -> google.cloud.compute.v1.Operation - 1350, // 2912: google.cloud.compute.v1.InterconnectGroups.Get:output_type -> google.cloud.compute.v1.InterconnectGroup - 1716, // 2913: google.cloud.compute.v1.InterconnectGroups.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1363, // 2914: google.cloud.compute.v1.InterconnectGroups.GetOperationalStatus:output_type -> google.cloud.compute.v1.InterconnectGroupsGetOperationalStatusResponse - 1630, // 2915: google.cloud.compute.v1.InterconnectGroups.Insert:output_type -> google.cloud.compute.v1.Operation - 1364, // 2916: google.cloud.compute.v1.InterconnectGroups.List:output_type -> google.cloud.compute.v1.InterconnectGroupsListResponse - 1630, // 2917: google.cloud.compute.v1.InterconnectGroups.Patch:output_type -> google.cloud.compute.v1.Operation - 1716, // 2918: google.cloud.compute.v1.InterconnectGroups.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 2919: google.cloud.compute.v1.InterconnectGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1368, // 2920: google.cloud.compute.v1.InterconnectLocations.Get:output_type -> google.cloud.compute.v1.InterconnectLocation - 1370, // 2921: google.cloud.compute.v1.InterconnectLocations.List:output_type -> google.cloud.compute.v1.InterconnectLocationList - 1378, // 2922: google.cloud.compute.v1.InterconnectRemoteLocations.Get:output_type -> google.cloud.compute.v1.InterconnectRemoteLocation - 1381, // 2923: google.cloud.compute.v1.InterconnectRemoteLocations.List:output_type -> google.cloud.compute.v1.InterconnectRemoteLocationList - 1630, // 2924: google.cloud.compute.v1.Interconnects.Delete:output_type -> google.cloud.compute.v1.Operation - 1310, // 2925: google.cloud.compute.v1.Interconnects.Get:output_type -> google.cloud.compute.v1.Interconnect - 1383, // 2926: google.cloud.compute.v1.Interconnects.GetDiagnostics:output_type -> google.cloud.compute.v1.InterconnectsGetDiagnosticsResponse - 1384, // 2927: google.cloud.compute.v1.Interconnects.GetMacsecConfig:output_type -> google.cloud.compute.v1.InterconnectsGetMacsecConfigResponse - 1630, // 2928: google.cloud.compute.v1.Interconnects.Insert:output_type -> google.cloud.compute.v1.Operation - 1367, // 2929: google.cloud.compute.v1.Interconnects.List:output_type -> google.cloud.compute.v1.InterconnectList - 1630, // 2930: google.cloud.compute.v1.Interconnects.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 2931: google.cloud.compute.v1.Interconnects.SetLabels:output_type -> google.cloud.compute.v1.Operation - 1388, // 2932: google.cloud.compute.v1.LicenseCodes.Get:output_type -> google.cloud.compute.v1.LicenseCode - 2243, // 2933: google.cloud.compute.v1.LicenseCodes.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2934: google.cloud.compute.v1.Licenses.Delete:output_type -> google.cloud.compute.v1.Operation - 1387, // 2935: google.cloud.compute.v1.Licenses.Get:output_type -> google.cloud.compute.v1.License - 1716, // 2936: google.cloud.compute.v1.Licenses.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2937: google.cloud.compute.v1.Licenses.Insert:output_type -> google.cloud.compute.v1.Operation - 1393, // 2938: google.cloud.compute.v1.Licenses.List:output_type -> google.cloud.compute.v1.LicensesListResponse - 1716, // 2939: google.cloud.compute.v1.Licenses.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 2940: google.cloud.compute.v1.Licenses.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2941: google.cloud.compute.v1.Licenses.Update:output_type -> google.cloud.compute.v1.Operation - 1630, // 2942: google.cloud.compute.v1.MachineImages.Delete:output_type -> google.cloud.compute.v1.Operation - 1532, // 2943: google.cloud.compute.v1.MachineImages.Get:output_type -> google.cloud.compute.v1.MachineImage - 1716, // 2944: google.cloud.compute.v1.MachineImages.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2945: google.cloud.compute.v1.MachineImages.Insert:output_type -> google.cloud.compute.v1.Operation - 1533, // 2946: google.cloud.compute.v1.MachineImages.List:output_type -> google.cloud.compute.v1.MachineImageList - 1716, // 2947: google.cloud.compute.v1.MachineImages.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2948: google.cloud.compute.v1.MachineImages.SetLabels:output_type -> google.cloud.compute.v1.Operation - 2243, // 2949: google.cloud.compute.v1.MachineImages.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1536, // 2950: google.cloud.compute.v1.MachineTypes.AggregatedList:output_type -> google.cloud.compute.v1.MachineTypeAggregatedList - 1535, // 2951: google.cloud.compute.v1.MachineTypes.Get:output_type -> google.cloud.compute.v1.MachineType - 1537, // 2952: google.cloud.compute.v1.MachineTypes.List:output_type -> google.cloud.compute.v1.MachineTypeList - 1560, // 2953: google.cloud.compute.v1.NetworkAttachments.AggregatedList:output_type -> google.cloud.compute.v1.NetworkAttachmentAggregatedList - 1630, // 2954: google.cloud.compute.v1.NetworkAttachments.Delete:output_type -> google.cloud.compute.v1.Operation - 1559, // 2955: google.cloud.compute.v1.NetworkAttachments.Get:output_type -> google.cloud.compute.v1.NetworkAttachment - 1716, // 2956: google.cloud.compute.v1.NetworkAttachments.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 2957: google.cloud.compute.v1.NetworkAttachments.Insert:output_type -> google.cloud.compute.v1.Operation - 1562, // 2958: google.cloud.compute.v1.NetworkAttachments.List:output_type -> google.cloud.compute.v1.NetworkAttachmentList - 1630, // 2959: google.cloud.compute.v1.NetworkAttachments.Patch:output_type -> google.cloud.compute.v1.Operation - 1716, // 2960: google.cloud.compute.v1.NetworkAttachments.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 2961: google.cloud.compute.v1.NetworkAttachments.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1565, // 2962: google.cloud.compute.v1.NetworkEdgeSecurityServices.AggregatedList:output_type -> google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList - 1630, // 2963: google.cloud.compute.v1.NetworkEdgeSecurityServices.Delete:output_type -> google.cloud.compute.v1.Operation - 1564, // 2964: google.cloud.compute.v1.NetworkEdgeSecurityServices.Get:output_type -> google.cloud.compute.v1.NetworkEdgeSecurityService - 1630, // 2965: google.cloud.compute.v1.NetworkEdgeSecurityServices.Insert:output_type -> google.cloud.compute.v1.Operation - 1630, // 2966: google.cloud.compute.v1.NetworkEdgeSecurityServices.Patch:output_type -> google.cloud.compute.v1.Operation - 1569, // 2967: google.cloud.compute.v1.NetworkEndpointGroups.AggregatedList:output_type -> google.cloud.compute.v1.NetworkEndpointGroupAggregatedList - 1630, // 2968: google.cloud.compute.v1.NetworkEndpointGroups.AttachNetworkEndpoints:output_type -> google.cloud.compute.v1.Operation - 1630, // 2969: google.cloud.compute.v1.NetworkEndpointGroups.Delete:output_type -> google.cloud.compute.v1.Operation - 1630, // 2970: google.cloud.compute.v1.NetworkEndpointGroups.DetachNetworkEndpoints:output_type -> google.cloud.compute.v1.Operation - 1568, // 2971: google.cloud.compute.v1.NetworkEndpointGroups.Get:output_type -> google.cloud.compute.v1.NetworkEndpointGroup - 1630, // 2972: google.cloud.compute.v1.NetworkEndpointGroups.Insert:output_type -> google.cloud.compute.v1.Operation - 1573, // 2973: google.cloud.compute.v1.NetworkEndpointGroups.List:output_type -> google.cloud.compute.v1.NetworkEndpointGroupList - 1578, // 2974: google.cloud.compute.v1.NetworkEndpointGroups.ListNetworkEndpoints:output_type -> google.cloud.compute.v1.NetworkEndpointGroupsListNetworkEndpoints - 2243, // 2975: google.cloud.compute.v1.NetworkEndpointGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 2976: google.cloud.compute.v1.NetworkFirewallPolicies.AddAssociation:output_type -> google.cloud.compute.v1.Operation - 1630, // 2977: google.cloud.compute.v1.NetworkFirewallPolicies.AddPacketMirroringRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 2978: google.cloud.compute.v1.NetworkFirewallPolicies.AddRule:output_type -> google.cloud.compute.v1.Operation - 1581, // 2979: google.cloud.compute.v1.NetworkFirewallPolicies.AggregatedList:output_type -> google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList - 1630, // 2980: google.cloud.compute.v1.NetworkFirewallPolicies.CloneRules:output_type -> google.cloud.compute.v1.Operation - 1630, // 2981: google.cloud.compute.v1.NetworkFirewallPolicies.Delete:output_type -> google.cloud.compute.v1.Operation - 855, // 2982: google.cloud.compute.v1.NetworkFirewallPolicies.Get:output_type -> google.cloud.compute.v1.FirewallPolicy - 856, // 2983: google.cloud.compute.v1.NetworkFirewallPolicies.GetAssociation:output_type -> google.cloud.compute.v1.FirewallPolicyAssociation - 1716, // 2984: google.cloud.compute.v1.NetworkFirewallPolicies.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 858, // 2985: google.cloud.compute.v1.NetworkFirewallPolicies.GetPacketMirroringRule:output_type -> google.cloud.compute.v1.FirewallPolicyRule - 858, // 2986: google.cloud.compute.v1.NetworkFirewallPolicies.GetRule:output_type -> google.cloud.compute.v1.FirewallPolicyRule - 1630, // 2987: google.cloud.compute.v1.NetworkFirewallPolicies.Insert:output_type -> google.cloud.compute.v1.Operation - 857, // 2988: google.cloud.compute.v1.NetworkFirewallPolicies.List:output_type -> google.cloud.compute.v1.FirewallPolicyList - 1630, // 2989: google.cloud.compute.v1.NetworkFirewallPolicies.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 2990: google.cloud.compute.v1.NetworkFirewallPolicies.PatchPacketMirroringRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 2991: google.cloud.compute.v1.NetworkFirewallPolicies.PatchRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 2992: google.cloud.compute.v1.NetworkFirewallPolicies.RemoveAssociation:output_type -> google.cloud.compute.v1.Operation - 1630, // 2993: google.cloud.compute.v1.NetworkFirewallPolicies.RemovePacketMirroringRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 2994: google.cloud.compute.v1.NetworkFirewallPolicies.RemoveRule:output_type -> google.cloud.compute.v1.Operation - 1716, // 2995: google.cloud.compute.v1.NetworkFirewallPolicies.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 2996: google.cloud.compute.v1.NetworkFirewallPolicies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1590, // 2997: google.cloud.compute.v1.NetworkProfiles.Get:output_type -> google.cloud.compute.v1.NetworkProfile - 1595, // 2998: google.cloud.compute.v1.NetworkProfiles.List:output_type -> google.cloud.compute.v1.NetworkProfilesListResponse - 1630, // 2999: google.cloud.compute.v1.Networks.AddPeering:output_type -> google.cloud.compute.v1.Operation - 1630, // 3000: google.cloud.compute.v1.Networks.Delete:output_type -> google.cloud.compute.v1.Operation - 1558, // 3001: google.cloud.compute.v1.Networks.Get:output_type -> google.cloud.compute.v1.Network - 1598, // 3002: google.cloud.compute.v1.Networks.GetEffectiveFirewalls:output_type -> google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponse - 1630, // 3003: google.cloud.compute.v1.Networks.Insert:output_type -> google.cloud.compute.v1.Operation - 1583, // 3004: google.cloud.compute.v1.Networks.List:output_type -> google.cloud.compute.v1.NetworkList - 841, // 3005: google.cloud.compute.v1.Networks.ListPeeringRoutes:output_type -> google.cloud.compute.v1.ExchangedPeeringRoutesList - 1630, // 3006: google.cloud.compute.v1.Networks.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3007: google.cloud.compute.v1.Networks.RemovePeering:output_type -> google.cloud.compute.v1.Operation - 1630, // 3008: google.cloud.compute.v1.Networks.RequestRemovePeering:output_type -> google.cloud.compute.v1.Operation - 1630, // 3009: google.cloud.compute.v1.Networks.SwitchToCustomMode:output_type -> google.cloud.compute.v1.Operation - 1630, // 3010: google.cloud.compute.v1.Networks.UpdatePeering:output_type -> google.cloud.compute.v1.Operation - 1630, // 3011: google.cloud.compute.v1.NodeGroups.AddNodes:output_type -> google.cloud.compute.v1.Operation - 1604, // 3012: google.cloud.compute.v1.NodeGroups.AggregatedList:output_type -> google.cloud.compute.v1.NodeGroupAggregatedList - 1630, // 3013: google.cloud.compute.v1.NodeGroups.Delete:output_type -> google.cloud.compute.v1.Operation - 1630, // 3014: google.cloud.compute.v1.NodeGroups.DeleteNodes:output_type -> google.cloud.compute.v1.Operation - 1603, // 3015: google.cloud.compute.v1.NodeGroups.Get:output_type -> google.cloud.compute.v1.NodeGroup - 1716, // 3016: google.cloud.compute.v1.NodeGroups.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3017: google.cloud.compute.v1.NodeGroups.Insert:output_type -> google.cloud.compute.v1.Operation - 1606, // 3018: google.cloud.compute.v1.NodeGroups.List:output_type -> google.cloud.compute.v1.NodeGroupList - 1611, // 3019: google.cloud.compute.v1.NodeGroups.ListNodes:output_type -> google.cloud.compute.v1.NodeGroupsListNodes - 1630, // 3020: google.cloud.compute.v1.NodeGroups.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3021: google.cloud.compute.v1.NodeGroups.PerformMaintenance:output_type -> google.cloud.compute.v1.Operation - 1716, // 3022: google.cloud.compute.v1.NodeGroups.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3023: google.cloud.compute.v1.NodeGroups.SetNodeTemplate:output_type -> google.cloud.compute.v1.Operation - 1630, // 3024: google.cloud.compute.v1.NodeGroups.SimulateMaintenanceEvent:output_type -> google.cloud.compute.v1.Operation - 2243, // 3025: google.cloud.compute.v1.NodeGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1617, // 3026: google.cloud.compute.v1.NodeTemplates.AggregatedList:output_type -> google.cloud.compute.v1.NodeTemplateAggregatedList - 1630, // 3027: google.cloud.compute.v1.NodeTemplates.Delete:output_type -> google.cloud.compute.v1.Operation - 1616, // 3028: google.cloud.compute.v1.NodeTemplates.Get:output_type -> google.cloud.compute.v1.NodeTemplate - 1716, // 3029: google.cloud.compute.v1.NodeTemplates.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3030: google.cloud.compute.v1.NodeTemplates.Insert:output_type -> google.cloud.compute.v1.Operation - 1618, // 3031: google.cloud.compute.v1.NodeTemplates.List:output_type -> google.cloud.compute.v1.NodeTemplateList - 1716, // 3032: google.cloud.compute.v1.NodeTemplates.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 3033: google.cloud.compute.v1.NodeTemplates.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1622, // 3034: google.cloud.compute.v1.NodeTypes.AggregatedList:output_type -> google.cloud.compute.v1.NodeTypeAggregatedList - 1621, // 3035: google.cloud.compute.v1.NodeTypes.Get:output_type -> google.cloud.compute.v1.NodeType - 1623, // 3036: google.cloud.compute.v1.NodeTypes.List:output_type -> google.cloud.compute.v1.NodeTypeList - 1630, // 3037: google.cloud.compute.v1.OrganizationSecurityPolicies.AddAssociation:output_type -> google.cloud.compute.v1.Operation - 1630, // 3038: google.cloud.compute.v1.OrganizationSecurityPolicies.AddRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 3039: google.cloud.compute.v1.OrganizationSecurityPolicies.CopyRules:output_type -> google.cloud.compute.v1.Operation - 1630, // 3040: google.cloud.compute.v1.OrganizationSecurityPolicies.Delete:output_type -> google.cloud.compute.v1.Operation - 1923, // 3041: google.cloud.compute.v1.OrganizationSecurityPolicies.Get:output_type -> google.cloud.compute.v1.SecurityPolicy - 1930, // 3042: google.cloud.compute.v1.OrganizationSecurityPolicies.GetAssociation:output_type -> google.cloud.compute.v1.SecurityPolicyAssociation - 1935, // 3043: google.cloud.compute.v1.OrganizationSecurityPolicies.GetRule:output_type -> google.cloud.compute.v1.SecurityPolicyRule - 1630, // 3044: google.cloud.compute.v1.OrganizationSecurityPolicies.Insert:output_type -> google.cloud.compute.v1.Operation - 1932, // 3045: google.cloud.compute.v1.OrganizationSecurityPolicies.List:output_type -> google.cloud.compute.v1.SecurityPolicyList - 1634, // 3046: google.cloud.compute.v1.OrganizationSecurityPolicies.ListAssociations:output_type -> google.cloud.compute.v1.OrganizationSecurityPoliciesListAssociationsResponse - 1920, // 3047: google.cloud.compute.v1.OrganizationSecurityPolicies.ListPreconfiguredExpressionSets:output_type -> google.cloud.compute.v1.SecurityPoliciesListPreconfiguredExpressionSetsResponse - 1630, // 3048: google.cloud.compute.v1.OrganizationSecurityPolicies.Move:output_type -> google.cloud.compute.v1.Operation - 1630, // 3049: google.cloud.compute.v1.OrganizationSecurityPolicies.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3050: google.cloud.compute.v1.OrganizationSecurityPolicies.PatchRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 3051: google.cloud.compute.v1.OrganizationSecurityPolicies.RemoveAssociation:output_type -> google.cloud.compute.v1.Operation - 1630, // 3052: google.cloud.compute.v1.OrganizationSecurityPolicies.RemoveRule:output_type -> google.cloud.compute.v1.Operation - 1638, // 3053: google.cloud.compute.v1.PacketMirrorings.AggregatedList:output_type -> google.cloud.compute.v1.PacketMirroringAggregatedList - 1630, // 3054: google.cloud.compute.v1.PacketMirrorings.Delete:output_type -> google.cloud.compute.v1.Operation - 1637, // 3055: google.cloud.compute.v1.PacketMirrorings.Get:output_type -> google.cloud.compute.v1.PacketMirroring - 1630, // 3056: google.cloud.compute.v1.PacketMirrorings.Insert:output_type -> google.cloud.compute.v1.Operation - 1641, // 3057: google.cloud.compute.v1.PacketMirrorings.List:output_type -> google.cloud.compute.v1.PacketMirroringList - 1630, // 3058: google.cloud.compute.v1.PacketMirrorings.Patch:output_type -> google.cloud.compute.v1.Operation - 2243, // 3059: google.cloud.compute.v1.PacketMirrorings.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1722, // 3060: google.cloud.compute.v1.PreviewFeatures.Get:output_type -> google.cloud.compute.v1.PreviewFeature - 1723, // 3061: google.cloud.compute.v1.PreviewFeatures.List:output_type -> google.cloud.compute.v1.PreviewFeatureList - 1630, // 3062: google.cloud.compute.v1.PreviewFeatures.Update:output_type -> google.cloud.compute.v1.Operation - 1630, // 3063: google.cloud.compute.v1.Projects.DisableXpnHost:output_type -> google.cloud.compute.v1.Operation - 1630, // 3064: google.cloud.compute.v1.Projects.DisableXpnResource:output_type -> google.cloud.compute.v1.Operation - 1630, // 3065: google.cloud.compute.v1.Projects.EnableXpnHost:output_type -> google.cloud.compute.v1.Operation - 1630, // 3066: google.cloud.compute.v1.Projects.EnableXpnResource:output_type -> google.cloud.compute.v1.Operation - 1729, // 3067: google.cloud.compute.v1.Projects.Get:output_type -> google.cloud.compute.v1.Project - 1729, // 3068: google.cloud.compute.v1.Projects.GetXpnHost:output_type -> google.cloud.compute.v1.Project - 1732, // 3069: google.cloud.compute.v1.Projects.GetXpnResources:output_type -> google.cloud.compute.v1.ProjectsGetXpnResources - 2335, // 3070: google.cloud.compute.v1.Projects.ListXpnHosts:output_type -> google.cloud.compute.v1.XpnHostList - 1630, // 3071: google.cloud.compute.v1.Projects.MoveDisk:output_type -> google.cloud.compute.v1.Operation - 1630, // 3072: google.cloud.compute.v1.Projects.MoveInstance:output_type -> google.cloud.compute.v1.Operation - 1630, // 3073: google.cloud.compute.v1.Projects.SetCloudArmorTier:output_type -> google.cloud.compute.v1.Operation - 1630, // 3074: google.cloud.compute.v1.Projects.SetCommonInstanceMetadata:output_type -> google.cloud.compute.v1.Operation - 1630, // 3075: google.cloud.compute.v1.Projects.SetDefaultNetworkTier:output_type -> google.cloud.compute.v1.Operation - 1630, // 3076: google.cloud.compute.v1.Projects.SetUsageExportBucket:output_type -> google.cloud.compute.v1.Operation - 1630, // 3077: google.cloud.compute.v1.PublicAdvertisedPrefixes.Announce:output_type -> google.cloud.compute.v1.Operation - 1630, // 3078: google.cloud.compute.v1.PublicAdvertisedPrefixes.Delete:output_type -> google.cloud.compute.v1.Operation - 1736, // 3079: google.cloud.compute.v1.PublicAdvertisedPrefixes.Get:output_type -> google.cloud.compute.v1.PublicAdvertisedPrefix - 1630, // 3080: google.cloud.compute.v1.PublicAdvertisedPrefixes.Insert:output_type -> google.cloud.compute.v1.Operation - 1737, // 3081: google.cloud.compute.v1.PublicAdvertisedPrefixes.List:output_type -> google.cloud.compute.v1.PublicAdvertisedPrefixList - 1630, // 3082: google.cloud.compute.v1.PublicAdvertisedPrefixes.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3083: google.cloud.compute.v1.PublicAdvertisedPrefixes.Withdraw:output_type -> google.cloud.compute.v1.Operation - 1740, // 3084: google.cloud.compute.v1.PublicDelegatedPrefixes.AggregatedList:output_type -> google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList - 1630, // 3085: google.cloud.compute.v1.PublicDelegatedPrefixes.Announce:output_type -> google.cloud.compute.v1.Operation - 1630, // 3086: google.cloud.compute.v1.PublicDelegatedPrefixes.Delete:output_type -> google.cloud.compute.v1.Operation - 1739, // 3087: google.cloud.compute.v1.PublicDelegatedPrefixes.Get:output_type -> google.cloud.compute.v1.PublicDelegatedPrefix - 1630, // 3088: google.cloud.compute.v1.PublicDelegatedPrefixes.Insert:output_type -> google.cloud.compute.v1.Operation - 1741, // 3089: google.cloud.compute.v1.PublicDelegatedPrefixes.List:output_type -> google.cloud.compute.v1.PublicDelegatedPrefixList - 1630, // 3090: google.cloud.compute.v1.PublicDelegatedPrefixes.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3091: google.cloud.compute.v1.PublicDelegatedPrefixes.Withdraw:output_type -> google.cloud.compute.v1.Operation - 1630, // 3092: google.cloud.compute.v1.RegionAutoscalers.Delete:output_type -> google.cloud.compute.v1.Operation - 589, // 3093: google.cloud.compute.v1.RegionAutoscalers.Get:output_type -> google.cloud.compute.v1.Autoscaler - 1630, // 3094: google.cloud.compute.v1.RegionAutoscalers.Insert:output_type -> google.cloud.compute.v1.Operation - 1753, // 3095: google.cloud.compute.v1.RegionAutoscalers.List:output_type -> google.cloud.compute.v1.RegionAutoscalerList - 1630, // 3096: google.cloud.compute.v1.RegionAutoscalers.Patch:output_type -> google.cloud.compute.v1.Operation - 2243, // 3097: google.cloud.compute.v1.RegionAutoscalers.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3098: google.cloud.compute.v1.RegionAutoscalers.Update:output_type -> google.cloud.compute.v1.Operation - 1630, // 3099: google.cloud.compute.v1.RegionBackendServices.Delete:output_type -> google.cloud.compute.v1.Operation - 611, // 3100: google.cloud.compute.v1.RegionBackendServices.Get:output_type -> google.cloud.compute.v1.BackendService - 619, // 3101: google.cloud.compute.v1.RegionBackendServices.GetHealth:output_type -> google.cloud.compute.v1.BackendServiceGroupHealth - 1716, // 3102: google.cloud.compute.v1.RegionBackendServices.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3103: google.cloud.compute.v1.RegionBackendServices.Insert:output_type -> google.cloud.compute.v1.Operation - 625, // 3104: google.cloud.compute.v1.RegionBackendServices.List:output_type -> google.cloud.compute.v1.BackendServiceList - 626, // 3105: google.cloud.compute.v1.RegionBackendServices.ListUsable:output_type -> google.cloud.compute.v1.BackendServiceListUsable - 1630, // 3106: google.cloud.compute.v1.RegionBackendServices.Patch:output_type -> google.cloud.compute.v1.Operation - 1716, // 3107: google.cloud.compute.v1.RegionBackendServices.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3108: google.cloud.compute.v1.RegionBackendServices.SetSecurityPolicy:output_type -> google.cloud.compute.v1.Operation - 2243, // 3109: google.cloud.compute.v1.RegionBackendServices.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3110: google.cloud.compute.v1.RegionBackendServices.Update:output_type -> google.cloud.compute.v1.Operation - 672, // 3111: google.cloud.compute.v1.RegionCommitments.AggregatedList:output_type -> google.cloud.compute.v1.CommitmentAggregatedList - 671, // 3112: google.cloud.compute.v1.RegionCommitments.Get:output_type -> google.cloud.compute.v1.Commitment - 1630, // 3113: google.cloud.compute.v1.RegionCommitments.Insert:output_type -> google.cloud.compute.v1.Operation - 673, // 3114: google.cloud.compute.v1.RegionCommitments.List:output_type -> google.cloud.compute.v1.CommitmentList - 1630, // 3115: google.cloud.compute.v1.RegionCommitments.Update:output_type -> google.cloud.compute.v1.Operation - 677, // 3116: google.cloud.compute.v1.RegionCompositeHealthChecks.AggregatedList:output_type -> google.cloud.compute.v1.CompositeHealthCheckAggregatedList - 1630, // 3117: google.cloud.compute.v1.RegionCompositeHealthChecks.Delete:output_type -> google.cloud.compute.v1.Operation - 676, // 3118: google.cloud.compute.v1.RegionCompositeHealthChecks.Get:output_type -> google.cloud.compute.v1.CompositeHealthCheck - 1630, // 3119: google.cloud.compute.v1.RegionCompositeHealthChecks.Insert:output_type -> google.cloud.compute.v1.Operation - 678, // 3120: google.cloud.compute.v1.RegionCompositeHealthChecks.List:output_type -> google.cloud.compute.v1.CompositeHealthCheckList - 1630, // 3121: google.cloud.compute.v1.RegionCompositeHealthChecks.Patch:output_type -> google.cloud.compute.v1.Operation - 2243, // 3122: google.cloud.compute.v1.RegionCompositeHealthChecks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 820, // 3123: google.cloud.compute.v1.RegionDiskTypes.Get:output_type -> google.cloud.compute.v1.DiskType - 1754, // 3124: google.cloud.compute.v1.RegionDiskTypes.List:output_type -> google.cloud.compute.v1.RegionDiskTypeList - 1630, // 3125: google.cloud.compute.v1.RegionDisks.AddResourcePolicies:output_type -> google.cloud.compute.v1.Operation - 1630, // 3126: google.cloud.compute.v1.RegionDisks.BulkInsert:output_type -> google.cloud.compute.v1.Operation - 1630, // 3127: google.cloud.compute.v1.RegionDisks.CreateSnapshot:output_type -> google.cloud.compute.v1.Operation - 1630, // 3128: google.cloud.compute.v1.RegionDisks.Delete:output_type -> google.cloud.compute.v1.Operation - 810, // 3129: google.cloud.compute.v1.RegionDisks.Get:output_type -> google.cloud.compute.v1.Disk - 1716, // 3130: google.cloud.compute.v1.RegionDisks.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3131: google.cloud.compute.v1.RegionDisks.Insert:output_type -> google.cloud.compute.v1.Operation - 815, // 3132: google.cloud.compute.v1.RegionDisks.List:output_type -> google.cloud.compute.v1.DiskList - 1630, // 3133: google.cloud.compute.v1.RegionDisks.RemoveResourcePolicies:output_type -> google.cloud.compute.v1.Operation - 1630, // 3134: google.cloud.compute.v1.RegionDisks.Resize:output_type -> google.cloud.compute.v1.Operation - 1716, // 3135: google.cloud.compute.v1.RegionDisks.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3136: google.cloud.compute.v1.RegionDisks.SetLabels:output_type -> google.cloud.compute.v1.Operation - 1630, // 3137: google.cloud.compute.v1.RegionDisks.StartAsyncReplication:output_type -> google.cloud.compute.v1.Operation - 1630, // 3138: google.cloud.compute.v1.RegionDisks.StopAsyncReplication:output_type -> google.cloud.compute.v1.Operation - 1630, // 3139: google.cloud.compute.v1.RegionDisks.StopGroupAsyncReplication:output_type -> google.cloud.compute.v1.Operation - 2243, // 3140: google.cloud.compute.v1.RegionDisks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3141: google.cloud.compute.v1.RegionDisks.Update:output_type -> google.cloud.compute.v1.Operation - 1086, // 3142: google.cloud.compute.v1.RegionHealthAggregationPolicies.AggregatedList:output_type -> google.cloud.compute.v1.HealthAggregationPolicyAggregatedList - 1630, // 3143: google.cloud.compute.v1.RegionHealthAggregationPolicies.Delete:output_type -> google.cloud.compute.v1.Operation - 1085, // 3144: google.cloud.compute.v1.RegionHealthAggregationPolicies.Get:output_type -> google.cloud.compute.v1.HealthAggregationPolicy - 1630, // 3145: google.cloud.compute.v1.RegionHealthAggregationPolicies.Insert:output_type -> google.cloud.compute.v1.Operation - 1087, // 3146: google.cloud.compute.v1.RegionHealthAggregationPolicies.List:output_type -> google.cloud.compute.v1.HealthAggregationPolicyList - 1630, // 3147: google.cloud.compute.v1.RegionHealthAggregationPolicies.Patch:output_type -> google.cloud.compute.v1.Operation - 2243, // 3148: google.cloud.compute.v1.RegionHealthAggregationPolicies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1093, // 3149: google.cloud.compute.v1.RegionHealthCheckServices.AggregatedList:output_type -> google.cloud.compute.v1.HealthCheckServiceAggregatedList - 1630, // 3150: google.cloud.compute.v1.RegionHealthCheckServices.Delete:output_type -> google.cloud.compute.v1.Operation - 1092, // 3151: google.cloud.compute.v1.RegionHealthCheckServices.Get:output_type -> google.cloud.compute.v1.HealthCheckService - 1630, // 3152: google.cloud.compute.v1.RegionHealthCheckServices.Insert:output_type -> google.cloud.compute.v1.Operation - 1095, // 3153: google.cloud.compute.v1.RegionHealthCheckServices.List:output_type -> google.cloud.compute.v1.HealthCheckServicesList - 1630, // 3154: google.cloud.compute.v1.RegionHealthCheckServices.Patch:output_type -> google.cloud.compute.v1.Operation - 2243, // 3155: google.cloud.compute.v1.RegionHealthCheckServices.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3156: google.cloud.compute.v1.RegionHealthChecks.Delete:output_type -> google.cloud.compute.v1.Operation - 1088, // 3157: google.cloud.compute.v1.RegionHealthChecks.Get:output_type -> google.cloud.compute.v1.HealthCheck - 1630, // 3158: google.cloud.compute.v1.RegionHealthChecks.Insert:output_type -> google.cloud.compute.v1.Operation - 1089, // 3159: google.cloud.compute.v1.RegionHealthChecks.List:output_type -> google.cloud.compute.v1.HealthCheckList - 1630, // 3160: google.cloud.compute.v1.RegionHealthChecks.Patch:output_type -> google.cloud.compute.v1.Operation - 2243, // 3161: google.cloud.compute.v1.RegionHealthChecks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3162: google.cloud.compute.v1.RegionHealthChecks.Update:output_type -> google.cloud.compute.v1.Operation - 1100, // 3163: google.cloud.compute.v1.RegionHealthSources.AggregatedList:output_type -> google.cloud.compute.v1.HealthSourceAggregatedList - 1630, // 3164: google.cloud.compute.v1.RegionHealthSources.Delete:output_type -> google.cloud.compute.v1.Operation - 1099, // 3165: google.cloud.compute.v1.RegionHealthSources.Get:output_type -> google.cloud.compute.v1.HealthSource - 1630, // 3166: google.cloud.compute.v1.RegionHealthSources.Insert:output_type -> google.cloud.compute.v1.Operation - 1101, // 3167: google.cloud.compute.v1.RegionHealthSources.List:output_type -> google.cloud.compute.v1.HealthSourceList - 1630, // 3168: google.cloud.compute.v1.RegionHealthSources.Patch:output_type -> google.cloud.compute.v1.Operation - 2243, // 3169: google.cloud.compute.v1.RegionHealthSources.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3170: google.cloud.compute.v1.RegionInstanceGroupManagers.AbandonInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 3171: google.cloud.compute.v1.RegionInstanceGroupManagers.ApplyUpdatesToInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 3172: google.cloud.compute.v1.RegionInstanceGroupManagers.CreateInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 3173: google.cloud.compute.v1.RegionInstanceGroupManagers.Delete:output_type -> google.cloud.compute.v1.Operation - 1630, // 3174: google.cloud.compute.v1.RegionInstanceGroupManagers.DeleteInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 3175: google.cloud.compute.v1.RegionInstanceGroupManagers.DeletePerInstanceConfigs:output_type -> google.cloud.compute.v1.Operation - 1219, // 3176: google.cloud.compute.v1.RegionInstanceGroupManagers.Get:output_type -> google.cloud.compute.v1.InstanceGroupManager - 1630, // 3177: google.cloud.compute.v1.RegionInstanceGroupManagers.Insert:output_type -> google.cloud.compute.v1.Operation - 1761, // 3178: google.cloud.compute.v1.RegionInstanceGroupManagers.List:output_type -> google.cloud.compute.v1.RegionInstanceGroupManagerList - 1768, // 3179: google.cloud.compute.v1.RegionInstanceGroupManagers.ListErrors:output_type -> google.cloud.compute.v1.RegionInstanceGroupManagersListErrorsResponse - 1770, // 3180: google.cloud.compute.v1.RegionInstanceGroupManagers.ListManagedInstances:output_type -> google.cloud.compute.v1.RegionInstanceGroupManagersListInstancesResponse - 1769, // 3181: google.cloud.compute.v1.RegionInstanceGroupManagers.ListPerInstanceConfigs:output_type -> google.cloud.compute.v1.RegionInstanceGroupManagersListInstanceConfigsResp - 1630, // 3182: google.cloud.compute.v1.RegionInstanceGroupManagers.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3183: google.cloud.compute.v1.RegionInstanceGroupManagers.PatchPerInstanceConfigs:output_type -> google.cloud.compute.v1.Operation - 1630, // 3184: google.cloud.compute.v1.RegionInstanceGroupManagers.RecreateInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 3185: google.cloud.compute.v1.RegionInstanceGroupManagers.Resize:output_type -> google.cloud.compute.v1.Operation - 1630, // 3186: google.cloud.compute.v1.RegionInstanceGroupManagers.ResumeInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 3187: google.cloud.compute.v1.RegionInstanceGroupManagers.SetInstanceTemplate:output_type -> google.cloud.compute.v1.Operation - 1630, // 3188: google.cloud.compute.v1.RegionInstanceGroupManagers.SetTargetPools:output_type -> google.cloud.compute.v1.Operation - 1630, // 3189: google.cloud.compute.v1.RegionInstanceGroupManagers.StartInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 3190: google.cloud.compute.v1.RegionInstanceGroupManagers.StopInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 3191: google.cloud.compute.v1.RegionInstanceGroupManagers.SuspendInstances:output_type -> google.cloud.compute.v1.Operation - 1630, // 3192: google.cloud.compute.v1.RegionInstanceGroupManagers.UpdatePerInstanceConfigs:output_type -> google.cloud.compute.v1.Operation - 1216, // 3193: google.cloud.compute.v1.RegionInstanceGroups.Get:output_type -> google.cloud.compute.v1.InstanceGroup - 1759, // 3194: google.cloud.compute.v1.RegionInstanceGroups.List:output_type -> google.cloud.compute.v1.RegionInstanceGroupList - 1778, // 3195: google.cloud.compute.v1.RegionInstanceGroups.ListInstances:output_type -> google.cloud.compute.v1.RegionInstanceGroupsListInstances - 1630, // 3196: google.cloud.compute.v1.RegionInstanceGroups.SetNamedPorts:output_type -> google.cloud.compute.v1.Operation - 2243, // 3197: google.cloud.compute.v1.RegionInstanceGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3198: google.cloud.compute.v1.RegionInstanceTemplates.Delete:output_type -> google.cloud.compute.v1.Operation - 1282, // 3199: google.cloud.compute.v1.RegionInstanceTemplates.Get:output_type -> google.cloud.compute.v1.InstanceTemplate - 1630, // 3200: google.cloud.compute.v1.RegionInstanceTemplates.Insert:output_type -> google.cloud.compute.v1.Operation - 1284, // 3201: google.cloud.compute.v1.RegionInstanceTemplates.List:output_type -> google.cloud.compute.v1.InstanceTemplateList - 1630, // 3202: google.cloud.compute.v1.RegionInstances.BulkInsert:output_type -> google.cloud.compute.v1.Operation - 1630, // 3203: google.cloud.compute.v1.RegionInstantSnapshots.Delete:output_type -> google.cloud.compute.v1.Operation - 1303, // 3204: google.cloud.compute.v1.RegionInstantSnapshots.Get:output_type -> google.cloud.compute.v1.InstantSnapshot - 1716, // 3205: google.cloud.compute.v1.RegionInstantSnapshots.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3206: google.cloud.compute.v1.RegionInstantSnapshots.Insert:output_type -> google.cloud.compute.v1.Operation - 1305, // 3207: google.cloud.compute.v1.RegionInstantSnapshots.List:output_type -> google.cloud.compute.v1.InstantSnapshotList - 1716, // 3208: google.cloud.compute.v1.RegionInstantSnapshots.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3209: google.cloud.compute.v1.RegionInstantSnapshots.SetLabels:output_type -> google.cloud.compute.v1.Operation - 2243, // 3210: google.cloud.compute.v1.RegionInstantSnapshots.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3211: google.cloud.compute.v1.RegionNetworkEndpointGroups.AttachNetworkEndpoints:output_type -> google.cloud.compute.v1.Operation - 1630, // 3212: google.cloud.compute.v1.RegionNetworkEndpointGroups.Delete:output_type -> google.cloud.compute.v1.Operation - 1630, // 3213: google.cloud.compute.v1.RegionNetworkEndpointGroups.DetachNetworkEndpoints:output_type -> google.cloud.compute.v1.Operation - 1568, // 3214: google.cloud.compute.v1.RegionNetworkEndpointGroups.Get:output_type -> google.cloud.compute.v1.NetworkEndpointGroup - 1630, // 3215: google.cloud.compute.v1.RegionNetworkEndpointGroups.Insert:output_type -> google.cloud.compute.v1.Operation - 1573, // 3216: google.cloud.compute.v1.RegionNetworkEndpointGroups.List:output_type -> google.cloud.compute.v1.NetworkEndpointGroupList - 1578, // 3217: google.cloud.compute.v1.RegionNetworkEndpointGroups.ListNetworkEndpoints:output_type -> google.cloud.compute.v1.NetworkEndpointGroupsListNetworkEndpoints - 1630, // 3218: google.cloud.compute.v1.RegionNetworkFirewallPolicies.AddAssociation:output_type -> google.cloud.compute.v1.Operation - 1630, // 3219: google.cloud.compute.v1.RegionNetworkFirewallPolicies.AddRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 3220: google.cloud.compute.v1.RegionNetworkFirewallPolicies.CloneRules:output_type -> google.cloud.compute.v1.Operation - 1630, // 3221: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Delete:output_type -> google.cloud.compute.v1.Operation - 855, // 3222: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Get:output_type -> google.cloud.compute.v1.FirewallPolicy - 856, // 3223: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetAssociation:output_type -> google.cloud.compute.v1.FirewallPolicyAssociation - 1784, // 3224: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetEffectiveFirewalls:output_type -> google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse - 1716, // 3225: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 858, // 3226: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetRule:output_type -> google.cloud.compute.v1.FirewallPolicyRule - 1630, // 3227: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Insert:output_type -> google.cloud.compute.v1.Operation - 857, // 3228: google.cloud.compute.v1.RegionNetworkFirewallPolicies.List:output_type -> google.cloud.compute.v1.FirewallPolicyList - 1630, // 3229: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3230: google.cloud.compute.v1.RegionNetworkFirewallPolicies.PatchRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 3231: google.cloud.compute.v1.RegionNetworkFirewallPolicies.RemoveAssociation:output_type -> google.cloud.compute.v1.Operation - 1630, // 3232: google.cloud.compute.v1.RegionNetworkFirewallPolicies.RemoveRule:output_type -> google.cloud.compute.v1.Operation - 1716, // 3233: google.cloud.compute.v1.RegionNetworkFirewallPolicies.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 3234: google.cloud.compute.v1.RegionNetworkFirewallPolicies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1626, // 3235: google.cloud.compute.v1.RegionNotificationEndpoints.AggregatedList:output_type -> google.cloud.compute.v1.NotificationEndpointAggregatedList - 1630, // 3236: google.cloud.compute.v1.RegionNotificationEndpoints.Delete:output_type -> google.cloud.compute.v1.Operation - 1625, // 3237: google.cloud.compute.v1.RegionNotificationEndpoints.Get:output_type -> google.cloud.compute.v1.NotificationEndpoint - 1630, // 3238: google.cloud.compute.v1.RegionNotificationEndpoints.Insert:output_type -> google.cloud.compute.v1.Operation - 1628, // 3239: google.cloud.compute.v1.RegionNotificationEndpoints.List:output_type -> google.cloud.compute.v1.NotificationEndpointList - 2243, // 3240: google.cloud.compute.v1.RegionNotificationEndpoints.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 765, // 3241: google.cloud.compute.v1.RegionOperations.Delete:output_type -> google.cloud.compute.v1.DeleteRegionOperationResponse - 1630, // 3242: google.cloud.compute.v1.RegionOperations.Get:output_type -> google.cloud.compute.v1.Operation - 1632, // 3243: google.cloud.compute.v1.RegionOperations.List:output_type -> google.cloud.compute.v1.OperationList - 1630, // 3244: google.cloud.compute.v1.RegionOperations.Wait:output_type -> google.cloud.compute.v1.Operation - 1630, // 3245: google.cloud.compute.v1.RegionSecurityPolicies.AddRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 3246: google.cloud.compute.v1.RegionSecurityPolicies.Delete:output_type -> google.cloud.compute.v1.Operation - 1923, // 3247: google.cloud.compute.v1.RegionSecurityPolicies.Get:output_type -> google.cloud.compute.v1.SecurityPolicy - 1935, // 3248: google.cloud.compute.v1.RegionSecurityPolicies.GetRule:output_type -> google.cloud.compute.v1.SecurityPolicyRule - 1630, // 3249: google.cloud.compute.v1.RegionSecurityPolicies.Insert:output_type -> google.cloud.compute.v1.Operation - 1932, // 3250: google.cloud.compute.v1.RegionSecurityPolicies.List:output_type -> google.cloud.compute.v1.SecurityPolicyList - 1630, // 3251: google.cloud.compute.v1.RegionSecurityPolicies.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3252: google.cloud.compute.v1.RegionSecurityPolicies.PatchRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 3253: google.cloud.compute.v1.RegionSecurityPolicies.RemoveRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 3254: google.cloud.compute.v1.RegionSecurityPolicies.SetLabels:output_type -> google.cloud.compute.v1.Operation - 1630, // 3255: google.cloud.compute.v1.RegionSslCertificates.Delete:output_type -> google.cloud.compute.v1.Operation - 2081, // 3256: google.cloud.compute.v1.RegionSslCertificates.Get:output_type -> google.cloud.compute.v1.SslCertificate - 1630, // 3257: google.cloud.compute.v1.RegionSslCertificates.Insert:output_type -> google.cloud.compute.v1.Operation - 2083, // 3258: google.cloud.compute.v1.RegionSslCertificates.List:output_type -> google.cloud.compute.v1.SslCertificateList - 1630, // 3259: google.cloud.compute.v1.RegionSslPolicies.Delete:output_type -> google.cloud.compute.v1.Operation - 2091, // 3260: google.cloud.compute.v1.RegionSslPolicies.Get:output_type -> google.cloud.compute.v1.SslPolicy - 1630, // 3261: google.cloud.compute.v1.RegionSslPolicies.Insert:output_type -> google.cloud.compute.v1.Operation - 2088, // 3262: google.cloud.compute.v1.RegionSslPolicies.List:output_type -> google.cloud.compute.v1.SslPoliciesList - 2089, // 3263: google.cloud.compute.v1.RegionSslPolicies.ListAvailableFeatures:output_type -> google.cloud.compute.v1.SslPoliciesListAvailableFeaturesResponse - 1630, // 3264: google.cloud.compute.v1.RegionSslPolicies.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3265: google.cloud.compute.v1.RegionTargetHttpProxies.Delete:output_type -> google.cloud.compute.v1.Operation - 2147, // 3266: google.cloud.compute.v1.RegionTargetHttpProxies.Get:output_type -> google.cloud.compute.v1.TargetHttpProxy - 1630, // 3267: google.cloud.compute.v1.RegionTargetHttpProxies.Insert:output_type -> google.cloud.compute.v1.Operation - 2149, // 3268: google.cloud.compute.v1.RegionTargetHttpProxies.List:output_type -> google.cloud.compute.v1.TargetHttpProxyList - 1630, // 3269: google.cloud.compute.v1.RegionTargetHttpProxies.SetUrlMap:output_type -> google.cloud.compute.v1.Operation - 1630, // 3270: google.cloud.compute.v1.RegionTargetHttpsProxies.Delete:output_type -> google.cloud.compute.v1.Operation - 2154, // 3271: google.cloud.compute.v1.RegionTargetHttpsProxies.Get:output_type -> google.cloud.compute.v1.TargetHttpsProxy - 1630, // 3272: google.cloud.compute.v1.RegionTargetHttpsProxies.Insert:output_type -> google.cloud.compute.v1.Operation - 2156, // 3273: google.cloud.compute.v1.RegionTargetHttpsProxies.List:output_type -> google.cloud.compute.v1.TargetHttpsProxyList - 1630, // 3274: google.cloud.compute.v1.RegionTargetHttpsProxies.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3275: google.cloud.compute.v1.RegionTargetHttpsProxies.SetSslCertificates:output_type -> google.cloud.compute.v1.Operation - 1630, // 3276: google.cloud.compute.v1.RegionTargetHttpsProxies.SetUrlMap:output_type -> google.cloud.compute.v1.Operation - 1630, // 3277: google.cloud.compute.v1.RegionTargetTcpProxies.Delete:output_type -> google.cloud.compute.v1.Operation - 2180, // 3278: google.cloud.compute.v1.RegionTargetTcpProxies.Get:output_type -> google.cloud.compute.v1.TargetTcpProxy - 1630, // 3279: google.cloud.compute.v1.RegionTargetTcpProxies.Insert:output_type -> google.cloud.compute.v1.Operation - 2182, // 3280: google.cloud.compute.v1.RegionTargetTcpProxies.List:output_type -> google.cloud.compute.v1.TargetTcpProxyList - 1630, // 3281: google.cloud.compute.v1.RegionUrlMaps.Delete:output_type -> google.cloud.compute.v1.Operation - 2275, // 3282: google.cloud.compute.v1.RegionUrlMaps.Get:output_type -> google.cloud.compute.v1.UrlMap - 1630, // 3283: google.cloud.compute.v1.RegionUrlMaps.Insert:output_type -> google.cloud.compute.v1.Operation - 2276, // 3284: google.cloud.compute.v1.RegionUrlMaps.List:output_type -> google.cloud.compute.v1.UrlMapList - 1630, // 3285: google.cloud.compute.v1.RegionUrlMaps.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3286: google.cloud.compute.v1.RegionUrlMaps.Update:output_type -> google.cloud.compute.v1.Operation - 2284, // 3287: google.cloud.compute.v1.RegionUrlMaps.Validate:output_type -> google.cloud.compute.v1.UrlMapsValidateResponse - 2338, // 3288: google.cloud.compute.v1.RegionZones.List:output_type -> google.cloud.compute.v1.ZoneList - 1751, // 3289: google.cloud.compute.v1.Regions.Get:output_type -> google.cloud.compute.v1.Region - 1781, // 3290: google.cloud.compute.v1.Regions.List:output_type -> google.cloud.compute.v1.RegionList - 1821, // 3291: google.cloud.compute.v1.ReservationBlocks.Get:output_type -> google.cloud.compute.v1.ReservationBlocksGetResponse - 1716, // 3292: google.cloud.compute.v1.ReservationBlocks.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1822, // 3293: google.cloud.compute.v1.ReservationBlocks.List:output_type -> google.cloud.compute.v1.ReservationBlocksListResponse - 1630, // 3294: google.cloud.compute.v1.ReservationBlocks.PerformMaintenance:output_type -> google.cloud.compute.v1.Operation - 1716, // 3295: google.cloud.compute.v1.ReservationBlocks.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 3296: google.cloud.compute.v1.ReservationBlocks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1828, // 3297: google.cloud.compute.v1.ReservationSlots.Get:output_type -> google.cloud.compute.v1.ReservationSlotsGetResponse - 1630, // 3298: google.cloud.compute.v1.ReservationSlots.GetVersion:output_type -> google.cloud.compute.v1.Operation - 1830, // 3299: google.cloud.compute.v1.ReservationSlots.List:output_type -> google.cloud.compute.v1.ReservationSlotsListResponse - 1630, // 3300: google.cloud.compute.v1.ReservationSlots.Update:output_type -> google.cloud.compute.v1.Operation - 1834, // 3301: google.cloud.compute.v1.ReservationSubBlocks.Get:output_type -> google.cloud.compute.v1.ReservationSubBlocksGetResponse - 1716, // 3302: google.cloud.compute.v1.ReservationSubBlocks.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3303: google.cloud.compute.v1.ReservationSubBlocks.GetVersion:output_type -> google.cloud.compute.v1.Operation - 1836, // 3304: google.cloud.compute.v1.ReservationSubBlocks.List:output_type -> google.cloud.compute.v1.ReservationSubBlocksListResponse - 1630, // 3305: google.cloud.compute.v1.ReservationSubBlocks.PerformMaintenance:output_type -> google.cloud.compute.v1.Operation - 1630, // 3306: google.cloud.compute.v1.ReservationSubBlocks.ReportFaulty:output_type -> google.cloud.compute.v1.Operation - 1716, // 3307: google.cloud.compute.v1.ReservationSubBlocks.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 3308: google.cloud.compute.v1.ReservationSubBlocks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1815, // 3309: google.cloud.compute.v1.Reservations.AggregatedList:output_type -> google.cloud.compute.v1.ReservationAggregatedList - 1630, // 3310: google.cloud.compute.v1.Reservations.Delete:output_type -> google.cloud.compute.v1.Operation - 1812, // 3311: google.cloud.compute.v1.Reservations.Get:output_type -> google.cloud.compute.v1.Reservation - 1716, // 3312: google.cloud.compute.v1.Reservations.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3313: google.cloud.compute.v1.Reservations.Insert:output_type -> google.cloud.compute.v1.Operation - 1823, // 3314: google.cloud.compute.v1.Reservations.List:output_type -> google.cloud.compute.v1.ReservationList - 1630, // 3315: google.cloud.compute.v1.Reservations.PerformMaintenance:output_type -> google.cloud.compute.v1.Operation - 1630, // 3316: google.cloud.compute.v1.Reservations.Resize:output_type -> google.cloud.compute.v1.Operation - 1716, // 3317: google.cloud.compute.v1.Reservations.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 3318: google.cloud.compute.v1.Reservations.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3319: google.cloud.compute.v1.Reservations.Update:output_type -> google.cloud.compute.v1.Operation - 1853, // 3320: google.cloud.compute.v1.ResourcePolicies.AggregatedList:output_type -> google.cloud.compute.v1.ResourcePolicyAggregatedList - 1630, // 3321: google.cloud.compute.v1.ResourcePolicies.Delete:output_type -> google.cloud.compute.v1.Operation - 1852, // 3322: google.cloud.compute.v1.ResourcePolicies.Get:output_type -> google.cloud.compute.v1.ResourcePolicy - 1716, // 3323: google.cloud.compute.v1.ResourcePolicies.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3324: google.cloud.compute.v1.ResourcePolicies.Insert:output_type -> google.cloud.compute.v1.Operation - 1860, // 3325: google.cloud.compute.v1.ResourcePolicies.List:output_type -> google.cloud.compute.v1.ResourcePolicyList - 1630, // 3326: google.cloud.compute.v1.ResourcePolicies.Patch:output_type -> google.cloud.compute.v1.Operation - 1716, // 3327: google.cloud.compute.v1.ResourcePolicies.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 3328: google.cloud.compute.v1.ResourcePolicies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1886, // 3329: google.cloud.compute.v1.Routers.AggregatedList:output_type -> google.cloud.compute.v1.RouterAggregatedList - 1630, // 3330: google.cloud.compute.v1.Routers.Delete:output_type -> google.cloud.compute.v1.Operation - 1630, // 3331: google.cloud.compute.v1.Routers.DeleteRoutePolicy:output_type -> google.cloud.compute.v1.Operation - 1884, // 3332: google.cloud.compute.v1.Routers.Get:output_type -> google.cloud.compute.v1.Router - 1557, // 3333: google.cloud.compute.v1.Routers.GetNatIpInfo:output_type -> google.cloud.compute.v1.NatIpInfoResponse - 2295, // 3334: google.cloud.compute.v1.Routers.GetNatMappingInfo:output_type -> google.cloud.compute.v1.VmEndpointNatMappingsList - 1906, // 3335: google.cloud.compute.v1.Routers.GetRoutePolicy:output_type -> google.cloud.compute.v1.RoutersGetRoutePolicyResponse - 1905, // 3336: google.cloud.compute.v1.Routers.GetRouterStatus:output_type -> google.cloud.compute.v1.RouterStatusResponse - 1630, // 3337: google.cloud.compute.v1.Routers.Insert:output_type -> google.cloud.compute.v1.Operation - 1892, // 3338: google.cloud.compute.v1.Routers.List:output_type -> google.cloud.compute.v1.RouterList - 1907, // 3339: google.cloud.compute.v1.Routers.ListBgpRoutes:output_type -> google.cloud.compute.v1.RoutersListBgpRoutes - 1908, // 3340: google.cloud.compute.v1.Routers.ListRoutePolicies:output_type -> google.cloud.compute.v1.RoutersListRoutePolicies - 1630, // 3341: google.cloud.compute.v1.Routers.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3342: google.cloud.compute.v1.Routers.PatchRoutePolicy:output_type -> google.cloud.compute.v1.Operation - 1909, // 3343: google.cloud.compute.v1.Routers.Preview:output_type -> google.cloud.compute.v1.RoutersPreviewResponse - 1630, // 3344: google.cloud.compute.v1.Routers.Update:output_type -> google.cloud.compute.v1.Operation - 1630, // 3345: google.cloud.compute.v1.Routers.UpdateRoutePolicy:output_type -> google.cloud.compute.v1.Operation - 1630, // 3346: google.cloud.compute.v1.Routes.Delete:output_type -> google.cloud.compute.v1.Operation - 1878, // 3347: google.cloud.compute.v1.Routes.Get:output_type -> google.cloud.compute.v1.Route - 1630, // 3348: google.cloud.compute.v1.Routes.Insert:output_type -> google.cloud.compute.v1.Operation - 1880, // 3349: google.cloud.compute.v1.Routes.List:output_type -> google.cloud.compute.v1.RouteList - 2243, // 3350: google.cloud.compute.v1.Routes.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3351: google.cloud.compute.v1.SecurityPolicies.AddRule:output_type -> google.cloud.compute.v1.Operation - 1919, // 3352: google.cloud.compute.v1.SecurityPolicies.AggregatedList:output_type -> google.cloud.compute.v1.SecurityPoliciesAggregatedList - 1630, // 3353: google.cloud.compute.v1.SecurityPolicies.Delete:output_type -> google.cloud.compute.v1.Operation - 1923, // 3354: google.cloud.compute.v1.SecurityPolicies.Get:output_type -> google.cloud.compute.v1.SecurityPolicy - 1935, // 3355: google.cloud.compute.v1.SecurityPolicies.GetRule:output_type -> google.cloud.compute.v1.SecurityPolicyRule - 1630, // 3356: google.cloud.compute.v1.SecurityPolicies.Insert:output_type -> google.cloud.compute.v1.Operation - 1932, // 3357: google.cloud.compute.v1.SecurityPolicies.List:output_type -> google.cloud.compute.v1.SecurityPolicyList - 1920, // 3358: google.cloud.compute.v1.SecurityPolicies.ListPreconfiguredExpressionSets:output_type -> google.cloud.compute.v1.SecurityPoliciesListPreconfiguredExpressionSetsResponse - 1630, // 3359: google.cloud.compute.v1.SecurityPolicies.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3360: google.cloud.compute.v1.SecurityPolicies.PatchRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 3361: google.cloud.compute.v1.SecurityPolicies.RemoveRule:output_type -> google.cloud.compute.v1.Operation - 1630, // 3362: google.cloud.compute.v1.SecurityPolicies.SetLabels:output_type -> google.cloud.compute.v1.Operation - 1959, // 3363: google.cloud.compute.v1.ServiceAttachments.AggregatedList:output_type -> google.cloud.compute.v1.ServiceAttachmentAggregatedList - 1630, // 3364: google.cloud.compute.v1.ServiceAttachments.Delete:output_type -> google.cloud.compute.v1.Operation - 1958, // 3365: google.cloud.compute.v1.ServiceAttachments.Get:output_type -> google.cloud.compute.v1.ServiceAttachment - 1716, // 3366: google.cloud.compute.v1.ServiceAttachments.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3367: google.cloud.compute.v1.ServiceAttachments.Insert:output_type -> google.cloud.compute.v1.Operation - 1962, // 3368: google.cloud.compute.v1.ServiceAttachments.List:output_type -> google.cloud.compute.v1.ServiceAttachmentList - 1630, // 3369: google.cloud.compute.v1.ServiceAttachments.Patch:output_type -> google.cloud.compute.v1.Operation - 1716, // 3370: google.cloud.compute.v1.ServiceAttachments.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 3371: google.cloud.compute.v1.ServiceAttachments.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 2075, // 3372: google.cloud.compute.v1.SnapshotSettingsService.Get:output_type -> google.cloud.compute.v1.SnapshotSettings - 1630, // 3373: google.cloud.compute.v1.SnapshotSettingsService.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3374: google.cloud.compute.v1.Snapshots.Delete:output_type -> google.cloud.compute.v1.Operation - 2072, // 3375: google.cloud.compute.v1.Snapshots.Get:output_type -> google.cloud.compute.v1.Snapshot - 1716, // 3376: google.cloud.compute.v1.Snapshots.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3377: google.cloud.compute.v1.Snapshots.Insert:output_type -> google.cloud.compute.v1.Operation - 2073, // 3378: google.cloud.compute.v1.Snapshots.List:output_type -> google.cloud.compute.v1.SnapshotList - 1716, // 3379: google.cloud.compute.v1.Snapshots.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3380: google.cloud.compute.v1.Snapshots.SetLabels:output_type -> google.cloud.compute.v1.Operation - 2243, // 3381: google.cloud.compute.v1.Snapshots.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 2082, // 3382: google.cloud.compute.v1.SslCertificates.AggregatedList:output_type -> google.cloud.compute.v1.SslCertificateAggregatedList - 1630, // 3383: google.cloud.compute.v1.SslCertificates.Delete:output_type -> google.cloud.compute.v1.Operation - 2081, // 3384: google.cloud.compute.v1.SslCertificates.Get:output_type -> google.cloud.compute.v1.SslCertificate - 1630, // 3385: google.cloud.compute.v1.SslCertificates.Insert:output_type -> google.cloud.compute.v1.Operation - 2083, // 3386: google.cloud.compute.v1.SslCertificates.List:output_type -> google.cloud.compute.v1.SslCertificateList - 2087, // 3387: google.cloud.compute.v1.SslPolicies.AggregatedList:output_type -> google.cloud.compute.v1.SslPoliciesAggregatedList - 1630, // 3388: google.cloud.compute.v1.SslPolicies.Delete:output_type -> google.cloud.compute.v1.Operation - 2091, // 3389: google.cloud.compute.v1.SslPolicies.Get:output_type -> google.cloud.compute.v1.SslPolicy - 1630, // 3390: google.cloud.compute.v1.SslPolicies.Insert:output_type -> google.cloud.compute.v1.Operation - 2088, // 3391: google.cloud.compute.v1.SslPolicies.List:output_type -> google.cloud.compute.v1.SslPoliciesList - 2089, // 3392: google.cloud.compute.v1.SslPolicies.ListAvailableFeatures:output_type -> google.cloud.compute.v1.SslPoliciesListAvailableFeaturesResponse - 1630, // 3393: google.cloud.compute.v1.SslPolicies.Patch:output_type -> google.cloud.compute.v1.Operation - 2120, // 3394: google.cloud.compute.v1.StoragePoolTypes.AggregatedList:output_type -> google.cloud.compute.v1.StoragePoolTypeAggregatedList - 2119, // 3395: google.cloud.compute.v1.StoragePoolTypes.Get:output_type -> google.cloud.compute.v1.StoragePoolType - 2121, // 3396: google.cloud.compute.v1.StoragePoolTypes.List:output_type -> google.cloud.compute.v1.StoragePoolTypeList - 2112, // 3397: google.cloud.compute.v1.StoragePools.AggregatedList:output_type -> google.cloud.compute.v1.StoragePoolAggregatedList - 1630, // 3398: google.cloud.compute.v1.StoragePools.Delete:output_type -> google.cloud.compute.v1.Operation - 2111, // 3399: google.cloud.compute.v1.StoragePools.Get:output_type -> google.cloud.compute.v1.StoragePool - 1716, // 3400: google.cloud.compute.v1.StoragePools.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3401: google.cloud.compute.v1.StoragePools.Insert:output_type -> google.cloud.compute.v1.Operation - 2115, // 3402: google.cloud.compute.v1.StoragePools.List:output_type -> google.cloud.compute.v1.StoragePoolList - 2116, // 3403: google.cloud.compute.v1.StoragePools.ListDisks:output_type -> google.cloud.compute.v1.StoragePoolListDisks - 1716, // 3404: google.cloud.compute.v1.StoragePools.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 2243, // 3405: google.cloud.compute.v1.StoragePools.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3406: google.cloud.compute.v1.StoragePools.Update:output_type -> google.cloud.compute.v1.Operation - 2125, // 3407: google.cloud.compute.v1.Subnetworks.AggregatedList:output_type -> google.cloud.compute.v1.SubnetworkAggregatedList - 1630, // 3408: google.cloud.compute.v1.Subnetworks.Delete:output_type -> google.cloud.compute.v1.Operation - 1630, // 3409: google.cloud.compute.v1.Subnetworks.ExpandIpCidrRange:output_type -> google.cloud.compute.v1.Operation - 2124, // 3410: google.cloud.compute.v1.Subnetworks.Get:output_type -> google.cloud.compute.v1.Subnetwork - 1716, // 3411: google.cloud.compute.v1.Subnetworks.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3412: google.cloud.compute.v1.Subnetworks.Insert:output_type -> google.cloud.compute.v1.Operation - 2126, // 3413: google.cloud.compute.v1.Subnetworks.List:output_type -> google.cloud.compute.v1.SubnetworkList - 2288, // 3414: google.cloud.compute.v1.Subnetworks.ListUsable:output_type -> google.cloud.compute.v1.UsableSubnetworksAggregatedList - 1630, // 3415: google.cloud.compute.v1.Subnetworks.Patch:output_type -> google.cloud.compute.v1.Operation - 1716, // 3416: google.cloud.compute.v1.Subnetworks.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy - 1630, // 3417: google.cloud.compute.v1.Subnetworks.SetPrivateIpGoogleAccess:output_type -> google.cloud.compute.v1.Operation - 2243, // 3418: google.cloud.compute.v1.Subnetworks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3419: google.cloud.compute.v1.TargetGrpcProxies.Delete:output_type -> google.cloud.compute.v1.Operation - 2144, // 3420: google.cloud.compute.v1.TargetGrpcProxies.Get:output_type -> google.cloud.compute.v1.TargetGrpcProxy - 1630, // 3421: google.cloud.compute.v1.TargetGrpcProxies.Insert:output_type -> google.cloud.compute.v1.Operation - 2145, // 3422: google.cloud.compute.v1.TargetGrpcProxies.List:output_type -> google.cloud.compute.v1.TargetGrpcProxyList - 1630, // 3423: google.cloud.compute.v1.TargetGrpcProxies.Patch:output_type -> google.cloud.compute.v1.Operation - 2148, // 3424: google.cloud.compute.v1.TargetHttpProxies.AggregatedList:output_type -> google.cloud.compute.v1.TargetHttpProxyAggregatedList - 1630, // 3425: google.cloud.compute.v1.TargetHttpProxies.Delete:output_type -> google.cloud.compute.v1.Operation - 2147, // 3426: google.cloud.compute.v1.TargetHttpProxies.Get:output_type -> google.cloud.compute.v1.TargetHttpProxy - 1630, // 3427: google.cloud.compute.v1.TargetHttpProxies.Insert:output_type -> google.cloud.compute.v1.Operation - 2149, // 3428: google.cloud.compute.v1.TargetHttpProxies.List:output_type -> google.cloud.compute.v1.TargetHttpProxyList - 1630, // 3429: google.cloud.compute.v1.TargetHttpProxies.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3430: google.cloud.compute.v1.TargetHttpProxies.SetUrlMap:output_type -> google.cloud.compute.v1.Operation - 2155, // 3431: google.cloud.compute.v1.TargetHttpsProxies.AggregatedList:output_type -> google.cloud.compute.v1.TargetHttpsProxyAggregatedList - 1630, // 3432: google.cloud.compute.v1.TargetHttpsProxies.Delete:output_type -> google.cloud.compute.v1.Operation - 2154, // 3433: google.cloud.compute.v1.TargetHttpsProxies.Get:output_type -> google.cloud.compute.v1.TargetHttpsProxy - 1630, // 3434: google.cloud.compute.v1.TargetHttpsProxies.Insert:output_type -> google.cloud.compute.v1.Operation - 2156, // 3435: google.cloud.compute.v1.TargetHttpsProxies.List:output_type -> google.cloud.compute.v1.TargetHttpsProxyList - 1630, // 3436: google.cloud.compute.v1.TargetHttpsProxies.Patch:output_type -> google.cloud.compute.v1.Operation - 1630, // 3437: google.cloud.compute.v1.TargetHttpsProxies.SetCertificateMap:output_type -> google.cloud.compute.v1.Operation - 1630, // 3438: google.cloud.compute.v1.TargetHttpsProxies.SetQuicOverride:output_type -> google.cloud.compute.v1.Operation - 1630, // 3439: google.cloud.compute.v1.TargetHttpsProxies.SetSslCertificates:output_type -> google.cloud.compute.v1.Operation - 1630, // 3440: google.cloud.compute.v1.TargetHttpsProxies.SetSslPolicy:output_type -> google.cloud.compute.v1.Operation - 1630, // 3441: google.cloud.compute.v1.TargetHttpsProxies.SetUrlMap:output_type -> google.cloud.compute.v1.Operation - 2158, // 3442: google.cloud.compute.v1.TargetInstances.AggregatedList:output_type -> google.cloud.compute.v1.TargetInstanceAggregatedList - 1630, // 3443: google.cloud.compute.v1.TargetInstances.Delete:output_type -> google.cloud.compute.v1.Operation - 2157, // 3444: google.cloud.compute.v1.TargetInstances.Get:output_type -> google.cloud.compute.v1.TargetInstance - 1630, // 3445: google.cloud.compute.v1.TargetInstances.Insert:output_type -> google.cloud.compute.v1.Operation - 2159, // 3446: google.cloud.compute.v1.TargetInstances.List:output_type -> google.cloud.compute.v1.TargetInstanceList - 1630, // 3447: google.cloud.compute.v1.TargetInstances.SetSecurityPolicy:output_type -> google.cloud.compute.v1.Operation - 2243, // 3448: google.cloud.compute.v1.TargetInstances.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3449: google.cloud.compute.v1.TargetPools.AddHealthCheck:output_type -> google.cloud.compute.v1.Operation - 1630, // 3450: google.cloud.compute.v1.TargetPools.AddInstance:output_type -> google.cloud.compute.v1.Operation - 2162, // 3451: google.cloud.compute.v1.TargetPools.AggregatedList:output_type -> google.cloud.compute.v1.TargetPoolAggregatedList - 1630, // 3452: google.cloud.compute.v1.TargetPools.Delete:output_type -> google.cloud.compute.v1.Operation - 2161, // 3453: google.cloud.compute.v1.TargetPools.Get:output_type -> google.cloud.compute.v1.TargetPool - 2163, // 3454: google.cloud.compute.v1.TargetPools.GetHealth:output_type -> google.cloud.compute.v1.TargetPoolInstanceHealth - 1630, // 3455: google.cloud.compute.v1.TargetPools.Insert:output_type -> google.cloud.compute.v1.Operation - 2164, // 3456: google.cloud.compute.v1.TargetPools.List:output_type -> google.cloud.compute.v1.TargetPoolList - 1630, // 3457: google.cloud.compute.v1.TargetPools.RemoveHealthCheck:output_type -> google.cloud.compute.v1.Operation - 1630, // 3458: google.cloud.compute.v1.TargetPools.RemoveInstance:output_type -> google.cloud.compute.v1.Operation - 1630, // 3459: google.cloud.compute.v1.TargetPools.SetBackup:output_type -> google.cloud.compute.v1.Operation - 1630, // 3460: google.cloud.compute.v1.TargetPools.SetSecurityPolicy:output_type -> google.cloud.compute.v1.Operation - 2243, // 3461: google.cloud.compute.v1.TargetPools.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3462: google.cloud.compute.v1.TargetSslProxies.Delete:output_type -> google.cloud.compute.v1.Operation - 2175, // 3463: google.cloud.compute.v1.TargetSslProxies.Get:output_type -> google.cloud.compute.v1.TargetSslProxy - 1630, // 3464: google.cloud.compute.v1.TargetSslProxies.Insert:output_type -> google.cloud.compute.v1.Operation - 2176, // 3465: google.cloud.compute.v1.TargetSslProxies.List:output_type -> google.cloud.compute.v1.TargetSslProxyList - 1630, // 3466: google.cloud.compute.v1.TargetSslProxies.SetBackendService:output_type -> google.cloud.compute.v1.Operation - 1630, // 3467: google.cloud.compute.v1.TargetSslProxies.SetCertificateMap:output_type -> google.cloud.compute.v1.Operation - 1630, // 3468: google.cloud.compute.v1.TargetSslProxies.SetProxyHeader:output_type -> google.cloud.compute.v1.Operation - 1630, // 3469: google.cloud.compute.v1.TargetSslProxies.SetSslCertificates:output_type -> google.cloud.compute.v1.Operation - 1630, // 3470: google.cloud.compute.v1.TargetSslProxies.SetSslPolicy:output_type -> google.cloud.compute.v1.Operation - 2243, // 3471: google.cloud.compute.v1.TargetSslProxies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 2181, // 3472: google.cloud.compute.v1.TargetTcpProxies.AggregatedList:output_type -> google.cloud.compute.v1.TargetTcpProxyAggregatedList - 1630, // 3473: google.cloud.compute.v1.TargetTcpProxies.Delete:output_type -> google.cloud.compute.v1.Operation - 2180, // 3474: google.cloud.compute.v1.TargetTcpProxies.Get:output_type -> google.cloud.compute.v1.TargetTcpProxy - 1630, // 3475: google.cloud.compute.v1.TargetTcpProxies.Insert:output_type -> google.cloud.compute.v1.Operation - 2182, // 3476: google.cloud.compute.v1.TargetTcpProxies.List:output_type -> google.cloud.compute.v1.TargetTcpProxyList - 1630, // 3477: google.cloud.compute.v1.TargetTcpProxies.SetBackendService:output_type -> google.cloud.compute.v1.Operation - 1630, // 3478: google.cloud.compute.v1.TargetTcpProxies.SetProxyHeader:output_type -> google.cloud.compute.v1.Operation - 2243, // 3479: google.cloud.compute.v1.TargetTcpProxies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 2184, // 3480: google.cloud.compute.v1.TargetVpnGateways.AggregatedList:output_type -> google.cloud.compute.v1.TargetVpnGatewayAggregatedList - 1630, // 3481: google.cloud.compute.v1.TargetVpnGateways.Delete:output_type -> google.cloud.compute.v1.Operation - 2183, // 3482: google.cloud.compute.v1.TargetVpnGateways.Get:output_type -> google.cloud.compute.v1.TargetVpnGateway - 1630, // 3483: google.cloud.compute.v1.TargetVpnGateways.Insert:output_type -> google.cloud.compute.v1.Operation - 2185, // 3484: google.cloud.compute.v1.TargetVpnGateways.List:output_type -> google.cloud.compute.v1.TargetVpnGatewayList - 1630, // 3485: google.cloud.compute.v1.TargetVpnGateways.SetLabels:output_type -> google.cloud.compute.v1.Operation - 2281, // 3486: google.cloud.compute.v1.UrlMaps.AggregatedList:output_type -> google.cloud.compute.v1.UrlMapsAggregatedList - 1630, // 3487: google.cloud.compute.v1.UrlMaps.Delete:output_type -> google.cloud.compute.v1.Operation - 2275, // 3488: google.cloud.compute.v1.UrlMaps.Get:output_type -> google.cloud.compute.v1.UrlMap - 1630, // 3489: google.cloud.compute.v1.UrlMaps.Insert:output_type -> google.cloud.compute.v1.Operation - 1630, // 3490: google.cloud.compute.v1.UrlMaps.InvalidateCache:output_type -> google.cloud.compute.v1.Operation - 2276, // 3491: google.cloud.compute.v1.UrlMaps.List:output_type -> google.cloud.compute.v1.UrlMapList - 1630, // 3492: google.cloud.compute.v1.UrlMaps.Patch:output_type -> google.cloud.compute.v1.Operation - 2243, // 3493: google.cloud.compute.v1.UrlMaps.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 1630, // 3494: google.cloud.compute.v1.UrlMaps.Update:output_type -> google.cloud.compute.v1.Operation - 2284, // 3495: google.cloud.compute.v1.UrlMaps.Validate:output_type -> google.cloud.compute.v1.UrlMapsValidateResponse - 2297, // 3496: google.cloud.compute.v1.VpnGateways.AggregatedList:output_type -> google.cloud.compute.v1.VpnGatewayAggregatedList - 1630, // 3497: google.cloud.compute.v1.VpnGateways.Delete:output_type -> google.cloud.compute.v1.Operation - 2296, // 3498: google.cloud.compute.v1.VpnGateways.Get:output_type -> google.cloud.compute.v1.VpnGateway - 2305, // 3499: google.cloud.compute.v1.VpnGateways.GetStatus:output_type -> google.cloud.compute.v1.VpnGatewaysGetStatusResponse - 1630, // 3500: google.cloud.compute.v1.VpnGateways.Insert:output_type -> google.cloud.compute.v1.Operation - 2298, // 3501: google.cloud.compute.v1.VpnGateways.List:output_type -> google.cloud.compute.v1.VpnGatewayList - 1630, // 3502: google.cloud.compute.v1.VpnGateways.SetLabels:output_type -> google.cloud.compute.v1.Operation - 2243, // 3503: google.cloud.compute.v1.VpnGateways.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse - 2308, // 3504: google.cloud.compute.v1.VpnTunnels.AggregatedList:output_type -> google.cloud.compute.v1.VpnTunnelAggregatedList - 1630, // 3505: google.cloud.compute.v1.VpnTunnels.Delete:output_type -> google.cloud.compute.v1.Operation - 2307, // 3506: google.cloud.compute.v1.VpnTunnels.Get:output_type -> google.cloud.compute.v1.VpnTunnel - 1630, // 3507: google.cloud.compute.v1.VpnTunnels.Insert:output_type -> google.cloud.compute.v1.Operation - 2310, // 3508: google.cloud.compute.v1.VpnTunnels.List:output_type -> google.cloud.compute.v1.VpnTunnelList - 1630, // 3509: google.cloud.compute.v1.VpnTunnels.SetLabels:output_type -> google.cloud.compute.v1.Operation - 1630, // 3510: google.cloud.compute.v1.WireGroups.Delete:output_type -> google.cloud.compute.v1.Operation - 2325, // 3511: google.cloud.compute.v1.WireGroups.Get:output_type -> google.cloud.compute.v1.WireGroup - 1630, // 3512: google.cloud.compute.v1.WireGroups.Insert:output_type -> google.cloud.compute.v1.Operation - 2328, // 3513: google.cloud.compute.v1.WireGroups.List:output_type -> google.cloud.compute.v1.WireGroupList - 1630, // 3514: google.cloud.compute.v1.WireGroups.Patch:output_type -> google.cloud.compute.v1.Operation - 800, // 3515: google.cloud.compute.v1.ZoneOperations.Delete:output_type -> google.cloud.compute.v1.DeleteZoneOperationResponse - 1630, // 3516: google.cloud.compute.v1.ZoneOperations.Get:output_type -> google.cloud.compute.v1.Operation - 1632, // 3517: google.cloud.compute.v1.ZoneOperations.List:output_type -> google.cloud.compute.v1.OperationList - 1630, // 3518: google.cloud.compute.v1.ZoneOperations.Wait:output_type -> google.cloud.compute.v1.Operation - 2337, // 3519: google.cloud.compute.v1.Zones.Get:output_type -> google.cloud.compute.v1.Zone - 2338, // 3520: google.cloud.compute.v1.Zones.List:output_type -> google.cloud.compute.v1.ZoneList - 2609, // [2609:3521] is the sub-list for method output_type - 1697, // [1697:2609] is the sub-list for method input_type - 1697, // [1697:1697] is the sub-list for extension type_name - 1697, // [1697:1697] is the sub-list for extension extendee - 0, // [0:1697] is the sub-list for field type_name + 1298, // 0: google.cloud.compute.v1.AbandonInstancesInstanceGroupManagerRequest.instance_group_managers_abandon_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersAbandonInstancesRequest + 1833, // 1: google.cloud.compute.v1.AbandonInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_abandon_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersAbandonInstancesRequest + 488, // 2: google.cloud.compute.v1.AcceleratorTopologiesInfo.accelerator_topology_infos:type_name -> google.cloud.compute.v1.AcceleratorTopologiesInfoAcceleratorTopologyInfo + 489, // 3: google.cloud.compute.v1.AcceleratorTopologiesInfoAcceleratorTopologyInfo.info_per_topology_states:type_name -> google.cloud.compute.v1.AcceleratorTopologiesInfoAcceleratorTopologyInfoInfoPerTopologyState + 830, // 4: google.cloud.compute.v1.AcceleratorType.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus + 2435, // 5: google.cloud.compute.v1.AcceleratorTypeAggregatedList.items:type_name -> google.cloud.compute.v1.AcceleratorTypeAggregatedList.ItemsEntry + 2413, // 6: google.cloud.compute.v1.AcceleratorTypeAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 490, // 7: google.cloud.compute.v1.AcceleratorTypeList.items:type_name -> google.cloud.compute.v1.AcceleratorType + 2413, // 8: google.cloud.compute.v1.AcceleratorTypeList.warning:type_name -> google.cloud.compute.v1.Warning + 490, // 9: google.cloud.compute.v1.AcceleratorTypesScopedList.accelerator_types:type_name -> google.cloud.compute.v1.AcceleratorType + 2413, // 10: google.cloud.compute.v1.AcceleratorTypesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 495, // 11: google.cloud.compute.v1.AddAccessConfigInstanceRequest.access_config_resource:type_name -> google.cloud.compute.v1.AccessConfig + 884, // 12: google.cloud.compute.v1.AddAssociationFirewallPolicyRequest.firewall_policy_association_resource:type_name -> google.cloud.compute.v1.FirewallPolicyAssociation + 884, // 13: google.cloud.compute.v1.AddAssociationNetworkFirewallPolicyRequest.firewall_policy_association_resource:type_name -> google.cloud.compute.v1.FirewallPolicyAssociation + 2000, // 14: google.cloud.compute.v1.AddAssociationOrganizationSecurityPolicyRequest.security_policy_association_resource:type_name -> google.cloud.compute.v1.SecurityPolicyAssociation + 884, // 15: google.cloud.compute.v1.AddAssociationRegionNetworkFirewallPolicyRequest.firewall_policy_association_resource:type_name -> google.cloud.compute.v1.FirewallPolicyAssociation + 2244, // 16: google.cloud.compute.v1.AddHealthCheckTargetPoolRequest.target_pools_add_health_check_request_resource:type_name -> google.cloud.compute.v1.TargetPoolsAddHealthCheckRequest + 2245, // 17: google.cloud.compute.v1.AddInstanceTargetPoolRequest.target_pools_add_instance_request_resource:type_name -> google.cloud.compute.v1.TargetPoolsAddInstanceRequest + 1316, // 18: google.cloud.compute.v1.AddInstancesInstanceGroupRequest.instance_groups_add_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupsAddInstancesRequest + 1647, // 19: google.cloud.compute.v1.AddNetworkInterfaceInstanceRequest.network_interface_resource:type_name -> google.cloud.compute.v1.NetworkInterface + 1674, // 20: google.cloud.compute.v1.AddNodesNodeGroupRequest.node_groups_add_nodes_request_resource:type_name -> google.cloud.compute.v1.NodeGroupsAddNodesRequest + 886, // 21: google.cloud.compute.v1.AddPacketMirroringRuleNetworkFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 1662, // 22: google.cloud.compute.v1.AddPeeringNetworkRequest.networks_add_peering_request_resource:type_name -> google.cloud.compute.v1.NetworksAddPeeringRequest + 852, // 23: google.cloud.compute.v1.AddResourcePoliciesDiskRequest.disks_add_resource_policies_request_resource:type_name -> google.cloud.compute.v1.DisksAddResourcePoliciesRequest + 1339, // 24: google.cloud.compute.v1.AddResourcePoliciesInstanceRequest.instances_add_resource_policies_request_resource:type_name -> google.cloud.compute.v1.InstancesAddResourcePoliciesRequest + 1823, // 25: google.cloud.compute.v1.AddResourcePoliciesRegionDiskRequest.region_disks_add_resource_policies_request_resource:type_name -> google.cloud.compute.v1.RegionDisksAddResourcePoliciesRequest + 886, // 26: google.cloud.compute.v1.AddRuleFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 886, // 27: google.cloud.compute.v1.AddRuleNetworkFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 2005, // 28: google.cloud.compute.v1.AddRuleOrganizationSecurityPolicyRequest.security_policy_rule_resource:type_name -> google.cloud.compute.v1.SecurityPolicyRule + 886, // 29: google.cloud.compute.v1.AddRuleRegionNetworkFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 2005, // 30: google.cloud.compute.v1.AddRuleRegionSecurityPolicyRequest.security_policy_rule_resource:type_name -> google.cloud.compute.v1.SecurityPolicyRule + 2005, // 31: google.cloud.compute.v1.AddRuleSecurityPolicyRequest.security_policy_rule_resource:type_name -> google.cloud.compute.v1.SecurityPolicyRule + 2144, // 32: google.cloud.compute.v1.AddSignedUrlKeyBackendBucketRequest.signed_url_key_resource:type_name -> google.cloud.compute.v1.SignedUrlKey + 2144, // 33: google.cloud.compute.v1.AddSignedUrlKeyBackendServiceRequest.signed_url_key_resource:type_name -> google.cloud.compute.v1.SignedUrlKey + 2436, // 34: google.cloud.compute.v1.Address.labels:type_name -> google.cloud.compute.v1.Address.LabelsEntry + 2437, // 35: google.cloud.compute.v1.AddressAggregatedList.items:type_name -> google.cloud.compute.v1.AddressAggregatedList.ItemsEntry + 2413, // 36: google.cloud.compute.v1.AddressAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 519, // 37: google.cloud.compute.v1.AddressList.items:type_name -> google.cloud.compute.v1.Address + 2413, // 38: google.cloud.compute.v1.AddressList.warning:type_name -> google.cloud.compute.v1.Warning + 519, // 39: google.cloud.compute.v1.AddressesScopedList.addresses:type_name -> google.cloud.compute.v1.Address + 2413, // 40: google.cloud.compute.v1.AddressesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 578, // 41: google.cloud.compute.v1.AllocationAggregateReservation.in_use_resources:type_name -> google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfo + 578, // 42: google.cloud.compute.v1.AllocationAggregateReservation.reserved_resources:type_name -> google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfo + 579, // 43: google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfo.accelerator:type_name -> google.cloud.compute.v1.AllocationAggregateReservationReservedResourceInfoAccelerator + 582, // 44: google.cloud.compute.v1.AllocationResourceStatus.health_info:type_name -> google.cloud.compute.v1.AllocationResourceStatusHealthInfo + 1118, // 45: google.cloud.compute.v1.AllocationResourceStatus.reservation_maintenance:type_name -> google.cloud.compute.v1.GroupMaintenanceInfo + 583, // 46: google.cloud.compute.v1.AllocationResourceStatus.specific_sku_allocation:type_name -> google.cloud.compute.v1.AllocationResourceStatusSpecificSKUAllocation + 2438, // 47: google.cloud.compute.v1.AllocationResourceStatusSpecificSKUAllocation.utilizations:type_name -> google.cloud.compute.v1.AllocationResourceStatusSpecificSKUAllocation.UtilizationsEntry + 486, // 48: google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties.guest_accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig + 584, // 49: google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties.local_ssds:type_name -> google.cloud.compute.v1.AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk + 585, // 50: google.cloud.compute.v1.AllocationSpecificSKUReservation.instance_properties:type_name -> google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties + 1299, // 51: google.cloud.compute.v1.ApplyUpdatesToInstancesInstanceGroupManagerRequest.instance_group_managers_apply_updates_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersApplyUpdatesRequest + 1834, // 52: google.cloud.compute.v1.ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_apply_updates_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersApplyUpdatesRequest + 596, // 53: google.cloud.compute.v1.AttachDiskInstanceRequest.attached_disk_resource:type_name -> google.cloud.compute.v1.AttachedDisk + 1113, // 54: google.cloud.compute.v1.AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest.global_network_endpoint_groups_attach_endpoints_request_resource:type_name -> google.cloud.compute.v1.GlobalNetworkEndpointGroupsAttachEndpointsRequest + 1640, // 55: google.cloud.compute.v1.AttachNetworkEndpointsNetworkEndpointGroupRequest.network_endpoint_groups_attach_endpoints_request_resource:type_name -> google.cloud.compute.v1.NetworkEndpointGroupsAttachEndpointsRequest + 1851, // 56: google.cloud.compute.v1.AttachNetworkEndpointsRegionNetworkEndpointGroupRequest.region_network_endpoint_groups_attach_endpoints_request_resource:type_name -> google.cloud.compute.v1.RegionNetworkEndpointGroupsAttachEndpointsRequest + 716, // 57: google.cloud.compute.v1.AttachedDisk.disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 1122, // 58: google.cloud.compute.v1.AttachedDisk.guest_os_features:type_name -> google.cloud.compute.v1.GuestOsFeature + 597, // 59: google.cloud.compute.v1.AttachedDisk.initialize_params:type_name -> google.cloud.compute.v1.AttachedDiskInitializeParams + 1169, // 60: google.cloud.compute.v1.AttachedDisk.shielded_instance_initial_state:type_name -> google.cloud.compute.v1.InitialStateConfig + 2439, // 61: google.cloud.compute.v1.AttachedDiskInitializeParams.labels:type_name -> google.cloud.compute.v1.AttachedDiskInitializeParams.LabelsEntry + 2440, // 62: google.cloud.compute.v1.AttachedDiskInitializeParams.resource_manager_tags:type_name -> google.cloud.compute.v1.AttachedDiskInitializeParams.ResourceManagerTagsEntry + 716, // 63: google.cloud.compute.v1.AttachedDiskInitializeParams.source_image_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 716, // 64: google.cloud.compute.v1.AttachedDiskInitializeParams.source_snapshot_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 599, // 65: google.cloud.compute.v1.AuditConfig.audit_log_configs:type_name -> google.cloud.compute.v1.AuditLogConfig + 605, // 66: google.cloud.compute.v1.Autoscaler.autoscaling_policy:type_name -> google.cloud.compute.v1.AutoscalingPolicy + 2441, // 67: google.cloud.compute.v1.Autoscaler.scaling_schedule_status:type_name -> google.cloud.compute.v1.Autoscaler.ScalingScheduleStatusEntry + 603, // 68: google.cloud.compute.v1.Autoscaler.status_details:type_name -> google.cloud.compute.v1.AutoscalerStatusDetails + 2442, // 69: google.cloud.compute.v1.AutoscalerAggregatedList.items:type_name -> google.cloud.compute.v1.AutoscalerAggregatedList.ItemsEntry + 2413, // 70: google.cloud.compute.v1.AutoscalerAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 600, // 71: google.cloud.compute.v1.AutoscalerList.items:type_name -> google.cloud.compute.v1.Autoscaler + 2413, // 72: google.cloud.compute.v1.AutoscalerList.warning:type_name -> google.cloud.compute.v1.Warning + 600, // 73: google.cloud.compute.v1.AutoscalersScopedList.autoscalers:type_name -> google.cloud.compute.v1.Autoscaler + 2413, // 74: google.cloud.compute.v1.AutoscalersScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 606, // 75: google.cloud.compute.v1.AutoscalingPolicy.cpu_utilization:type_name -> google.cloud.compute.v1.AutoscalingPolicyCpuUtilization + 607, // 76: google.cloud.compute.v1.AutoscalingPolicy.custom_metric_utilizations:type_name -> google.cloud.compute.v1.AutoscalingPolicyCustomMetricUtilization + 608, // 77: google.cloud.compute.v1.AutoscalingPolicy.load_balancing_utilization:type_name -> google.cloud.compute.v1.AutoscalingPolicyLoadBalancingUtilization + 609, // 78: google.cloud.compute.v1.AutoscalingPolicy.scale_in_control:type_name -> google.cloud.compute.v1.AutoscalingPolicyScaleInControl + 2443, // 79: google.cloud.compute.v1.AutoscalingPolicy.scaling_schedules:type_name -> google.cloud.compute.v1.AutoscalingPolicy.ScalingSchedulesEntry + 890, // 80: google.cloud.compute.v1.AutoscalingPolicyScaleInControl.max_scaled_in_replicas:type_name -> google.cloud.compute.v1.FixedOrPercent + 624, // 81: google.cloud.compute.v1.Backend.custom_metrics:type_name -> google.cloud.compute.v1.BackendCustomMetric + 612, // 82: google.cloud.compute.v1.Backend.orchestration_info:type_name -> google.cloud.compute.v1.BackendBackendOrchestrationInfo + 615, // 83: google.cloud.compute.v1.BackendBucket.cdn_policy:type_name -> google.cloud.compute.v1.BackendBucketCdnPolicy + 621, // 84: google.cloud.compute.v1.BackendBucket.params:type_name -> google.cloud.compute.v1.BackendBucketParams + 622, // 85: google.cloud.compute.v1.BackendBucket.used_by:type_name -> google.cloud.compute.v1.BackendBucketUsedBy + 2444, // 86: google.cloud.compute.v1.BackendBucketAggregatedList.items:type_name -> google.cloud.compute.v1.BackendBucketAggregatedList.ItemsEntry + 2413, // 87: google.cloud.compute.v1.BackendBucketAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 616, // 88: google.cloud.compute.v1.BackendBucketCdnPolicy.bypass_cache_on_request_headers:type_name -> google.cloud.compute.v1.BackendBucketCdnPolicyBypassCacheOnRequestHeader + 617, // 89: google.cloud.compute.v1.BackendBucketCdnPolicy.cache_key_policy:type_name -> google.cloud.compute.v1.BackendBucketCdnPolicyCacheKeyPolicy + 618, // 90: google.cloud.compute.v1.BackendBucketCdnPolicy.negative_caching_policy:type_name -> google.cloud.compute.v1.BackendBucketCdnPolicyNegativeCachingPolicy + 613, // 91: google.cloud.compute.v1.BackendBucketList.items:type_name -> google.cloud.compute.v1.BackendBucket + 2413, // 92: google.cloud.compute.v1.BackendBucketList.warning:type_name -> google.cloud.compute.v1.Warning + 613, // 93: google.cloud.compute.v1.BackendBucketListUsable.items:type_name -> google.cloud.compute.v1.BackendBucket + 2413, // 94: google.cloud.compute.v1.BackendBucketListUsable.warning:type_name -> google.cloud.compute.v1.Warning + 2445, // 95: google.cloud.compute.v1.BackendBucketParams.resource_manager_tags:type_name -> google.cloud.compute.v1.BackendBucketParams.ResourceManagerTagsEntry + 613, // 96: google.cloud.compute.v1.BackendBucketsScopedList.backend_buckets:type_name -> google.cloud.compute.v1.BackendBucket + 2413, // 97: google.cloud.compute.v1.BackendBucketsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 611, // 98: google.cloud.compute.v1.BackendService.backends:type_name -> google.cloud.compute.v1.Backend + 627, // 99: google.cloud.compute.v1.BackendService.cdn_policy:type_name -> google.cloud.compute.v1.BackendServiceCdnPolicy + 685, // 100: google.cloud.compute.v1.BackendService.circuit_breakers:type_name -> google.cloud.compute.v1.CircuitBreakers + 702, // 101: google.cloud.compute.v1.BackendService.connection_draining:type_name -> google.cloud.compute.v1.ConnectionDraining + 630, // 102: google.cloud.compute.v1.BackendService.connection_tracking_policy:type_name -> google.cloud.compute.v1.BackendServiceConnectionTrackingPolicy + 703, // 103: google.cloud.compute.v1.BackendService.consistent_hash:type_name -> google.cloud.compute.v1.ConsistentHashLoadBalancerSettings + 631, // 104: google.cloud.compute.v1.BackendService.custom_metrics:type_name -> google.cloud.compute.v1.BackendServiceCustomMetric + 632, // 105: google.cloud.compute.v1.BackendService.failover_policy:type_name -> google.cloud.compute.v1.BackendServiceFailoverPolicy + 634, // 106: google.cloud.compute.v1.BackendService.ha_policy:type_name -> google.cloud.compute.v1.BackendServiceHAPolicy + 638, // 107: google.cloud.compute.v1.BackendService.iap:type_name -> google.cloud.compute.v1.BackendServiceIAP + 641, // 108: google.cloud.compute.v1.BackendService.locality_lb_policies:type_name -> google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfig + 644, // 109: google.cloud.compute.v1.BackendService.log_config:type_name -> google.cloud.compute.v1.BackendServiceLogConfig + 861, // 110: google.cloud.compute.v1.BackendService.max_stream_duration:type_name -> google.cloud.compute.v1.Duration + 2446, // 111: google.cloud.compute.v1.BackendService.metadatas:type_name -> google.cloud.compute.v1.BackendService.MetadatasEntry + 645, // 112: google.cloud.compute.v1.BackendService.network_pass_through_lb_traffic_policy:type_name -> google.cloud.compute.v1.BackendServiceNetworkPassThroughLbTrafficPolicy + 647, // 113: google.cloud.compute.v1.BackendService.orchestration_info:type_name -> google.cloud.compute.v1.BackendServiceOrchestrationInfo + 1700, // 114: google.cloud.compute.v1.BackendService.outlier_detection:type_name -> google.cloud.compute.v1.OutlierDetection + 648, // 115: google.cloud.compute.v1.BackendService.params:type_name -> google.cloud.compute.v1.BackendServiceParams + 2022, // 116: google.cloud.compute.v1.BackendService.security_settings:type_name -> google.cloud.compute.v1.SecuritySettings + 637, // 117: google.cloud.compute.v1.BackendService.strong_session_affinity_cookie:type_name -> google.cloud.compute.v1.BackendServiceHttpCookie + 2216, // 118: google.cloud.compute.v1.BackendService.subsetting:type_name -> google.cloud.compute.v1.Subsetting + 650, // 119: google.cloud.compute.v1.BackendService.tls_settings:type_name -> google.cloud.compute.v1.BackendServiceTlsSettings + 652, // 120: google.cloud.compute.v1.BackendService.used_by:type_name -> google.cloud.compute.v1.BackendServiceUsedBy + 2447, // 121: google.cloud.compute.v1.BackendServiceAggregatedList.items:type_name -> google.cloud.compute.v1.BackendServiceAggregatedList.ItemsEntry + 2413, // 122: google.cloud.compute.v1.BackendServiceAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 628, // 123: google.cloud.compute.v1.BackendServiceCdnPolicy.bypass_cache_on_request_headers:type_name -> google.cloud.compute.v1.BackendServiceCdnPolicyBypassCacheOnRequestHeader + 674, // 124: google.cloud.compute.v1.BackendServiceCdnPolicy.cache_key_policy:type_name -> google.cloud.compute.v1.CacheKeyPolicy + 629, // 125: google.cloud.compute.v1.BackendServiceCdnPolicy.negative_caching_policy:type_name -> google.cloud.compute.v1.BackendServiceCdnPolicyNegativeCachingPolicy + 2448, // 126: google.cloud.compute.v1.BackendServiceGroupHealth.annotations:type_name -> google.cloud.compute.v1.BackendServiceGroupHealth.AnnotationsEntry + 1148, // 127: google.cloud.compute.v1.BackendServiceGroupHealth.health_status:type_name -> google.cloud.compute.v1.HealthStatus + 635, // 128: google.cloud.compute.v1.BackendServiceHAPolicy.leader:type_name -> google.cloud.compute.v1.BackendServiceHAPolicyLeader + 636, // 129: google.cloud.compute.v1.BackendServiceHAPolicyLeader.network_endpoint:type_name -> google.cloud.compute.v1.BackendServiceHAPolicyLeaderNetworkEndpoint + 861, // 130: google.cloud.compute.v1.BackendServiceHttpCookie.ttl:type_name -> google.cloud.compute.v1.Duration + 625, // 131: google.cloud.compute.v1.BackendServiceList.items:type_name -> google.cloud.compute.v1.BackendService + 2413, // 132: google.cloud.compute.v1.BackendServiceList.warning:type_name -> google.cloud.compute.v1.Warning + 625, // 133: google.cloud.compute.v1.BackendServiceListUsable.items:type_name -> google.cloud.compute.v1.BackendService + 2413, // 134: google.cloud.compute.v1.BackendServiceListUsable.warning:type_name -> google.cloud.compute.v1.Warning + 642, // 135: google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfig.custom_policy:type_name -> google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy + 643, // 136: google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfig.policy:type_name -> google.cloud.compute.v1.BackendServiceLocalityLoadBalancingPolicyConfigPolicy + 646, // 137: google.cloud.compute.v1.BackendServiceNetworkPassThroughLbTrafficPolicy.zonal_affinity:type_name -> google.cloud.compute.v1.BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity + 2449, // 138: google.cloud.compute.v1.BackendServiceParams.resource_manager_tags:type_name -> google.cloud.compute.v1.BackendServiceParams.ResourceManagerTagsEntry + 651, // 139: google.cloud.compute.v1.BackendServiceTlsSettings.subject_alt_names:type_name -> google.cloud.compute.v1.BackendServiceTlsSettingsSubjectAltName + 625, // 140: google.cloud.compute.v1.BackendServicesScopedList.backend_services:type_name -> google.cloud.compute.v1.BackendService + 2413, // 141: google.cloud.compute.v1.BackendServicesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 656, // 142: google.cloud.compute.v1.BfdStatus.control_packet_counts:type_name -> google.cloud.compute.v1.BfdStatusPacketCounts + 1701, // 143: google.cloud.compute.v1.BfdStatus.control_packet_intervals:type_name -> google.cloud.compute.v1.PacketIntervals + 654, // 144: google.cloud.compute.v1.BfdStatus.rx_packet:type_name -> google.cloud.compute.v1.BfdPacket + 654, // 145: google.cloud.compute.v1.BfdStatus.tx_packet:type_name -> google.cloud.compute.v1.BfdPacket + 658, // 146: google.cloud.compute.v1.BgpRoute.as_paths:type_name -> google.cloud.compute.v1.BgpRouteAsPath + 659, // 147: google.cloud.compute.v1.BgpRoute.destination:type_name -> google.cloud.compute.v1.BgpRouteNetworkLayerReachabilityInformation + 871, // 148: google.cloud.compute.v1.Binding.condition:type_name -> google.cloud.compute.v1.Expr + 662, // 149: google.cloud.compute.v1.BulkInsertDiskRequest.bulk_insert_disk_resource_resource:type_name -> google.cloud.compute.v1.BulkInsertDiskResource + 1358, // 150: google.cloud.compute.v1.BulkInsertDiskResource.instant_snapshot_group_parameters:type_name -> google.cloud.compute.v1.InstantSnapshotGroupParameters + 2148, // 151: google.cloud.compute.v1.BulkInsertDiskResource.snapshot_group_parameters:type_name -> google.cloud.compute.v1.SnapshotGroupParameters + 664, // 152: google.cloud.compute.v1.BulkInsertInstanceRequest.bulk_insert_instance_resource_resource:type_name -> google.cloud.compute.v1.BulkInsertInstanceResource + 1265, // 153: google.cloud.compute.v1.BulkInsertInstanceResource.instance_flexibility_policy:type_name -> google.cloud.compute.v1.InstanceFlexibilityPolicy + 1329, // 154: google.cloud.compute.v1.BulkInsertInstanceResource.instance_properties:type_name -> google.cloud.compute.v1.InstanceProperties + 1593, // 155: google.cloud.compute.v1.BulkInsertInstanceResource.location_policy:type_name -> google.cloud.compute.v1.LocationPolicy + 2450, // 156: google.cloud.compute.v1.BulkInsertInstanceResource.per_instance_properties:type_name -> google.cloud.compute.v1.BulkInsertInstanceResource.PerInstancePropertiesEntry + 662, // 157: google.cloud.compute.v1.BulkInsertRegionDiskRequest.bulk_insert_disk_resource_resource:type_name -> google.cloud.compute.v1.BulkInsertDiskResource + 664, // 158: google.cloud.compute.v1.BulkInsertRegionInstanceRequest.bulk_insert_instance_resource_resource:type_name -> google.cloud.compute.v1.BulkInsertInstanceResource + 671, // 159: google.cloud.compute.v1.BulkSetLabelsDiskRequest.bulk_zone_set_labels_request_resource:type_name -> google.cloud.compute.v1.BulkZoneSetLabelsRequest + 2451, // 160: google.cloud.compute.v1.BulkSetLabelsRequest.labels:type_name -> google.cloud.compute.v1.BulkSetLabelsRequest.LabelsEntry + 670, // 161: google.cloud.compute.v1.BulkZoneSetLabelsRequest.requests:type_name -> google.cloud.compute.v1.BulkSetLabelsRequest + 676, // 162: google.cloud.compute.v1.CachePolicy.cache_key_policy:type_name -> google.cloud.compute.v1.CachePolicyCacheKeyPolicy + 861, // 163: google.cloud.compute.v1.CachePolicy.client_ttl:type_name -> google.cloud.compute.v1.Duration + 861, // 164: google.cloud.compute.v1.CachePolicy.default_ttl:type_name -> google.cloud.compute.v1.Duration + 861, // 165: google.cloud.compute.v1.CachePolicy.max_ttl:type_name -> google.cloud.compute.v1.Duration + 677, // 166: google.cloud.compute.v1.CachePolicy.negative_caching_policy:type_name -> google.cloud.compute.v1.CachePolicyNegativeCachingPolicy + 861, // 167: google.cloud.compute.v1.CachePolicy.serve_while_stale:type_name -> google.cloud.compute.v1.Duration + 861, // 168: google.cloud.compute.v1.CachePolicyNegativeCachingPolicy.ttl:type_name -> google.cloud.compute.v1.Duration + 2452, // 169: google.cloud.compute.v1.CalendarModeAdviceRequest.future_resources_specs:type_name -> google.cloud.compute.v1.CalendarModeAdviceRequest.FutureResourcesSpecsEntry + 681, // 170: google.cloud.compute.v1.CalendarModeAdviceResponse.recommendations:type_name -> google.cloud.compute.v1.CalendarModeRecommendation + 678, // 171: google.cloud.compute.v1.CalendarModeAdviceRpcRequest.calendar_mode_advice_request_resource:type_name -> google.cloud.compute.v1.CalendarModeAdviceRequest + 2453, // 172: google.cloud.compute.v1.CalendarModeRecommendation.recommendations_per_spec:type_name -> google.cloud.compute.v1.CalendarModeRecommendation.RecommendationsPerSpecEntry + 1447, // 173: google.cloud.compute.v1.Commitment.license_resource:type_name -> google.cloud.compute.v1.LicenseResourceCommitment + 692, // 174: google.cloud.compute.v1.Commitment.params:type_name -> google.cloud.compute.v1.CommitmentParams + 1882, // 175: google.cloud.compute.v1.Commitment.reservations:type_name -> google.cloud.compute.v1.Reservation + 693, // 176: google.cloud.compute.v1.Commitment.resource_status:type_name -> google.cloud.compute.v1.CommitmentResourceStatus + 1919, // 177: google.cloud.compute.v1.Commitment.resources:type_name -> google.cloud.compute.v1.ResourceCommitment + 2454, // 178: google.cloud.compute.v1.CommitmentAggregatedList.items:type_name -> google.cloud.compute.v1.CommitmentAggregatedList.ItemsEntry + 2413, // 179: google.cloud.compute.v1.CommitmentAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 689, // 180: google.cloud.compute.v1.CommitmentList.items:type_name -> google.cloud.compute.v1.Commitment + 2413, // 181: google.cloud.compute.v1.CommitmentList.warning:type_name -> google.cloud.compute.v1.Warning + 2455, // 182: google.cloud.compute.v1.CommitmentParams.resource_manager_tags:type_name -> google.cloud.compute.v1.CommitmentParams.ResourceManagerTagsEntry + 689, // 183: google.cloud.compute.v1.CommitmentsScopedList.commitments:type_name -> google.cloud.compute.v1.Commitment + 2413, // 184: google.cloud.compute.v1.CommitmentsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2456, // 185: google.cloud.compute.v1.CompositeHealthCheckAggregatedList.items:type_name -> google.cloud.compute.v1.CompositeHealthCheckAggregatedList.ItemsEntry + 2413, // 186: google.cloud.compute.v1.CompositeHealthCheckAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 699, // 187: google.cloud.compute.v1.CompositeHealthCheckHealth.health_sources:type_name -> google.cloud.compute.v1.CompositeHealthChecksGetHealthResponseHealthSourceHealth + 695, // 188: google.cloud.compute.v1.CompositeHealthCheckList.items:type_name -> google.cloud.compute.v1.CompositeHealthCheck + 2413, // 189: google.cloud.compute.v1.CompositeHealthCheckList.warning:type_name -> google.cloud.compute.v1.Warning + 695, // 190: google.cloud.compute.v1.CompositeHealthChecksScopedList.composite_health_checks:type_name -> google.cloud.compute.v1.CompositeHealthCheck + 2413, // 191: google.cloud.compute.v1.CompositeHealthChecksScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 704, // 192: google.cloud.compute.v1.ConsistentHashLoadBalancerSettings.http_cookie:type_name -> google.cloud.compute.v1.ConsistentHashLoadBalancerSettingsHttpCookie + 861, // 193: google.cloud.compute.v1.ConsistentHashLoadBalancerSettingsHttpCookie.ttl:type_name -> google.cloud.compute.v1.Duration + 1300, // 194: google.cloud.compute.v1.CreateInstancesInstanceGroupManagerRequest.instance_group_managers_create_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersCreateInstancesRequest + 1835, // 195: google.cloud.compute.v1.CreateInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_create_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersCreateInstancesRequest + 1418, // 196: google.cloud.compute.v1.CreateMembersInterconnectGroupRequest.interconnect_groups_create_members_request_resource:type_name -> google.cloud.compute.v1.InterconnectGroupsCreateMembersRequest + 2147, // 197: google.cloud.compute.v1.CreateSnapshotDiskRequest.snapshot_resource:type_name -> google.cloud.compute.v1.Snapshot + 2147, // 198: google.cloud.compute.v1.CreateSnapshotRegionDiskRequest.snapshot_resource:type_name -> google.cloud.compute.v1.Snapshot + 712, // 199: google.cloud.compute.v1.CrossSiteNetworkList.items:type_name -> google.cloud.compute.v1.CrossSiteNetwork + 2413, // 200: google.cloud.compute.v1.CrossSiteNetworkList.warning:type_name -> google.cloud.compute.v1.Warning + 715, // 201: google.cloud.compute.v1.CustomErrorResponsePolicy.error_response_rules:type_name -> google.cloud.compute.v1.CustomErrorResponsePolicyCustomErrorResponseRule + 716, // 202: google.cloud.compute.v1.CustomerEncryptionKeyProtectedDisk.disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 1301, // 203: google.cloud.compute.v1.DeleteInstancesInstanceGroupManagerRequest.instance_group_managers_delete_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersDeleteInstancesRequest + 1836, // 204: google.cloud.compute.v1.DeleteInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_delete_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersDeleteInstancesRequest + 1675, // 205: google.cloud.compute.v1.DeleteNodesNodeGroupRequest.node_groups_delete_nodes_request_resource:type_name -> google.cloud.compute.v1.NodeGroupsDeleteNodesRequest + 1302, // 206: google.cloud.compute.v1.DeletePerInstanceConfigsInstanceGroupManagerRequest.instance_group_managers_delete_per_instance_configs_req_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersDeletePerInstanceConfigsReq + 1828, // 207: google.cloud.compute.v1.DeletePerInstanceConfigsRegionInstanceGroupManagerRequest.region_instance_group_manager_delete_instance_config_req_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagerDeleteInstanceConfigReq + 830, // 208: google.cloud.compute.v1.DeprecateImageRequest.deprecation_status_resource:type_name -> google.cloud.compute.v1.DeprecationStatus + 1114, // 209: google.cloud.compute.v1.DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest.global_network_endpoint_groups_detach_endpoints_request_resource:type_name -> google.cloud.compute.v1.GlobalNetworkEndpointGroupsDetachEndpointsRequest + 1641, // 210: google.cloud.compute.v1.DetachNetworkEndpointsNetworkEndpointGroupRequest.network_endpoint_groups_detach_endpoints_request_resource:type_name -> google.cloud.compute.v1.NetworkEndpointGroupsDetachEndpointsRequest + 1852, // 211: google.cloud.compute.v1.DetachNetworkEndpointsRegionNetworkEndpointGroupRequest.region_network_endpoint_groups_detach_endpoints_request_resource:type_name -> google.cloud.compute.v1.RegionNetworkEndpointGroupsDetachEndpointsRequest + 1797, // 212: google.cloud.compute.v1.DisableXpnResourceProjectRequest.projects_disable_xpn_resource_request_resource:type_name -> google.cloud.compute.v1.ProjectsDisableXpnResourceRequest + 839, // 213: google.cloud.compute.v1.Disk.async_primary_disk:type_name -> google.cloud.compute.v1.DiskAsyncReplication + 2457, // 214: google.cloud.compute.v1.Disk.async_secondary_disks:type_name -> google.cloud.compute.v1.Disk.AsyncSecondaryDisksEntry + 716, // 215: google.cloud.compute.v1.Disk.disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 1122, // 216: google.cloud.compute.v1.Disk.guest_os_features:type_name -> google.cloud.compute.v1.GuestOsFeature + 2458, // 217: google.cloud.compute.v1.Disk.labels:type_name -> google.cloud.compute.v1.Disk.LabelsEntry + 844, // 218: google.cloud.compute.v1.Disk.params:type_name -> google.cloud.compute.v1.DiskParams + 845, // 219: google.cloud.compute.v1.Disk.resource_status:type_name -> google.cloud.compute.v1.DiskResourceStatus + 716, // 220: google.cloud.compute.v1.Disk.source_image_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 716, // 221: google.cloud.compute.v1.Disk.source_snapshot_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 2459, // 222: google.cloud.compute.v1.DiskAggregatedList.items:type_name -> google.cloud.compute.v1.DiskAggregatedList.ItemsEntry + 2413, // 223: google.cloud.compute.v1.DiskAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 839, // 224: google.cloud.compute.v1.DiskAsyncReplicationList.async_replication_disk:type_name -> google.cloud.compute.v1.DiskAsyncReplication + 837, // 225: google.cloud.compute.v1.DiskList.items:type_name -> google.cloud.compute.v1.Disk + 2413, // 226: google.cloud.compute.v1.DiskList.warning:type_name -> google.cloud.compute.v1.Warning + 2460, // 227: google.cloud.compute.v1.DiskParams.resource_manager_tags:type_name -> google.cloud.compute.v1.DiskParams.ResourceManagerTagsEntry + 846, // 228: google.cloud.compute.v1.DiskResourceStatus.async_primary_disk:type_name -> google.cloud.compute.v1.DiskResourceStatusAsyncReplicationStatus + 2461, // 229: google.cloud.compute.v1.DiskResourceStatus.async_secondary_disks:type_name -> google.cloud.compute.v1.DiskResourceStatus.AsyncSecondaryDisksEntry + 830, // 230: google.cloud.compute.v1.DiskType.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus + 2462, // 231: google.cloud.compute.v1.DiskTypeAggregatedList.items:type_name -> google.cloud.compute.v1.DiskTypeAggregatedList.ItemsEntry + 2413, // 232: google.cloud.compute.v1.DiskTypeAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 847, // 233: google.cloud.compute.v1.DiskTypeList.items:type_name -> google.cloud.compute.v1.DiskType + 2413, // 234: google.cloud.compute.v1.DiskTypeList.warning:type_name -> google.cloud.compute.v1.Warning + 847, // 235: google.cloud.compute.v1.DiskTypesScopedList.disk_types:type_name -> google.cloud.compute.v1.DiskType + 2413, // 236: google.cloud.compute.v1.DiskTypesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 837, // 237: google.cloud.compute.v1.DisksScopedList.disks:type_name -> google.cloud.compute.v1.Disk + 2413, // 238: google.cloud.compute.v1.DisksScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 860, // 239: google.cloud.compute.v1.DistributionPolicy.zones:type_name -> google.cloud.compute.v1.DistributionPolicyZoneConfiguration + 1798, // 240: google.cloud.compute.v1.EnableXpnResourceProjectRequest.projects_enable_xpn_resource_request_resource:type_name -> google.cloud.compute.v1.ProjectsEnableXpnResourceRequest + 867, // 241: google.cloud.compute.v1.Error.errors:type_name -> google.cloud.compute.v1.Errors + 866, // 242: google.cloud.compute.v1.ErrorDetails.error_info:type_name -> google.cloud.compute.v1.ErrorInfo + 1150, // 243: google.cloud.compute.v1.ErrorDetails.help:type_name -> google.cloud.compute.v1.Help + 1592, // 244: google.cloud.compute.v1.ErrorDetails.localized_message:type_name -> google.cloud.compute.v1.LocalizedMessage + 1812, // 245: google.cloud.compute.v1.ErrorDetails.quota_info:type_name -> google.cloud.compute.v1.QuotaExceededInfo + 2463, // 246: google.cloud.compute.v1.ErrorInfo.metadatas:type_name -> google.cloud.compute.v1.ErrorInfo.MetadatasEntry + 865, // 247: google.cloud.compute.v1.Errors.error_details:type_name -> google.cloud.compute.v1.ErrorDetails + 868, // 248: google.cloud.compute.v1.ExchangedPeeringRoutesList.items:type_name -> google.cloud.compute.v1.ExchangedPeeringRoute + 2413, // 249: google.cloud.compute.v1.ExchangedPeeringRoutesList.warning:type_name -> google.cloud.compute.v1.Warning + 2212, // 250: google.cloud.compute.v1.ExpandIpCidrRangeSubnetworkRequest.subnetworks_expand_ip_cidr_range_request_resource:type_name -> google.cloud.compute.v1.SubnetworksExpandIpCidrRangeRequest + 873, // 251: google.cloud.compute.v1.ExternalVpnGateway.interfaces:type_name -> google.cloud.compute.v1.ExternalVpnGatewayInterface + 2464, // 252: google.cloud.compute.v1.ExternalVpnGateway.labels:type_name -> google.cloud.compute.v1.ExternalVpnGateway.LabelsEntry + 875, // 253: google.cloud.compute.v1.ExternalVpnGateway.params:type_name -> google.cloud.compute.v1.ExternalVpnGatewayParams + 872, // 254: google.cloud.compute.v1.ExternalVpnGatewayList.items:type_name -> google.cloud.compute.v1.ExternalVpnGateway + 2413, // 255: google.cloud.compute.v1.ExternalVpnGatewayList.warning:type_name -> google.cloud.compute.v1.Warning + 2465, // 256: google.cloud.compute.v1.ExternalVpnGatewayParams.resource_manager_tags:type_name -> google.cloud.compute.v1.ExternalVpnGatewayParams.ResourceManagerTagsEntry + 587, // 257: google.cloud.compute.v1.Firewall.allowed:type_name -> google.cloud.compute.v1.Allowed + 828, // 258: google.cloud.compute.v1.Firewall.denied:type_name -> google.cloud.compute.v1.Denied + 879, // 259: google.cloud.compute.v1.Firewall.log_config:type_name -> google.cloud.compute.v1.FirewallLogConfig + 880, // 260: google.cloud.compute.v1.Firewall.params:type_name -> google.cloud.compute.v1.FirewallParams + 877, // 261: google.cloud.compute.v1.FirewallList.items:type_name -> google.cloud.compute.v1.Firewall + 2413, // 262: google.cloud.compute.v1.FirewallList.warning:type_name -> google.cloud.compute.v1.Warning + 2466, // 263: google.cloud.compute.v1.FirewallParams.resource_manager_tags:type_name -> google.cloud.compute.v1.FirewallParams.ResourceManagerTagsEntry + 884, // 264: google.cloud.compute.v1.FirewallPoliciesListAssociationsResponse.associations:type_name -> google.cloud.compute.v1.FirewallPolicyAssociation + 883, // 265: google.cloud.compute.v1.FirewallPoliciesScopedList.firewall_policies:type_name -> google.cloud.compute.v1.FirewallPolicy + 2413, // 266: google.cloud.compute.v1.FirewallPoliciesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 884, // 267: google.cloud.compute.v1.FirewallPolicy.associations:type_name -> google.cloud.compute.v1.FirewallPolicyAssociation + 886, // 268: google.cloud.compute.v1.FirewallPolicy.packet_mirroring_rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 886, // 269: google.cloud.compute.v1.FirewallPolicy.rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 883, // 270: google.cloud.compute.v1.FirewallPolicyList.items:type_name -> google.cloud.compute.v1.FirewallPolicy + 2413, // 271: google.cloud.compute.v1.FirewallPolicyList.warning:type_name -> google.cloud.compute.v1.Warning + 887, // 272: google.cloud.compute.v1.FirewallPolicyRule.match:type_name -> google.cloud.compute.v1.FirewallPolicyRuleMatcher + 889, // 273: google.cloud.compute.v1.FirewallPolicyRule.target_secure_tags:type_name -> google.cloud.compute.v1.FirewallPolicyRuleSecureTag + 888, // 274: google.cloud.compute.v1.FirewallPolicyRuleMatcher.layer4_configs:type_name -> google.cloud.compute.v1.FirewallPolicyRuleMatcherLayer4Config + 889, // 275: google.cloud.compute.v1.FirewallPolicyRuleMatcher.src_secure_tags:type_name -> google.cloud.compute.v1.FirewallPolicyRuleSecureTag + 2467, // 276: google.cloud.compute.v1.ForwardingRule.labels:type_name -> google.cloud.compute.v1.ForwardingRule.LabelsEntry + 1611, // 277: google.cloud.compute.v1.ForwardingRule.metadata_filters:type_name -> google.cloud.compute.v1.MetadataFilter + 896, // 278: google.cloud.compute.v1.ForwardingRule.service_directory_registrations:type_name -> google.cloud.compute.v1.ForwardingRuleServiceDirectoryRegistration + 2468, // 279: google.cloud.compute.v1.ForwardingRuleAggregatedList.items:type_name -> google.cloud.compute.v1.ForwardingRuleAggregatedList.ItemsEntry + 2413, // 280: google.cloud.compute.v1.ForwardingRuleAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 892, // 281: google.cloud.compute.v1.ForwardingRuleList.items:type_name -> google.cloud.compute.v1.ForwardingRule + 2413, // 282: google.cloud.compute.v1.ForwardingRuleList.warning:type_name -> google.cloud.compute.v1.Warning + 892, // 283: google.cloud.compute.v1.ForwardingRulesScopedList.forwarding_rules:type_name -> google.cloud.compute.v1.ForwardingRule + 2413, // 284: google.cloud.compute.v1.ForwardingRulesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 577, // 285: google.cloud.compute.v1.FutureReservation.aggregate_reservation:type_name -> google.cloud.compute.v1.AllocationAggregateReservation + 861, // 286: google.cloud.compute.v1.FutureReservation.auto_created_reservations_duration:type_name -> google.cloud.compute.v1.Duration + 899, // 287: google.cloud.compute.v1.FutureReservation.commitment_info:type_name -> google.cloud.compute.v1.FutureReservationCommitmentInfo + 900, // 288: google.cloud.compute.v1.FutureReservation.params:type_name -> google.cloud.compute.v1.FutureReservationParams + 2138, // 289: google.cloud.compute.v1.FutureReservation.share_settings:type_name -> google.cloud.compute.v1.ShareSettings + 901, // 290: google.cloud.compute.v1.FutureReservation.specific_sku_properties:type_name -> google.cloud.compute.v1.FutureReservationSpecificSKUProperties + 902, // 291: google.cloud.compute.v1.FutureReservation.status:type_name -> google.cloud.compute.v1.FutureReservationStatus + 907, // 292: google.cloud.compute.v1.FutureReservation.time_window:type_name -> google.cloud.compute.v1.FutureReservationTimeWindow + 2469, // 293: google.cloud.compute.v1.FutureReservationParams.resource_manager_tags:type_name -> google.cloud.compute.v1.FutureReservationParams.ResourceManagerTagsEntry + 585, // 294: google.cloud.compute.v1.FutureReservationSpecificSKUProperties.instance_properties:type_name -> google.cloud.compute.v1.AllocationSpecificSKUAllocationReservedInstanceProperties + 903, // 295: google.cloud.compute.v1.FutureReservationStatus.existing_matching_usage_info:type_name -> google.cloud.compute.v1.FutureReservationStatusExistingMatchingUsageInfo + 904, // 296: google.cloud.compute.v1.FutureReservationStatus.last_known_good_state:type_name -> google.cloud.compute.v1.FutureReservationStatusLastKnownGoodState + 906, // 297: google.cloud.compute.v1.FutureReservationStatus.specific_sku_properties:type_name -> google.cloud.compute.v1.FutureReservationStatusSpecificSKUProperties + 903, // 298: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodState.existing_matching_usage_info:type_name -> google.cloud.compute.v1.FutureReservationStatusExistingMatchingUsageInfo + 905, // 299: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodState.future_reservation_specs:type_name -> google.cloud.compute.v1.FutureReservationStatusLastKnownGoodStateFutureReservationSpecs + 2138, // 300: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodStateFutureReservationSpecs.share_settings:type_name -> google.cloud.compute.v1.ShareSettings + 901, // 301: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodStateFutureReservationSpecs.specific_sku_properties:type_name -> google.cloud.compute.v1.FutureReservationSpecificSKUProperties + 907, // 302: google.cloud.compute.v1.FutureReservationStatusLastKnownGoodStateFutureReservationSpecs.time_window:type_name -> google.cloud.compute.v1.FutureReservationTimeWindow + 861, // 303: google.cloud.compute.v1.FutureReservationTimeWindow.duration:type_name -> google.cloud.compute.v1.Duration + 2470, // 304: google.cloud.compute.v1.FutureReservationsAggregatedListResponse.items:type_name -> google.cloud.compute.v1.FutureReservationsAggregatedListResponse.ItemsEntry + 2413, // 305: google.cloud.compute.v1.FutureReservationsAggregatedListResponse.warning:type_name -> google.cloud.compute.v1.Warning + 898, // 306: google.cloud.compute.v1.FutureReservationsListResponse.items:type_name -> google.cloud.compute.v1.FutureReservation + 2413, // 307: google.cloud.compute.v1.FutureReservationsListResponse.warning:type_name -> google.cloud.compute.v1.Warning + 898, // 308: google.cloud.compute.v1.FutureReservationsScopedList.future_reservations:type_name -> google.cloud.compute.v1.FutureReservation + 2413, // 309: google.cloud.compute.v1.FutureReservationsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2471, // 310: google.cloud.compute.v1.FutureResourcesRecommendation.other_locations:type_name -> google.cloud.compute.v1.FutureResourcesRecommendation.OtherLocationsEntry + 916, // 311: google.cloud.compute.v1.FutureResourcesSpec.location_policy:type_name -> google.cloud.compute.v1.FutureResourcesSpecLocationPolicy + 919, // 312: google.cloud.compute.v1.FutureResourcesSpec.target_resources:type_name -> google.cloud.compute.v1.FutureResourcesSpecTargetResources + 891, // 313: google.cloud.compute.v1.FutureResourcesSpec.time_range_spec:type_name -> google.cloud.compute.v1.FlexibleTimeRange + 2472, // 314: google.cloud.compute.v1.FutureResourcesSpecLocationPolicy.locations:type_name -> google.cloud.compute.v1.FutureResourcesSpecLocationPolicy.LocationsEntry + 915, // 315: google.cloud.compute.v1.FutureResourcesSpecSpecificSKUResources.local_ssd_partitions:type_name -> google.cloud.compute.v1.FutureResourcesSpecLocalSsdPartition + 914, // 316: google.cloud.compute.v1.FutureResourcesSpecTargetResources.aggregate_resources:type_name -> google.cloud.compute.v1.FutureResourcesSpecAggregateResources + 918, // 317: google.cloud.compute.v1.FutureResourcesSpecTargetResources.specific_sku_resources:type_name -> google.cloud.compute.v1.FutureResourcesSpecSpecificSKUResources + 1920, // 318: google.cloud.compute.v1.GetHealthBackendServiceRequest.resource_group_reference_resource:type_name -> google.cloud.compute.v1.ResourceGroupReference + 1920, // 319: google.cloud.compute.v1.GetHealthRegionBackendServiceRequest.resource_group_reference_resource:type_name -> google.cloud.compute.v1.ResourceGroupReference + 1331, // 320: google.cloud.compute.v1.GetHealthTargetPoolRequest.instance_reference_resource:type_name -> google.cloud.compute.v1.InstanceReference + 1101, // 321: google.cloud.compute.v1.GetVersionOperationMetadata.inline_sbom_info:type_name -> google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo + 2473, // 322: google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo.current_component_versions:type_name -> google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo.CurrentComponentVersionsEntry + 2474, // 323: google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo.target_component_versions:type_name -> google.cloud.compute.v1.GetVersionOperationMetadataSbomInfo.TargetComponentVersionsEntry + 1899, // 324: google.cloud.compute.v1.GetVersionReservationSlotRequest.reservation_slots_get_version_request_resource:type_name -> google.cloud.compute.v1.ReservationSlotsGetVersionRequest + 1905, // 325: google.cloud.compute.v1.GetVersionReservationSubBlockRequest.reservation_sub_blocks_get_version_request_resource:type_name -> google.cloud.compute.v1.ReservationSubBlocksGetVersionRequest + 1632, // 326: google.cloud.compute.v1.GlobalNetworkEndpointGroupsAttachEndpointsRequest.network_endpoints:type_name -> google.cloud.compute.v1.NetworkEndpoint + 1632, // 327: google.cloud.compute.v1.GlobalNetworkEndpointGroupsDetachEndpointsRequest.network_endpoints:type_name -> google.cloud.compute.v1.NetworkEndpoint + 660, // 328: google.cloud.compute.v1.GlobalOrganizationSetPolicyRequest.bindings:type_name -> google.cloud.compute.v1.Binding + 1783, // 329: google.cloud.compute.v1.GlobalOrganizationSetPolicyRequest.policy:type_name -> google.cloud.compute.v1.Policy + 2475, // 330: google.cloud.compute.v1.GlobalSetLabelsRequest.labels:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest.LabelsEntry + 660, // 331: google.cloud.compute.v1.GlobalSetPolicyRequest.bindings:type_name -> google.cloud.compute.v1.Binding + 1783, // 332: google.cloud.compute.v1.GlobalSetPolicyRequest.policy:type_name -> google.cloud.compute.v1.Policy + 2328, // 333: google.cloud.compute.v1.GroupMaintenanceInfo.upcoming_group_maintenance:type_name -> google.cloud.compute.v1.UpcomingMaintenance + 1121, // 334: google.cloud.compute.v1.GuestAttributes.query_value:type_name -> google.cloud.compute.v1.GuestAttributesValue + 1120, // 335: google.cloud.compute.v1.GuestAttributesValue.items:type_name -> google.cloud.compute.v1.GuestAttributesEntry + 1127, // 336: google.cloud.compute.v1.HealthAggregationPoliciesScopedList.health_aggregation_policies:type_name -> google.cloud.compute.v1.HealthAggregationPolicy + 2413, // 337: google.cloud.compute.v1.HealthAggregationPoliciesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2476, // 338: google.cloud.compute.v1.HealthAggregationPolicyAggregatedList.items:type_name -> google.cloud.compute.v1.HealthAggregationPolicyAggregatedList.ItemsEntry + 2413, // 339: google.cloud.compute.v1.HealthAggregationPolicyAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1127, // 340: google.cloud.compute.v1.HealthAggregationPolicyList.items:type_name -> google.cloud.compute.v1.HealthAggregationPolicy + 2413, // 341: google.cloud.compute.v1.HealthAggregationPolicyList.warning:type_name -> google.cloud.compute.v1.Warning + 920, // 342: google.cloud.compute.v1.HealthCheck.grpc_health_check:type_name -> google.cloud.compute.v1.GRPCHealthCheck + 921, // 343: google.cloud.compute.v1.HealthCheck.grpc_tls_health_check:type_name -> google.cloud.compute.v1.GRPCTLSHealthCheck + 1123, // 344: google.cloud.compute.v1.HealthCheck.http2_health_check:type_name -> google.cloud.compute.v1.HTTP2HealthCheck + 1124, // 345: google.cloud.compute.v1.HealthCheck.http_health_check:type_name -> google.cloud.compute.v1.HTTPHealthCheck + 1125, // 346: google.cloud.compute.v1.HealthCheck.https_health_check:type_name -> google.cloud.compute.v1.HTTPSHealthCheck + 1132, // 347: google.cloud.compute.v1.HealthCheck.log_config:type_name -> google.cloud.compute.v1.HealthCheckLogConfig + 1981, // 348: google.cloud.compute.v1.HealthCheck.ssl_health_check:type_name -> google.cloud.compute.v1.SSLHealthCheck + 2221, // 349: google.cloud.compute.v1.HealthCheck.tcp_health_check:type_name -> google.cloud.compute.v1.TCPHealthCheck + 1130, // 350: google.cloud.compute.v1.HealthCheckList.items:type_name -> google.cloud.compute.v1.HealthCheck + 2413, // 351: google.cloud.compute.v1.HealthCheckList.warning:type_name -> google.cloud.compute.v1.Warning + 2477, // 352: google.cloud.compute.v1.HealthCheckServiceAggregatedList.items:type_name -> google.cloud.compute.v1.HealthCheckServiceAggregatedList.ItemsEntry + 2413, // 353: google.cloud.compute.v1.HealthCheckServiceAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1134, // 354: google.cloud.compute.v1.HealthCheckServicesList.items:type_name -> google.cloud.compute.v1.HealthCheckService + 2413, // 355: google.cloud.compute.v1.HealthCheckServicesList.warning:type_name -> google.cloud.compute.v1.Warning + 1134, // 356: google.cloud.compute.v1.HealthCheckServicesScopedList.resources:type_name -> google.cloud.compute.v1.HealthCheckService + 2413, // 357: google.cloud.compute.v1.HealthCheckServicesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2478, // 358: google.cloud.compute.v1.HealthChecksAggregatedList.items:type_name -> google.cloud.compute.v1.HealthChecksAggregatedList.ItemsEntry + 2413, // 359: google.cloud.compute.v1.HealthChecksAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1130, // 360: google.cloud.compute.v1.HealthChecksScopedList.health_checks:type_name -> google.cloud.compute.v1.HealthCheck + 2413, // 361: google.cloud.compute.v1.HealthChecksScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2479, // 362: google.cloud.compute.v1.HealthSourceAggregatedList.items:type_name -> google.cloud.compute.v1.HealthSourceAggregatedList.ItemsEntry + 2413, // 363: google.cloud.compute.v1.HealthSourceAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1145, // 364: google.cloud.compute.v1.HealthSourceHealth.sources:type_name -> google.cloud.compute.v1.HealthSourcesGetHealthResponseSourceInfo + 1141, // 365: google.cloud.compute.v1.HealthSourceList.items:type_name -> google.cloud.compute.v1.HealthSource + 2413, // 366: google.cloud.compute.v1.HealthSourceList.warning:type_name -> google.cloud.compute.v1.Warning + 1146, // 367: google.cloud.compute.v1.HealthSourcesGetHealthResponseSourceInfo.backends:type_name -> google.cloud.compute.v1.HealthSourcesGetHealthResponseSourceInfoBackendInfo + 1141, // 368: google.cloud.compute.v1.HealthSourcesScopedList.health_sources:type_name -> google.cloud.compute.v1.HealthSource + 2413, // 369: google.cloud.compute.v1.HealthSourcesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2480, // 370: google.cloud.compute.v1.HealthStatus.annotations:type_name -> google.cloud.compute.v1.HealthStatus.AnnotationsEntry + 649, // 371: google.cloud.compute.v1.HealthStatusForNetworkEndpoint.backend_service:type_name -> google.cloud.compute.v1.BackendServiceReference + 895, // 372: google.cloud.compute.v1.HealthStatusForNetworkEndpoint.forwarding_rule:type_name -> google.cloud.compute.v1.ForwardingRuleReference + 1133, // 373: google.cloud.compute.v1.HealthStatusForNetworkEndpoint.health_check:type_name -> google.cloud.compute.v1.HealthCheckReference + 1136, // 374: google.cloud.compute.v1.HealthStatusForNetworkEndpoint.health_check_service:type_name -> google.cloud.compute.v1.HealthCheckServiceReference + 1151, // 375: google.cloud.compute.v1.Help.links:type_name -> google.cloud.compute.v1.HelpLink + 861, // 376: google.cloud.compute.v1.HttpFaultDelay.fixed_delay:type_name -> google.cloud.compute.v1.Duration + 1153, // 377: google.cloud.compute.v1.HttpFaultInjection.abort:type_name -> google.cloud.compute.v1.HttpFaultAbort + 1154, // 378: google.cloud.compute.v1.HttpFaultInjection.delay:type_name -> google.cloud.compute.v1.HttpFaultDelay + 1158, // 379: google.cloud.compute.v1.HttpHeaderAction.request_headers_to_add:type_name -> google.cloud.compute.v1.HttpHeaderOption + 1158, // 380: google.cloud.compute.v1.HttpHeaderAction.response_headers_to_add:type_name -> google.cloud.compute.v1.HttpHeaderOption + 1365, // 381: google.cloud.compute.v1.HttpHeaderMatch.range_match:type_name -> google.cloud.compute.v1.Int64RangeMatch + 861, // 382: google.cloud.compute.v1.HttpRetryPolicy.per_try_timeout:type_name -> google.cloud.compute.v1.Duration + 675, // 383: google.cloud.compute.v1.HttpRouteAction.cache_policy:type_name -> google.cloud.compute.v1.CachePolicy + 706, // 384: google.cloud.compute.v1.HttpRouteAction.cors_policy:type_name -> google.cloud.compute.v1.CorsPolicy + 1155, // 385: google.cloud.compute.v1.HttpRouteAction.fault_injection_policy:type_name -> google.cloud.compute.v1.HttpFaultInjection + 861, // 386: google.cloud.compute.v1.HttpRouteAction.max_stream_duration:type_name -> google.cloud.compute.v1.Duration + 1880, // 387: google.cloud.compute.v1.HttpRouteAction.request_mirror_policy:type_name -> google.cloud.compute.v1.RequestMirrorPolicy + 1161, // 388: google.cloud.compute.v1.HttpRouteAction.retry_policy:type_name -> google.cloud.compute.v1.HttpRetryPolicy + 861, // 389: google.cloud.compute.v1.HttpRouteAction.timeout:type_name -> google.cloud.compute.v1.Duration + 2373, // 390: google.cloud.compute.v1.HttpRouteAction.url_rewrite:type_name -> google.cloud.compute.v1.UrlRewrite + 2415, // 391: google.cloud.compute.v1.HttpRouteAction.weighted_backend_services:type_name -> google.cloud.compute.v1.WeightedBackendService + 714, // 392: google.cloud.compute.v1.HttpRouteRule.custom_error_response_policy:type_name -> google.cloud.compute.v1.CustomErrorResponsePolicy + 1156, // 393: google.cloud.compute.v1.HttpRouteRule.header_action:type_name -> google.cloud.compute.v1.HttpHeaderAction + 1164, // 394: google.cloud.compute.v1.HttpRouteRule.match_rules:type_name -> google.cloud.compute.v1.HttpRouteRuleMatch + 1162, // 395: google.cloud.compute.v1.HttpRouteRule.route_action:type_name -> google.cloud.compute.v1.HttpRouteAction + 1160, // 396: google.cloud.compute.v1.HttpRouteRule.url_redirect:type_name -> google.cloud.compute.v1.HttpRedirectAction + 1157, // 397: google.cloud.compute.v1.HttpRouteRuleMatch.header_matches:type_name -> google.cloud.compute.v1.HttpHeaderMatch + 1611, // 398: google.cloud.compute.v1.HttpRouteRuleMatch.metadata_filters:type_name -> google.cloud.compute.v1.MetadataFilter + 1159, // 399: google.cloud.compute.v1.HttpRouteRuleMatch.query_parameter_matches:type_name -> google.cloud.compute.v1.HttpQueryParameterMatch + 830, // 400: google.cloud.compute.v1.Image.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus + 1122, // 401: google.cloud.compute.v1.Image.guest_os_features:type_name -> google.cloud.compute.v1.GuestOsFeature + 716, // 402: google.cloud.compute.v1.Image.image_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 2481, // 403: google.cloud.compute.v1.Image.labels:type_name -> google.cloud.compute.v1.Image.LabelsEntry + 1168, // 404: google.cloud.compute.v1.Image.params:type_name -> google.cloud.compute.v1.ImageParams + 1814, // 405: google.cloud.compute.v1.Image.raw_disk:type_name -> google.cloud.compute.v1.RawDisk + 1169, // 406: google.cloud.compute.v1.Image.shielded_instance_initial_state:type_name -> google.cloud.compute.v1.InitialStateConfig + 716, // 407: google.cloud.compute.v1.Image.source_disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 716, // 408: google.cloud.compute.v1.Image.source_image_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 716, // 409: google.cloud.compute.v1.Image.source_snapshot_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 1165, // 410: google.cloud.compute.v1.ImageFamilyView.image:type_name -> google.cloud.compute.v1.Image + 1165, // 411: google.cloud.compute.v1.ImageList.items:type_name -> google.cloud.compute.v1.Image + 2413, // 412: google.cloud.compute.v1.ImageList.warning:type_name -> google.cloud.compute.v1.Warning + 2482, // 413: google.cloud.compute.v1.ImageParams.resource_manager_tags:type_name -> google.cloud.compute.v1.ImageParams.ResourceManagerTagsEntry + 876, // 414: google.cloud.compute.v1.InitialStateConfig.dbs:type_name -> google.cloud.compute.v1.FileContentBuffer + 876, // 415: google.cloud.compute.v1.InitialStateConfig.dbxs:type_name -> google.cloud.compute.v1.FileContentBuffer + 876, // 416: google.cloud.compute.v1.InitialStateConfig.keks:type_name -> google.cloud.compute.v1.FileContentBuffer + 876, // 417: google.cloud.compute.v1.InitialStateConfig.pk:type_name -> google.cloud.compute.v1.FileContentBuffer + 519, // 418: google.cloud.compute.v1.InsertAddressRequest.address_resource:type_name -> google.cloud.compute.v1.Address + 600, // 419: google.cloud.compute.v1.InsertAutoscalerRequest.autoscaler_resource:type_name -> google.cloud.compute.v1.Autoscaler + 613, // 420: google.cloud.compute.v1.InsertBackendBucketRequest.backend_bucket_resource:type_name -> google.cloud.compute.v1.BackendBucket + 625, // 421: google.cloud.compute.v1.InsertBackendServiceRequest.backend_service_resource:type_name -> google.cloud.compute.v1.BackendService + 712, // 422: google.cloud.compute.v1.InsertCrossSiteNetworkRequest.cross_site_network_resource:type_name -> google.cloud.compute.v1.CrossSiteNetwork + 837, // 423: google.cloud.compute.v1.InsertDiskRequest.disk_resource:type_name -> google.cloud.compute.v1.Disk + 872, // 424: google.cloud.compute.v1.InsertExternalVpnGatewayRequest.external_vpn_gateway_resource:type_name -> google.cloud.compute.v1.ExternalVpnGateway + 883, // 425: google.cloud.compute.v1.InsertFirewallPolicyRequest.firewall_policy_resource:type_name -> google.cloud.compute.v1.FirewallPolicy + 877, // 426: google.cloud.compute.v1.InsertFirewallRequest.firewall_resource:type_name -> google.cloud.compute.v1.Firewall + 892, // 427: google.cloud.compute.v1.InsertForwardingRuleRequest.forwarding_rule_resource:type_name -> google.cloud.compute.v1.ForwardingRule + 898, // 428: google.cloud.compute.v1.InsertFutureReservationRequest.future_reservation_resource:type_name -> google.cloud.compute.v1.FutureReservation + 519, // 429: google.cloud.compute.v1.InsertGlobalAddressRequest.address_resource:type_name -> google.cloud.compute.v1.Address + 892, // 430: google.cloud.compute.v1.InsertGlobalForwardingRuleRequest.forwarding_rule_resource:type_name -> google.cloud.compute.v1.ForwardingRule + 1633, // 431: google.cloud.compute.v1.InsertGlobalNetworkEndpointGroupRequest.network_endpoint_group_resource:type_name -> google.cloud.compute.v1.NetworkEndpointGroup + 1806, // 432: google.cloud.compute.v1.InsertGlobalPublicDelegatedPrefixeRequest.public_delegated_prefix_resource:type_name -> google.cloud.compute.v1.PublicDelegatedPrefix + 1130, // 433: google.cloud.compute.v1.InsertHealthCheckRequest.health_check_resource:type_name -> google.cloud.compute.v1.HealthCheck + 1165, // 434: google.cloud.compute.v1.InsertImageRequest.image_resource:type_name -> google.cloud.compute.v1.Image + 1270, // 435: google.cloud.compute.v1.InsertInstanceGroupManagerRequest.instance_group_manager_resource:type_name -> google.cloud.compute.v1.InstanceGroupManager + 1279, // 436: google.cloud.compute.v1.InsertInstanceGroupManagerResizeRequestRequest.instance_group_manager_resize_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagerResizeRequest + 1267, // 437: google.cloud.compute.v1.InsertInstanceGroupRequest.instance_group_resource:type_name -> google.cloud.compute.v1.InstanceGroup + 1261, // 438: google.cloud.compute.v1.InsertInstanceRequest.instance_resource:type_name -> google.cloud.compute.v1.Instance + 1334, // 439: google.cloud.compute.v1.InsertInstanceTemplateRequest.instance_template_resource:type_name -> google.cloud.compute.v1.InstanceTemplate + 1357, // 440: google.cloud.compute.v1.InsertInstantSnapshotGroupRequest.instant_snapshot_group_resource:type_name -> google.cloud.compute.v1.InstantSnapshotGroup + 1355, // 441: google.cloud.compute.v1.InsertInstantSnapshotRequest.instant_snapshot_resource:type_name -> google.cloud.compute.v1.InstantSnapshot + 1375, // 442: google.cloud.compute.v1.InsertInterconnectAttachmentGroupRequest.interconnect_attachment_group_resource:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroup + 1371, // 443: google.cloud.compute.v1.InsertInterconnectAttachmentRequest.interconnect_attachment_resource:type_name -> google.cloud.compute.v1.InterconnectAttachment + 1406, // 444: google.cloud.compute.v1.InsertInterconnectGroupRequest.interconnect_group_resource:type_name -> google.cloud.compute.v1.InterconnectGroup + 1366, // 445: google.cloud.compute.v1.InsertInterconnectRequest.interconnect_resource:type_name -> google.cloud.compute.v1.Interconnect + 1443, // 446: google.cloud.compute.v1.InsertLicenseRequest.license_resource:type_name -> google.cloud.compute.v1.License + 1597, // 447: google.cloud.compute.v1.InsertMachineImageRequest.machine_image_resource:type_name -> google.cloud.compute.v1.MachineImage + 1624, // 448: google.cloud.compute.v1.InsertNetworkAttachmentRequest.network_attachment_resource:type_name -> google.cloud.compute.v1.NetworkAttachment + 1629, // 449: google.cloud.compute.v1.InsertNetworkEdgeSecurityServiceRequest.network_edge_security_service_resource:type_name -> google.cloud.compute.v1.NetworkEdgeSecurityService + 1633, // 450: google.cloud.compute.v1.InsertNetworkEndpointGroupRequest.network_endpoint_group_resource:type_name -> google.cloud.compute.v1.NetworkEndpointGroup + 883, // 451: google.cloud.compute.v1.InsertNetworkFirewallPolicyRequest.firewall_policy_resource:type_name -> google.cloud.compute.v1.FirewallPolicy + 1623, // 452: google.cloud.compute.v1.InsertNetworkRequest.network_resource:type_name -> google.cloud.compute.v1.Network + 1668, // 453: google.cloud.compute.v1.InsertNodeGroupRequest.node_group_resource:type_name -> google.cloud.compute.v1.NodeGroup + 1681, // 454: google.cloud.compute.v1.InsertNodeTemplateRequest.node_template_resource:type_name -> google.cloud.compute.v1.NodeTemplate + 1993, // 455: google.cloud.compute.v1.InsertOrganizationSecurityPolicyRequest.security_policy_resource:type_name -> google.cloud.compute.v1.SecurityPolicy + 1702, // 456: google.cloud.compute.v1.InsertPacketMirroringRequest.packet_mirroring_resource:type_name -> google.cloud.compute.v1.PacketMirroring + 1803, // 457: google.cloud.compute.v1.InsertPublicAdvertisedPrefixeRequest.public_advertised_prefix_resource:type_name -> google.cloud.compute.v1.PublicAdvertisedPrefix + 1806, // 458: google.cloud.compute.v1.InsertPublicDelegatedPrefixeRequest.public_delegated_prefix_resource:type_name -> google.cloud.compute.v1.PublicDelegatedPrefix + 600, // 459: google.cloud.compute.v1.InsertRegionAutoscalerRequest.autoscaler_resource:type_name -> google.cloud.compute.v1.Autoscaler + 613, // 460: google.cloud.compute.v1.InsertRegionBackendBucketRequest.backend_bucket_resource:type_name -> google.cloud.compute.v1.BackendBucket + 625, // 461: google.cloud.compute.v1.InsertRegionBackendServiceRequest.backend_service_resource:type_name -> google.cloud.compute.v1.BackendService + 689, // 462: google.cloud.compute.v1.InsertRegionCommitmentRequest.commitment_resource:type_name -> google.cloud.compute.v1.Commitment + 695, // 463: google.cloud.compute.v1.InsertRegionCompositeHealthCheckRequest.composite_health_check_resource:type_name -> google.cloud.compute.v1.CompositeHealthCheck + 837, // 464: google.cloud.compute.v1.InsertRegionDiskRequest.disk_resource:type_name -> google.cloud.compute.v1.Disk + 1127, // 465: google.cloud.compute.v1.InsertRegionHealthAggregationPolicyRequest.health_aggregation_policy_resource:type_name -> google.cloud.compute.v1.HealthAggregationPolicy + 1130, // 466: google.cloud.compute.v1.InsertRegionHealthCheckRequest.health_check_resource:type_name -> google.cloud.compute.v1.HealthCheck + 1134, // 467: google.cloud.compute.v1.InsertRegionHealthCheckServiceRequest.health_check_service_resource:type_name -> google.cloud.compute.v1.HealthCheckService + 1141, // 468: google.cloud.compute.v1.InsertRegionHealthSourceRequest.health_source_resource:type_name -> google.cloud.compute.v1.HealthSource + 1270, // 469: google.cloud.compute.v1.InsertRegionInstanceGroupManagerRequest.instance_group_manager_resource:type_name -> google.cloud.compute.v1.InstanceGroupManager + 1279, // 470: google.cloud.compute.v1.InsertRegionInstanceGroupManagerResizeRequestRequest.instance_group_manager_resize_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagerResizeRequest + 1334, // 471: google.cloud.compute.v1.InsertRegionInstanceTemplateRequest.instance_template_resource:type_name -> google.cloud.compute.v1.InstanceTemplate + 1357, // 472: google.cloud.compute.v1.InsertRegionInstantSnapshotGroupRequest.instant_snapshot_group_resource:type_name -> google.cloud.compute.v1.InstantSnapshotGroup + 1355, // 473: google.cloud.compute.v1.InsertRegionInstantSnapshotRequest.instant_snapshot_resource:type_name -> google.cloud.compute.v1.InstantSnapshot + 1633, // 474: google.cloud.compute.v1.InsertRegionNetworkEndpointGroupRequest.network_endpoint_group_resource:type_name -> google.cloud.compute.v1.NetworkEndpointGroup + 883, // 475: google.cloud.compute.v1.InsertRegionNetworkFirewallPolicyRequest.firewall_policy_resource:type_name -> google.cloud.compute.v1.FirewallPolicy + 1690, // 476: google.cloud.compute.v1.InsertRegionNotificationEndpointRequest.notification_endpoint_resource:type_name -> google.cloud.compute.v1.NotificationEndpoint + 1993, // 477: google.cloud.compute.v1.InsertRegionSecurityPolicyRequest.security_policy_resource:type_name -> google.cloud.compute.v1.SecurityPolicy + 2147, // 478: google.cloud.compute.v1.InsertRegionSnapshotRequest.snapshot_resource:type_name -> google.cloud.compute.v1.Snapshot + 2160, // 479: google.cloud.compute.v1.InsertRegionSslCertificateRequest.ssl_certificate_resource:type_name -> google.cloud.compute.v1.SslCertificate + 2170, // 480: google.cloud.compute.v1.InsertRegionSslPolicyRequest.ssl_policy_resource:type_name -> google.cloud.compute.v1.SslPolicy + 2226, // 481: google.cloud.compute.v1.InsertRegionTargetHttpProxyRequest.target_http_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpProxy + 2233, // 482: google.cloud.compute.v1.InsertRegionTargetHttpsProxyRequest.target_https_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxy + 2259, // 483: google.cloud.compute.v1.InsertRegionTargetTcpProxyRequest.target_tcp_proxy_resource:type_name -> google.cloud.compute.v1.TargetTcpProxy + 2363, // 484: google.cloud.compute.v1.InsertRegionUrlMapRequest.url_map_resource:type_name -> google.cloud.compute.v1.UrlMap + 1882, // 485: google.cloud.compute.v1.InsertReservationRequest.reservation_resource:type_name -> google.cloud.compute.v1.Reservation + 1922, // 486: google.cloud.compute.v1.InsertResourcePolicyRequest.resource_policy_resource:type_name -> google.cloud.compute.v1.ResourcePolicy + 1948, // 487: google.cloud.compute.v1.InsertRouteRequest.route_resource:type_name -> google.cloud.compute.v1.Route + 1954, // 488: google.cloud.compute.v1.InsertRouterRequest.router_resource:type_name -> google.cloud.compute.v1.Router + 1993, // 489: google.cloud.compute.v1.InsertSecurityPolicyRequest.security_policy_resource:type_name -> google.cloud.compute.v1.SecurityPolicy + 2028, // 490: google.cloud.compute.v1.InsertServiceAttachmentRequest.service_attachment_resource:type_name -> google.cloud.compute.v1.ServiceAttachment + 2147, // 491: google.cloud.compute.v1.InsertSnapshotRequest.snapshot_resource:type_name -> google.cloud.compute.v1.Snapshot + 2160, // 492: google.cloud.compute.v1.InsertSslCertificateRequest.ssl_certificate_resource:type_name -> google.cloud.compute.v1.SslCertificate + 2170, // 493: google.cloud.compute.v1.InsertSslPolicyRequest.ssl_policy_resource:type_name -> google.cloud.compute.v1.SslPolicy + 2190, // 494: google.cloud.compute.v1.InsertStoragePoolRequest.storage_pool_resource:type_name -> google.cloud.compute.v1.StoragePool + 2203, // 495: google.cloud.compute.v1.InsertSubnetworkRequest.subnetwork_resource:type_name -> google.cloud.compute.v1.Subnetwork + 2223, // 496: google.cloud.compute.v1.InsertTargetGrpcProxyRequest.target_grpc_proxy_resource:type_name -> google.cloud.compute.v1.TargetGrpcProxy + 2226, // 497: google.cloud.compute.v1.InsertTargetHttpProxyRequest.target_http_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpProxy + 2233, // 498: google.cloud.compute.v1.InsertTargetHttpsProxyRequest.target_https_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxy + 2236, // 499: google.cloud.compute.v1.InsertTargetInstanceRequest.target_instance_resource:type_name -> google.cloud.compute.v1.TargetInstance + 2240, // 500: google.cloud.compute.v1.InsertTargetPoolRequest.target_pool_resource:type_name -> google.cloud.compute.v1.TargetPool + 2254, // 501: google.cloud.compute.v1.InsertTargetSslProxyRequest.target_ssl_proxy_resource:type_name -> google.cloud.compute.v1.TargetSslProxy + 2259, // 502: google.cloud.compute.v1.InsertTargetTcpProxyRequest.target_tcp_proxy_resource:type_name -> google.cloud.compute.v1.TargetTcpProxy + 2262, // 503: google.cloud.compute.v1.InsertTargetVpnGatewayRequest.target_vpn_gateway_resource:type_name -> google.cloud.compute.v1.TargetVpnGateway + 2363, // 504: google.cloud.compute.v1.InsertUrlMapRequest.url_map_resource:type_name -> google.cloud.compute.v1.UrlMap + 2389, // 505: google.cloud.compute.v1.InsertVpnGatewayRequest.vpn_gateway_resource:type_name -> google.cloud.compute.v1.VpnGateway + 2400, // 506: google.cloud.compute.v1.InsertVpnTunnelRequest.vpn_tunnel_resource:type_name -> google.cloud.compute.v1.VpnTunnel + 2418, // 507: google.cloud.compute.v1.InsertWireGroupRequest.wire_group_resource:type_name -> google.cloud.compute.v1.WireGroup + 2384, // 508: google.cloud.compute.v1.InsertZoneVmExtensionPolicyRequest.vm_extension_policy_resource:type_name -> google.cloud.compute.v1.VmExtensionPolicy + 523, // 509: google.cloud.compute.v1.Instance.advanced_machine_features:type_name -> google.cloud.compute.v1.AdvancedMachineFeatures + 701, // 510: google.cloud.compute.v1.Instance.confidential_instance_config:type_name -> google.cloud.compute.v1.ConfidentialInstanceConfig + 596, // 511: google.cloud.compute.v1.Instance.disks:type_name -> google.cloud.compute.v1.AttachedDisk + 858, // 512: google.cloud.compute.v1.Instance.display_device:type_name -> google.cloud.compute.v1.DisplayDevice + 486, // 513: google.cloud.compute.v1.Instance.guest_accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig + 716, // 514: google.cloud.compute.v1.Instance.instance_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 2483, // 515: google.cloud.compute.v1.Instance.labels:type_name -> google.cloud.compute.v1.Instance.LabelsEntry + 1610, // 516: google.cloud.compute.v1.Instance.metadata:type_name -> google.cloud.compute.v1.Metadata + 1647, // 517: google.cloud.compute.v1.Instance.network_interfaces:type_name -> google.cloud.compute.v1.NetworkInterface + 1654, // 518: google.cloud.compute.v1.Instance.network_performance_config:type_name -> google.cloud.compute.v1.NetworkPerformanceConfig + 1328, // 519: google.cloud.compute.v1.Instance.params:type_name -> google.cloud.compute.v1.InstanceParams + 1884, // 520: google.cloud.compute.v1.Instance.reservation_affinity:type_name -> google.cloud.compute.v1.ReservationAffinity + 1940, // 521: google.cloud.compute.v1.Instance.resource_status:type_name -> google.cloud.compute.v1.ResourceStatus + 1985, // 522: google.cloud.compute.v1.Instance.scheduling:type_name -> google.cloud.compute.v1.Scheduling + 2027, // 523: google.cloud.compute.v1.Instance.service_accounts:type_name -> google.cloud.compute.v1.ServiceAccount + 2140, // 524: google.cloud.compute.v1.Instance.shielded_instance_config:type_name -> google.cloud.compute.v1.ShieldedInstanceConfig + 2143, // 525: google.cloud.compute.v1.Instance.shielded_instance_integrity_policy:type_name -> google.cloud.compute.v1.ShieldedInstanceIntegrityPolicy + 716, // 526: google.cloud.compute.v1.Instance.source_machine_image_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 2222, // 527: google.cloud.compute.v1.Instance.tags:type_name -> google.cloud.compute.v1.Tags + 2427, // 528: google.cloud.compute.v1.Instance.workload_identity_config:type_name -> google.cloud.compute.v1.WorkloadIdentityConfig + 2484, // 529: google.cloud.compute.v1.InstanceAggregatedList.items:type_name -> google.cloud.compute.v1.InstanceAggregatedList.ItemsEntry + 2413, // 530: google.cloud.compute.v1.InstanceAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1264, // 531: google.cloud.compute.v1.InstanceConsumptionData.consumption_info:type_name -> google.cloud.compute.v1.InstanceConsumptionInfo + 2485, // 532: google.cloud.compute.v1.InstanceFlexibilityPolicy.instance_selections:type_name -> google.cloud.compute.v1.InstanceFlexibilityPolicy.InstanceSelectionsEntry + 596, // 533: google.cloud.compute.v1.InstanceFlexibilityPolicyInstanceSelection.disks:type_name -> google.cloud.compute.v1.AttachedDisk + 1619, // 534: google.cloud.compute.v1.InstanceGroup.named_ports:type_name -> google.cloud.compute.v1.NamedPort + 2486, // 535: google.cloud.compute.v1.InstanceGroupAggregatedList.items:type_name -> google.cloud.compute.v1.InstanceGroupAggregatedList.ItemsEntry + 2413, // 536: google.cloud.compute.v1.InstanceGroupAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1267, // 537: google.cloud.compute.v1.InstanceGroupList.items:type_name -> google.cloud.compute.v1.InstanceGroup + 2413, // 538: google.cloud.compute.v1.InstanceGroupList.warning:type_name -> google.cloud.compute.v1.Warning + 1273, // 539: google.cloud.compute.v1.InstanceGroupManager.all_instances_config:type_name -> google.cloud.compute.v1.InstanceGroupManagerAllInstancesConfig + 1274, // 540: google.cloud.compute.v1.InstanceGroupManager.auto_healing_policies:type_name -> google.cloud.compute.v1.InstanceGroupManagerAutoHealingPolicy + 1271, // 541: google.cloud.compute.v1.InstanceGroupManager.current_actions:type_name -> google.cloud.compute.v1.InstanceGroupManagerActionsSummary + 859, // 542: google.cloud.compute.v1.InstanceGroupManager.distribution_policy:type_name -> google.cloud.compute.v1.DistributionPolicy + 1275, // 543: google.cloud.compute.v1.InstanceGroupManager.instance_flexibility_policy:type_name -> google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicy + 1277, // 544: google.cloud.compute.v1.InstanceGroupManager.instance_lifecycle_policy:type_name -> google.cloud.compute.v1.InstanceGroupManagerInstanceLifecyclePolicy + 1619, // 545: google.cloud.compute.v1.InstanceGroupManager.named_ports:type_name -> google.cloud.compute.v1.NamedPort + 1283, // 546: google.cloud.compute.v1.InstanceGroupManager.resource_policies:type_name -> google.cloud.compute.v1.InstanceGroupManagerResourcePolicies + 1284, // 547: google.cloud.compute.v1.InstanceGroupManager.standby_policy:type_name -> google.cloud.compute.v1.InstanceGroupManagerStandbyPolicy + 2178, // 548: google.cloud.compute.v1.InstanceGroupManager.stateful_policy:type_name -> google.cloud.compute.v1.StatefulPolicy + 1285, // 549: google.cloud.compute.v1.InstanceGroupManager.status:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatus + 1295, // 550: google.cloud.compute.v1.InstanceGroupManager.target_size_policy:type_name -> google.cloud.compute.v1.InstanceGroupManagerTargetSizePolicy + 1296, // 551: google.cloud.compute.v1.InstanceGroupManager.update_policy:type_name -> google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy + 1297, // 552: google.cloud.compute.v1.InstanceGroupManager.versions:type_name -> google.cloud.compute.v1.InstanceGroupManagerVersion + 2487, // 553: google.cloud.compute.v1.InstanceGroupManagerAggregatedList.items:type_name -> google.cloud.compute.v1.InstanceGroupManagerAggregatedList.ItemsEntry + 2413, // 554: google.cloud.compute.v1.InstanceGroupManagerAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1330, // 555: google.cloud.compute.v1.InstanceGroupManagerAllInstancesConfig.properties:type_name -> google.cloud.compute.v1.InstancePropertiesPatch + 2488, // 556: google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicy.instance_selections:type_name -> google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicy.InstanceSelectionsEntry + 1270, // 557: google.cloud.compute.v1.InstanceGroupManagerList.items:type_name -> google.cloud.compute.v1.InstanceGroupManager + 2413, // 558: google.cloud.compute.v1.InstanceGroupManagerList.warning:type_name -> google.cloud.compute.v1.Warning + 861, // 559: google.cloud.compute.v1.InstanceGroupManagerResizeRequest.requested_run_duration:type_name -> google.cloud.compute.v1.Duration + 1280, // 560: google.cloud.compute.v1.InstanceGroupManagerResizeRequest.status:type_name -> google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatus + 864, // 561: google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatus.error:type_name -> google.cloud.compute.v1.Error + 1281, // 562: google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatus.last_attempt:type_name -> google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatusLastAttempt + 864, // 563: google.cloud.compute.v1.InstanceGroupManagerResizeRequestStatusLastAttempt.error:type_name -> google.cloud.compute.v1.Error + 1279, // 564: google.cloud.compute.v1.InstanceGroupManagerResizeRequestsListResponse.items:type_name -> google.cloud.compute.v1.InstanceGroupManagerResizeRequest + 2413, // 565: google.cloud.compute.v1.InstanceGroupManagerResizeRequestsListResponse.warning:type_name -> google.cloud.compute.v1.Warning + 1288, // 566: google.cloud.compute.v1.InstanceGroupManagerStatus.all_instances_config:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusAllInstancesConfig + 1286, // 567: google.cloud.compute.v1.InstanceGroupManagerStatus.applied_accelerator_topologies:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopology + 1289, // 568: google.cloud.compute.v1.InstanceGroupManagerStatus.bulk_instance_operation:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperation + 1291, // 569: google.cloud.compute.v1.InstanceGroupManagerStatus.current_instance_statuses:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusInstanceStatusSummary + 1292, // 570: google.cloud.compute.v1.InstanceGroupManagerStatus.stateful:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusStateful + 1294, // 571: google.cloud.compute.v1.InstanceGroupManagerStatus.version_target:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusVersionTarget + 1287, // 572: google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopology.state_details:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails + 864, // 573: google.cloud.compute.v1.InstanceGroupManagerStatusAcceleratorTopologyAcceleratorTopologyStateDetails.error:type_name -> google.cloud.compute.v1.Error + 1290, // 574: google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperation.last_progress_check:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck + 864, // 575: google.cloud.compute.v1.InstanceGroupManagerStatusBulkInstanceOperationLastProgressCheck.error:type_name -> google.cloud.compute.v1.Error + 1293, // 576: google.cloud.compute.v1.InstanceGroupManagerStatusStateful.per_instance_configs:type_name -> google.cloud.compute.v1.InstanceGroupManagerStatusStatefulPerInstanceConfigs + 890, // 577: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.max_surge:type_name -> google.cloud.compute.v1.FixedOrPercent + 890, // 578: google.cloud.compute.v1.InstanceGroupManagerUpdatePolicy.max_unavailable:type_name -> google.cloud.compute.v1.FixedOrPercent + 890, // 579: google.cloud.compute.v1.InstanceGroupManagerVersion.target_size:type_name -> google.cloud.compute.v1.FixedOrPercent + 1777, // 580: google.cloud.compute.v1.InstanceGroupManagersCreateInstancesRequest.instances:type_name -> google.cloud.compute.v1.PerInstanceConfig + 1324, // 581: google.cloud.compute.v1.InstanceGroupManagersListErrorsResponse.items:type_name -> google.cloud.compute.v1.InstanceManagedByIgmError + 1604, // 582: google.cloud.compute.v1.InstanceGroupManagersListManagedInstancesResponse.managed_instances:type_name -> google.cloud.compute.v1.ManagedInstance + 1777, // 583: google.cloud.compute.v1.InstanceGroupManagersListPerInstanceConfigsResp.items:type_name -> google.cloud.compute.v1.PerInstanceConfig + 2413, // 584: google.cloud.compute.v1.InstanceGroupManagersListPerInstanceConfigsResp.warning:type_name -> google.cloud.compute.v1.Warning + 1777, // 585: google.cloud.compute.v1.InstanceGroupManagersPatchPerInstanceConfigsReq.per_instance_configs:type_name -> google.cloud.compute.v1.PerInstanceConfig + 1270, // 586: google.cloud.compute.v1.InstanceGroupManagersScopedList.instance_group_managers:type_name -> google.cloud.compute.v1.InstanceGroupManager + 2413, // 587: google.cloud.compute.v1.InstanceGroupManagersScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 1777, // 588: google.cloud.compute.v1.InstanceGroupManagersUpdatePerInstanceConfigsReq.per_instance_configs:type_name -> google.cloud.compute.v1.PerInstanceConfig + 1331, // 589: google.cloud.compute.v1.InstanceGroupsAddInstancesRequest.instances:type_name -> google.cloud.compute.v1.InstanceReference + 1338, // 590: google.cloud.compute.v1.InstanceGroupsListInstances.items:type_name -> google.cloud.compute.v1.InstanceWithNamedPorts + 2413, // 591: google.cloud.compute.v1.InstanceGroupsListInstances.warning:type_name -> google.cloud.compute.v1.Warning + 1331, // 592: google.cloud.compute.v1.InstanceGroupsRemoveInstancesRequest.instances:type_name -> google.cloud.compute.v1.InstanceReference + 1267, // 593: google.cloud.compute.v1.InstanceGroupsScopedList.instance_groups:type_name -> google.cloud.compute.v1.InstanceGroup + 2413, // 594: google.cloud.compute.v1.InstanceGroupsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 1619, // 595: google.cloud.compute.v1.InstanceGroupsSetNamedPortsRequest.named_ports:type_name -> google.cloud.compute.v1.NamedPort + 1261, // 596: google.cloud.compute.v1.InstanceList.items:type_name -> google.cloud.compute.v1.Instance + 2413, // 597: google.cloud.compute.v1.InstanceList.warning:type_name -> google.cloud.compute.v1.Warning + 1817, // 598: google.cloud.compute.v1.InstanceListReferrers.items:type_name -> google.cloud.compute.v1.Reference + 2413, // 599: google.cloud.compute.v1.InstanceListReferrers.warning:type_name -> google.cloud.compute.v1.Warning + 1326, // 600: google.cloud.compute.v1.InstanceManagedByIgmError.error:type_name -> google.cloud.compute.v1.InstanceManagedByIgmErrorManagedInstanceError + 1325, // 601: google.cloud.compute.v1.InstanceManagedByIgmError.instance_action_details:type_name -> google.cloud.compute.v1.InstanceManagedByIgmErrorInstanceActionDetails + 1609, // 602: google.cloud.compute.v1.InstanceManagedByIgmErrorInstanceActionDetails.version:type_name -> google.cloud.compute.v1.ManagedInstanceVersion + 861, // 603: google.cloud.compute.v1.InstanceParams.request_valid_for_duration:type_name -> google.cloud.compute.v1.Duration + 2489, // 604: google.cloud.compute.v1.InstanceParams.resource_manager_tags:type_name -> google.cloud.compute.v1.InstanceParams.ResourceManagerTagsEntry + 523, // 605: google.cloud.compute.v1.InstanceProperties.advanced_machine_features:type_name -> google.cloud.compute.v1.AdvancedMachineFeatures + 701, // 606: google.cloud.compute.v1.InstanceProperties.confidential_instance_config:type_name -> google.cloud.compute.v1.ConfidentialInstanceConfig + 596, // 607: google.cloud.compute.v1.InstanceProperties.disks:type_name -> google.cloud.compute.v1.AttachedDisk + 486, // 608: google.cloud.compute.v1.InstanceProperties.guest_accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig + 2490, // 609: google.cloud.compute.v1.InstanceProperties.labels:type_name -> google.cloud.compute.v1.InstanceProperties.LabelsEntry + 1610, // 610: google.cloud.compute.v1.InstanceProperties.metadata:type_name -> google.cloud.compute.v1.Metadata + 1647, // 611: google.cloud.compute.v1.InstanceProperties.network_interfaces:type_name -> google.cloud.compute.v1.NetworkInterface + 1654, // 612: google.cloud.compute.v1.InstanceProperties.network_performance_config:type_name -> google.cloud.compute.v1.NetworkPerformanceConfig + 1884, // 613: google.cloud.compute.v1.InstanceProperties.reservation_affinity:type_name -> google.cloud.compute.v1.ReservationAffinity + 2491, // 614: google.cloud.compute.v1.InstanceProperties.resource_manager_tags:type_name -> google.cloud.compute.v1.InstanceProperties.ResourceManagerTagsEntry + 1985, // 615: google.cloud.compute.v1.InstanceProperties.scheduling:type_name -> google.cloud.compute.v1.Scheduling + 2027, // 616: google.cloud.compute.v1.InstanceProperties.service_accounts:type_name -> google.cloud.compute.v1.ServiceAccount + 2140, // 617: google.cloud.compute.v1.InstanceProperties.shielded_instance_config:type_name -> google.cloud.compute.v1.ShieldedInstanceConfig + 2222, // 618: google.cloud.compute.v1.InstanceProperties.tags:type_name -> google.cloud.compute.v1.Tags + 2427, // 619: google.cloud.compute.v1.InstanceProperties.workload_identity_config:type_name -> google.cloud.compute.v1.WorkloadIdentityConfig + 2492, // 620: google.cloud.compute.v1.InstancePropertiesPatch.labels:type_name -> google.cloud.compute.v1.InstancePropertiesPatch.LabelsEntry + 2493, // 621: google.cloud.compute.v1.InstancePropertiesPatch.metadata:type_name -> google.cloud.compute.v1.InstancePropertiesPatch.MetadataEntry + 1333, // 622: google.cloud.compute.v1.InstanceSettings.metadata:type_name -> google.cloud.compute.v1.InstanceSettingsMetadata + 2494, // 623: google.cloud.compute.v1.InstanceSettingsMetadata.items:type_name -> google.cloud.compute.v1.InstanceSettingsMetadata.ItemsEntry + 1329, // 624: google.cloud.compute.v1.InstanceTemplate.properties:type_name -> google.cloud.compute.v1.InstanceProperties + 2158, // 625: google.cloud.compute.v1.InstanceTemplate.source_instance_params:type_name -> google.cloud.compute.v1.SourceInstanceParams + 2495, // 626: google.cloud.compute.v1.InstanceTemplateAggregatedList.items:type_name -> google.cloud.compute.v1.InstanceTemplateAggregatedList.ItemsEntry + 2413, // 627: google.cloud.compute.v1.InstanceTemplateAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1334, // 628: google.cloud.compute.v1.InstanceTemplateList.items:type_name -> google.cloud.compute.v1.InstanceTemplate + 2413, // 629: google.cloud.compute.v1.InstanceTemplateList.warning:type_name -> google.cloud.compute.v1.Warning + 1334, // 630: google.cloud.compute.v1.InstanceTemplatesScopedList.instance_templates:type_name -> google.cloud.compute.v1.InstanceTemplate + 2413, // 631: google.cloud.compute.v1.InstanceTemplatesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 1619, // 632: google.cloud.compute.v1.InstanceWithNamedPorts.named_ports:type_name -> google.cloud.compute.v1.NamedPort + 2496, // 633: google.cloud.compute.v1.InstancesBulkInsertOperationMetadata.per_location_status:type_name -> google.cloud.compute.v1.InstancesBulkInsertOperationMetadata.PerLocationStatusEntry + 1342, // 634: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponse.firewall_policys:type_name -> google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy + 877, // 635: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponse.firewalls:type_name -> google.cloud.compute.v1.Firewall + 886, // 636: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.packet_mirroring_rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 886, // 637: google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 1345, // 638: google.cloud.compute.v1.InstancesReportHostAsFaultyRequest.fault_reasons:type_name -> google.cloud.compute.v1.InstancesReportHostAsFaultyRequestFaultReason + 1261, // 639: google.cloud.compute.v1.InstancesScopedList.instances:type_name -> google.cloud.compute.v1.Instance + 2413, // 640: google.cloud.compute.v1.InstancesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2497, // 641: google.cloud.compute.v1.InstancesSetLabelsRequest.labels:type_name -> google.cloud.compute.v1.InstancesSetLabelsRequest.LabelsEntry + 486, // 642: google.cloud.compute.v1.InstancesSetMachineResourcesRequest.guest_accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig + 717, // 643: google.cloud.compute.v1.InstancesStartWithEncryptionKeyRequest.disks:type_name -> google.cloud.compute.v1.CustomerEncryptionKeyProtectedDisk + 2498, // 644: google.cloud.compute.v1.InstantSnapshot.labels:type_name -> google.cloud.compute.v1.InstantSnapshot.LabelsEntry + 1362, // 645: google.cloud.compute.v1.InstantSnapshot.params:type_name -> google.cloud.compute.v1.InstantSnapshotParams + 1363, // 646: google.cloud.compute.v1.InstantSnapshot.resource_status:type_name -> google.cloud.compute.v1.InstantSnapshotResourceStatus + 2499, // 647: google.cloud.compute.v1.InstantSnapshotAggregatedList.items:type_name -> google.cloud.compute.v1.InstantSnapshotAggregatedList.ItemsEntry + 2413, // 648: google.cloud.compute.v1.InstantSnapshotAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1359, // 649: google.cloud.compute.v1.InstantSnapshotGroup.resource_status:type_name -> google.cloud.compute.v1.InstantSnapshotGroupResourceStatus + 1360, // 650: google.cloud.compute.v1.InstantSnapshotGroupResourceStatus.source_info:type_name -> google.cloud.compute.v1.InstantSnapshotGroupSourceInfo + 1355, // 651: google.cloud.compute.v1.InstantSnapshotList.items:type_name -> google.cloud.compute.v1.InstantSnapshot + 2413, // 652: google.cloud.compute.v1.InstantSnapshotList.warning:type_name -> google.cloud.compute.v1.Warning + 2500, // 653: google.cloud.compute.v1.InstantSnapshotParams.resource_manager_tags:type_name -> google.cloud.compute.v1.InstantSnapshotParams.ResourceManagerTagsEntry + 1355, // 654: google.cloud.compute.v1.InstantSnapshotsScopedList.instant_snapshots:type_name -> google.cloud.compute.v1.InstantSnapshot + 2413, // 655: google.cloud.compute.v1.InstantSnapshotsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 1367, // 656: google.cloud.compute.v1.Interconnect.application_aware_interconnect:type_name -> google.cloud.compute.v1.InterconnectApplicationAwareInterconnect + 1399, // 657: google.cloud.compute.v1.Interconnect.circuit_infos:type_name -> google.cloud.compute.v1.InterconnectCircuitInfo + 1432, // 658: google.cloud.compute.v1.Interconnect.expected_outages:type_name -> google.cloud.compute.v1.InterconnectOutageNotification + 2501, // 659: google.cloud.compute.v1.Interconnect.labels:type_name -> google.cloud.compute.v1.Interconnect.LabelsEntry + 1428, // 660: google.cloud.compute.v1.Interconnect.macsec:type_name -> google.cloud.compute.v1.InterconnectMacsec + 1433, // 661: google.cloud.compute.v1.Interconnect.params:type_name -> google.cloud.compute.v1.InterconnectParams + 1369, // 662: google.cloud.compute.v1.InterconnectApplicationAwareInterconnect.bandwidth_percentage_policy:type_name -> google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy + 1368, // 663: google.cloud.compute.v1.InterconnectApplicationAwareInterconnect.shape_average_percentages:type_name -> google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentage + 1370, // 664: google.cloud.compute.v1.InterconnectApplicationAwareInterconnect.strict_priority_policy:type_name -> google.cloud.compute.v1.InterconnectApplicationAwareInterconnectStrictPriorityPolicy + 1368, // 665: google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy.bandwidth_percentages:type_name -> google.cloud.compute.v1.InterconnectApplicationAwareInterconnectBandwidthPercentage + 1373, // 666: google.cloud.compute.v1.InterconnectAttachment.configuration_constraints:type_name -> google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints + 1390, // 667: google.cloud.compute.v1.InterconnectAttachment.l2_forwarding:type_name -> google.cloud.compute.v1.InterconnectAttachmentL2Forwarding + 2502, // 668: google.cloud.compute.v1.InterconnectAttachment.labels:type_name -> google.cloud.compute.v1.InterconnectAttachment.LabelsEntry + 1395, // 669: google.cloud.compute.v1.InterconnectAttachment.params:type_name -> google.cloud.compute.v1.InterconnectAttachmentParams + 1396, // 670: google.cloud.compute.v1.InterconnectAttachment.partner_metadata:type_name -> google.cloud.compute.v1.InterconnectAttachmentPartnerMetadata + 1397, // 671: google.cloud.compute.v1.InterconnectAttachment.private_interconnect_info:type_name -> google.cloud.compute.v1.InterconnectAttachmentPrivateInfo + 2503, // 672: google.cloud.compute.v1.InterconnectAttachmentAggregatedList.items:type_name -> google.cloud.compute.v1.InterconnectAttachmentAggregatedList.ItemsEntry + 2413, // 673: google.cloud.compute.v1.InterconnectAttachmentAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1374, // 674: google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints.bgp_peer_asn_ranges:type_name -> google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraintsBgpPeerASNRange + 2504, // 675: google.cloud.compute.v1.InterconnectAttachmentGroup.attachments:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroup.AttachmentsEntry + 1377, // 676: google.cloud.compute.v1.InterconnectAttachmentGroup.configured:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupConfigured + 1380, // 677: google.cloud.compute.v1.InterconnectAttachmentGroup.intent:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupIntent + 1381, // 678: google.cloud.compute.v1.InterconnectAttachmentGroup.logical_structure:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructure + 1378, // 679: google.cloud.compute.v1.InterconnectAttachmentGroupConfigured.availability_sla:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLA + 1379, // 680: google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLA.intended_sla_blockers:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupConfiguredAvailabilitySLAIntendedSlaBlockers + 1382, // 681: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructure.regions:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegion + 1383, // 682: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegion.metros:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetro + 1384, // 683: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetro.facilities:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetroFacility + 1385, // 684: google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetroFacility.zones:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupLogicalStructureRegionMetroFacilityZone + 1388, // 685: google.cloud.compute.v1.InterconnectAttachmentGroupsGetOperationalStatusResponse.result:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus + 1375, // 686: google.cloud.compute.v1.InterconnectAttachmentGroupsListResponse.items:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroup + 2413, // 687: google.cloud.compute.v1.InterconnectAttachmentGroupsListResponse.warning:type_name -> google.cloud.compute.v1.Warning + 1389, // 688: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus.attachment_statuses:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatusAttachmentStatus + 1377, // 689: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus.configured:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupConfigured + 1380, // 690: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus.intent:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupIntent + 1377, // 691: google.cloud.compute.v1.InterconnectAttachmentGroupsOperationalStatus.operational:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupConfigured + 2505, // 692: google.cloud.compute.v1.InterconnectAttachmentL2Forwarding.appliance_mappings:type_name -> google.cloud.compute.v1.InterconnectAttachmentL2Forwarding.ApplianceMappingsEntry + 1393, // 693: google.cloud.compute.v1.InterconnectAttachmentL2Forwarding.geneve_header:type_name -> google.cloud.compute.v1.InterconnectAttachmentL2ForwardingGeneveHeader + 1392, // 694: google.cloud.compute.v1.InterconnectAttachmentL2ForwardingApplianceMapping.inner_vlan_to_appliance_mappings:type_name -> google.cloud.compute.v1.InterconnectAttachmentL2ForwardingApplianceMappingInnerVlanToApplianceMapping + 1371, // 695: google.cloud.compute.v1.InterconnectAttachmentList.items:type_name -> google.cloud.compute.v1.InterconnectAttachment + 2413, // 696: google.cloud.compute.v1.InterconnectAttachmentList.warning:type_name -> google.cloud.compute.v1.Warning + 2506, // 697: google.cloud.compute.v1.InterconnectAttachmentParams.resource_manager_tags:type_name -> google.cloud.compute.v1.InterconnectAttachmentParams.ResourceManagerTagsEntry + 1371, // 698: google.cloud.compute.v1.InterconnectAttachmentsScopedList.interconnect_attachments:type_name -> google.cloud.compute.v1.InterconnectAttachment + 2413, // 699: google.cloud.compute.v1.InterconnectAttachmentsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 1401, // 700: google.cloud.compute.v1.InterconnectDiagnostics.arp_caches:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsARPEntry + 1404, // 701: google.cloud.compute.v1.InterconnectDiagnostics.links:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus + 1401, // 702: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus.arp_caches:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsARPEntry + 1402, // 703: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus.lacp_status:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsLinkLACPStatus + 1405, // 704: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus.macsec:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsMacsecStatus + 1403, // 705: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus.receiving_optical_power:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsLinkOpticalPower + 1403, // 706: google.cloud.compute.v1.InterconnectDiagnosticsLinkStatus.transmitting_optical_power:type_name -> google.cloud.compute.v1.InterconnectDiagnosticsLinkOpticalPower + 1407, // 707: google.cloud.compute.v1.InterconnectGroup.configured:type_name -> google.cloud.compute.v1.InterconnectGroupConfigured + 1410, // 708: google.cloud.compute.v1.InterconnectGroup.intent:type_name -> google.cloud.compute.v1.InterconnectGroupIntent + 2507, // 709: google.cloud.compute.v1.InterconnectGroup.interconnects:type_name -> google.cloud.compute.v1.InterconnectGroup.InterconnectsEntry + 1412, // 710: google.cloud.compute.v1.InterconnectGroup.physical_structure:type_name -> google.cloud.compute.v1.InterconnectGroupPhysicalStructure + 1408, // 711: google.cloud.compute.v1.InterconnectGroupConfigured.topology_capability:type_name -> google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapability + 1409, // 712: google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapability.intended_capability_blockers:type_name -> google.cloud.compute.v1.InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers + 1413, // 713: google.cloud.compute.v1.InterconnectGroupPhysicalStructure.metros:type_name -> google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetros + 1414, // 714: google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetros.facilities:type_name -> google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetrosFacilities + 1415, // 715: google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetrosFacilities.zones:type_name -> google.cloud.compute.v1.InterconnectGroupPhysicalStructureMetrosFacilitiesZones + 1417, // 716: google.cloud.compute.v1.InterconnectGroupsCreateMembers.interconnects:type_name -> google.cloud.compute.v1.InterconnectGroupsCreateMembersInterconnectInput + 1417, // 717: google.cloud.compute.v1.InterconnectGroupsCreateMembers.template_interconnect:type_name -> google.cloud.compute.v1.InterconnectGroupsCreateMembersInterconnectInput + 1416, // 718: google.cloud.compute.v1.InterconnectGroupsCreateMembersRequest.request:type_name -> google.cloud.compute.v1.InterconnectGroupsCreateMembers + 1421, // 719: google.cloud.compute.v1.InterconnectGroupsGetOperationalStatusResponse.result:type_name -> google.cloud.compute.v1.InterconnectGroupsOperationalStatus + 1406, // 720: google.cloud.compute.v1.InterconnectGroupsListResponse.items:type_name -> google.cloud.compute.v1.InterconnectGroup + 2413, // 721: google.cloud.compute.v1.InterconnectGroupsListResponse.warning:type_name -> google.cloud.compute.v1.Warning + 1407, // 722: google.cloud.compute.v1.InterconnectGroupsOperationalStatus.configured:type_name -> google.cloud.compute.v1.InterconnectGroupConfigured + 1410, // 723: google.cloud.compute.v1.InterconnectGroupsOperationalStatus.intent:type_name -> google.cloud.compute.v1.InterconnectGroupIntent + 1422, // 724: google.cloud.compute.v1.InterconnectGroupsOperationalStatus.interconnect_statuses:type_name -> google.cloud.compute.v1.InterconnectGroupsOperationalStatusInterconnectStatus + 1407, // 725: google.cloud.compute.v1.InterconnectGroupsOperationalStatus.operational:type_name -> google.cloud.compute.v1.InterconnectGroupConfigured + 1400, // 726: google.cloud.compute.v1.InterconnectGroupsOperationalStatusInterconnectStatus.diagnostics:type_name -> google.cloud.compute.v1.InterconnectDiagnostics + 1366, // 727: google.cloud.compute.v1.InterconnectList.items:type_name -> google.cloud.compute.v1.Interconnect + 2413, // 728: google.cloud.compute.v1.InterconnectList.warning:type_name -> google.cloud.compute.v1.Warning + 1425, // 729: google.cloud.compute.v1.InterconnectLocation.cross_site_interconnect_infos:type_name -> google.cloud.compute.v1.InterconnectLocationCrossSiteInterconnectInfo + 1427, // 730: google.cloud.compute.v1.InterconnectLocation.region_infos:type_name -> google.cloud.compute.v1.InterconnectLocationRegionInfo + 1424, // 731: google.cloud.compute.v1.InterconnectLocationList.items:type_name -> google.cloud.compute.v1.InterconnectLocation + 2413, // 732: google.cloud.compute.v1.InterconnectLocationList.warning:type_name -> google.cloud.compute.v1.Warning + 1431, // 733: google.cloud.compute.v1.InterconnectMacsec.pre_shared_keys:type_name -> google.cloud.compute.v1.InterconnectMacsecPreSharedKey + 1430, // 734: google.cloud.compute.v1.InterconnectMacsecConfig.pre_shared_keys:type_name -> google.cloud.compute.v1.InterconnectMacsecConfigPreSharedKey + 2508, // 735: google.cloud.compute.v1.InterconnectParams.resource_manager_tags:type_name -> google.cloud.compute.v1.InterconnectParams.ResourceManagerTagsEntry + 1373, // 736: google.cloud.compute.v1.InterconnectRemoteLocation.attachment_configuration_constraints:type_name -> google.cloud.compute.v1.InterconnectAttachmentConfigurationConstraints + 1435, // 737: google.cloud.compute.v1.InterconnectRemoteLocation.constraints:type_name -> google.cloud.compute.v1.InterconnectRemoteLocationConstraints + 1438, // 738: google.cloud.compute.v1.InterconnectRemoteLocation.permitted_connections:type_name -> google.cloud.compute.v1.InterconnectRemoteLocationPermittedConnections + 1436, // 739: google.cloud.compute.v1.InterconnectRemoteLocationConstraints.subnet_length_range:type_name -> google.cloud.compute.v1.InterconnectRemoteLocationConstraintsSubnetLengthRange + 1434, // 740: google.cloud.compute.v1.InterconnectRemoteLocationList.items:type_name -> google.cloud.compute.v1.InterconnectRemoteLocation + 2413, // 741: google.cloud.compute.v1.InterconnectRemoteLocationList.warning:type_name -> google.cloud.compute.v1.Warning + 1400, // 742: google.cloud.compute.v1.InterconnectsGetDiagnosticsResponse.result:type_name -> google.cloud.compute.v1.InterconnectDiagnostics + 1429, // 743: google.cloud.compute.v1.InterconnectsGetMacsecConfigResponse.result:type_name -> google.cloud.compute.v1.InterconnectMacsecConfig + 673, // 744: google.cloud.compute.v1.InvalidateCacheUrlMapRequest.cache_invalidation_rule_resource:type_name -> google.cloud.compute.v1.CacheInvalidationRule + 861, // 745: google.cloud.compute.v1.License.minimum_retention:type_name -> google.cloud.compute.v1.Duration + 1446, // 746: google.cloud.compute.v1.License.params:type_name -> google.cloud.compute.v1.LicenseParams + 1448, // 747: google.cloud.compute.v1.License.resource_requirements:type_name -> google.cloud.compute.v1.LicenseResourceRequirements + 1445, // 748: google.cloud.compute.v1.LicenseCode.license_alias:type_name -> google.cloud.compute.v1.LicenseCodeLicenseAlias + 2509, // 749: google.cloud.compute.v1.LicenseParams.resource_manager_tags:type_name -> google.cloud.compute.v1.LicenseParams.ResourceManagerTagsEntry + 1443, // 750: google.cloud.compute.v1.LicensesListResponse.items:type_name -> google.cloud.compute.v1.License + 2413, // 751: google.cloud.compute.v1.LicensesListResponse.warning:type_name -> google.cloud.compute.v1.Warning + 1318, // 752: google.cloud.compute.v1.ListInstancesInstanceGroupsRequest.instance_groups_list_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupsListInstancesRequest + 1848, // 753: google.cloud.compute.v1.ListInstancesRegionInstanceGroupsRequest.region_instance_groups_list_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupsListInstancesRequest + 1357, // 754: google.cloud.compute.v1.ListInstantSnapshotGroups.items:type_name -> google.cloud.compute.v1.InstantSnapshotGroup + 2413, // 755: google.cloud.compute.v1.ListInstantSnapshotGroups.warning:type_name -> google.cloud.compute.v1.Warning + 1642, // 756: google.cloud.compute.v1.ListNetworkEndpointsNetworkEndpointGroupsRequest.network_endpoint_groups_list_endpoints_request_resource:type_name -> google.cloud.compute.v1.NetworkEndpointGroupsListEndpointsRequest + 1800, // 757: google.cloud.compute.v1.ListXpnHostsProjectsRequest.projects_list_xpn_hosts_request_resource:type_name -> google.cloud.compute.v1.ProjectsListXpnHostsRequest + 2510, // 758: google.cloud.compute.v1.LocationPolicy.locations:type_name -> google.cloud.compute.v1.LocationPolicy.LocationsEntry + 1596, // 759: google.cloud.compute.v1.LocationPolicy.zones:type_name -> google.cloud.compute.v1.LocationPolicyZoneConfiguration + 1595, // 760: google.cloud.compute.v1.LocationPolicyLocation.constraints:type_name -> google.cloud.compute.v1.LocationPolicyLocationConstraints + 1329, // 761: google.cloud.compute.v1.MachineImage.instance_properties:type_name -> google.cloud.compute.v1.InstanceProperties + 2511, // 762: google.cloud.compute.v1.MachineImage.labels:type_name -> google.cloud.compute.v1.MachineImage.LabelsEntry + 716, // 763: google.cloud.compute.v1.MachineImage.machine_image_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 1599, // 764: google.cloud.compute.v1.MachineImage.params:type_name -> google.cloud.compute.v1.MachineImageParams + 1983, // 765: google.cloud.compute.v1.MachineImage.saved_disks:type_name -> google.cloud.compute.v1.SavedDisk + 2157, // 766: google.cloud.compute.v1.MachineImage.source_disk_encryption_keys:type_name -> google.cloud.compute.v1.SourceDiskEncryptionKey + 2159, // 767: google.cloud.compute.v1.MachineImage.source_instance_properties:type_name -> google.cloud.compute.v1.SourceInstanceProperties + 1597, // 768: google.cloud.compute.v1.MachineImageList.items:type_name -> google.cloud.compute.v1.MachineImage + 2413, // 769: google.cloud.compute.v1.MachineImageList.warning:type_name -> google.cloud.compute.v1.Warning + 2512, // 770: google.cloud.compute.v1.MachineImageParams.resource_manager_tags:type_name -> google.cloud.compute.v1.MachineImageParams.ResourceManagerTagsEntry + 494, // 771: google.cloud.compute.v1.MachineType.accelerators:type_name -> google.cloud.compute.v1.Accelerators + 672, // 772: google.cloud.compute.v1.MachineType.bundled_local_ssds:type_name -> google.cloud.compute.v1.BundledLocalSsds + 830, // 773: google.cloud.compute.v1.MachineType.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus + 2513, // 774: google.cloud.compute.v1.MachineTypeAggregatedList.items:type_name -> google.cloud.compute.v1.MachineTypeAggregatedList.ItemsEntry + 2413, // 775: google.cloud.compute.v1.MachineTypeAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1600, // 776: google.cloud.compute.v1.MachineTypeList.items:type_name -> google.cloud.compute.v1.MachineType + 2413, // 777: google.cloud.compute.v1.MachineTypeList.warning:type_name -> google.cloud.compute.v1.Warning + 1600, // 778: google.cloud.compute.v1.MachineTypesScopedList.machine_types:type_name -> google.cloud.compute.v1.MachineType + 2413, // 779: google.cloud.compute.v1.MachineTypesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 1605, // 780: google.cloud.compute.v1.ManagedInstance.instance_health:type_name -> google.cloud.compute.v1.ManagedInstanceInstanceHealth + 1606, // 781: google.cloud.compute.v1.ManagedInstance.last_attempt:type_name -> google.cloud.compute.v1.ManagedInstanceLastAttempt + 1785, // 782: google.cloud.compute.v1.ManagedInstance.preserved_state_from_config:type_name -> google.cloud.compute.v1.PreservedState + 1785, // 783: google.cloud.compute.v1.ManagedInstance.preserved_state_from_policy:type_name -> google.cloud.compute.v1.PreservedState + 1608, // 784: google.cloud.compute.v1.ManagedInstance.properties_from_flexibility_policy:type_name -> google.cloud.compute.v1.ManagedInstancePropertiesFromFlexibilityPolicy + 1609, // 785: google.cloud.compute.v1.ManagedInstance.version:type_name -> google.cloud.compute.v1.ManagedInstanceVersion + 1607, // 786: google.cloud.compute.v1.ManagedInstanceLastAttempt.errors:type_name -> google.cloud.compute.v1.ManagedInstanceLastAttemptErrors + 867, // 787: google.cloud.compute.v1.ManagedInstanceLastAttemptErrors.errors:type_name -> google.cloud.compute.v1.Errors + 1442, // 788: google.cloud.compute.v1.Metadata.items:type_name -> google.cloud.compute.v1.Items + 1612, // 789: google.cloud.compute.v1.MetadataFilter.filter_labels:type_name -> google.cloud.compute.v1.MetadataFilterLabelMatch + 1819, // 790: google.cloud.compute.v1.MoveAddressRequest.region_addresses_move_request_resource:type_name -> google.cloud.compute.v1.RegionAddressesMoveRequest + 843, // 791: google.cloud.compute.v1.MoveDiskProjectRequest.disk_move_request_resource:type_name -> google.cloud.compute.v1.DiskMoveRequest + 1112, // 792: google.cloud.compute.v1.MoveGlobalAddressRequest.global_addresses_move_request_resource:type_name -> google.cloud.compute.v1.GlobalAddressesMoveRequest + 1327, // 793: google.cloud.compute.v1.MoveInstanceProjectRequest.instance_move_request_resource:type_name -> google.cloud.compute.v1.InstanceMoveRequest + 1621, // 794: google.cloud.compute.v1.NatIpInfo.nat_ip_info_mappings:type_name -> google.cloud.compute.v1.NatIpInfoNatIpInfoMapping + 1620, // 795: google.cloud.compute.v1.NatIpInfoResponse.result:type_name -> google.cloud.compute.v1.NatIpInfo + 1649, // 796: google.cloud.compute.v1.Network.params:type_name -> google.cloud.compute.v1.NetworkParams + 1650, // 797: google.cloud.compute.v1.Network.peerings:type_name -> google.cloud.compute.v1.NetworkPeering + 1661, // 798: google.cloud.compute.v1.Network.routing_config:type_name -> google.cloud.compute.v1.NetworkRoutingConfig + 1626, // 799: google.cloud.compute.v1.NetworkAttachment.connection_endpoints:type_name -> google.cloud.compute.v1.NetworkAttachmentConnectedEndpoint + 2514, // 800: google.cloud.compute.v1.NetworkAttachmentAggregatedList.items:type_name -> google.cloud.compute.v1.NetworkAttachmentAggregatedList.ItemsEntry + 2413, // 801: google.cloud.compute.v1.NetworkAttachmentAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1624, // 802: google.cloud.compute.v1.NetworkAttachmentList.items:type_name -> google.cloud.compute.v1.NetworkAttachment + 2413, // 803: google.cloud.compute.v1.NetworkAttachmentList.warning:type_name -> google.cloud.compute.v1.Warning + 1624, // 804: google.cloud.compute.v1.NetworkAttachmentsScopedList.network_attachments:type_name -> google.cloud.compute.v1.NetworkAttachment + 2413, // 805: google.cloud.compute.v1.NetworkAttachmentsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2515, // 806: google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList.items:type_name -> google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList.ItemsEntry + 2413, // 807: google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1629, // 808: google.cloud.compute.v1.NetworkEdgeSecurityServicesScopedList.network_edge_security_services:type_name -> google.cloud.compute.v1.NetworkEdgeSecurityService + 2413, // 809: google.cloud.compute.v1.NetworkEdgeSecurityServicesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2516, // 810: google.cloud.compute.v1.NetworkEndpoint.annotations:type_name -> google.cloud.compute.v1.NetworkEndpoint.AnnotationsEntry + 2517, // 811: google.cloud.compute.v1.NetworkEndpointGroup.annotations:type_name -> google.cloud.compute.v1.NetworkEndpointGroup.AnnotationsEntry + 1635, // 812: google.cloud.compute.v1.NetworkEndpointGroup.app_engine:type_name -> google.cloud.compute.v1.NetworkEndpointGroupAppEngine + 1636, // 813: google.cloud.compute.v1.NetworkEndpointGroup.cloud_function:type_name -> google.cloud.compute.v1.NetworkEndpointGroupCloudFunction + 1637, // 814: google.cloud.compute.v1.NetworkEndpointGroup.cloud_run:type_name -> google.cloud.compute.v1.NetworkEndpointGroupCloudRun + 1639, // 815: google.cloud.compute.v1.NetworkEndpointGroup.psc_data:type_name -> google.cloud.compute.v1.NetworkEndpointGroupPscData + 2518, // 816: google.cloud.compute.v1.NetworkEndpointGroupAggregatedList.items:type_name -> google.cloud.compute.v1.NetworkEndpointGroupAggregatedList.ItemsEntry + 2413, // 817: google.cloud.compute.v1.NetworkEndpointGroupAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1633, // 818: google.cloud.compute.v1.NetworkEndpointGroupList.items:type_name -> google.cloud.compute.v1.NetworkEndpointGroup + 2413, // 819: google.cloud.compute.v1.NetworkEndpointGroupList.warning:type_name -> google.cloud.compute.v1.Warning + 1632, // 820: google.cloud.compute.v1.NetworkEndpointGroupsAttachEndpointsRequest.network_endpoints:type_name -> google.cloud.compute.v1.NetworkEndpoint + 1632, // 821: google.cloud.compute.v1.NetworkEndpointGroupsDetachEndpointsRequest.network_endpoints:type_name -> google.cloud.compute.v1.NetworkEndpoint + 1645, // 822: google.cloud.compute.v1.NetworkEndpointGroupsListNetworkEndpoints.items:type_name -> google.cloud.compute.v1.NetworkEndpointWithHealthStatus + 2413, // 823: google.cloud.compute.v1.NetworkEndpointGroupsListNetworkEndpoints.warning:type_name -> google.cloud.compute.v1.Warning + 1633, // 824: google.cloud.compute.v1.NetworkEndpointGroupsScopedList.network_endpoint_groups:type_name -> google.cloud.compute.v1.NetworkEndpointGroup + 2413, // 825: google.cloud.compute.v1.NetworkEndpointGroupsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 1149, // 826: google.cloud.compute.v1.NetworkEndpointWithHealthStatus.healths:type_name -> google.cloud.compute.v1.HealthStatusForNetworkEndpoint + 1632, // 827: google.cloud.compute.v1.NetworkEndpointWithHealthStatus.network_endpoint:type_name -> google.cloud.compute.v1.NetworkEndpoint + 2519, // 828: google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList.items:type_name -> google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList.ItemsEntry + 2413, // 829: google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 495, // 830: google.cloud.compute.v1.NetworkInterface.access_configs:type_name -> google.cloud.compute.v1.AccessConfig + 576, // 831: google.cloud.compute.v1.NetworkInterface.alias_ip_ranges:type_name -> google.cloud.compute.v1.AliasIpRange + 495, // 832: google.cloud.compute.v1.NetworkInterface.ipv6_access_configs:type_name -> google.cloud.compute.v1.AccessConfig + 1623, // 833: google.cloud.compute.v1.NetworkList.items:type_name -> google.cloud.compute.v1.Network + 2413, // 834: google.cloud.compute.v1.NetworkList.warning:type_name -> google.cloud.compute.v1.Warning + 2520, // 835: google.cloud.compute.v1.NetworkParams.resource_manager_tags:type_name -> google.cloud.compute.v1.NetworkParams.ResourceManagerTagsEntry + 1651, // 836: google.cloud.compute.v1.NetworkPeering.connection_status:type_name -> google.cloud.compute.v1.NetworkPeeringConnectionStatus + 1652, // 837: google.cloud.compute.v1.NetworkPeeringConnectionStatus.consensus_state:type_name -> google.cloud.compute.v1.NetworkPeeringConnectionStatusConsensusState + 1653, // 838: google.cloud.compute.v1.NetworkPeeringConnectionStatus.traffic_configuration:type_name -> google.cloud.compute.v1.NetworkPeeringConnectionStatusTrafficConfiguration + 1657, // 839: google.cloud.compute.v1.NetworkProfile.features:type_name -> google.cloud.compute.v1.NetworkProfileNetworkFeatures + 1656, // 840: google.cloud.compute.v1.NetworkProfile.location:type_name -> google.cloud.compute.v1.NetworkProfileLocation + 1659, // 841: google.cloud.compute.v1.NetworkProfile.profile_type:type_name -> google.cloud.compute.v1.NetworkProfileProfileType + 1658, // 842: google.cloud.compute.v1.NetworkProfileNetworkFeatures.predefined_subnetwork_ranges:type_name -> google.cloud.compute.v1.NetworkProfileNetworkFeaturesPredefinedSubnetworkRange + 1655, // 843: google.cloud.compute.v1.NetworkProfilesListResponse.items:type_name -> google.cloud.compute.v1.NetworkProfile + 2413, // 844: google.cloud.compute.v1.NetworkProfilesListResponse.warning:type_name -> google.cloud.compute.v1.Warning + 1650, // 845: google.cloud.compute.v1.NetworksAddPeeringRequest.network_peering:type_name -> google.cloud.compute.v1.NetworkPeering + 1664, // 846: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponse.firewall_policys:type_name -> google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy + 877, // 847: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponse.firewalls:type_name -> google.cloud.compute.v1.Firewall + 886, // 848: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.packet_mirroring_rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 886, // 849: google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy.rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 1650, // 850: google.cloud.compute.v1.NetworksUpdatePeeringRequest.network_peering:type_name -> google.cloud.compute.v1.NetworkPeering + 1670, // 851: google.cloud.compute.v1.NodeGroup.autoscaling_policy:type_name -> google.cloud.compute.v1.NodeGroupAutoscalingPolicy + 1672, // 852: google.cloud.compute.v1.NodeGroup.maintenance_window:type_name -> google.cloud.compute.v1.NodeGroupMaintenanceWindow + 2138, // 853: google.cloud.compute.v1.NodeGroup.share_settings:type_name -> google.cloud.compute.v1.ShareSettings + 2521, // 854: google.cloud.compute.v1.NodeGroupAggregatedList.items:type_name -> google.cloud.compute.v1.NodeGroupAggregatedList.ItemsEntry + 2413, // 855: google.cloud.compute.v1.NodeGroupAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1668, // 856: google.cloud.compute.v1.NodeGroupList.items:type_name -> google.cloud.compute.v1.NodeGroup + 2413, // 857: google.cloud.compute.v1.NodeGroupList.warning:type_name -> google.cloud.compute.v1.Warning + 861, // 858: google.cloud.compute.v1.NodeGroupMaintenanceWindow.maintenance_duration:type_name -> google.cloud.compute.v1.Duration + 486, // 859: google.cloud.compute.v1.NodeGroupNode.accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig + 1264, // 860: google.cloud.compute.v1.NodeGroupNode.consumed_resources:type_name -> google.cloud.compute.v1.InstanceConsumptionInfo + 1591, // 861: google.cloud.compute.v1.NodeGroupNode.disks:type_name -> google.cloud.compute.v1.LocalDisk + 1263, // 862: google.cloud.compute.v1.NodeGroupNode.instance_consumption_data:type_name -> google.cloud.compute.v1.InstanceConsumptionData + 2026, // 863: google.cloud.compute.v1.NodeGroupNode.server_binding:type_name -> google.cloud.compute.v1.ServerBinding + 1264, // 864: google.cloud.compute.v1.NodeGroupNode.total_resources:type_name -> google.cloud.compute.v1.InstanceConsumptionInfo + 2328, // 865: google.cloud.compute.v1.NodeGroupNode.upcoming_maintenance:type_name -> google.cloud.compute.v1.UpcomingMaintenance + 1673, // 866: google.cloud.compute.v1.NodeGroupsListNodes.items:type_name -> google.cloud.compute.v1.NodeGroupNode + 2413, // 867: google.cloud.compute.v1.NodeGroupsListNodes.warning:type_name -> google.cloud.compute.v1.Warning + 1668, // 868: google.cloud.compute.v1.NodeGroupsScopedList.node_groups:type_name -> google.cloud.compute.v1.NodeGroup + 2413, // 869: google.cloud.compute.v1.NodeGroupsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 486, // 870: google.cloud.compute.v1.NodeTemplate.accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig + 1591, // 871: google.cloud.compute.v1.NodeTemplate.disks:type_name -> google.cloud.compute.v1.LocalDisk + 2522, // 872: google.cloud.compute.v1.NodeTemplate.node_affinity_labels:type_name -> google.cloud.compute.v1.NodeTemplate.NodeAffinityLabelsEntry + 1684, // 873: google.cloud.compute.v1.NodeTemplate.node_type_flexibility:type_name -> google.cloud.compute.v1.NodeTemplateNodeTypeFlexibility + 2026, // 874: google.cloud.compute.v1.NodeTemplate.server_binding:type_name -> google.cloud.compute.v1.ServerBinding + 2523, // 875: google.cloud.compute.v1.NodeTemplateAggregatedList.items:type_name -> google.cloud.compute.v1.NodeTemplateAggregatedList.ItemsEntry + 2413, // 876: google.cloud.compute.v1.NodeTemplateAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1681, // 877: google.cloud.compute.v1.NodeTemplateList.items:type_name -> google.cloud.compute.v1.NodeTemplate + 2413, // 878: google.cloud.compute.v1.NodeTemplateList.warning:type_name -> google.cloud.compute.v1.Warning + 1681, // 879: google.cloud.compute.v1.NodeTemplatesScopedList.node_templates:type_name -> google.cloud.compute.v1.NodeTemplate + 2413, // 880: google.cloud.compute.v1.NodeTemplatesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 830, // 881: google.cloud.compute.v1.NodeType.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus + 2524, // 882: google.cloud.compute.v1.NodeTypeAggregatedList.items:type_name -> google.cloud.compute.v1.NodeTypeAggregatedList.ItemsEntry + 2413, // 883: google.cloud.compute.v1.NodeTypeAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1686, // 884: google.cloud.compute.v1.NodeTypeList.items:type_name -> google.cloud.compute.v1.NodeType + 2413, // 885: google.cloud.compute.v1.NodeTypeList.warning:type_name -> google.cloud.compute.v1.Warning + 1686, // 886: google.cloud.compute.v1.NodeTypesScopedList.node_types:type_name -> google.cloud.compute.v1.NodeType + 2413, // 887: google.cloud.compute.v1.NodeTypesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 1692, // 888: google.cloud.compute.v1.NotificationEndpoint.grpc_settings:type_name -> google.cloud.compute.v1.NotificationEndpointGrpcSettings + 2525, // 889: google.cloud.compute.v1.NotificationEndpointAggregatedList.items:type_name -> google.cloud.compute.v1.NotificationEndpointAggregatedList.ItemsEntry + 2413, // 890: google.cloud.compute.v1.NotificationEndpointAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 861, // 891: google.cloud.compute.v1.NotificationEndpointGrpcSettings.resend_interval:type_name -> google.cloud.compute.v1.Duration + 1690, // 892: google.cloud.compute.v1.NotificationEndpointList.items:type_name -> google.cloud.compute.v1.NotificationEndpoint + 2413, // 893: google.cloud.compute.v1.NotificationEndpointList.warning:type_name -> google.cloud.compute.v1.Warning + 1690, // 894: google.cloud.compute.v1.NotificationEndpointsScopedList.resources:type_name -> google.cloud.compute.v1.NotificationEndpoint + 2413, // 895: google.cloud.compute.v1.NotificationEndpointsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 864, // 896: google.cloud.compute.v1.Operation.error:type_name -> google.cloud.compute.v1.Error + 1100, // 897: google.cloud.compute.v1.Operation.get_version_operation_metadata:type_name -> google.cloud.compute.v1.GetVersionOperationMetadata + 1340, // 898: google.cloud.compute.v1.Operation.instances_bulk_insert_operation_metadata:type_name -> google.cloud.compute.v1.InstancesBulkInsertOperationMetadata + 2040, // 899: google.cloud.compute.v1.Operation.set_common_instance_metadata_operation_metadata:type_name -> google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadata + 299, // 900: google.cloud.compute.v1.Operation.status:type_name -> google.cloud.compute.v1.Operation.Status + 2414, // 901: google.cloud.compute.v1.Operation.warnings:type_name -> google.cloud.compute.v1.Warnings + 2526, // 902: google.cloud.compute.v1.OperationAggregatedList.items:type_name -> google.cloud.compute.v1.OperationAggregatedList.ItemsEntry + 2413, // 903: google.cloud.compute.v1.OperationAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1695, // 904: google.cloud.compute.v1.OperationList.items:type_name -> google.cloud.compute.v1.Operation + 2413, // 905: google.cloud.compute.v1.OperationList.warning:type_name -> google.cloud.compute.v1.Warning + 1695, // 906: google.cloud.compute.v1.OperationsScopedList.operations:type_name -> google.cloud.compute.v1.Operation + 2413, // 907: google.cloud.compute.v1.OperationsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2000, // 908: google.cloud.compute.v1.OrganizationSecurityPoliciesListAssociationsResponse.associations:type_name -> google.cloud.compute.v1.SecurityPolicyAssociation + 861, // 909: google.cloud.compute.v1.OutlierDetection.base_ejection_time:type_name -> google.cloud.compute.v1.Duration + 861, // 910: google.cloud.compute.v1.OutlierDetection.interval:type_name -> google.cloud.compute.v1.Duration + 1705, // 911: google.cloud.compute.v1.PacketMirroring.collector_ilb:type_name -> google.cloud.compute.v1.PacketMirroringForwardingRuleInfo + 1704, // 912: google.cloud.compute.v1.PacketMirroring.filter:type_name -> google.cloud.compute.v1.PacketMirroringFilter + 1707, // 913: google.cloud.compute.v1.PacketMirroring.mirrored_resources:type_name -> google.cloud.compute.v1.PacketMirroringMirroredResourceInfo + 1710, // 914: google.cloud.compute.v1.PacketMirroring.network:type_name -> google.cloud.compute.v1.PacketMirroringNetworkInfo + 2527, // 915: google.cloud.compute.v1.PacketMirroringAggregatedList.items:type_name -> google.cloud.compute.v1.PacketMirroringAggregatedList.ItemsEntry + 2413, // 916: google.cloud.compute.v1.PacketMirroringAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1702, // 917: google.cloud.compute.v1.PacketMirroringList.items:type_name -> google.cloud.compute.v1.PacketMirroring + 2413, // 918: google.cloud.compute.v1.PacketMirroringList.warning:type_name -> google.cloud.compute.v1.Warning + 1708, // 919: google.cloud.compute.v1.PacketMirroringMirroredResourceInfo.instances:type_name -> google.cloud.compute.v1.PacketMirroringMirroredResourceInfoInstanceInfo + 1709, // 920: google.cloud.compute.v1.PacketMirroringMirroredResourceInfo.subnetworks:type_name -> google.cloud.compute.v1.PacketMirroringMirroredResourceInfoSubnetInfo + 1702, // 921: google.cloud.compute.v1.PacketMirroringsScopedList.packet_mirrorings:type_name -> google.cloud.compute.v1.PacketMirroring + 2413, // 922: google.cloud.compute.v1.PacketMirroringsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 600, // 923: google.cloud.compute.v1.PatchAutoscalerRequest.autoscaler_resource:type_name -> google.cloud.compute.v1.Autoscaler + 613, // 924: google.cloud.compute.v1.PatchBackendBucketRequest.backend_bucket_resource:type_name -> google.cloud.compute.v1.BackendBucket + 625, // 925: google.cloud.compute.v1.PatchBackendServiceRequest.backend_service_resource:type_name -> google.cloud.compute.v1.BackendService + 712, // 926: google.cloud.compute.v1.PatchCrossSiteNetworkRequest.cross_site_network_resource:type_name -> google.cloud.compute.v1.CrossSiteNetwork + 883, // 927: google.cloud.compute.v1.PatchFirewallPolicyRequest.firewall_policy_resource:type_name -> google.cloud.compute.v1.FirewallPolicy + 877, // 928: google.cloud.compute.v1.PatchFirewallRequest.firewall_resource:type_name -> google.cloud.compute.v1.Firewall + 892, // 929: google.cloud.compute.v1.PatchForwardingRuleRequest.forwarding_rule_resource:type_name -> google.cloud.compute.v1.ForwardingRule + 892, // 930: google.cloud.compute.v1.PatchGlobalForwardingRuleRequest.forwarding_rule_resource:type_name -> google.cloud.compute.v1.ForwardingRule + 1806, // 931: google.cloud.compute.v1.PatchGlobalPublicDelegatedPrefixeRequest.public_delegated_prefix_resource:type_name -> google.cloud.compute.v1.PublicDelegatedPrefix + 1130, // 932: google.cloud.compute.v1.PatchHealthCheckRequest.health_check_resource:type_name -> google.cloud.compute.v1.HealthCheck + 1165, // 933: google.cloud.compute.v1.PatchImageRequest.image_resource:type_name -> google.cloud.compute.v1.Image + 1270, // 934: google.cloud.compute.v1.PatchInstanceGroupManagerRequest.instance_group_manager_resource:type_name -> google.cloud.compute.v1.InstanceGroupManager + 1332, // 935: google.cloud.compute.v1.PatchInstanceSettingRequest.instance_settings_resource:type_name -> google.cloud.compute.v1.InstanceSettings + 1375, // 936: google.cloud.compute.v1.PatchInterconnectAttachmentGroupRequest.interconnect_attachment_group_resource:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroup + 1371, // 937: google.cloud.compute.v1.PatchInterconnectAttachmentRequest.interconnect_attachment_resource:type_name -> google.cloud.compute.v1.InterconnectAttachment + 1406, // 938: google.cloud.compute.v1.PatchInterconnectGroupRequest.interconnect_group_resource:type_name -> google.cloud.compute.v1.InterconnectGroup + 1366, // 939: google.cloud.compute.v1.PatchInterconnectRequest.interconnect_resource:type_name -> google.cloud.compute.v1.Interconnect + 1624, // 940: google.cloud.compute.v1.PatchNetworkAttachmentRequest.network_attachment_resource:type_name -> google.cloud.compute.v1.NetworkAttachment + 1629, // 941: google.cloud.compute.v1.PatchNetworkEdgeSecurityServiceRequest.network_edge_security_service_resource:type_name -> google.cloud.compute.v1.NetworkEdgeSecurityService + 883, // 942: google.cloud.compute.v1.PatchNetworkFirewallPolicyRequest.firewall_policy_resource:type_name -> google.cloud.compute.v1.FirewallPolicy + 1623, // 943: google.cloud.compute.v1.PatchNetworkRequest.network_resource:type_name -> google.cloud.compute.v1.Network + 1668, // 944: google.cloud.compute.v1.PatchNodeGroupRequest.node_group_resource:type_name -> google.cloud.compute.v1.NodeGroup + 1993, // 945: google.cloud.compute.v1.PatchOrganizationSecurityPolicyRequest.security_policy_resource:type_name -> google.cloud.compute.v1.SecurityPolicy + 1702, // 946: google.cloud.compute.v1.PatchPacketMirroringRequest.packet_mirroring_resource:type_name -> google.cloud.compute.v1.PacketMirroring + 886, // 947: google.cloud.compute.v1.PatchPacketMirroringRuleNetworkFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 1306, // 948: google.cloud.compute.v1.PatchPerInstanceConfigsInstanceGroupManagerRequest.instance_group_managers_patch_per_instance_configs_req_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersPatchPerInstanceConfigsReq + 1830, // 949: google.cloud.compute.v1.PatchPerInstanceConfigsRegionInstanceGroupManagerRequest.region_instance_group_manager_patch_instance_config_req_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagerPatchInstanceConfigReq + 1803, // 950: google.cloud.compute.v1.PatchPublicAdvertisedPrefixeRequest.public_advertised_prefix_resource:type_name -> google.cloud.compute.v1.PublicAdvertisedPrefix + 1806, // 951: google.cloud.compute.v1.PatchPublicDelegatedPrefixeRequest.public_delegated_prefix_resource:type_name -> google.cloud.compute.v1.PublicDelegatedPrefix + 600, // 952: google.cloud.compute.v1.PatchRegionAutoscalerRequest.autoscaler_resource:type_name -> google.cloud.compute.v1.Autoscaler + 613, // 953: google.cloud.compute.v1.PatchRegionBackendBucketRequest.backend_bucket_resource:type_name -> google.cloud.compute.v1.BackendBucket + 625, // 954: google.cloud.compute.v1.PatchRegionBackendServiceRequest.backend_service_resource:type_name -> google.cloud.compute.v1.BackendService + 695, // 955: google.cloud.compute.v1.PatchRegionCompositeHealthCheckRequest.composite_health_check_resource:type_name -> google.cloud.compute.v1.CompositeHealthCheck + 1127, // 956: google.cloud.compute.v1.PatchRegionHealthAggregationPolicyRequest.health_aggregation_policy_resource:type_name -> google.cloud.compute.v1.HealthAggregationPolicy + 1130, // 957: google.cloud.compute.v1.PatchRegionHealthCheckRequest.health_check_resource:type_name -> google.cloud.compute.v1.HealthCheck + 1134, // 958: google.cloud.compute.v1.PatchRegionHealthCheckServiceRequest.health_check_service_resource:type_name -> google.cloud.compute.v1.HealthCheckService + 1141, // 959: google.cloud.compute.v1.PatchRegionHealthSourceRequest.health_source_resource:type_name -> google.cloud.compute.v1.HealthSource + 1270, // 960: google.cloud.compute.v1.PatchRegionInstanceGroupManagerRequest.instance_group_manager_resource:type_name -> google.cloud.compute.v1.InstanceGroupManager + 883, // 961: google.cloud.compute.v1.PatchRegionNetworkFirewallPolicyRequest.firewall_policy_resource:type_name -> google.cloud.compute.v1.FirewallPolicy + 1993, // 962: google.cloud.compute.v1.PatchRegionSecurityPolicyRequest.security_policy_resource:type_name -> google.cloud.compute.v1.SecurityPolicy + 2151, // 963: google.cloud.compute.v1.PatchRegionSnapshotSettingRequest.snapshot_settings_resource:type_name -> google.cloud.compute.v1.SnapshotSettings + 2170, // 964: google.cloud.compute.v1.PatchRegionSslPolicyRequest.ssl_policy_resource:type_name -> google.cloud.compute.v1.SslPolicy + 2233, // 965: google.cloud.compute.v1.PatchRegionTargetHttpsProxyRequest.target_https_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxy + 2363, // 966: google.cloud.compute.v1.PatchRegionUrlMapRequest.url_map_resource:type_name -> google.cloud.compute.v1.UrlMap + 1922, // 967: google.cloud.compute.v1.PatchResourcePolicyRequest.resource_policy_resource:type_name -> google.cloud.compute.v1.ResourcePolicy + 1952, // 968: google.cloud.compute.v1.PatchRoutePolicyRouterRequest.route_policy_resource:type_name -> google.cloud.compute.v1.RoutePolicy + 1954, // 969: google.cloud.compute.v1.PatchRouterRequest.router_resource:type_name -> google.cloud.compute.v1.Router + 886, // 970: google.cloud.compute.v1.PatchRuleFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 886, // 971: google.cloud.compute.v1.PatchRuleNetworkFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 2005, // 972: google.cloud.compute.v1.PatchRuleOrganizationSecurityPolicyRequest.security_policy_rule_resource:type_name -> google.cloud.compute.v1.SecurityPolicyRule + 886, // 973: google.cloud.compute.v1.PatchRuleRegionNetworkFirewallPolicyRequest.firewall_policy_rule_resource:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 2005, // 974: google.cloud.compute.v1.PatchRuleRegionSecurityPolicyRequest.security_policy_rule_resource:type_name -> google.cloud.compute.v1.SecurityPolicyRule + 2005, // 975: google.cloud.compute.v1.PatchRuleSecurityPolicyRequest.security_policy_rule_resource:type_name -> google.cloud.compute.v1.SecurityPolicyRule + 1993, // 976: google.cloud.compute.v1.PatchSecurityPolicyRequest.security_policy_resource:type_name -> google.cloud.compute.v1.SecurityPolicy + 2028, // 977: google.cloud.compute.v1.PatchServiceAttachmentRequest.service_attachment_resource:type_name -> google.cloud.compute.v1.ServiceAttachment + 2151, // 978: google.cloud.compute.v1.PatchSnapshotSettingRequest.snapshot_settings_resource:type_name -> google.cloud.compute.v1.SnapshotSettings + 2170, // 979: google.cloud.compute.v1.PatchSslPolicyRequest.ssl_policy_resource:type_name -> google.cloud.compute.v1.SslPolicy + 2203, // 980: google.cloud.compute.v1.PatchSubnetworkRequest.subnetwork_resource:type_name -> google.cloud.compute.v1.Subnetwork + 2223, // 981: google.cloud.compute.v1.PatchTargetGrpcProxyRequest.target_grpc_proxy_resource:type_name -> google.cloud.compute.v1.TargetGrpcProxy + 2226, // 982: google.cloud.compute.v1.PatchTargetHttpProxyRequest.target_http_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpProxy + 2233, // 983: google.cloud.compute.v1.PatchTargetHttpsProxyRequest.target_https_proxy_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxy + 2363, // 984: google.cloud.compute.v1.PatchUrlMapRequest.url_map_resource:type_name -> google.cloud.compute.v1.UrlMap + 2418, // 985: google.cloud.compute.v1.PatchWireGroupRequest.wire_group_resource:type_name -> google.cloud.compute.v1.WireGroup + 714, // 986: google.cloud.compute.v1.PathMatcher.default_custom_error_response_policy:type_name -> google.cloud.compute.v1.CustomErrorResponsePolicy + 1162, // 987: google.cloud.compute.v1.PathMatcher.default_route_action:type_name -> google.cloud.compute.v1.HttpRouteAction + 1160, // 988: google.cloud.compute.v1.PathMatcher.default_url_redirect:type_name -> google.cloud.compute.v1.HttpRedirectAction + 1156, // 989: google.cloud.compute.v1.PathMatcher.header_action:type_name -> google.cloud.compute.v1.HttpHeaderAction + 1776, // 990: google.cloud.compute.v1.PathMatcher.path_rules:type_name -> google.cloud.compute.v1.PathRule + 1163, // 991: google.cloud.compute.v1.PathMatcher.route_rules:type_name -> google.cloud.compute.v1.HttpRouteRule + 714, // 992: google.cloud.compute.v1.PathRule.custom_error_response_policy:type_name -> google.cloud.compute.v1.CustomErrorResponsePolicy + 1162, // 993: google.cloud.compute.v1.PathRule.route_action:type_name -> google.cloud.compute.v1.HttpRouteAction + 1160, // 994: google.cloud.compute.v1.PathRule.url_redirect:type_name -> google.cloud.compute.v1.HttpRedirectAction + 1785, // 995: google.cloud.compute.v1.PerInstanceConfig.preserved_state:type_name -> google.cloud.compute.v1.PreservedState + 1677, // 996: google.cloud.compute.v1.PerformMaintenanceNodeGroupRequest.node_groups_perform_maintenance_request_resource:type_name -> google.cloud.compute.v1.NodeGroupsPerformMaintenanceRequest + 1909, // 997: google.cloud.compute.v1.PerformMaintenanceReservationBlockRequest.reservations_blocks_perform_maintenance_request_resource:type_name -> google.cloud.compute.v1.ReservationsBlocksPerformMaintenanceRequest + 1910, // 998: google.cloud.compute.v1.PerformMaintenanceReservationRequest.reservations_perform_maintenance_request_resource:type_name -> google.cloud.compute.v1.ReservationsPerformMaintenanceRequest + 598, // 999: google.cloud.compute.v1.Policy.audit_configs:type_name -> google.cloud.compute.v1.AuditConfig + 660, // 1000: google.cloud.compute.v1.Policy.bindings:type_name -> google.cloud.compute.v1.Binding + 2408, // 1001: google.cloud.compute.v1.PreconfiguredWafSet.expression_sets:type_name -> google.cloud.compute.v1.WafExpressionSet + 2528, // 1002: google.cloud.compute.v1.PreservedState.disks:type_name -> google.cloud.compute.v1.PreservedState.DisksEntry + 2529, // 1003: google.cloud.compute.v1.PreservedState.external_i_ps:type_name -> google.cloud.compute.v1.PreservedState.ExternalIPsEntry + 2530, // 1004: google.cloud.compute.v1.PreservedState.internal_i_ps:type_name -> google.cloud.compute.v1.PreservedState.InternalIPsEntry + 2531, // 1005: google.cloud.compute.v1.PreservedState.metadata:type_name -> google.cloud.compute.v1.PreservedState.MetadataEntry + 1788, // 1006: google.cloud.compute.v1.PreservedStatePreservedNetworkIp.ip_address:type_name -> google.cloud.compute.v1.PreservedStatePreservedNetworkIpIpAddress + 1791, // 1007: google.cloud.compute.v1.PreviewFeature.rollout_operation:type_name -> google.cloud.compute.v1.PreviewFeatureRolloutOperation + 1793, // 1008: google.cloud.compute.v1.PreviewFeature.status:type_name -> google.cloud.compute.v1.PreviewFeatureStatus + 1789, // 1009: google.cloud.compute.v1.PreviewFeatureList.items:type_name -> google.cloud.compute.v1.PreviewFeature + 2413, // 1010: google.cloud.compute.v1.PreviewFeatureList.warning:type_name -> google.cloud.compute.v1.Warning + 1792, // 1011: google.cloud.compute.v1.PreviewFeatureRolloutOperation.rollout_input:type_name -> google.cloud.compute.v1.PreviewFeatureRolloutOperationRolloutInput + 1794, // 1012: google.cloud.compute.v1.PreviewFeatureStatus.release_status:type_name -> google.cloud.compute.v1.PreviewFeatureStatusReleaseStatus + 719, // 1013: google.cloud.compute.v1.PreviewFeatureStatusReleaseStatus.update_date:type_name -> google.cloud.compute.v1.Date + 1954, // 1014: google.cloud.compute.v1.PreviewRouterRequest.router_resource:type_name -> google.cloud.compute.v1.Router + 1610, // 1015: google.cloud.compute.v1.Project.common_instance_metadata:type_name -> google.cloud.compute.v1.Metadata + 1811, // 1016: google.cloud.compute.v1.Project.quotas:type_name -> google.cloud.compute.v1.Quota + 2377, // 1017: google.cloud.compute.v1.Project.usage_export_location:type_name -> google.cloud.compute.v1.UsageExportLocation + 2429, // 1018: google.cloud.compute.v1.ProjectsDisableXpnResourceRequest.xpn_resource:type_name -> google.cloud.compute.v1.XpnResourceId + 2429, // 1019: google.cloud.compute.v1.ProjectsEnableXpnResourceRequest.xpn_resource:type_name -> google.cloud.compute.v1.XpnResourceId + 2429, // 1020: google.cloud.compute.v1.ProjectsGetXpnResources.resources:type_name -> google.cloud.compute.v1.XpnResourceId + 1805, // 1021: google.cloud.compute.v1.PublicAdvertisedPrefix.public_delegated_prefixs:type_name -> google.cloud.compute.v1.PublicAdvertisedPrefixPublicDelegatedPrefix + 1803, // 1022: google.cloud.compute.v1.PublicAdvertisedPrefixList.items:type_name -> google.cloud.compute.v1.PublicAdvertisedPrefix + 2413, // 1023: google.cloud.compute.v1.PublicAdvertisedPrefixList.warning:type_name -> google.cloud.compute.v1.Warning + 1809, // 1024: google.cloud.compute.v1.PublicDelegatedPrefix.public_delegated_sub_prefixs:type_name -> google.cloud.compute.v1.PublicDelegatedPrefixPublicDelegatedSubPrefix + 2532, // 1025: google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList.items:type_name -> google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList.ItemsEntry + 2413, // 1026: google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1806, // 1027: google.cloud.compute.v1.PublicDelegatedPrefixList.items:type_name -> google.cloud.compute.v1.PublicDelegatedPrefix + 2413, // 1028: google.cloud.compute.v1.PublicDelegatedPrefixList.warning:type_name -> google.cloud.compute.v1.Warning + 1806, // 1029: google.cloud.compute.v1.PublicDelegatedPrefixesScopedList.public_delegated_prefixes:type_name -> google.cloud.compute.v1.PublicDelegatedPrefix + 2413, // 1030: google.cloud.compute.v1.PublicDelegatedPrefixesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2533, // 1031: google.cloud.compute.v1.QuotaExceededInfo.dimensions:type_name -> google.cloud.compute.v1.QuotaExceededInfo.DimensionsEntry + 718, // 1032: google.cloud.compute.v1.QuotaStatusWarning.data:type_name -> google.cloud.compute.v1.Data + 1307, // 1033: google.cloud.compute.v1.RecreateInstancesInstanceGroupManagerRequest.instance_group_managers_recreate_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersRecreateInstancesRequest + 1840, // 1034: google.cloud.compute.v1.RecreateInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_recreate_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersRecreateRequest + 830, // 1035: google.cloud.compute.v1.Region.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus + 1813, // 1036: google.cloud.compute.v1.Region.quota_status_warning:type_name -> google.cloud.compute.v1.QuotaStatusWarning + 1811, // 1037: google.cloud.compute.v1.Region.quotas:type_name -> google.cloud.compute.v1.Quota + 600, // 1038: google.cloud.compute.v1.RegionAutoscalerList.items:type_name -> google.cloud.compute.v1.Autoscaler + 2413, // 1039: google.cloud.compute.v1.RegionAutoscalerList.warning:type_name -> google.cloud.compute.v1.Warning + 847, // 1040: google.cloud.compute.v1.RegionDiskTypeList.items:type_name -> google.cloud.compute.v1.DiskType + 2413, // 1041: google.cloud.compute.v1.RegionDiskTypeList.warning:type_name -> google.cloud.compute.v1.Warning + 1267, // 1042: google.cloud.compute.v1.RegionInstanceGroupList.items:type_name -> google.cloud.compute.v1.InstanceGroup + 2413, // 1043: google.cloud.compute.v1.RegionInstanceGroupList.warning:type_name -> google.cloud.compute.v1.Warning + 1270, // 1044: google.cloud.compute.v1.RegionInstanceGroupManagerList.items:type_name -> google.cloud.compute.v1.InstanceGroupManager + 2413, // 1045: google.cloud.compute.v1.RegionInstanceGroupManagerList.warning:type_name -> google.cloud.compute.v1.Warning + 1777, // 1046: google.cloud.compute.v1.RegionInstanceGroupManagerPatchInstanceConfigReq.per_instance_configs:type_name -> google.cloud.compute.v1.PerInstanceConfig + 1279, // 1047: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequestsListResponse.items:type_name -> google.cloud.compute.v1.InstanceGroupManagerResizeRequest + 2413, // 1048: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequestsListResponse.warning:type_name -> google.cloud.compute.v1.Warning + 1777, // 1049: google.cloud.compute.v1.RegionInstanceGroupManagerUpdateInstanceConfigReq.per_instance_configs:type_name -> google.cloud.compute.v1.PerInstanceConfig + 1777, // 1050: google.cloud.compute.v1.RegionInstanceGroupManagersCreateInstancesRequest.instances:type_name -> google.cloud.compute.v1.PerInstanceConfig + 1324, // 1051: google.cloud.compute.v1.RegionInstanceGroupManagersListErrorsResponse.items:type_name -> google.cloud.compute.v1.InstanceManagedByIgmError + 1777, // 1052: google.cloud.compute.v1.RegionInstanceGroupManagersListInstanceConfigsResp.items:type_name -> google.cloud.compute.v1.PerInstanceConfig + 2413, // 1053: google.cloud.compute.v1.RegionInstanceGroupManagersListInstanceConfigsResp.warning:type_name -> google.cloud.compute.v1.Warning + 1604, // 1054: google.cloud.compute.v1.RegionInstanceGroupManagersListInstancesResponse.managed_instances:type_name -> google.cloud.compute.v1.ManagedInstance + 1338, // 1055: google.cloud.compute.v1.RegionInstanceGroupsListInstances.items:type_name -> google.cloud.compute.v1.InstanceWithNamedPorts + 2413, // 1056: google.cloud.compute.v1.RegionInstanceGroupsListInstances.warning:type_name -> google.cloud.compute.v1.Warning + 1619, // 1057: google.cloud.compute.v1.RegionInstanceGroupsSetNamedPortsRequest.named_ports:type_name -> google.cloud.compute.v1.NamedPort + 1818, // 1058: google.cloud.compute.v1.RegionList.items:type_name -> google.cloud.compute.v1.Region + 2413, // 1059: google.cloud.compute.v1.RegionList.warning:type_name -> google.cloud.compute.v1.Warning + 1632, // 1060: google.cloud.compute.v1.RegionNetworkEndpointGroupsAttachEndpointsRequest.network_endpoints:type_name -> google.cloud.compute.v1.NetworkEndpoint + 1632, // 1061: google.cloud.compute.v1.RegionNetworkEndpointGroupsDetachEndpointsRequest.network_endpoints:type_name -> google.cloud.compute.v1.NetworkEndpoint + 1854, // 1062: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse.firewall_policys:type_name -> google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy + 877, // 1063: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse.firewalls:type_name -> google.cloud.compute.v1.Firewall + 886, // 1064: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.packet_mirroring_rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 886, // 1065: google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.rules:type_name -> google.cloud.compute.v1.FirewallPolicyRule + 2534, // 1066: google.cloud.compute.v1.RegionSetLabelsRequest.labels:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest.LabelsEntry + 660, // 1067: google.cloud.compute.v1.RegionSetPolicyRequest.bindings:type_name -> google.cloud.compute.v1.Binding + 1783, // 1068: google.cloud.compute.v1.RegionSetPolicyRequest.policy:type_name -> google.cloud.compute.v1.Policy + 2363, // 1069: google.cloud.compute.v1.RegionUrlMapsValidateRequest.resource:type_name -> google.cloud.compute.v1.UrlMap + 2246, // 1070: google.cloud.compute.v1.RemoveHealthCheckTargetPoolRequest.target_pools_remove_health_check_request_resource:type_name -> google.cloud.compute.v1.TargetPoolsRemoveHealthCheckRequest + 2247, // 1071: google.cloud.compute.v1.RemoveInstanceTargetPoolRequest.target_pools_remove_instance_request_resource:type_name -> google.cloud.compute.v1.TargetPoolsRemoveInstanceRequest + 1319, // 1072: google.cloud.compute.v1.RemoveInstancesInstanceGroupRequest.instance_groups_remove_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupsRemoveInstancesRequest + 1665, // 1073: google.cloud.compute.v1.RemovePeeringNetworkRequest.networks_remove_peering_request_resource:type_name -> google.cloud.compute.v1.NetworksRemovePeeringRequest + 853, // 1074: google.cloud.compute.v1.RemoveResourcePoliciesDiskRequest.disks_remove_resource_policies_request_resource:type_name -> google.cloud.compute.v1.DisksRemoveResourcePoliciesRequest + 1343, // 1075: google.cloud.compute.v1.RemoveResourcePoliciesInstanceRequest.instances_remove_resource_policies_request_resource:type_name -> google.cloud.compute.v1.InstancesRemoveResourcePoliciesRequest + 1824, // 1076: google.cloud.compute.v1.RemoveResourcePoliciesRegionDiskRequest.region_disks_remove_resource_policies_request_resource:type_name -> google.cloud.compute.v1.RegionDisksRemoveResourcePoliciesRequest + 1907, // 1077: google.cloud.compute.v1.ReportFaultyReservationSubBlockRequest.reservation_sub_blocks_report_faulty_request_resource:type_name -> google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequest + 1344, // 1078: google.cloud.compute.v1.ReportHostAsFaultyInstanceRequest.instances_report_host_as_faulty_request_resource:type_name -> google.cloud.compute.v1.InstancesReportHostAsFaultyRequest + 1666, // 1079: google.cloud.compute.v1.RequestRemovePeeringNetworkRequest.networks_request_remove_peering_request_resource:type_name -> google.cloud.compute.v1.NetworksRequestRemovePeeringRequest + 1883, // 1080: google.cloud.compute.v1.Reservation.advanced_deployment_control:type_name -> google.cloud.compute.v1.ReservationAdvancedDeploymentControl + 577, // 1081: google.cloud.compute.v1.Reservation.aggregate_reservation:type_name -> google.cloud.compute.v1.AllocationAggregateReservation + 861, // 1082: google.cloud.compute.v1.Reservation.delete_after_duration:type_name -> google.cloud.compute.v1.Duration + 1894, // 1083: google.cloud.compute.v1.Reservation.params:type_name -> google.cloud.compute.v1.ReservationParams + 580, // 1084: google.cloud.compute.v1.Reservation.reservation_sharing_policy:type_name -> google.cloud.compute.v1.AllocationReservationSharingPolicy + 2535, // 1085: google.cloud.compute.v1.Reservation.resource_policies:type_name -> google.cloud.compute.v1.Reservation.ResourcePoliciesEntry + 581, // 1086: google.cloud.compute.v1.Reservation.resource_status:type_name -> google.cloud.compute.v1.AllocationResourceStatus + 2138, // 1087: google.cloud.compute.v1.Reservation.share_settings:type_name -> google.cloud.compute.v1.ShareSettings + 586, // 1088: google.cloud.compute.v1.Reservation.specific_reservation:type_name -> google.cloud.compute.v1.AllocationSpecificSKUReservation + 2536, // 1089: google.cloud.compute.v1.ReservationAggregatedList.items:type_name -> google.cloud.compute.v1.ReservationAggregatedList.ItemsEntry + 2413, // 1090: google.cloud.compute.v1.ReservationAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1887, // 1091: google.cloud.compute.v1.ReservationBlock.health_info:type_name -> google.cloud.compute.v1.ReservationBlockHealthInfo + 1888, // 1092: google.cloud.compute.v1.ReservationBlock.physical_topology:type_name -> google.cloud.compute.v1.ReservationBlockPhysicalTopology + 1118, // 1093: google.cloud.compute.v1.ReservationBlock.reservation_maintenance:type_name -> google.cloud.compute.v1.GroupMaintenanceInfo + 1889, // 1094: google.cloud.compute.v1.ReservationBlockPhysicalTopology.instances:type_name -> google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstance + 1890, // 1095: google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstance.physical_host_topology:type_name -> google.cloud.compute.v1.ReservationBlockPhysicalTopologyInstancePhysicalHostTopology + 1886, // 1096: google.cloud.compute.v1.ReservationBlocksGetResponse.resource:type_name -> google.cloud.compute.v1.ReservationBlock + 1886, // 1097: google.cloud.compute.v1.ReservationBlocksListResponse.items:type_name -> google.cloud.compute.v1.ReservationBlock + 2413, // 1098: google.cloud.compute.v1.ReservationBlocksListResponse.warning:type_name -> google.cloud.compute.v1.Warning + 1882, // 1099: google.cloud.compute.v1.ReservationList.items:type_name -> google.cloud.compute.v1.Reservation + 2413, // 1100: google.cloud.compute.v1.ReservationList.warning:type_name -> google.cloud.compute.v1.Warning + 2537, // 1101: google.cloud.compute.v1.ReservationParams.resource_manager_tags:type_name -> google.cloud.compute.v1.ReservationParams.ResourceManagerTagsEntry + 1896, // 1102: google.cloud.compute.v1.ReservationSlot.physical_topology:type_name -> google.cloud.compute.v1.ReservationSlotPhysicalTopology + 2138, // 1103: google.cloud.compute.v1.ReservationSlot.share_settings:type_name -> google.cloud.compute.v1.ShareSettings + 1897, // 1104: google.cloud.compute.v1.ReservationSlot.status:type_name -> google.cloud.compute.v1.ReservationSlotStatus + 1896, // 1105: google.cloud.compute.v1.ReservationSlotStatus.physical_topology:type_name -> google.cloud.compute.v1.ReservationSlotPhysicalTopology + 1895, // 1106: google.cloud.compute.v1.ReservationSlotsGetResponse.resource:type_name -> google.cloud.compute.v1.ReservationSlot + 1895, // 1107: google.cloud.compute.v1.ReservationSlotsListResponse.items:type_name -> google.cloud.compute.v1.ReservationSlot + 2413, // 1108: google.cloud.compute.v1.ReservationSlotsListResponse.warning:type_name -> google.cloud.compute.v1.Warning + 487, // 1109: google.cloud.compute.v1.ReservationSubBlock.accelerator_topologies_info:type_name -> google.cloud.compute.v1.AcceleratorTopologiesInfo + 1902, // 1110: google.cloud.compute.v1.ReservationSubBlock.health_info:type_name -> google.cloud.compute.v1.ReservationSubBlockHealthInfo + 1903, // 1111: google.cloud.compute.v1.ReservationSubBlock.physical_topology:type_name -> google.cloud.compute.v1.ReservationSubBlockPhysicalTopology + 1118, // 1112: google.cloud.compute.v1.ReservationSubBlock.reservation_sub_block_maintenance:type_name -> google.cloud.compute.v1.GroupMaintenanceInfo + 1901, // 1113: google.cloud.compute.v1.ReservationSubBlocksGetResponse.resource:type_name -> google.cloud.compute.v1.ReservationSubBlock + 1901, // 1114: google.cloud.compute.v1.ReservationSubBlocksListResponse.items:type_name -> google.cloud.compute.v1.ReservationSubBlock + 2413, // 1115: google.cloud.compute.v1.ReservationSubBlocksListResponse.warning:type_name -> google.cloud.compute.v1.Warning + 1908, // 1116: google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequest.fault_reasons:type_name -> google.cloud.compute.v1.ReservationSubBlocksReportFaultyRequestFaultReason + 1882, // 1117: google.cloud.compute.v1.ReservationsScopedList.reservations:type_name -> google.cloud.compute.v1.Reservation + 2413, // 1118: google.cloud.compute.v1.ReservationsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 854, // 1119: google.cloud.compute.v1.ResizeDiskRequest.disks_resize_request_resource:type_name -> google.cloud.compute.v1.DisksResizeRequest + 1825, // 1120: google.cloud.compute.v1.ResizeRegionDiskRequest.region_disks_resize_request_resource:type_name -> google.cloud.compute.v1.RegionDisksResizeRequest + 1911, // 1121: google.cloud.compute.v1.ResizeReservationRequest.reservations_resize_request_resource:type_name -> google.cloud.compute.v1.ReservationsResizeRequest + 1922, // 1122: google.cloud.compute.v1.ResourcePoliciesScopedList.resource_policies:type_name -> google.cloud.compute.v1.ResourcePolicy + 2413, // 1123: google.cloud.compute.v1.ResourcePoliciesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 1925, // 1124: google.cloud.compute.v1.ResourcePolicy.disk_consistency_group_policy:type_name -> google.cloud.compute.v1.ResourcePolicyDiskConsistencyGroupPolicy + 1926, // 1125: google.cloud.compute.v1.ResourcePolicy.group_placement_policy:type_name -> google.cloud.compute.v1.ResourcePolicyGroupPlacementPolicy + 1928, // 1126: google.cloud.compute.v1.ResourcePolicy.instance_schedule_policy:type_name -> google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicy + 1931, // 1127: google.cloud.compute.v1.ResourcePolicy.resource_status:type_name -> google.cloud.compute.v1.ResourcePolicyResourceStatus + 1933, // 1128: google.cloud.compute.v1.ResourcePolicy.snapshot_schedule_policy:type_name -> google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicy + 1939, // 1129: google.cloud.compute.v1.ResourcePolicy.workload_policy:type_name -> google.cloud.compute.v1.ResourcePolicyWorkloadPolicy + 2538, // 1130: google.cloud.compute.v1.ResourcePolicyAggregatedList.items:type_name -> google.cloud.compute.v1.ResourcePolicyAggregatedList.ItemsEntry + 2413, // 1131: google.cloud.compute.v1.ResourcePolicyAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1929, // 1132: google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicy.vm_start_schedule:type_name -> google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicySchedule + 1929, // 1133: google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicy.vm_stop_schedule:type_name -> google.cloud.compute.v1.ResourcePolicyInstanceSchedulePolicySchedule + 1922, // 1134: google.cloud.compute.v1.ResourcePolicyList.items:type_name -> google.cloud.compute.v1.ResourcePolicy + 2413, // 1135: google.cloud.compute.v1.ResourcePolicyList.warning:type_name -> google.cloud.compute.v1.Warning + 1932, // 1136: google.cloud.compute.v1.ResourcePolicyResourceStatus.instance_schedule_policy:type_name -> google.cloud.compute.v1.ResourcePolicyResourceStatusInstanceSchedulePolicyStatus + 1934, // 1137: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicy.retention_policy:type_name -> google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicyRetentionPolicy + 1935, // 1138: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicy.schedule:type_name -> google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySchedule + 1936, // 1139: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicy.snapshot_properties:type_name -> google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySnapshotProperties + 1924, // 1140: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySchedule.daily_schedule:type_name -> google.cloud.compute.v1.ResourcePolicyDailyCycle + 1927, // 1141: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySchedule.hourly_schedule:type_name -> google.cloud.compute.v1.ResourcePolicyHourlyCycle + 1937, // 1142: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySchedule.weekly_schedule:type_name -> google.cloud.compute.v1.ResourcePolicyWeeklyCycle + 2539, // 1143: google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySnapshotProperties.labels:type_name -> google.cloud.compute.v1.ResourcePolicySnapshotSchedulePolicySnapshotProperties.LabelsEntry + 1938, // 1144: google.cloud.compute.v1.ResourcePolicyWeeklyCycle.day_of_weeks:type_name -> google.cloud.compute.v1.ResourcePolicyWeeklyCycleDayOfWeek + 1941, // 1145: google.cloud.compute.v1.ResourceStatus.effective_instance_metadata:type_name -> google.cloud.compute.v1.ResourceStatusEffectiveInstanceMetadata + 1942, // 1146: google.cloud.compute.v1.ResourceStatus.physical_host_topology:type_name -> google.cloud.compute.v1.ResourceStatusPhysicalHostTopology + 1943, // 1147: google.cloud.compute.v1.ResourceStatus.reservation_consumption_info:type_name -> google.cloud.compute.v1.ResourceStatusReservationConsumptionInfo + 1944, // 1148: google.cloud.compute.v1.ResourceStatus.scheduling:type_name -> google.cloud.compute.v1.ResourceStatusScheduling + 2328, // 1149: google.cloud.compute.v1.ResourceStatus.upcoming_maintenance:type_name -> google.cloud.compute.v1.UpcomingMaintenance + 1308, // 1150: google.cloud.compute.v1.ResumeInstancesInstanceGroupManagerRequest.instance_group_managers_resume_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersResumeInstancesRequest + 1841, // 1151: google.cloud.compute.v1.ResumeInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_resume_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersResumeInstancesRequest + 1949, // 1152: google.cloud.compute.v1.Route.as_paths:type_name -> google.cloud.compute.v1.RouteAsPath + 1951, // 1153: google.cloud.compute.v1.Route.params:type_name -> google.cloud.compute.v1.RouteParams + 2414, // 1154: google.cloud.compute.v1.Route.warnings:type_name -> google.cloud.compute.v1.Warnings + 1948, // 1155: google.cloud.compute.v1.RouteList.items:type_name -> google.cloud.compute.v1.Route + 2413, // 1156: google.cloud.compute.v1.RouteList.warning:type_name -> google.cloud.compute.v1.Warning + 2540, // 1157: google.cloud.compute.v1.RouteParams.resource_manager_tags:type_name -> google.cloud.compute.v1.RouteParams.ResourceManagerTagsEntry + 1953, // 1158: google.cloud.compute.v1.RoutePolicy.terms:type_name -> google.cloud.compute.v1.RoutePolicyPolicyTerm + 871, // 1159: google.cloud.compute.v1.RoutePolicyPolicyTerm.actions:type_name -> google.cloud.compute.v1.Expr + 871, // 1160: google.cloud.compute.v1.RoutePolicyPolicyTerm.match:type_name -> google.cloud.compute.v1.Expr + 1957, // 1161: google.cloud.compute.v1.Router.bgp:type_name -> google.cloud.compute.v1.RouterBgp + 1958, // 1162: google.cloud.compute.v1.Router.bgp_peers:type_name -> google.cloud.compute.v1.RouterBgpPeer + 1961, // 1163: google.cloud.compute.v1.Router.interfaces:type_name -> google.cloud.compute.v1.RouterInterface + 1963, // 1164: google.cloud.compute.v1.Router.md5_authentication_keys:type_name -> google.cloud.compute.v1.RouterMd5AuthenticationKey + 1964, // 1165: google.cloud.compute.v1.Router.nats:type_name -> google.cloud.compute.v1.RouterNat + 1970, // 1166: google.cloud.compute.v1.Router.params:type_name -> google.cloud.compute.v1.RouterParams + 2541, // 1167: google.cloud.compute.v1.RouterAggregatedList.items:type_name -> google.cloud.compute.v1.RouterAggregatedList.ItemsEntry + 2413, // 1168: google.cloud.compute.v1.RouterAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1955, // 1169: google.cloud.compute.v1.RouterBgp.advertised_ip_ranges:type_name -> google.cloud.compute.v1.RouterAdvertisedIpRange + 1955, // 1170: google.cloud.compute.v1.RouterBgpPeer.advertised_ip_ranges:type_name -> google.cloud.compute.v1.RouterAdvertisedIpRange + 1959, // 1171: google.cloud.compute.v1.RouterBgpPeer.bfd:type_name -> google.cloud.compute.v1.RouterBgpPeerBfd + 1960, // 1172: google.cloud.compute.v1.RouterBgpPeer.custom_learned_ip_ranges:type_name -> google.cloud.compute.v1.RouterBgpPeerCustomLearnedIpRange + 1954, // 1173: google.cloud.compute.v1.RouterList.items:type_name -> google.cloud.compute.v1.Router + 2413, // 1174: google.cloud.compute.v1.RouterList.warning:type_name -> google.cloud.compute.v1.Warning + 1965, // 1175: google.cloud.compute.v1.RouterNat.log_config:type_name -> google.cloud.compute.v1.RouterNatLogConfig + 1969, // 1176: google.cloud.compute.v1.RouterNat.nat64_subnetworks:type_name -> google.cloud.compute.v1.RouterNatSubnetworkToNat64 + 1966, // 1177: google.cloud.compute.v1.RouterNat.rules:type_name -> google.cloud.compute.v1.RouterNatRule + 1968, // 1178: google.cloud.compute.v1.RouterNat.subnetworks:type_name -> google.cloud.compute.v1.RouterNatSubnetworkToNat + 1967, // 1179: google.cloud.compute.v1.RouterNatRule.action:type_name -> google.cloud.compute.v1.RouterNatRuleAction + 2542, // 1180: google.cloud.compute.v1.RouterParams.resource_manager_tags:type_name -> google.cloud.compute.v1.RouterParams.ResourceManagerTagsEntry + 1948, // 1181: google.cloud.compute.v1.RouterStatus.best_routes:type_name -> google.cloud.compute.v1.Route + 1948, // 1182: google.cloud.compute.v1.RouterStatus.best_routes_for_router:type_name -> google.cloud.compute.v1.Route + 1972, // 1183: google.cloud.compute.v1.RouterStatus.bgp_peer_status:type_name -> google.cloud.compute.v1.RouterStatusBgpPeerStatus + 1973, // 1184: google.cloud.compute.v1.RouterStatus.nat_status:type_name -> google.cloud.compute.v1.RouterStatusNatStatus + 1948, // 1185: google.cloud.compute.v1.RouterStatusBgpPeerStatus.advertised_routes:type_name -> google.cloud.compute.v1.Route + 655, // 1186: google.cloud.compute.v1.RouterStatusBgpPeerStatus.bfd_status:type_name -> google.cloud.compute.v1.BfdStatus + 1974, // 1187: google.cloud.compute.v1.RouterStatusNatStatus.rule_status:type_name -> google.cloud.compute.v1.RouterStatusNatStatusNatRuleStatus + 1971, // 1188: google.cloud.compute.v1.RouterStatusResponse.result:type_name -> google.cloud.compute.v1.RouterStatus + 1952, // 1189: google.cloud.compute.v1.RoutersGetRoutePolicyResponse.resource:type_name -> google.cloud.compute.v1.RoutePolicy + 657, // 1190: google.cloud.compute.v1.RoutersListBgpRoutes.result:type_name -> google.cloud.compute.v1.BgpRoute + 2413, // 1191: google.cloud.compute.v1.RoutersListBgpRoutes.warning:type_name -> google.cloud.compute.v1.Warning + 1952, // 1192: google.cloud.compute.v1.RoutersListRoutePolicies.result:type_name -> google.cloud.compute.v1.RoutePolicy + 2413, // 1193: google.cloud.compute.v1.RoutersListRoutePolicies.warning:type_name -> google.cloud.compute.v1.Warning + 1954, // 1194: google.cloud.compute.v1.RoutersPreviewResponse.resource:type_name -> google.cloud.compute.v1.Router + 1954, // 1195: google.cloud.compute.v1.RoutersScopedList.routers:type_name -> google.cloud.compute.v1.Router + 2413, // 1196: google.cloud.compute.v1.RoutersScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 716, // 1197: google.cloud.compute.v1.SavedAttachedDisk.disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 1122, // 1198: google.cloud.compute.v1.SavedAttachedDisk.guest_os_features:type_name -> google.cloud.compute.v1.GuestOsFeature + 861, // 1199: google.cloud.compute.v1.Scheduling.local_ssd_recovery_timeout:type_name -> google.cloud.compute.v1.Duration + 861, // 1200: google.cloud.compute.v1.Scheduling.max_run_duration:type_name -> google.cloud.compute.v1.Duration + 1986, // 1201: google.cloud.compute.v1.Scheduling.node_affinities:type_name -> google.cloud.compute.v1.SchedulingNodeAffinity + 1987, // 1202: google.cloud.compute.v1.Scheduling.on_instance_stop_action:type_name -> google.cloud.compute.v1.SchedulingOnInstanceStopAction + 2543, // 1203: google.cloud.compute.v1.SecurityPoliciesAggregatedList.items:type_name -> google.cloud.compute.v1.SecurityPoliciesAggregatedList.ItemsEntry + 2413, // 1204: google.cloud.compute.v1.SecurityPoliciesAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1992, // 1205: google.cloud.compute.v1.SecurityPoliciesListPreconfiguredExpressionSetsResponse.preconfigured_expression_sets:type_name -> google.cloud.compute.v1.SecurityPoliciesWafConfig + 1993, // 1206: google.cloud.compute.v1.SecurityPoliciesScopedList.security_policies:type_name -> google.cloud.compute.v1.SecurityPolicy + 2413, // 1207: google.cloud.compute.v1.SecurityPoliciesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 1784, // 1208: google.cloud.compute.v1.SecurityPoliciesWafConfig.waf_rules:type_name -> google.cloud.compute.v1.PreconfiguredWafSet + 1994, // 1209: google.cloud.compute.v1.SecurityPolicy.adaptive_protection_config:type_name -> google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfig + 1998, // 1210: google.cloud.compute.v1.SecurityPolicy.advanced_options_config:type_name -> google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfig + 2000, // 1211: google.cloud.compute.v1.SecurityPolicy.associations:type_name -> google.cloud.compute.v1.SecurityPolicyAssociation + 2001, // 1212: google.cloud.compute.v1.SecurityPolicy.ddos_protection_config:type_name -> google.cloud.compute.v1.SecurityPolicyDdosProtectionConfig + 2544, // 1213: google.cloud.compute.v1.SecurityPolicy.labels:type_name -> google.cloud.compute.v1.SecurityPolicy.LabelsEntry + 2003, // 1214: google.cloud.compute.v1.SecurityPolicy.recaptcha_options_config:type_name -> google.cloud.compute.v1.SecurityPolicyRecaptchaOptionsConfig + 2005, // 1215: google.cloud.compute.v1.SecurityPolicy.rules:type_name -> google.cloud.compute.v1.SecurityPolicyRule + 2021, // 1216: google.cloud.compute.v1.SecurityPolicy.user_defined_fields:type_name -> google.cloud.compute.v1.SecurityPolicyUserDefinedField + 1995, // 1217: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfig.layer7_ddos_defense_config:type_name -> google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig + 1996, // 1218: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig.threshold_configs:type_name -> google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig + 1997, // 1219: google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfig.traffic_granularity_configs:type_name -> google.cloud.compute.v1.SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig + 1999, // 1220: google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfig.json_custom_config:type_name -> google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfigJsonCustomConfig + 1993, // 1221: google.cloud.compute.v1.SecurityPolicyList.items:type_name -> google.cloud.compute.v1.SecurityPolicy + 2413, // 1222: google.cloud.compute.v1.SecurityPolicyList.warning:type_name -> google.cloud.compute.v1.Warning + 2006, // 1223: google.cloud.compute.v1.SecurityPolicyRule.header_action:type_name -> google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderAction + 2008, // 1224: google.cloud.compute.v1.SecurityPolicyRule.match:type_name -> google.cloud.compute.v1.SecurityPolicyRuleMatcher + 2012, // 1225: google.cloud.compute.v1.SecurityPolicyRule.network_match:type_name -> google.cloud.compute.v1.SecurityPolicyRuleNetworkMatcher + 2014, // 1226: google.cloud.compute.v1.SecurityPolicyRule.preconfigured_waf_config:type_name -> google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfig + 2017, // 1227: google.cloud.compute.v1.SecurityPolicyRule.rate_limit_options:type_name -> google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions + 2020, // 1228: google.cloud.compute.v1.SecurityPolicyRule.redirect_options:type_name -> google.cloud.compute.v1.SecurityPolicyRuleRedirectOptions + 2007, // 1229: google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderAction.request_headers_to_adds:type_name -> google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderActionHttpHeaderOption + 2009, // 1230: google.cloud.compute.v1.SecurityPolicyRuleMatcher.config:type_name -> google.cloud.compute.v1.SecurityPolicyRuleMatcherConfig + 871, // 1231: google.cloud.compute.v1.SecurityPolicyRuleMatcher.expr:type_name -> google.cloud.compute.v1.Expr + 2010, // 1232: google.cloud.compute.v1.SecurityPolicyRuleMatcher.expr_options:type_name -> google.cloud.compute.v1.SecurityPolicyRuleMatcherExprOptions + 2011, // 1233: google.cloud.compute.v1.SecurityPolicyRuleMatcherExprOptions.recaptcha_options:type_name -> google.cloud.compute.v1.SecurityPolicyRuleMatcherExprOptionsRecaptchaOptions + 2013, // 1234: google.cloud.compute.v1.SecurityPolicyRuleNetworkMatcher.user_defined_fields:type_name -> google.cloud.compute.v1.SecurityPolicyRuleNetworkMatcherUserDefinedFieldMatch + 2015, // 1235: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfig.exclusions:type_name -> google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion + 2016, // 1236: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion.request_cookies_to_exclude:type_name -> google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams + 2016, // 1237: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion.request_headers_to_exclude:type_name -> google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams + 2016, // 1238: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion.request_query_params_to_exclude:type_name -> google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams + 2016, // 1239: google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion.request_uris_to_exclude:type_name -> google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams + 2019, // 1240: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions.ban_threshold:type_name -> google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptionsThreshold + 2018, // 1241: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions.enforce_on_key_configs:type_name -> google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig + 2020, // 1242: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions.exceed_redirect_options:type_name -> google.cloud.compute.v1.SecurityPolicyRuleRedirectOptions + 2019, // 1243: google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptions.rate_limit_threshold:type_name -> google.cloud.compute.v1.SecurityPolicyRuleRateLimitOptionsThreshold + 483, // 1244: google.cloud.compute.v1.SecuritySettings.aws_v4_authentication:type_name -> google.cloud.compute.v1.AWSV4Signature + 2030, // 1245: google.cloud.compute.v1.ServiceAttachment.connected_endpoints:type_name -> google.cloud.compute.v1.ServiceAttachmentConnectedEndpoint + 2031, // 1246: google.cloud.compute.v1.ServiceAttachment.consumer_accept_lists:type_name -> google.cloud.compute.v1.ServiceAttachmentConsumerProjectLimit + 2545, // 1247: google.cloud.compute.v1.ServiceAttachment.metadata:type_name -> google.cloud.compute.v1.ServiceAttachment.MetadataEntry + 2327, // 1248: google.cloud.compute.v1.ServiceAttachment.psc_service_attachment_id:type_name -> google.cloud.compute.v1.Uint128 + 2546, // 1249: google.cloud.compute.v1.ServiceAttachmentAggregatedList.items:type_name -> google.cloud.compute.v1.ServiceAttachmentAggregatedList.ItemsEntry + 2413, // 1250: google.cloud.compute.v1.ServiceAttachmentAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2028, // 1251: google.cloud.compute.v1.ServiceAttachmentList.items:type_name -> google.cloud.compute.v1.ServiceAttachment + 2413, // 1252: google.cloud.compute.v1.ServiceAttachmentList.warning:type_name -> google.cloud.compute.v1.Warning + 2028, // 1253: google.cloud.compute.v1.ServiceAttachmentsScopedList.service_attachments:type_name -> google.cloud.compute.v1.ServiceAttachment + 2413, // 1254: google.cloud.compute.v1.ServiceAttachmentsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2250, // 1255: google.cloud.compute.v1.SetBackendServiceTargetSslProxyRequest.target_ssl_proxies_set_backend_service_request_resource:type_name -> google.cloud.compute.v1.TargetSslProxiesSetBackendServiceRequest + 2257, // 1256: google.cloud.compute.v1.SetBackendServiceTargetTcpProxyRequest.target_tcp_proxies_set_backend_service_request_resource:type_name -> google.cloud.compute.v1.TargetTcpProxiesSetBackendServiceRequest + 2249, // 1257: google.cloud.compute.v1.SetBackupTargetPoolRequest.target_reference_resource:type_name -> google.cloud.compute.v1.TargetReference + 2230, // 1258: google.cloud.compute.v1.SetCertificateMapTargetHttpsProxyRequest.target_https_proxies_set_certificate_map_request_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxiesSetCertificateMapRequest + 2251, // 1259: google.cloud.compute.v1.SetCertificateMapTargetSslProxyRequest.target_ssl_proxies_set_certificate_map_request_resource:type_name -> google.cloud.compute.v1.TargetSslProxiesSetCertificateMapRequest + 1801, // 1260: google.cloud.compute.v1.SetCloudArmorTierProjectRequest.projects_set_cloud_armor_tier_request_resource:type_name -> google.cloud.compute.v1.ProjectsSetCloudArmorTierRequest + 2547, // 1261: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadata.per_location_operations:type_name -> google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadata.PerLocationOperationsEntry + 2182, // 1262: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo.error:type_name -> google.cloud.compute.v1.Status + 1610, // 1263: google.cloud.compute.v1.SetCommonInstanceMetadataProjectRequest.metadata_resource:type_name -> google.cloud.compute.v1.Metadata + 1802, // 1264: google.cloud.compute.v1.SetDefaultNetworkTierProjectRequest.projects_set_default_network_tier_request_resource:type_name -> google.cloud.compute.v1.ProjectsSetDefaultNetworkTierRequest + 2004, // 1265: google.cloud.compute.v1.SetEdgeSecurityPolicyBackendBucketRequest.security_policy_reference_resource:type_name -> google.cloud.compute.v1.SecurityPolicyReference + 2004, // 1266: google.cloud.compute.v1.SetEdgeSecurityPolicyBackendServiceRequest.security_policy_reference_resource:type_name -> google.cloud.compute.v1.SecurityPolicyReference + 1117, // 1267: google.cloud.compute.v1.SetIamPolicyBackendBucketRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest + 1117, // 1268: google.cloud.compute.v1.SetIamPolicyBackendServiceRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest + 2434, // 1269: google.cloud.compute.v1.SetIamPolicyDiskRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest + 1115, // 1270: google.cloud.compute.v1.SetIamPolicyFirewallPolicyRequest.global_organization_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalOrganizationSetPolicyRequest + 1117, // 1271: google.cloud.compute.v1.SetIamPolicyImageRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest + 2434, // 1272: google.cloud.compute.v1.SetIamPolicyInstanceRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest + 1117, // 1273: google.cloud.compute.v1.SetIamPolicyInstanceTemplateRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest + 2434, // 1274: google.cloud.compute.v1.SetIamPolicyInstantSnapshotGroupRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest + 2434, // 1275: google.cloud.compute.v1.SetIamPolicyInstantSnapshotRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest + 1117, // 1276: google.cloud.compute.v1.SetIamPolicyInterconnectAttachmentGroupRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest + 1117, // 1277: google.cloud.compute.v1.SetIamPolicyInterconnectGroupRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest + 1117, // 1278: google.cloud.compute.v1.SetIamPolicyLicenseRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest + 1117, // 1279: google.cloud.compute.v1.SetIamPolicyMachineImageRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest + 1856, // 1280: google.cloud.compute.v1.SetIamPolicyNetworkAttachmentRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest + 1117, // 1281: google.cloud.compute.v1.SetIamPolicyNetworkFirewallPolicyRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest + 2434, // 1282: google.cloud.compute.v1.SetIamPolicyNodeGroupRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest + 1856, // 1283: google.cloud.compute.v1.SetIamPolicyNodeTemplateRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest + 1856, // 1284: google.cloud.compute.v1.SetIamPolicyRegionBackendBucketRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest + 1856, // 1285: google.cloud.compute.v1.SetIamPolicyRegionBackendServiceRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest + 1856, // 1286: google.cloud.compute.v1.SetIamPolicyRegionDiskRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest + 1856, // 1287: google.cloud.compute.v1.SetIamPolicyRegionInstantSnapshotGroupRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest + 1856, // 1288: google.cloud.compute.v1.SetIamPolicyRegionInstantSnapshotRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest + 1856, // 1289: google.cloud.compute.v1.SetIamPolicyRegionNetworkFirewallPolicyRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest + 1856, // 1290: google.cloud.compute.v1.SetIamPolicyRegionSnapshotRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest + 2433, // 1291: google.cloud.compute.v1.SetIamPolicyReservationBlockRequest.zone_set_nested_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetNestedPolicyRequest + 2434, // 1292: google.cloud.compute.v1.SetIamPolicyReservationRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest + 2433, // 1293: google.cloud.compute.v1.SetIamPolicyReservationSubBlockRequest.zone_set_nested_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetNestedPolicyRequest + 1856, // 1294: google.cloud.compute.v1.SetIamPolicyResourcePolicyRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest + 1856, // 1295: google.cloud.compute.v1.SetIamPolicyServiceAttachmentRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest + 1117, // 1296: google.cloud.compute.v1.SetIamPolicySnapshotRequest.global_set_policy_request_resource:type_name -> google.cloud.compute.v1.GlobalSetPolicyRequest + 2434, // 1297: google.cloud.compute.v1.SetIamPolicyStoragePoolRequest.zone_set_policy_request_resource:type_name -> google.cloud.compute.v1.ZoneSetPolicyRequest + 1856, // 1298: google.cloud.compute.v1.SetIamPolicySubnetworkRequest.region_set_policy_request_resource:type_name -> google.cloud.compute.v1.RegionSetPolicyRequest + 1310, // 1299: google.cloud.compute.v1.SetInstanceTemplateInstanceGroupManagerRequest.instance_group_managers_set_instance_template_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersSetInstanceTemplateRequest + 1843, // 1300: google.cloud.compute.v1.SetInstanceTemplateRegionInstanceGroupManagerRequest.region_instance_group_managers_set_template_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersSetTemplateRequest + 1855, // 1301: google.cloud.compute.v1.SetLabelsAddressRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest + 2432, // 1302: google.cloud.compute.v1.SetLabelsDiskRequest.zone_set_labels_request_resource:type_name -> google.cloud.compute.v1.ZoneSetLabelsRequest + 1116, // 1303: google.cloud.compute.v1.SetLabelsExternalVpnGatewayRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest + 1855, // 1304: google.cloud.compute.v1.SetLabelsForwardingRuleRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest + 1116, // 1305: google.cloud.compute.v1.SetLabelsGlobalAddressRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest + 1116, // 1306: google.cloud.compute.v1.SetLabelsGlobalForwardingRuleRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest + 1116, // 1307: google.cloud.compute.v1.SetLabelsImageRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest + 1347, // 1308: google.cloud.compute.v1.SetLabelsInstanceRequest.instances_set_labels_request_resource:type_name -> google.cloud.compute.v1.InstancesSetLabelsRequest + 2432, // 1309: google.cloud.compute.v1.SetLabelsInstantSnapshotRequest.zone_set_labels_request_resource:type_name -> google.cloud.compute.v1.ZoneSetLabelsRequest + 1855, // 1310: google.cloud.compute.v1.SetLabelsInterconnectAttachmentRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest + 1116, // 1311: google.cloud.compute.v1.SetLabelsInterconnectRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest + 1116, // 1312: google.cloud.compute.v1.SetLabelsMachineImageRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest + 1855, // 1313: google.cloud.compute.v1.SetLabelsRegionDiskRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest + 1855, // 1314: google.cloud.compute.v1.SetLabelsRegionInstantSnapshotRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest + 1855, // 1315: google.cloud.compute.v1.SetLabelsRegionSecurityPolicyRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest + 1855, // 1316: google.cloud.compute.v1.SetLabelsRegionSnapshotRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest + 1116, // 1317: google.cloud.compute.v1.SetLabelsSecurityPolicyRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest + 1116, // 1318: google.cloud.compute.v1.SetLabelsSnapshotRequest.global_set_labels_request_resource:type_name -> google.cloud.compute.v1.GlobalSetLabelsRequest + 1855, // 1319: google.cloud.compute.v1.SetLabelsTargetVpnGatewayRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest + 1855, // 1320: google.cloud.compute.v1.SetLabelsVpnGatewayRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest + 1855, // 1321: google.cloud.compute.v1.SetLabelsVpnTunnelRequest.region_set_labels_request_resource:type_name -> google.cloud.compute.v1.RegionSetLabelsRequest + 1348, // 1322: google.cloud.compute.v1.SetMachineResourcesInstanceRequest.instances_set_machine_resources_request_resource:type_name -> google.cloud.compute.v1.InstancesSetMachineResourcesRequest + 1349, // 1323: google.cloud.compute.v1.SetMachineTypeInstanceRequest.instances_set_machine_type_request_resource:type_name -> google.cloud.compute.v1.InstancesSetMachineTypeRequest + 1610, // 1324: google.cloud.compute.v1.SetMetadataInstanceRequest.metadata_resource:type_name -> google.cloud.compute.v1.Metadata + 1350, // 1325: google.cloud.compute.v1.SetMinCpuPlatformInstanceRequest.instances_set_min_cpu_platform_request_resource:type_name -> google.cloud.compute.v1.InstancesSetMinCpuPlatformRequest + 1351, // 1326: google.cloud.compute.v1.SetNameInstanceRequest.instances_set_name_request_resource:type_name -> google.cloud.compute.v1.InstancesSetNameRequest + 1321, // 1327: google.cloud.compute.v1.SetNamedPortsInstanceGroupRequest.instance_groups_set_named_ports_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupsSetNamedPortsRequest + 1849, // 1328: google.cloud.compute.v1.SetNamedPortsRegionInstanceGroupRequest.region_instance_groups_set_named_ports_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupsSetNamedPortsRequest + 1679, // 1329: google.cloud.compute.v1.SetNodeTemplateNodeGroupRequest.node_groups_set_node_template_request_resource:type_name -> google.cloud.compute.v1.NodeGroupsSetNodeTemplateRequest + 2215, // 1330: google.cloud.compute.v1.SetPrivateIpGoogleAccessSubnetworkRequest.subnetworks_set_private_ip_google_access_request_resource:type_name -> google.cloud.compute.v1.SubnetworksSetPrivateIpGoogleAccessRequest + 2252, // 1331: google.cloud.compute.v1.SetProxyHeaderTargetSslProxyRequest.target_ssl_proxies_set_proxy_header_request_resource:type_name -> google.cloud.compute.v1.TargetSslProxiesSetProxyHeaderRequest + 2258, // 1332: google.cloud.compute.v1.SetProxyHeaderTargetTcpProxyRequest.target_tcp_proxies_set_proxy_header_request_resource:type_name -> google.cloud.compute.v1.TargetTcpProxiesSetProxyHeaderRequest + 2231, // 1333: google.cloud.compute.v1.SetQuicOverrideTargetHttpsProxyRequest.target_https_proxies_set_quic_override_request_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxiesSetQuicOverrideRequest + 1985, // 1334: google.cloud.compute.v1.SetSchedulingInstanceRequest.scheduling_resource:type_name -> google.cloud.compute.v1.Scheduling + 2004, // 1335: google.cloud.compute.v1.SetSecurityPolicyBackendServiceRequest.security_policy_reference_resource:type_name -> google.cloud.compute.v1.SecurityPolicyReference + 1352, // 1336: google.cloud.compute.v1.SetSecurityPolicyInstanceRequest.instances_set_security_policy_request_resource:type_name -> google.cloud.compute.v1.InstancesSetSecurityPolicyRequest + 2004, // 1337: google.cloud.compute.v1.SetSecurityPolicyRegionBackendServiceRequest.security_policy_reference_resource:type_name -> google.cloud.compute.v1.SecurityPolicyReference + 2004, // 1338: google.cloud.compute.v1.SetSecurityPolicyTargetInstanceRequest.security_policy_reference_resource:type_name -> google.cloud.compute.v1.SecurityPolicyReference + 2004, // 1339: google.cloud.compute.v1.SetSecurityPolicyTargetPoolRequest.security_policy_reference_resource:type_name -> google.cloud.compute.v1.SecurityPolicyReference + 1353, // 1340: google.cloud.compute.v1.SetServiceAccountInstanceRequest.instances_set_service_account_request_resource:type_name -> google.cloud.compute.v1.InstancesSetServiceAccountRequest + 2143, // 1341: google.cloud.compute.v1.SetShieldedInstanceIntegrityPolicyInstanceRequest.shielded_instance_integrity_policy_resource:type_name -> google.cloud.compute.v1.ShieldedInstanceIntegrityPolicy + 1858, // 1342: google.cloud.compute.v1.SetSslCertificatesRegionTargetHttpsProxyRequest.region_target_https_proxies_set_ssl_certificates_request_resource:type_name -> google.cloud.compute.v1.RegionTargetHttpsProxiesSetSslCertificatesRequest + 2232, // 1343: google.cloud.compute.v1.SetSslCertificatesTargetHttpsProxyRequest.target_https_proxies_set_ssl_certificates_request_resource:type_name -> google.cloud.compute.v1.TargetHttpsProxiesSetSslCertificatesRequest + 2253, // 1344: google.cloud.compute.v1.SetSslCertificatesTargetSslProxyRequest.target_ssl_proxies_set_ssl_certificates_request_resource:type_name -> google.cloud.compute.v1.TargetSslProxiesSetSslCertificatesRequest + 2171, // 1345: google.cloud.compute.v1.SetSslPolicyTargetHttpsProxyRequest.ssl_policy_reference_resource:type_name -> google.cloud.compute.v1.SslPolicyReference + 2171, // 1346: google.cloud.compute.v1.SetSslPolicyTargetSslProxyRequest.ssl_policy_reference_resource:type_name -> google.cloud.compute.v1.SslPolicyReference + 2222, // 1347: google.cloud.compute.v1.SetTagsInstanceRequest.tags_resource:type_name -> google.cloud.compute.v1.Tags + 2249, // 1348: google.cloud.compute.v1.SetTargetForwardingRuleRequest.target_reference_resource:type_name -> google.cloud.compute.v1.TargetReference + 2249, // 1349: google.cloud.compute.v1.SetTargetGlobalForwardingRuleRequest.target_reference_resource:type_name -> google.cloud.compute.v1.TargetReference + 1311, // 1350: google.cloud.compute.v1.SetTargetPoolsInstanceGroupManagerRequest.instance_group_managers_set_target_pools_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersSetTargetPoolsRequest + 1842, // 1351: google.cloud.compute.v1.SetTargetPoolsRegionInstanceGroupManagerRequest.region_instance_group_managers_set_target_pools_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersSetTargetPoolsRequest + 2365, // 1352: google.cloud.compute.v1.SetUrlMapRegionTargetHttpProxyRequest.url_map_reference_resource:type_name -> google.cloud.compute.v1.UrlMapReference + 2365, // 1353: google.cloud.compute.v1.SetUrlMapRegionTargetHttpsProxyRequest.url_map_reference_resource:type_name -> google.cloud.compute.v1.UrlMapReference + 2365, // 1354: google.cloud.compute.v1.SetUrlMapTargetHttpProxyRequest.url_map_reference_resource:type_name -> google.cloud.compute.v1.UrlMapReference + 2365, // 1355: google.cloud.compute.v1.SetUrlMapTargetHttpsProxyRequest.url_map_reference_resource:type_name -> google.cloud.compute.v1.UrlMapReference + 2377, // 1356: google.cloud.compute.v1.SetUsageExportBucketProjectRequest.usage_export_location_resource:type_name -> google.cloud.compute.v1.UsageExportLocation + 2548, // 1357: google.cloud.compute.v1.ShareSettings.project_map:type_name -> google.cloud.compute.v1.ShareSettings.ProjectMapEntry + 2142, // 1358: google.cloud.compute.v1.ShieldedInstanceIdentity.ecc_p256_encryption_key:type_name -> google.cloud.compute.v1.ShieldedInstanceIdentityEntry + 2142, // 1359: google.cloud.compute.v1.ShieldedInstanceIdentity.ecc_p256_signing_key:type_name -> google.cloud.compute.v1.ShieldedInstanceIdentityEntry + 2142, // 1360: google.cloud.compute.v1.ShieldedInstanceIdentity.encryption_key:type_name -> google.cloud.compute.v1.ShieldedInstanceIdentityEntry + 2142, // 1361: google.cloud.compute.v1.ShieldedInstanceIdentity.signing_key:type_name -> google.cloud.compute.v1.ShieldedInstanceIdentityEntry + 1680, // 1362: google.cloud.compute.v1.SimulateMaintenanceEventNodeGroupRequest.node_groups_simulate_maintenance_event_request_resource:type_name -> google.cloud.compute.v1.NodeGroupsSimulateMaintenanceEventRequest + 1122, // 1363: google.cloud.compute.v1.Snapshot.guest_os_features:type_name -> google.cloud.compute.v1.GuestOsFeature + 2549, // 1364: google.cloud.compute.v1.Snapshot.labels:type_name -> google.cloud.compute.v1.Snapshot.LabelsEntry + 2150, // 1365: google.cloud.compute.v1.Snapshot.params:type_name -> google.cloud.compute.v1.SnapshotParams + 716, // 1366: google.cloud.compute.v1.Snapshot.snapshot_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 716, // 1367: google.cloud.compute.v1.Snapshot.source_disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 716, // 1368: google.cloud.compute.v1.Snapshot.source_instant_snapshot_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 2147, // 1369: google.cloud.compute.v1.SnapshotList.items:type_name -> google.cloud.compute.v1.Snapshot + 2413, // 1370: google.cloud.compute.v1.SnapshotList.warning:type_name -> google.cloud.compute.v1.Warning + 2550, // 1371: google.cloud.compute.v1.SnapshotParams.resource_manager_tags:type_name -> google.cloud.compute.v1.SnapshotParams.ResourceManagerTagsEntry + 2152, // 1372: google.cloud.compute.v1.SnapshotSettings.access_location:type_name -> google.cloud.compute.v1.SnapshotSettingsAccessLocation + 2154, // 1373: google.cloud.compute.v1.SnapshotSettings.storage_location:type_name -> google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings + 2551, // 1374: google.cloud.compute.v1.SnapshotSettingsAccessLocation.locations:type_name -> google.cloud.compute.v1.SnapshotSettingsAccessLocation.LocationsEntry + 2552, // 1375: google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings.locations:type_name -> google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings.LocationsEntry + 716, // 1376: google.cloud.compute.v1.SourceDiskEncryptionKey.disk_encryption_key:type_name -> google.cloud.compute.v1.CustomerEncryptionKey + 841, // 1377: google.cloud.compute.v1.SourceInstanceParams.disk_configs:type_name -> google.cloud.compute.v1.DiskInstantiationConfig + 1982, // 1378: google.cloud.compute.v1.SourceInstanceProperties.disks:type_name -> google.cloud.compute.v1.SavedAttachedDisk + 486, // 1379: google.cloud.compute.v1.SourceInstanceProperties.guest_accelerators:type_name -> google.cloud.compute.v1.AcceleratorConfig + 2553, // 1380: google.cloud.compute.v1.SourceInstanceProperties.labels:type_name -> google.cloud.compute.v1.SourceInstanceProperties.LabelsEntry + 1610, // 1381: google.cloud.compute.v1.SourceInstanceProperties.metadata:type_name -> google.cloud.compute.v1.Metadata + 1647, // 1382: google.cloud.compute.v1.SourceInstanceProperties.network_interfaces:type_name -> google.cloud.compute.v1.NetworkInterface + 1985, // 1383: google.cloud.compute.v1.SourceInstanceProperties.scheduling:type_name -> google.cloud.compute.v1.Scheduling + 2027, // 1384: google.cloud.compute.v1.SourceInstanceProperties.service_accounts:type_name -> google.cloud.compute.v1.ServiceAccount + 2222, // 1385: google.cloud.compute.v1.SourceInstanceProperties.tags:type_name -> google.cloud.compute.v1.Tags + 2163, // 1386: google.cloud.compute.v1.SslCertificate.managed:type_name -> google.cloud.compute.v1.SslCertificateManagedSslCertificate + 2164, // 1387: google.cloud.compute.v1.SslCertificate.self_managed:type_name -> google.cloud.compute.v1.SslCertificateSelfManagedSslCertificate + 2554, // 1388: google.cloud.compute.v1.SslCertificateAggregatedList.items:type_name -> google.cloud.compute.v1.SslCertificateAggregatedList.ItemsEntry + 2413, // 1389: google.cloud.compute.v1.SslCertificateAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2160, // 1390: google.cloud.compute.v1.SslCertificateList.items:type_name -> google.cloud.compute.v1.SslCertificate + 2413, // 1391: google.cloud.compute.v1.SslCertificateList.warning:type_name -> google.cloud.compute.v1.Warning + 2555, // 1392: google.cloud.compute.v1.SslCertificateManagedSslCertificate.domain_status:type_name -> google.cloud.compute.v1.SslCertificateManagedSslCertificate.DomainStatusEntry + 2160, // 1393: google.cloud.compute.v1.SslCertificatesScopedList.ssl_certificates:type_name -> google.cloud.compute.v1.SslCertificate + 2413, // 1394: google.cloud.compute.v1.SslCertificatesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2556, // 1395: google.cloud.compute.v1.SslPoliciesAggregatedList.items:type_name -> google.cloud.compute.v1.SslPoliciesAggregatedList.ItemsEntry + 2413, // 1396: google.cloud.compute.v1.SslPoliciesAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2170, // 1397: google.cloud.compute.v1.SslPoliciesList.items:type_name -> google.cloud.compute.v1.SslPolicy + 2413, // 1398: google.cloud.compute.v1.SslPoliciesList.warning:type_name -> google.cloud.compute.v1.Warning + 2170, // 1399: google.cloud.compute.v1.SslPoliciesScopedList.ssl_policies:type_name -> google.cloud.compute.v1.SslPolicy + 2413, // 1400: google.cloud.compute.v1.SslPoliciesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2414, // 1401: google.cloud.compute.v1.SslPolicy.warnings:type_name -> google.cloud.compute.v1.Warnings + 856, // 1402: google.cloud.compute.v1.StartAsyncReplicationDiskRequest.disks_start_async_replication_request_resource:type_name -> google.cloud.compute.v1.DisksStartAsyncReplicationRequest + 1826, // 1403: google.cloud.compute.v1.StartAsyncReplicationRegionDiskRequest.region_disks_start_async_replication_request_resource:type_name -> google.cloud.compute.v1.RegionDisksStartAsyncReplicationRequest + 1312, // 1404: google.cloud.compute.v1.StartInstancesInstanceGroupManagerRequest.instance_group_managers_start_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersStartInstancesRequest + 1844, // 1405: google.cloud.compute.v1.StartInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_start_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersStartInstancesRequest + 1354, // 1406: google.cloud.compute.v1.StartWithEncryptionKeyInstanceRequest.instances_start_with_encryption_key_request_resource:type_name -> google.cloud.compute.v1.InstancesStartWithEncryptionKeyRequest + 2179, // 1407: google.cloud.compute.v1.StatefulPolicy.preserved_state:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedState + 2557, // 1408: google.cloud.compute.v1.StatefulPolicyPreservedState.disks:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedState.DisksEntry + 2558, // 1409: google.cloud.compute.v1.StatefulPolicyPreservedState.external_i_ps:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedState.ExternalIPsEntry + 2559, // 1410: google.cloud.compute.v1.StatefulPolicyPreservedState.internal_i_ps:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedState.InternalIPsEntry + 2586, // 1411: google.cloud.compute.v1.Status.details:type_name -> google.protobuf.Any + 857, // 1412: google.cloud.compute.v1.StopGroupAsyncReplicationDiskRequest.disks_stop_group_async_replication_resource_resource:type_name -> google.cloud.compute.v1.DisksStopGroupAsyncReplicationResource + 857, // 1413: google.cloud.compute.v1.StopGroupAsyncReplicationRegionDiskRequest.disks_stop_group_async_replication_resource_resource:type_name -> google.cloud.compute.v1.DisksStopGroupAsyncReplicationResource + 1313, // 1414: google.cloud.compute.v1.StopInstancesInstanceGroupManagerRequest.instance_group_managers_stop_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersStopInstancesRequest + 1845, // 1415: google.cloud.compute.v1.StopInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_stop_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersStopInstancesRequest + 2193, // 1416: google.cloud.compute.v1.StoragePool.exapool_provisioned_capacity_gb:type_name -> google.cloud.compute.v1.StoragePoolExapoolProvisionedCapacityGb + 2560, // 1417: google.cloud.compute.v1.StoragePool.labels:type_name -> google.cloud.compute.v1.StoragePool.LabelsEntry + 2196, // 1418: google.cloud.compute.v1.StoragePool.params:type_name -> google.cloud.compute.v1.StoragePoolParams + 2197, // 1419: google.cloud.compute.v1.StoragePool.resource_status:type_name -> google.cloud.compute.v1.StoragePoolResourceStatus + 2197, // 1420: google.cloud.compute.v1.StoragePool.status:type_name -> google.cloud.compute.v1.StoragePoolResourceStatus + 2561, // 1421: google.cloud.compute.v1.StoragePoolAggregatedList.items:type_name -> google.cloud.compute.v1.StoragePoolAggregatedList.ItemsEntry + 2413, // 1422: google.cloud.compute.v1.StoragePoolAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2190, // 1423: google.cloud.compute.v1.StoragePoolList.items:type_name -> google.cloud.compute.v1.StoragePool + 2413, // 1424: google.cloud.compute.v1.StoragePoolList.warning:type_name -> google.cloud.compute.v1.Warning + 2192, // 1425: google.cloud.compute.v1.StoragePoolListDisks.items:type_name -> google.cloud.compute.v1.StoragePoolDisk + 2413, // 1426: google.cloud.compute.v1.StoragePoolListDisks.warning:type_name -> google.cloud.compute.v1.Warning + 2562, // 1427: google.cloud.compute.v1.StoragePoolParams.resource_manager_tags:type_name -> google.cloud.compute.v1.StoragePoolParams.ResourceManagerTagsEntry + 830, // 1428: google.cloud.compute.v1.StoragePoolType.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus + 2563, // 1429: google.cloud.compute.v1.StoragePoolTypeAggregatedList.items:type_name -> google.cloud.compute.v1.StoragePoolTypeAggregatedList.ItemsEntry + 2413, // 1430: google.cloud.compute.v1.StoragePoolTypeAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2198, // 1431: google.cloud.compute.v1.StoragePoolTypeList.items:type_name -> google.cloud.compute.v1.StoragePoolType + 2413, // 1432: google.cloud.compute.v1.StoragePoolTypeList.warning:type_name -> google.cloud.compute.v1.Warning + 2198, // 1433: google.cloud.compute.v1.StoragePoolTypesScopedList.storage_pool_types:type_name -> google.cloud.compute.v1.StoragePoolType + 2413, // 1434: google.cloud.compute.v1.StoragePoolTypesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2190, // 1435: google.cloud.compute.v1.StoragePoolsScopedList.storage_pools:type_name -> google.cloud.compute.v1.StoragePool + 2413, // 1436: google.cloud.compute.v1.StoragePoolsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2206, // 1437: google.cloud.compute.v1.Subnetwork.log_config:type_name -> google.cloud.compute.v1.SubnetworkLogConfig + 2207, // 1438: google.cloud.compute.v1.Subnetwork.params:type_name -> google.cloud.compute.v1.SubnetworkParams + 2208, // 1439: google.cloud.compute.v1.Subnetwork.secondary_ip_ranges:type_name -> google.cloud.compute.v1.SubnetworkSecondaryRange + 2209, // 1440: google.cloud.compute.v1.Subnetwork.utilization_details:type_name -> google.cloud.compute.v1.SubnetworkUtilizationDetails + 2564, // 1441: google.cloud.compute.v1.SubnetworkAggregatedList.items:type_name -> google.cloud.compute.v1.SubnetworkAggregatedList.ItemsEntry + 2413, // 1442: google.cloud.compute.v1.SubnetworkAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2203, // 1443: google.cloud.compute.v1.SubnetworkList.items:type_name -> google.cloud.compute.v1.Subnetwork + 2413, // 1444: google.cloud.compute.v1.SubnetworkList.warning:type_name -> google.cloud.compute.v1.Warning + 2565, // 1445: google.cloud.compute.v1.SubnetworkParams.resource_manager_tags:type_name -> google.cloud.compute.v1.SubnetworkParams.ResourceManagerTagsEntry + 2211, // 1446: google.cloud.compute.v1.SubnetworkUtilizationDetails.external_ipv6_instance_utilization:type_name -> google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV6Utilization + 2211, // 1447: google.cloud.compute.v1.SubnetworkUtilizationDetails.external_ipv6_lb_utilization:type_name -> google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV6Utilization + 2211, // 1448: google.cloud.compute.v1.SubnetworkUtilizationDetails.internal_ipv6_utilization:type_name -> google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV6Utilization + 2210, // 1449: google.cloud.compute.v1.SubnetworkUtilizationDetails.ipv4_utilizations:type_name -> google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV4Utilization + 2327, // 1450: google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV6Utilization.total_allocated_ip:type_name -> google.cloud.compute.v1.Uint128 + 2327, // 1451: google.cloud.compute.v1.SubnetworkUtilizationDetailsIPV6Utilization.total_free_ip:type_name -> google.cloud.compute.v1.Uint128 + 2203, // 1452: google.cloud.compute.v1.SubnetworksScopedList.subnetworks:type_name -> google.cloud.compute.v1.Subnetwork + 2413, // 1453: google.cloud.compute.v1.SubnetworksScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2413, // 1454: google.cloud.compute.v1.SubnetworksScopedWarning.warning:type_name -> google.cloud.compute.v1.Warning + 1314, // 1455: google.cloud.compute.v1.SuspendInstancesInstanceGroupManagerRequest.instance_group_managers_suspend_instances_request_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersSuspendInstancesRequest + 1846, // 1456: google.cloud.compute.v1.SuspendInstancesRegionInstanceGroupManagerRequest.region_instance_group_managers_suspend_instances_request_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagersSuspendInstancesRequest + 2223, // 1457: google.cloud.compute.v1.TargetGrpcProxyList.items:type_name -> google.cloud.compute.v1.TargetGrpcProxy + 2413, // 1458: google.cloud.compute.v1.TargetGrpcProxyList.warning:type_name -> google.cloud.compute.v1.Warning + 2226, // 1459: google.cloud.compute.v1.TargetHttpProxiesScopedList.target_http_proxies:type_name -> google.cloud.compute.v1.TargetHttpProxy + 2413, // 1460: google.cloud.compute.v1.TargetHttpProxiesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2566, // 1461: google.cloud.compute.v1.TargetHttpProxyAggregatedList.items:type_name -> google.cloud.compute.v1.TargetHttpProxyAggregatedList.ItemsEntry + 2226, // 1462: google.cloud.compute.v1.TargetHttpProxyList.items:type_name -> google.cloud.compute.v1.TargetHttpProxy + 2413, // 1463: google.cloud.compute.v1.TargetHttpProxyList.warning:type_name -> google.cloud.compute.v1.Warning + 2233, // 1464: google.cloud.compute.v1.TargetHttpsProxiesScopedList.target_https_proxies:type_name -> google.cloud.compute.v1.TargetHttpsProxy + 2413, // 1465: google.cloud.compute.v1.TargetHttpsProxiesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2567, // 1466: google.cloud.compute.v1.TargetHttpsProxyAggregatedList.items:type_name -> google.cloud.compute.v1.TargetHttpsProxyAggregatedList.ItemsEntry + 2413, // 1467: google.cloud.compute.v1.TargetHttpsProxyAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2233, // 1468: google.cloud.compute.v1.TargetHttpsProxyList.items:type_name -> google.cloud.compute.v1.TargetHttpsProxy + 2413, // 1469: google.cloud.compute.v1.TargetHttpsProxyList.warning:type_name -> google.cloud.compute.v1.Warning + 2568, // 1470: google.cloud.compute.v1.TargetInstanceAggregatedList.items:type_name -> google.cloud.compute.v1.TargetInstanceAggregatedList.ItemsEntry + 2413, // 1471: google.cloud.compute.v1.TargetInstanceAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2236, // 1472: google.cloud.compute.v1.TargetInstanceList.items:type_name -> google.cloud.compute.v1.TargetInstance + 2413, // 1473: google.cloud.compute.v1.TargetInstanceList.warning:type_name -> google.cloud.compute.v1.Warning + 2236, // 1474: google.cloud.compute.v1.TargetInstancesScopedList.target_instances:type_name -> google.cloud.compute.v1.TargetInstance + 2413, // 1475: google.cloud.compute.v1.TargetInstancesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2569, // 1476: google.cloud.compute.v1.TargetPoolAggregatedList.items:type_name -> google.cloud.compute.v1.TargetPoolAggregatedList.ItemsEntry + 2413, // 1477: google.cloud.compute.v1.TargetPoolAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1148, // 1478: google.cloud.compute.v1.TargetPoolInstanceHealth.health_status:type_name -> google.cloud.compute.v1.HealthStatus + 2240, // 1479: google.cloud.compute.v1.TargetPoolList.items:type_name -> google.cloud.compute.v1.TargetPool + 2413, // 1480: google.cloud.compute.v1.TargetPoolList.warning:type_name -> google.cloud.compute.v1.Warning + 1133, // 1481: google.cloud.compute.v1.TargetPoolsAddHealthCheckRequest.health_checks:type_name -> google.cloud.compute.v1.HealthCheckReference + 1331, // 1482: google.cloud.compute.v1.TargetPoolsAddInstanceRequest.instances:type_name -> google.cloud.compute.v1.InstanceReference + 1133, // 1483: google.cloud.compute.v1.TargetPoolsRemoveHealthCheckRequest.health_checks:type_name -> google.cloud.compute.v1.HealthCheckReference + 1331, // 1484: google.cloud.compute.v1.TargetPoolsRemoveInstanceRequest.instances:type_name -> google.cloud.compute.v1.InstanceReference + 2240, // 1485: google.cloud.compute.v1.TargetPoolsScopedList.target_pools:type_name -> google.cloud.compute.v1.TargetPool + 2413, // 1486: google.cloud.compute.v1.TargetPoolsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2254, // 1487: google.cloud.compute.v1.TargetSslProxyList.items:type_name -> google.cloud.compute.v1.TargetSslProxy + 2413, // 1488: google.cloud.compute.v1.TargetSslProxyList.warning:type_name -> google.cloud.compute.v1.Warning + 2259, // 1489: google.cloud.compute.v1.TargetTcpProxiesScopedList.target_tcp_proxies:type_name -> google.cloud.compute.v1.TargetTcpProxy + 2413, // 1490: google.cloud.compute.v1.TargetTcpProxiesScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2570, // 1491: google.cloud.compute.v1.TargetTcpProxyAggregatedList.items:type_name -> google.cloud.compute.v1.TargetTcpProxyAggregatedList.ItemsEntry + 2413, // 1492: google.cloud.compute.v1.TargetTcpProxyAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2259, // 1493: google.cloud.compute.v1.TargetTcpProxyList.items:type_name -> google.cloud.compute.v1.TargetTcpProxy + 2413, // 1494: google.cloud.compute.v1.TargetTcpProxyList.warning:type_name -> google.cloud.compute.v1.Warning + 2571, // 1495: google.cloud.compute.v1.TargetVpnGateway.labels:type_name -> google.cloud.compute.v1.TargetVpnGateway.LabelsEntry + 2265, // 1496: google.cloud.compute.v1.TargetVpnGateway.params:type_name -> google.cloud.compute.v1.TargetVpnGatewayParams + 2572, // 1497: google.cloud.compute.v1.TargetVpnGatewayAggregatedList.items:type_name -> google.cloud.compute.v1.TargetVpnGatewayAggregatedList.ItemsEntry + 2413, // 1498: google.cloud.compute.v1.TargetVpnGatewayAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2262, // 1499: google.cloud.compute.v1.TargetVpnGatewayList.items:type_name -> google.cloud.compute.v1.TargetVpnGateway + 2413, // 1500: google.cloud.compute.v1.TargetVpnGatewayList.warning:type_name -> google.cloud.compute.v1.Warning + 2573, // 1501: google.cloud.compute.v1.TargetVpnGatewayParams.resource_manager_tags:type_name -> google.cloud.compute.v1.TargetVpnGatewayParams.ResourceManagerTagsEntry + 2262, // 1502: google.cloud.compute.v1.TargetVpnGatewaysScopedList.target_vpn_gateways:type_name -> google.cloud.compute.v1.TargetVpnGateway + 2413, // 1503: google.cloud.compute.v1.TargetVpnGatewaysScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2367, // 1504: google.cloud.compute.v1.TestFailure.headers:type_name -> google.cloud.compute.v1.UrlMapTestHeader + 2325, // 1505: google.cloud.compute.v1.TestIamPermissionsAddressRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1506: google.cloud.compute.v1.TestIamPermissionsAutoscalerRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1507: google.cloud.compute.v1.TestIamPermissionsBackendBucketRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1508: google.cloud.compute.v1.TestIamPermissionsBackendServiceRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1509: google.cloud.compute.v1.TestIamPermissionsDiskRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1510: google.cloud.compute.v1.TestIamPermissionsExternalVpnGatewayRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1511: google.cloud.compute.v1.TestIamPermissionsFirewallPolicyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1512: google.cloud.compute.v1.TestIamPermissionsFirewallRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1513: google.cloud.compute.v1.TestIamPermissionsGlobalAddressRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1514: google.cloud.compute.v1.TestIamPermissionsHealthCheckRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1515: google.cloud.compute.v1.TestIamPermissionsImageRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1516: google.cloud.compute.v1.TestIamPermissionsInstanceGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1517: google.cloud.compute.v1.TestIamPermissionsInstanceRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1518: google.cloud.compute.v1.TestIamPermissionsInstanceTemplateRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1519: google.cloud.compute.v1.TestIamPermissionsInstantSnapshotGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1520: google.cloud.compute.v1.TestIamPermissionsInstantSnapshotRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1521: google.cloud.compute.v1.TestIamPermissionsInterconnectAttachmentGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1522: google.cloud.compute.v1.TestIamPermissionsInterconnectGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1523: google.cloud.compute.v1.TestIamPermissionsLicenseCodeRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1524: google.cloud.compute.v1.TestIamPermissionsLicenseRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1525: google.cloud.compute.v1.TestIamPermissionsMachineImageRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1526: google.cloud.compute.v1.TestIamPermissionsNetworkAttachmentRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1527: google.cloud.compute.v1.TestIamPermissionsNetworkEndpointGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1528: google.cloud.compute.v1.TestIamPermissionsNetworkFirewallPolicyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1529: google.cloud.compute.v1.TestIamPermissionsNodeGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1530: google.cloud.compute.v1.TestIamPermissionsNodeTemplateRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1531: google.cloud.compute.v1.TestIamPermissionsPacketMirroringRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1532: google.cloud.compute.v1.TestIamPermissionsRegionAutoscalerRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1533: google.cloud.compute.v1.TestIamPermissionsRegionBackendBucketRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1534: google.cloud.compute.v1.TestIamPermissionsRegionBackendServiceRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1535: google.cloud.compute.v1.TestIamPermissionsRegionCompositeHealthCheckRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1536: google.cloud.compute.v1.TestIamPermissionsRegionDiskRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1537: google.cloud.compute.v1.TestIamPermissionsRegionHealthAggregationPolicyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1538: google.cloud.compute.v1.TestIamPermissionsRegionHealthCheckRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1539: google.cloud.compute.v1.TestIamPermissionsRegionHealthCheckServiceRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1540: google.cloud.compute.v1.TestIamPermissionsRegionHealthSourceRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1541: google.cloud.compute.v1.TestIamPermissionsRegionInstanceGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1542: google.cloud.compute.v1.TestIamPermissionsRegionInstantSnapshotGroupRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1543: google.cloud.compute.v1.TestIamPermissionsRegionInstantSnapshotRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1544: google.cloud.compute.v1.TestIamPermissionsRegionNetworkFirewallPolicyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1545: google.cloud.compute.v1.TestIamPermissionsRegionNotificationEndpointRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1546: google.cloud.compute.v1.TestIamPermissionsRegionSnapshotRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1547: google.cloud.compute.v1.TestIamPermissionsReservationBlockRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1548: google.cloud.compute.v1.TestIamPermissionsReservationRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1549: google.cloud.compute.v1.TestIamPermissionsReservationSubBlockRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1550: google.cloud.compute.v1.TestIamPermissionsResourcePolicyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1551: google.cloud.compute.v1.TestIamPermissionsRouteRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1552: google.cloud.compute.v1.TestIamPermissionsServiceAttachmentRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1553: google.cloud.compute.v1.TestIamPermissionsSnapshotRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1554: google.cloud.compute.v1.TestIamPermissionsStoragePoolRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1555: google.cloud.compute.v1.TestIamPermissionsSubnetworkRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1556: google.cloud.compute.v1.TestIamPermissionsTargetInstanceRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1557: google.cloud.compute.v1.TestIamPermissionsTargetPoolRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1558: google.cloud.compute.v1.TestIamPermissionsTargetSslProxyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1559: google.cloud.compute.v1.TestIamPermissionsTargetTcpProxyRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1560: google.cloud.compute.v1.TestIamPermissionsUrlMapRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 2325, // 1561: google.cloud.compute.v1.TestIamPermissionsVpnGatewayRequest.test_permissions_request_resource:type_name -> google.cloud.compute.v1.TestPermissionsRequest + 495, // 1562: google.cloud.compute.v1.UpdateAccessConfigInstanceRequest.access_config_resource:type_name -> google.cloud.compute.v1.AccessConfig + 600, // 1563: google.cloud.compute.v1.UpdateAutoscalerRequest.autoscaler_resource:type_name -> google.cloud.compute.v1.Autoscaler + 613, // 1564: google.cloud.compute.v1.UpdateBackendBucketRequest.backend_bucket_resource:type_name -> google.cloud.compute.v1.BackendBucket + 625, // 1565: google.cloud.compute.v1.UpdateBackendServiceRequest.backend_service_resource:type_name -> google.cloud.compute.v1.BackendService + 837, // 1566: google.cloud.compute.v1.UpdateDiskRequest.disk_resource:type_name -> google.cloud.compute.v1.Disk + 858, // 1567: google.cloud.compute.v1.UpdateDisplayDeviceInstanceRequest.display_device_resource:type_name -> google.cloud.compute.v1.DisplayDevice + 877, // 1568: google.cloud.compute.v1.UpdateFirewallRequest.firewall_resource:type_name -> google.cloud.compute.v1.Firewall + 898, // 1569: google.cloud.compute.v1.UpdateFutureReservationRequest.future_reservation_resource:type_name -> google.cloud.compute.v1.FutureReservation + 1130, // 1570: google.cloud.compute.v1.UpdateHealthCheckRequest.health_check_resource:type_name -> google.cloud.compute.v1.HealthCheck + 1261, // 1571: google.cloud.compute.v1.UpdateInstanceRequest.instance_resource:type_name -> google.cloud.compute.v1.Instance + 851, // 1572: google.cloud.compute.v1.UpdateKmsKeyDiskRequest.disk_update_kms_key_request_resource:type_name -> google.cloud.compute.v1.DiskUpdateKmsKeyRequest + 1822, // 1573: google.cloud.compute.v1.UpdateKmsKeyRegionDiskRequest.region_disk_update_kms_key_request_resource:type_name -> google.cloud.compute.v1.RegionDiskUpdateKmsKeyRequest + 1857, // 1574: google.cloud.compute.v1.UpdateKmsKeyRegionSnapshotRequest.region_snapshot_update_kms_key_request_resource:type_name -> google.cloud.compute.v1.RegionSnapshotUpdateKmsKeyRequest + 2156, // 1575: google.cloud.compute.v1.UpdateKmsKeySnapshotRequest.snapshot_update_kms_key_request_resource:type_name -> google.cloud.compute.v1.SnapshotUpdateKmsKeyRequest + 1443, // 1576: google.cloud.compute.v1.UpdateLicenseRequest.license_resource:type_name -> google.cloud.compute.v1.License + 1647, // 1577: google.cloud.compute.v1.UpdateNetworkInterfaceInstanceRequest.network_interface_resource:type_name -> google.cloud.compute.v1.NetworkInterface + 1667, // 1578: google.cloud.compute.v1.UpdatePeeringNetworkRequest.networks_update_peering_request_resource:type_name -> google.cloud.compute.v1.NetworksUpdatePeeringRequest + 1315, // 1579: google.cloud.compute.v1.UpdatePerInstanceConfigsInstanceGroupManagerRequest.instance_group_managers_update_per_instance_configs_req_resource:type_name -> google.cloud.compute.v1.InstanceGroupManagersUpdatePerInstanceConfigsReq + 1832, // 1580: google.cloud.compute.v1.UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest.region_instance_group_manager_update_instance_config_req_resource:type_name -> google.cloud.compute.v1.RegionInstanceGroupManagerUpdateInstanceConfigReq + 1789, // 1581: google.cloud.compute.v1.UpdatePreviewFeatureRequest.preview_feature_resource:type_name -> google.cloud.compute.v1.PreviewFeature + 600, // 1582: google.cloud.compute.v1.UpdateRegionAutoscalerRequest.autoscaler_resource:type_name -> google.cloud.compute.v1.Autoscaler + 625, // 1583: google.cloud.compute.v1.UpdateRegionBackendServiceRequest.backend_service_resource:type_name -> google.cloud.compute.v1.BackendService + 689, // 1584: google.cloud.compute.v1.UpdateRegionCommitmentRequest.commitment_resource:type_name -> google.cloud.compute.v1.Commitment + 837, // 1585: google.cloud.compute.v1.UpdateRegionDiskRequest.disk_resource:type_name -> google.cloud.compute.v1.Disk + 1130, // 1586: google.cloud.compute.v1.UpdateRegionHealthCheckRequest.health_check_resource:type_name -> google.cloud.compute.v1.HealthCheck + 2363, // 1587: google.cloud.compute.v1.UpdateRegionUrlMapRequest.url_map_resource:type_name -> google.cloud.compute.v1.UrlMap + 1882, // 1588: google.cloud.compute.v1.UpdateReservationRequest.reservation_resource:type_name -> google.cloud.compute.v1.Reservation + 1895, // 1589: google.cloud.compute.v1.UpdateReservationSlotRequest.reservation_slot_resource:type_name -> google.cloud.compute.v1.ReservationSlot + 1952, // 1590: google.cloud.compute.v1.UpdateRoutePolicyRouterRequest.route_policy_resource:type_name -> google.cloud.compute.v1.RoutePolicy + 1954, // 1591: google.cloud.compute.v1.UpdateRouterRequest.router_resource:type_name -> google.cloud.compute.v1.Router + 2140, // 1592: google.cloud.compute.v1.UpdateShieldedInstanceConfigInstanceRequest.shielded_instance_config_resource:type_name -> google.cloud.compute.v1.ShieldedInstanceConfig + 2190, // 1593: google.cloud.compute.v1.UpdateStoragePoolRequest.storage_pool_resource:type_name -> google.cloud.compute.v1.StoragePool + 2363, // 1594: google.cloud.compute.v1.UpdateUrlMapRequest.url_map_resource:type_name -> google.cloud.compute.v1.UrlMap + 2384, // 1595: google.cloud.compute.v1.UpdateZoneVmExtensionPolicyRequest.vm_extension_policy_resource:type_name -> google.cloud.compute.v1.VmExtensionPolicy + 714, // 1596: google.cloud.compute.v1.UrlMap.default_custom_error_response_policy:type_name -> google.cloud.compute.v1.CustomErrorResponsePolicy + 1162, // 1597: google.cloud.compute.v1.UrlMap.default_route_action:type_name -> google.cloud.compute.v1.HttpRouteAction + 1160, // 1598: google.cloud.compute.v1.UrlMap.default_url_redirect:type_name -> google.cloud.compute.v1.HttpRedirectAction + 1156, // 1599: google.cloud.compute.v1.UrlMap.header_action:type_name -> google.cloud.compute.v1.HttpHeaderAction + 1152, // 1600: google.cloud.compute.v1.UrlMap.host_rules:type_name -> google.cloud.compute.v1.HostRule + 1775, // 1601: google.cloud.compute.v1.UrlMap.path_matchers:type_name -> google.cloud.compute.v1.PathMatcher + 2366, // 1602: google.cloud.compute.v1.UrlMap.tests:type_name -> google.cloud.compute.v1.UrlMapTest + 2363, // 1603: google.cloud.compute.v1.UrlMapList.items:type_name -> google.cloud.compute.v1.UrlMap + 2413, // 1604: google.cloud.compute.v1.UrlMapList.warning:type_name -> google.cloud.compute.v1.Warning + 2367, // 1605: google.cloud.compute.v1.UrlMapTest.headers:type_name -> google.cloud.compute.v1.UrlMapTestHeader + 2267, // 1606: google.cloud.compute.v1.UrlMapValidationResult.test_failures:type_name -> google.cloud.compute.v1.TestFailure + 2574, // 1607: google.cloud.compute.v1.UrlMapsAggregatedList.items:type_name -> google.cloud.compute.v1.UrlMapsAggregatedList.ItemsEntry + 2413, // 1608: google.cloud.compute.v1.UrlMapsAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2363, // 1609: google.cloud.compute.v1.UrlMapsScopedList.url_maps:type_name -> google.cloud.compute.v1.UrlMap + 2413, // 1610: google.cloud.compute.v1.UrlMapsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2363, // 1611: google.cloud.compute.v1.UrlMapsValidateRequest.resource:type_name -> google.cloud.compute.v1.UrlMap + 2368, // 1612: google.cloud.compute.v1.UrlMapsValidateResponse.result:type_name -> google.cloud.compute.v1.UrlMapValidationResult + 2375, // 1613: google.cloud.compute.v1.UsableSubnetwork.secondary_ip_ranges:type_name -> google.cloud.compute.v1.UsableSubnetworkSecondaryRange + 2374, // 1614: google.cloud.compute.v1.UsableSubnetworksAggregatedList.items:type_name -> google.cloud.compute.v1.UsableSubnetwork + 2214, // 1615: google.cloud.compute.v1.UsableSubnetworksAggregatedList.scoped_warnings:type_name -> google.cloud.compute.v1.SubnetworksScopedWarning + 2413, // 1616: google.cloud.compute.v1.UsableSubnetworksAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 1859, // 1617: google.cloud.compute.v1.ValidateRegionUrlMapRequest.region_url_maps_validate_request_resource:type_name -> google.cloud.compute.v1.RegionUrlMapsValidateRequest + 2371, // 1618: google.cloud.compute.v1.ValidateUrlMapRequest.url_maps_validate_request_resource:type_name -> google.cloud.compute.v1.UrlMapsValidateRequest + 2381, // 1619: google.cloud.compute.v1.VmEndpointNatMappings.interface_nat_mappings:type_name -> google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappings + 2382, // 1620: google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappings.rule_mappings:type_name -> google.cloud.compute.v1.VmEndpointNatMappingsInterfaceNatMappingsNatRuleMappings + 2380, // 1621: google.cloud.compute.v1.VmEndpointNatMappingsList.result:type_name -> google.cloud.compute.v1.VmEndpointNatMappings + 2413, // 1622: google.cloud.compute.v1.VmEndpointNatMappingsList.warning:type_name -> google.cloud.compute.v1.Warning + 2575, // 1623: google.cloud.compute.v1.VmExtensionPolicy.extension_policies:type_name -> google.cloud.compute.v1.VmExtensionPolicy.ExtensionPoliciesEntry + 2386, // 1624: google.cloud.compute.v1.VmExtensionPolicy.instance_selectors:type_name -> google.cloud.compute.v1.VmExtensionPolicyInstanceSelector + 2387, // 1625: google.cloud.compute.v1.VmExtensionPolicyInstanceSelector.label_selector:type_name -> google.cloud.compute.v1.VmExtensionPolicyLabelSelector + 2576, // 1626: google.cloud.compute.v1.VmExtensionPolicyLabelSelector.inclusion_labels:type_name -> google.cloud.compute.v1.VmExtensionPolicyLabelSelector.InclusionLabelsEntry + 2384, // 1627: google.cloud.compute.v1.VmExtensionPolicyList.items:type_name -> google.cloud.compute.v1.VmExtensionPolicy + 2413, // 1628: google.cloud.compute.v1.VmExtensionPolicyList.warning:type_name -> google.cloud.compute.v1.Warning + 2577, // 1629: google.cloud.compute.v1.VpnGateway.labels:type_name -> google.cloud.compute.v1.VpnGateway.LabelsEntry + 2392, // 1630: google.cloud.compute.v1.VpnGateway.params:type_name -> google.cloud.compute.v1.VpnGatewayParams + 2397, // 1631: google.cloud.compute.v1.VpnGateway.vpn_interfaces:type_name -> google.cloud.compute.v1.VpnGatewayVpnGatewayInterface + 2578, // 1632: google.cloud.compute.v1.VpnGatewayAggregatedList.items:type_name -> google.cloud.compute.v1.VpnGatewayAggregatedList.ItemsEntry + 2413, // 1633: google.cloud.compute.v1.VpnGatewayAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2389, // 1634: google.cloud.compute.v1.VpnGatewayList.items:type_name -> google.cloud.compute.v1.VpnGateway + 2413, // 1635: google.cloud.compute.v1.VpnGatewayList.warning:type_name -> google.cloud.compute.v1.Warning + 2579, // 1636: google.cloud.compute.v1.VpnGatewayParams.resource_manager_tags:type_name -> google.cloud.compute.v1.VpnGatewayParams.ResourceManagerTagsEntry + 2396, // 1637: google.cloud.compute.v1.VpnGatewayStatus.vpn_connections:type_name -> google.cloud.compute.v1.VpnGatewayStatusVpnConnection + 2394, // 1638: google.cloud.compute.v1.VpnGatewayStatusVpnConnection.state:type_name -> google.cloud.compute.v1.VpnGatewayStatusHighAvailabilityRequirementState + 2395, // 1639: google.cloud.compute.v1.VpnGatewayStatusVpnConnection.tunnels:type_name -> google.cloud.compute.v1.VpnGatewayStatusTunnel + 2393, // 1640: google.cloud.compute.v1.VpnGatewaysGetStatusResponse.result:type_name -> google.cloud.compute.v1.VpnGatewayStatus + 2389, // 1641: google.cloud.compute.v1.VpnGatewaysScopedList.vpn_gateways:type_name -> google.cloud.compute.v1.VpnGateway + 2413, // 1642: google.cloud.compute.v1.VpnGatewaysScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2402, // 1643: google.cloud.compute.v1.VpnTunnel.cipher_suite:type_name -> google.cloud.compute.v1.VpnTunnelCipherSuite + 2580, // 1644: google.cloud.compute.v1.VpnTunnel.labels:type_name -> google.cloud.compute.v1.VpnTunnel.LabelsEntry + 2404, // 1645: google.cloud.compute.v1.VpnTunnel.params:type_name -> google.cloud.compute.v1.VpnTunnelParams + 2581, // 1646: google.cloud.compute.v1.VpnTunnelAggregatedList.items:type_name -> google.cloud.compute.v1.VpnTunnelAggregatedList.ItemsEntry + 2413, // 1647: google.cloud.compute.v1.VpnTunnelAggregatedList.warning:type_name -> google.cloud.compute.v1.Warning + 2405, // 1648: google.cloud.compute.v1.VpnTunnelCipherSuite.phase1:type_name -> google.cloud.compute.v1.VpnTunnelPhase1Algorithms + 2406, // 1649: google.cloud.compute.v1.VpnTunnelCipherSuite.phase2:type_name -> google.cloud.compute.v1.VpnTunnelPhase2Algorithms + 2400, // 1650: google.cloud.compute.v1.VpnTunnelList.items:type_name -> google.cloud.compute.v1.VpnTunnel + 2413, // 1651: google.cloud.compute.v1.VpnTunnelList.warning:type_name -> google.cloud.compute.v1.Warning + 2582, // 1652: google.cloud.compute.v1.VpnTunnelParams.resource_manager_tags:type_name -> google.cloud.compute.v1.VpnTunnelParams.ResourceManagerTagsEntry + 2400, // 1653: google.cloud.compute.v1.VpnTunnelsScopedList.vpn_tunnels:type_name -> google.cloud.compute.v1.VpnTunnel + 2413, // 1654: google.cloud.compute.v1.VpnTunnelsScopedList.warning:type_name -> google.cloud.compute.v1.Warning + 2409, // 1655: google.cloud.compute.v1.WafExpressionSet.expressions:type_name -> google.cloud.compute.v1.WafExpressionSetExpression + 718, // 1656: google.cloud.compute.v1.Warning.data:type_name -> google.cloud.compute.v1.Data + 718, // 1657: google.cloud.compute.v1.Warnings.data:type_name -> google.cloud.compute.v1.Data + 1156, // 1658: google.cloud.compute.v1.WeightedBackendService.header_action:type_name -> google.cloud.compute.v1.HttpHeaderAction + 2417, // 1659: google.cloud.compute.v1.Wire.endpoints:type_name -> google.cloud.compute.v1.WireEndpoint + 2424, // 1660: google.cloud.compute.v1.Wire.wire_properties:type_name -> google.cloud.compute.v1.WireProperties + 2583, // 1661: google.cloud.compute.v1.WireGroup.endpoints:type_name -> google.cloud.compute.v1.WireGroup.EndpointsEntry + 2422, // 1662: google.cloud.compute.v1.WireGroup.topology:type_name -> google.cloud.compute.v1.WireGroupTopology + 2424, // 1663: google.cloud.compute.v1.WireGroup.wire_properties:type_name -> google.cloud.compute.v1.WireProperties + 2416, // 1664: google.cloud.compute.v1.WireGroup.wires:type_name -> google.cloud.compute.v1.Wire + 2584, // 1665: google.cloud.compute.v1.WireGroupEndpoint.interconnects:type_name -> google.cloud.compute.v1.WireGroupEndpoint.InterconnectsEntry + 2418, // 1666: google.cloud.compute.v1.WireGroupList.items:type_name -> google.cloud.compute.v1.WireGroup + 2413, // 1667: google.cloud.compute.v1.WireGroupList.warning:type_name -> google.cloud.compute.v1.Warning + 2423, // 1668: google.cloud.compute.v1.WireGroupTopology.endpoints:type_name -> google.cloud.compute.v1.WireGroupTopologyEndpoint + 1796, // 1669: google.cloud.compute.v1.XpnHostList.items:type_name -> google.cloud.compute.v1.Project + 2413, // 1670: google.cloud.compute.v1.XpnHostList.warning:type_name -> google.cloud.compute.v1.Warning + 830, // 1671: google.cloud.compute.v1.Zone.deprecated:type_name -> google.cloud.compute.v1.DeprecationStatus + 2430, // 1672: google.cloud.compute.v1.ZoneList.items:type_name -> google.cloud.compute.v1.Zone + 2413, // 1673: google.cloud.compute.v1.ZoneList.warning:type_name -> google.cloud.compute.v1.Warning + 2585, // 1674: google.cloud.compute.v1.ZoneSetLabelsRequest.labels:type_name -> google.cloud.compute.v1.ZoneSetLabelsRequest.LabelsEntry + 660, // 1675: google.cloud.compute.v1.ZoneSetNestedPolicyRequest.bindings:type_name -> google.cloud.compute.v1.Binding + 1783, // 1676: google.cloud.compute.v1.ZoneSetNestedPolicyRequest.policy:type_name -> google.cloud.compute.v1.Policy + 660, // 1677: google.cloud.compute.v1.ZoneSetPolicyRequest.bindings:type_name -> google.cloud.compute.v1.Binding + 1783, // 1678: google.cloud.compute.v1.ZoneSetPolicyRequest.policy:type_name -> google.cloud.compute.v1.Policy + 493, // 1679: google.cloud.compute.v1.AcceleratorTypeAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.AcceleratorTypesScopedList + 522, // 1680: google.cloud.compute.v1.AddressAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.AddressesScopedList + 1984, // 1681: google.cloud.compute.v1.Autoscaler.ScalingScheduleStatusEntry.value:type_name -> google.cloud.compute.v1.ScalingScheduleStatus + 604, // 1682: google.cloud.compute.v1.AutoscalerAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.AutoscalersScopedList + 610, // 1683: google.cloud.compute.v1.AutoscalingPolicy.ScalingSchedulesEntry.value:type_name -> google.cloud.compute.v1.AutoscalingPolicyScalingSchedule + 623, // 1684: google.cloud.compute.v1.BackendBucketAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.BackendBucketsScopedList + 653, // 1685: google.cloud.compute.v1.BackendServiceAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.BackendServicesScopedList + 665, // 1686: google.cloud.compute.v1.BulkInsertInstanceResource.PerInstancePropertiesEntry.value:type_name -> google.cloud.compute.v1.BulkInsertInstanceResourcePerInstanceProperties + 913, // 1687: google.cloud.compute.v1.CalendarModeAdviceRequest.FutureResourcesSpecsEntry.value:type_name -> google.cloud.compute.v1.FutureResourcesSpec + 911, // 1688: google.cloud.compute.v1.CalendarModeRecommendation.RecommendationsPerSpecEntry.value:type_name -> google.cloud.compute.v1.FutureResourcesRecommendation + 694, // 1689: google.cloud.compute.v1.CommitmentAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.CommitmentsScopedList + 700, // 1690: google.cloud.compute.v1.CompositeHealthCheckAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.CompositeHealthChecksScopedList + 840, // 1691: google.cloud.compute.v1.Disk.AsyncSecondaryDisksEntry.value:type_name -> google.cloud.compute.v1.DiskAsyncReplicationList + 855, // 1692: google.cloud.compute.v1.DiskAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.DisksScopedList + 846, // 1693: google.cloud.compute.v1.DiskResourceStatus.AsyncSecondaryDisksEntry.value:type_name -> google.cloud.compute.v1.DiskResourceStatusAsyncReplicationStatus + 850, // 1694: google.cloud.compute.v1.DiskTypeAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.DiskTypesScopedList + 897, // 1695: google.cloud.compute.v1.ForwardingRuleAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.ForwardingRulesScopedList + 910, // 1696: google.cloud.compute.v1.FutureReservationsAggregatedListResponse.ItemsEntry.value:type_name -> google.cloud.compute.v1.FutureReservationsScopedList + 912, // 1697: google.cloud.compute.v1.FutureResourcesRecommendation.OtherLocationsEntry.value:type_name -> google.cloud.compute.v1.FutureResourcesRecommendationOtherLocation + 917, // 1698: google.cloud.compute.v1.FutureResourcesSpecLocationPolicy.LocationsEntry.value:type_name -> google.cloud.compute.v1.FutureResourcesSpecLocationPolicyLocation + 1126, // 1699: google.cloud.compute.v1.HealthAggregationPolicyAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.HealthAggregationPoliciesScopedList + 1138, // 1700: google.cloud.compute.v1.HealthCheckServiceAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.HealthCheckServicesScopedList + 1140, // 1701: google.cloud.compute.v1.HealthChecksAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.HealthChecksScopedList + 1147, // 1702: google.cloud.compute.v1.HealthSourceAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.HealthSourcesScopedList + 1346, // 1703: google.cloud.compute.v1.InstanceAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.InstancesScopedList + 1266, // 1704: google.cloud.compute.v1.InstanceFlexibilityPolicy.InstanceSelectionsEntry.value:type_name -> google.cloud.compute.v1.InstanceFlexibilityPolicyInstanceSelection + 1320, // 1705: google.cloud.compute.v1.InstanceGroupAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.InstanceGroupsScopedList + 1309, // 1706: google.cloud.compute.v1.InstanceGroupManagerAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.InstanceGroupManagersScopedList + 1276, // 1707: google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicy.InstanceSelectionsEntry.value:type_name -> google.cloud.compute.v1.InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection + 1337, // 1708: google.cloud.compute.v1.InstanceTemplateAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.InstanceTemplatesScopedList + 666, // 1709: google.cloud.compute.v1.InstancesBulkInsertOperationMetadata.PerLocationStatusEntry.value:type_name -> google.cloud.compute.v1.BulkInsertOperationStatus + 1364, // 1710: google.cloud.compute.v1.InstantSnapshotAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.InstantSnapshotsScopedList + 1398, // 1711: google.cloud.compute.v1.InterconnectAttachmentAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.InterconnectAttachmentsScopedList + 1376, // 1712: google.cloud.compute.v1.InterconnectAttachmentGroup.AttachmentsEntry.value:type_name -> google.cloud.compute.v1.InterconnectAttachmentGroupAttachment + 1391, // 1713: google.cloud.compute.v1.InterconnectAttachmentL2Forwarding.ApplianceMappingsEntry.value:type_name -> google.cloud.compute.v1.InterconnectAttachmentL2ForwardingApplianceMapping + 1411, // 1714: google.cloud.compute.v1.InterconnectGroup.InterconnectsEntry.value:type_name -> google.cloud.compute.v1.InterconnectGroupInterconnect + 1594, // 1715: google.cloud.compute.v1.LocationPolicy.LocationsEntry.value:type_name -> google.cloud.compute.v1.LocationPolicyLocation + 1603, // 1716: google.cloud.compute.v1.MachineTypeAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.MachineTypesScopedList + 1628, // 1717: google.cloud.compute.v1.NetworkAttachmentAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NetworkAttachmentsScopedList + 1631, // 1718: google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NetworkEdgeSecurityServicesScopedList + 1644, // 1719: google.cloud.compute.v1.NetworkEndpointGroupAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NetworkEndpointGroupsScopedList + 882, // 1720: google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.FirewallPoliciesScopedList + 1678, // 1721: google.cloud.compute.v1.NodeGroupAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NodeGroupsScopedList + 1685, // 1722: google.cloud.compute.v1.NodeTemplateAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NodeTemplatesScopedList + 1689, // 1723: google.cloud.compute.v1.NodeTypeAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NodeTypesScopedList + 1694, // 1724: google.cloud.compute.v1.NotificationEndpointAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.NotificationEndpointsScopedList + 1698, // 1725: google.cloud.compute.v1.OperationAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.OperationsScopedList + 1711, // 1726: google.cloud.compute.v1.PacketMirroringAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.PacketMirroringsScopedList + 1786, // 1727: google.cloud.compute.v1.PreservedState.DisksEntry.value:type_name -> google.cloud.compute.v1.PreservedStatePreservedDisk + 1787, // 1728: google.cloud.compute.v1.PreservedState.ExternalIPsEntry.value:type_name -> google.cloud.compute.v1.PreservedStatePreservedNetworkIp + 1787, // 1729: google.cloud.compute.v1.PreservedState.InternalIPsEntry.value:type_name -> google.cloud.compute.v1.PreservedStatePreservedNetworkIp + 1810, // 1730: google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.PublicDelegatedPrefixesScopedList + 1912, // 1731: google.cloud.compute.v1.ReservationAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.ReservationsScopedList + 1921, // 1732: google.cloud.compute.v1.ResourcePolicyAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.ResourcePoliciesScopedList + 1980, // 1733: google.cloud.compute.v1.RouterAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.RoutersScopedList + 1991, // 1734: google.cloud.compute.v1.SecurityPoliciesAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.SecurityPoliciesScopedList + 2033, // 1735: google.cloud.compute.v1.ServiceAttachmentAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.ServiceAttachmentsScopedList + 2041, // 1736: google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadata.PerLocationOperationsEntry.value:type_name -> google.cloud.compute.v1.SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo + 2139, // 1737: google.cloud.compute.v1.ShareSettings.ProjectMapEntry.value:type_name -> google.cloud.compute.v1.ShareSettingsProjectConfig + 2153, // 1738: google.cloud.compute.v1.SnapshotSettingsAccessLocation.LocationsEntry.value:type_name -> google.cloud.compute.v1.SnapshotSettingsAccessLocationAccessLocationPreference + 2155, // 1739: google.cloud.compute.v1.SnapshotSettingsStorageLocationSettings.LocationsEntry.value:type_name -> google.cloud.compute.v1.SnapshotSettingsStorageLocationSettingsStorageLocationPreference + 2165, // 1740: google.cloud.compute.v1.SslCertificateAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.SslCertificatesScopedList + 2169, // 1741: google.cloud.compute.v1.SslPoliciesAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.SslPoliciesScopedList + 2180, // 1742: google.cloud.compute.v1.StatefulPolicyPreservedState.DisksEntry.value:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedStateDiskDevice + 2181, // 1743: google.cloud.compute.v1.StatefulPolicyPreservedState.ExternalIPsEntry.value:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedStateNetworkIp + 2181, // 1744: google.cloud.compute.v1.StatefulPolicyPreservedState.InternalIPsEntry.value:type_name -> google.cloud.compute.v1.StatefulPolicyPreservedStateNetworkIp + 2202, // 1745: google.cloud.compute.v1.StoragePoolAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.StoragePoolsScopedList + 2201, // 1746: google.cloud.compute.v1.StoragePoolTypeAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.StoragePoolTypesScopedList + 2213, // 1747: google.cloud.compute.v1.SubnetworkAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.SubnetworksScopedList + 2225, // 1748: google.cloud.compute.v1.TargetHttpProxyAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.TargetHttpProxiesScopedList + 2229, // 1749: google.cloud.compute.v1.TargetHttpsProxyAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.TargetHttpsProxiesScopedList + 2239, // 1750: google.cloud.compute.v1.TargetInstanceAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.TargetInstancesScopedList + 2248, // 1751: google.cloud.compute.v1.TargetPoolAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.TargetPoolsScopedList + 2256, // 1752: google.cloud.compute.v1.TargetTcpProxyAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.TargetTcpProxiesScopedList + 2266, // 1753: google.cloud.compute.v1.TargetVpnGatewayAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.TargetVpnGatewaysScopedList + 2370, // 1754: google.cloud.compute.v1.UrlMapsAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.UrlMapsScopedList + 2385, // 1755: google.cloud.compute.v1.VmExtensionPolicy.ExtensionPoliciesEntry.value:type_name -> google.cloud.compute.v1.VmExtensionPolicyExtensionPolicy + 2399, // 1756: google.cloud.compute.v1.VpnGatewayAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.VpnGatewaysScopedList + 2407, // 1757: google.cloud.compute.v1.VpnTunnelAggregatedList.ItemsEntry.value:type_name -> google.cloud.compute.v1.VpnTunnelsScopedList + 2419, // 1758: google.cloud.compute.v1.WireGroup.EndpointsEntry.value:type_name -> google.cloud.compute.v1.WireGroupEndpoint + 2420, // 1759: google.cloud.compute.v1.WireGroupEndpoint.InterconnectsEntry.value:type_name -> google.cloud.compute.v1.WireGroupEndpointInterconnect + 524, // 1760: google.cloud.compute.v1.AcceleratorTypes.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListAcceleratorTypesRequest + 922, // 1761: google.cloud.compute.v1.AcceleratorTypes.Get:input_type -> google.cloud.compute.v1.GetAcceleratorTypeRequest + 1450, // 1762: google.cloud.compute.v1.AcceleratorTypes.List:input_type -> google.cloud.compute.v1.ListAcceleratorTypesRequest + 525, // 1763: google.cloud.compute.v1.Addresses.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListAddressesRequest + 721, // 1764: google.cloud.compute.v1.Addresses.Delete:input_type -> google.cloud.compute.v1.DeleteAddressRequest + 923, // 1765: google.cloud.compute.v1.Addresses.Get:input_type -> google.cloud.compute.v1.GetAddressRequest + 1170, // 1766: google.cloud.compute.v1.Addresses.Insert:input_type -> google.cloud.compute.v1.InsertAddressRequest + 1451, // 1767: google.cloud.compute.v1.Addresses.List:input_type -> google.cloud.compute.v1.ListAddressesRequest + 1613, // 1768: google.cloud.compute.v1.Addresses.Move:input_type -> google.cloud.compute.v1.MoveAddressRequest + 2082, // 1769: google.cloud.compute.v1.Addresses.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsAddressRequest + 2268, // 1770: google.cloud.compute.v1.Addresses.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsAddressRequest + 680, // 1771: google.cloud.compute.v1.Advice.CalendarMode:input_type -> google.cloud.compute.v1.CalendarModeAdviceRpcRequest + 526, // 1772: google.cloud.compute.v1.Autoscalers.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListAutoscalersRequest + 722, // 1773: google.cloud.compute.v1.Autoscalers.Delete:input_type -> google.cloud.compute.v1.DeleteAutoscalerRequest + 928, // 1774: google.cloud.compute.v1.Autoscalers.Get:input_type -> google.cloud.compute.v1.GetAutoscalerRequest + 1171, // 1775: google.cloud.compute.v1.Autoscalers.Insert:input_type -> google.cloud.compute.v1.InsertAutoscalerRequest + 1454, // 1776: google.cloud.compute.v1.Autoscalers.List:input_type -> google.cloud.compute.v1.ListAutoscalersRequest + 1712, // 1777: google.cloud.compute.v1.Autoscalers.Patch:input_type -> google.cloud.compute.v1.PatchAutoscalerRequest + 2269, // 1778: google.cloud.compute.v1.Autoscalers.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsAutoscalerRequest + 2330, // 1779: google.cloud.compute.v1.Autoscalers.Update:input_type -> google.cloud.compute.v1.UpdateAutoscalerRequest + 517, // 1780: google.cloud.compute.v1.BackendBuckets.AddSignedUrlKey:input_type -> google.cloud.compute.v1.AddSignedUrlKeyBackendBucketRequest + 527, // 1781: google.cloud.compute.v1.BackendBuckets.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListBackendBucketsRequest + 723, // 1782: google.cloud.compute.v1.BackendBuckets.Delete:input_type -> google.cloud.compute.v1.DeleteBackendBucketRequest + 806, // 1783: google.cloud.compute.v1.BackendBuckets.DeleteSignedUrlKey:input_type -> google.cloud.compute.v1.DeleteSignedUrlKeyBackendBucketRequest + 929, // 1784: google.cloud.compute.v1.BackendBuckets.Get:input_type -> google.cloud.compute.v1.GetBackendBucketRequest + 959, // 1785: google.cloud.compute.v1.BackendBuckets.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyBackendBucketRequest + 1172, // 1786: google.cloud.compute.v1.BackendBuckets.Insert:input_type -> google.cloud.compute.v1.InsertBackendBucketRequest + 1457, // 1787: google.cloud.compute.v1.BackendBuckets.List:input_type -> google.cloud.compute.v1.ListBackendBucketsRequest + 1579, // 1788: google.cloud.compute.v1.BackendBuckets.ListUsable:input_type -> google.cloud.compute.v1.ListUsableBackendBucketsRequest + 1713, // 1789: google.cloud.compute.v1.BackendBuckets.Patch:input_type -> google.cloud.compute.v1.PatchBackendBucketRequest + 2046, // 1790: google.cloud.compute.v1.BackendBuckets.SetEdgeSecurityPolicy:input_type -> google.cloud.compute.v1.SetEdgeSecurityPolicyBackendBucketRequest + 2048, // 1791: google.cloud.compute.v1.BackendBuckets.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyBackendBucketRequest + 2270, // 1792: google.cloud.compute.v1.BackendBuckets.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsBackendBucketRequest + 2331, // 1793: google.cloud.compute.v1.BackendBuckets.Update:input_type -> google.cloud.compute.v1.UpdateBackendBucketRequest + 518, // 1794: google.cloud.compute.v1.BackendServices.AddSignedUrlKey:input_type -> google.cloud.compute.v1.AddSignedUrlKeyBackendServiceRequest + 528, // 1795: google.cloud.compute.v1.BackendServices.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListBackendServicesRequest + 724, // 1796: google.cloud.compute.v1.BackendServices.Delete:input_type -> google.cloud.compute.v1.DeleteBackendServiceRequest + 807, // 1797: google.cloud.compute.v1.BackendServices.DeleteSignedUrlKey:input_type -> google.cloud.compute.v1.DeleteSignedUrlKeyBackendServiceRequest + 930, // 1798: google.cloud.compute.v1.BackendServices.Get:input_type -> google.cloud.compute.v1.GetBackendServiceRequest + 938, // 1799: google.cloud.compute.v1.BackendServices.GetEffectiveSecurityPolicies:input_type -> google.cloud.compute.v1.GetEffectiveSecurityPoliciesBackendServiceRequest + 953, // 1800: google.cloud.compute.v1.BackendServices.GetHealth:input_type -> google.cloud.compute.v1.GetHealthBackendServiceRequest + 960, // 1801: google.cloud.compute.v1.BackendServices.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyBackendServiceRequest + 1173, // 1802: google.cloud.compute.v1.BackendServices.Insert:input_type -> google.cloud.compute.v1.InsertBackendServiceRequest + 1458, // 1803: google.cloud.compute.v1.BackendServices.List:input_type -> google.cloud.compute.v1.ListBackendServicesRequest + 1580, // 1804: google.cloud.compute.v1.BackendServices.ListUsable:input_type -> google.cloud.compute.v1.ListUsableBackendServicesRequest + 1714, // 1805: google.cloud.compute.v1.BackendServices.Patch:input_type -> google.cloud.compute.v1.PatchBackendServiceRequest + 2047, // 1806: google.cloud.compute.v1.BackendServices.SetEdgeSecurityPolicy:input_type -> google.cloud.compute.v1.SetEdgeSecurityPolicyBackendServiceRequest + 2049, // 1807: google.cloud.compute.v1.BackendServices.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyBackendServiceRequest + 2116, // 1808: google.cloud.compute.v1.BackendServices.SetSecurityPolicy:input_type -> google.cloud.compute.v1.SetSecurityPolicyBackendServiceRequest + 2271, // 1809: google.cloud.compute.v1.BackendServices.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsBackendServiceRequest + 2332, // 1810: google.cloud.compute.v1.BackendServices.Update:input_type -> google.cloud.compute.v1.UpdateBackendServiceRequest + 725, // 1811: google.cloud.compute.v1.CrossSiteNetworks.Delete:input_type -> google.cloud.compute.v1.DeleteCrossSiteNetworkRequest + 931, // 1812: google.cloud.compute.v1.CrossSiteNetworks.Get:input_type -> google.cloud.compute.v1.GetCrossSiteNetworkRequest + 1174, // 1813: google.cloud.compute.v1.CrossSiteNetworks.Insert:input_type -> google.cloud.compute.v1.InsertCrossSiteNetworkRequest + 1460, // 1814: google.cloud.compute.v1.CrossSiteNetworks.List:input_type -> google.cloud.compute.v1.ListCrossSiteNetworksRequest + 1715, // 1815: google.cloud.compute.v1.CrossSiteNetworks.Patch:input_type -> google.cloud.compute.v1.PatchCrossSiteNetworkRequest + 529, // 1816: google.cloud.compute.v1.DiskTypes.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListDiskTypesRequest + 934, // 1817: google.cloud.compute.v1.DiskTypes.Get:input_type -> google.cloud.compute.v1.GetDiskTypeRequest + 1461, // 1818: google.cloud.compute.v1.DiskTypes.List:input_type -> google.cloud.compute.v1.ListDiskTypesRequest + 508, // 1819: google.cloud.compute.v1.Disks.AddResourcePolicies:input_type -> google.cloud.compute.v1.AddResourcePoliciesDiskRequest + 530, // 1820: google.cloud.compute.v1.Disks.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListDisksRequest + 661, // 1821: google.cloud.compute.v1.Disks.BulkInsert:input_type -> google.cloud.compute.v1.BulkInsertDiskRequest + 669, // 1822: google.cloud.compute.v1.Disks.BulkSetLabels:input_type -> google.cloud.compute.v1.BulkSetLabelsDiskRequest + 710, // 1823: google.cloud.compute.v1.Disks.CreateSnapshot:input_type -> google.cloud.compute.v1.CreateSnapshotDiskRequest + 726, // 1824: google.cloud.compute.v1.Disks.Delete:input_type -> google.cloud.compute.v1.DeleteDiskRequest + 933, // 1825: google.cloud.compute.v1.Disks.Get:input_type -> google.cloud.compute.v1.GetDiskRequest + 961, // 1826: google.cloud.compute.v1.Disks.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyDiskRequest + 1175, // 1827: google.cloud.compute.v1.Disks.Insert:input_type -> google.cloud.compute.v1.InsertDiskRequest + 1462, // 1828: google.cloud.compute.v1.Disks.List:input_type -> google.cloud.compute.v1.ListDisksRequest + 1869, // 1829: google.cloud.compute.v1.Disks.RemoveResourcePolicies:input_type -> google.cloud.compute.v1.RemoveResourcePoliciesDiskRequest + 1914, // 1830: google.cloud.compute.v1.Disks.Resize:input_type -> google.cloud.compute.v1.ResizeDiskRequest + 2050, // 1831: google.cloud.compute.v1.Disks.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyDiskRequest + 2083, // 1832: google.cloud.compute.v1.Disks.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsDiskRequest + 2172, // 1833: google.cloud.compute.v1.Disks.StartAsyncReplication:input_type -> google.cloud.compute.v1.StartAsyncReplicationDiskRequest + 2183, // 1834: google.cloud.compute.v1.Disks.StopAsyncReplication:input_type -> google.cloud.compute.v1.StopAsyncReplicationDiskRequest + 2185, // 1835: google.cloud.compute.v1.Disks.StopGroupAsyncReplication:input_type -> google.cloud.compute.v1.StopGroupAsyncReplicationDiskRequest + 2272, // 1836: google.cloud.compute.v1.Disks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsDiskRequest + 2333, // 1837: google.cloud.compute.v1.Disks.Update:input_type -> google.cloud.compute.v1.UpdateDiskRequest + 2339, // 1838: google.cloud.compute.v1.Disks.UpdateKmsKey:input_type -> google.cloud.compute.v1.UpdateKmsKeyDiskRequest + 727, // 1839: google.cloud.compute.v1.ExternalVpnGateways.Delete:input_type -> google.cloud.compute.v1.DeleteExternalVpnGatewayRequest + 940, // 1840: google.cloud.compute.v1.ExternalVpnGateways.Get:input_type -> google.cloud.compute.v1.GetExternalVpnGatewayRequest + 1176, // 1841: google.cloud.compute.v1.ExternalVpnGateways.Insert:input_type -> google.cloud.compute.v1.InsertExternalVpnGatewayRequest + 1466, // 1842: google.cloud.compute.v1.ExternalVpnGateways.List:input_type -> google.cloud.compute.v1.ListExternalVpnGatewaysRequest + 2084, // 1843: google.cloud.compute.v1.ExternalVpnGateways.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsExternalVpnGatewayRequest + 2273, // 1844: google.cloud.compute.v1.ExternalVpnGateways.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsExternalVpnGatewayRequest + 497, // 1845: google.cloud.compute.v1.FirewallPolicies.AddAssociation:input_type -> google.cloud.compute.v1.AddAssociationFirewallPolicyRequest + 511, // 1846: google.cloud.compute.v1.FirewallPolicies.AddRule:input_type -> google.cloud.compute.v1.AddRuleFirewallPolicyRequest + 686, // 1847: google.cloud.compute.v1.FirewallPolicies.CloneRules:input_type -> google.cloud.compute.v1.CloneRulesFirewallPolicyRequest + 728, // 1848: google.cloud.compute.v1.FirewallPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteFirewallPolicyRequest + 941, // 1849: google.cloud.compute.v1.FirewallPolicies.Get:input_type -> google.cloud.compute.v1.GetFirewallPolicyRequest + 924, // 1850: google.cloud.compute.v1.FirewallPolicies.GetAssociation:input_type -> google.cloud.compute.v1.GetAssociationFirewallPolicyRequest + 962, // 1851: google.cloud.compute.v1.FirewallPolicies.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyFirewallPolicyRequest + 1072, // 1852: google.cloud.compute.v1.FirewallPolicies.GetRule:input_type -> google.cloud.compute.v1.GetRuleFirewallPolicyRequest + 1177, // 1853: google.cloud.compute.v1.FirewallPolicies.Insert:input_type -> google.cloud.compute.v1.InsertFirewallPolicyRequest + 1467, // 1854: google.cloud.compute.v1.FirewallPolicies.List:input_type -> google.cloud.compute.v1.ListFirewallPoliciesRequest + 1452, // 1855: google.cloud.compute.v1.FirewallPolicies.ListAssociations:input_type -> google.cloud.compute.v1.ListAssociationsFirewallPolicyRequest + 1615, // 1856: google.cloud.compute.v1.FirewallPolicies.Move:input_type -> google.cloud.compute.v1.MoveFirewallPolicyRequest + 1716, // 1857: google.cloud.compute.v1.FirewallPolicies.Patch:input_type -> google.cloud.compute.v1.PatchFirewallPolicyRequest + 1759, // 1858: google.cloud.compute.v1.FirewallPolicies.PatchRule:input_type -> google.cloud.compute.v1.PatchRuleFirewallPolicyRequest + 1860, // 1859: google.cloud.compute.v1.FirewallPolicies.RemoveAssociation:input_type -> google.cloud.compute.v1.RemoveAssociationFirewallPolicyRequest + 1872, // 1860: google.cloud.compute.v1.FirewallPolicies.RemoveRule:input_type -> google.cloud.compute.v1.RemoveRuleFirewallPolicyRequest + 2051, // 1861: google.cloud.compute.v1.FirewallPolicies.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyFirewallPolicyRequest + 2274, // 1862: google.cloud.compute.v1.FirewallPolicies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsFirewallPolicyRequest + 729, // 1863: google.cloud.compute.v1.Firewalls.Delete:input_type -> google.cloud.compute.v1.DeleteFirewallRequest + 942, // 1864: google.cloud.compute.v1.Firewalls.Get:input_type -> google.cloud.compute.v1.GetFirewallRequest + 1178, // 1865: google.cloud.compute.v1.Firewalls.Insert:input_type -> google.cloud.compute.v1.InsertFirewallRequest + 1468, // 1866: google.cloud.compute.v1.Firewalls.List:input_type -> google.cloud.compute.v1.ListFirewallsRequest + 1717, // 1867: google.cloud.compute.v1.Firewalls.Patch:input_type -> google.cloud.compute.v1.PatchFirewallRequest + 2275, // 1868: google.cloud.compute.v1.Firewalls.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsFirewallRequest + 2335, // 1869: google.cloud.compute.v1.Firewalls.Update:input_type -> google.cloud.compute.v1.UpdateFirewallRequest + 531, // 1870: google.cloud.compute.v1.ForwardingRules.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListForwardingRulesRequest + 730, // 1871: google.cloud.compute.v1.ForwardingRules.Delete:input_type -> google.cloud.compute.v1.DeleteForwardingRuleRequest + 943, // 1872: google.cloud.compute.v1.ForwardingRules.Get:input_type -> google.cloud.compute.v1.GetForwardingRuleRequest + 1179, // 1873: google.cloud.compute.v1.ForwardingRules.Insert:input_type -> google.cloud.compute.v1.InsertForwardingRuleRequest + 1469, // 1874: google.cloud.compute.v1.ForwardingRules.List:input_type -> google.cloud.compute.v1.ListForwardingRulesRequest + 1718, // 1875: google.cloud.compute.v1.ForwardingRules.Patch:input_type -> google.cloud.compute.v1.PatchForwardingRuleRequest + 2085, // 1876: google.cloud.compute.v1.ForwardingRules.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsForwardingRuleRequest + 2129, // 1877: google.cloud.compute.v1.ForwardingRules.SetTarget:input_type -> google.cloud.compute.v1.SetTargetForwardingRuleRequest + 532, // 1878: google.cloud.compute.v1.FutureReservations.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListFutureReservationsRequest + 682, // 1879: google.cloud.compute.v1.FutureReservations.Cancel:input_type -> google.cloud.compute.v1.CancelFutureReservationRequest + 731, // 1880: google.cloud.compute.v1.FutureReservations.Delete:input_type -> google.cloud.compute.v1.DeleteFutureReservationRequest + 945, // 1881: google.cloud.compute.v1.FutureReservations.Get:input_type -> google.cloud.compute.v1.GetFutureReservationRequest + 1180, // 1882: google.cloud.compute.v1.FutureReservations.Insert:input_type -> google.cloud.compute.v1.InsertFutureReservationRequest + 1470, // 1883: google.cloud.compute.v1.FutureReservations.List:input_type -> google.cloud.compute.v1.ListFutureReservationsRequest + 2336, // 1884: google.cloud.compute.v1.FutureReservations.Update:input_type -> google.cloud.compute.v1.UpdateFutureReservationRequest + 732, // 1885: google.cloud.compute.v1.GlobalAddresses.Delete:input_type -> google.cloud.compute.v1.DeleteGlobalAddressRequest + 946, // 1886: google.cloud.compute.v1.GlobalAddresses.Get:input_type -> google.cloud.compute.v1.GetGlobalAddressRequest + 1181, // 1887: google.cloud.compute.v1.GlobalAddresses.Insert:input_type -> google.cloud.compute.v1.InsertGlobalAddressRequest + 1471, // 1888: google.cloud.compute.v1.GlobalAddresses.List:input_type -> google.cloud.compute.v1.ListGlobalAddressesRequest + 1616, // 1889: google.cloud.compute.v1.GlobalAddresses.Move:input_type -> google.cloud.compute.v1.MoveGlobalAddressRequest + 2086, // 1890: google.cloud.compute.v1.GlobalAddresses.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsGlobalAddressRequest + 2276, // 1891: google.cloud.compute.v1.GlobalAddresses.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsGlobalAddressRequest + 733, // 1892: google.cloud.compute.v1.GlobalForwardingRules.Delete:input_type -> google.cloud.compute.v1.DeleteGlobalForwardingRuleRequest + 947, // 1893: google.cloud.compute.v1.GlobalForwardingRules.Get:input_type -> google.cloud.compute.v1.GetGlobalForwardingRuleRequest + 1182, // 1894: google.cloud.compute.v1.GlobalForwardingRules.Insert:input_type -> google.cloud.compute.v1.InsertGlobalForwardingRuleRequest + 1472, // 1895: google.cloud.compute.v1.GlobalForwardingRules.List:input_type -> google.cloud.compute.v1.ListGlobalForwardingRulesRequest + 1719, // 1896: google.cloud.compute.v1.GlobalForwardingRules.Patch:input_type -> google.cloud.compute.v1.PatchGlobalForwardingRuleRequest + 2087, // 1897: google.cloud.compute.v1.GlobalForwardingRules.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsGlobalForwardingRuleRequest + 2130, // 1898: google.cloud.compute.v1.GlobalForwardingRules.SetTarget:input_type -> google.cloud.compute.v1.SetTargetGlobalForwardingRuleRequest + 593, // 1899: google.cloud.compute.v1.GlobalNetworkEndpointGroups.AttachNetworkEndpoints:input_type -> google.cloud.compute.v1.AttachNetworkEndpointsGlobalNetworkEndpointGroupRequest + 734, // 1900: google.cloud.compute.v1.GlobalNetworkEndpointGroups.Delete:input_type -> google.cloud.compute.v1.DeleteGlobalNetworkEndpointGroupRequest + 832, // 1901: google.cloud.compute.v1.GlobalNetworkEndpointGroups.DetachNetworkEndpoints:input_type -> google.cloud.compute.v1.DetachNetworkEndpointsGlobalNetworkEndpointGroupRequest + 948, // 1902: google.cloud.compute.v1.GlobalNetworkEndpointGroups.Get:input_type -> google.cloud.compute.v1.GetGlobalNetworkEndpointGroupRequest + 1183, // 1903: google.cloud.compute.v1.GlobalNetworkEndpointGroups.Insert:input_type -> google.cloud.compute.v1.InsertGlobalNetworkEndpointGroupRequest + 1473, // 1904: google.cloud.compute.v1.GlobalNetworkEndpointGroups.List:input_type -> google.cloud.compute.v1.ListGlobalNetworkEndpointGroupsRequest + 1502, // 1905: google.cloud.compute.v1.GlobalNetworkEndpointGroups.ListNetworkEndpoints:input_type -> google.cloud.compute.v1.ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest + 533, // 1906: google.cloud.compute.v1.GlobalOperations.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListGlobalOperationsRequest + 735, // 1907: google.cloud.compute.v1.GlobalOperations.Delete:input_type -> google.cloud.compute.v1.DeleteGlobalOperationRequest + 949, // 1908: google.cloud.compute.v1.GlobalOperations.Get:input_type -> google.cloud.compute.v1.GetGlobalOperationRequest + 1474, // 1909: google.cloud.compute.v1.GlobalOperations.List:input_type -> google.cloud.compute.v1.ListGlobalOperationsRequest + 2410, // 1910: google.cloud.compute.v1.GlobalOperations.Wait:input_type -> google.cloud.compute.v1.WaitGlobalOperationRequest + 737, // 1911: google.cloud.compute.v1.GlobalOrganizationOperations.Delete:input_type -> google.cloud.compute.v1.DeleteGlobalOrganizationOperationRequest + 950, // 1912: google.cloud.compute.v1.GlobalOrganizationOperations.Get:input_type -> google.cloud.compute.v1.GetGlobalOrganizationOperationRequest + 1475, // 1913: google.cloud.compute.v1.GlobalOrganizationOperations.List:input_type -> google.cloud.compute.v1.ListGlobalOrganizationOperationsRequest + 739, // 1914: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Delete:input_type -> google.cloud.compute.v1.DeleteGlobalPublicDelegatedPrefixeRequest + 951, // 1915: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Get:input_type -> google.cloud.compute.v1.GetGlobalPublicDelegatedPrefixeRequest + 1184, // 1916: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Insert:input_type -> google.cloud.compute.v1.InsertGlobalPublicDelegatedPrefixeRequest + 1476, // 1917: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.List:input_type -> google.cloud.compute.v1.ListGlobalPublicDelegatedPrefixesRequest + 1720, // 1918: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Patch:input_type -> google.cloud.compute.v1.PatchGlobalPublicDelegatedPrefixeRequest + 534, // 1919: google.cloud.compute.v1.HealthChecks.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListHealthChecksRequest + 740, // 1920: google.cloud.compute.v1.HealthChecks.Delete:input_type -> google.cloud.compute.v1.DeleteHealthCheckRequest + 954, // 1921: google.cloud.compute.v1.HealthChecks.Get:input_type -> google.cloud.compute.v1.GetHealthCheckRequest + 1185, // 1922: google.cloud.compute.v1.HealthChecks.Insert:input_type -> google.cloud.compute.v1.InsertHealthCheckRequest + 1477, // 1923: google.cloud.compute.v1.HealthChecks.List:input_type -> google.cloud.compute.v1.ListHealthChecksRequest + 1721, // 1924: google.cloud.compute.v1.HealthChecks.Patch:input_type -> google.cloud.compute.v1.PatchHealthCheckRequest + 2277, // 1925: google.cloud.compute.v1.HealthChecks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsHealthCheckRequest + 2337, // 1926: google.cloud.compute.v1.HealthChecks.Update:input_type -> google.cloud.compute.v1.UpdateHealthCheckRequest + 991, // 1927: google.cloud.compute.v1.ImageFamilyViews.Get:input_type -> google.cloud.compute.v1.GetImageFamilyViewRequest + 741, // 1928: google.cloud.compute.v1.Images.Delete:input_type -> google.cloud.compute.v1.DeleteImageRequest + 829, // 1929: google.cloud.compute.v1.Images.Deprecate:input_type -> google.cloud.compute.v1.DeprecateImageRequest + 992, // 1930: google.cloud.compute.v1.Images.Get:input_type -> google.cloud.compute.v1.GetImageRequest + 944, // 1931: google.cloud.compute.v1.Images.GetFromFamily:input_type -> google.cloud.compute.v1.GetFromFamilyImageRequest + 963, // 1932: google.cloud.compute.v1.Images.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyImageRequest + 1186, // 1933: google.cloud.compute.v1.Images.Insert:input_type -> google.cloud.compute.v1.InsertImageRequest + 1478, // 1934: google.cloud.compute.v1.Images.List:input_type -> google.cloud.compute.v1.ListImagesRequest + 1722, // 1935: google.cloud.compute.v1.Images.Patch:input_type -> google.cloud.compute.v1.PatchImageRequest + 2052, // 1936: google.cloud.compute.v1.Images.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyImageRequest + 2088, // 1937: google.cloud.compute.v1.Images.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsImageRequest + 2278, // 1938: google.cloud.compute.v1.Images.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsImageRequest + 683, // 1939: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Cancel:input_type -> google.cloud.compute.v1.CancelInstanceGroupManagerResizeRequestRequest + 743, // 1940: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Delete:input_type -> google.cloud.compute.v1.DeleteInstanceGroupManagerResizeRequestRequest + 994, // 1941: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Get:input_type -> google.cloud.compute.v1.GetInstanceGroupManagerResizeRequestRequest + 1188, // 1942: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Insert:input_type -> google.cloud.compute.v1.InsertInstanceGroupManagerResizeRequestRequest + 1479, // 1943: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.List:input_type -> google.cloud.compute.v1.ListInstanceGroupManagerResizeRequestsRequest + 484, // 1944: google.cloud.compute.v1.InstanceGroupManagers.AbandonInstances:input_type -> google.cloud.compute.v1.AbandonInstancesInstanceGroupManagerRequest + 535, // 1945: google.cloud.compute.v1.InstanceGroupManagers.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListInstanceGroupManagersRequest + 590, // 1946: google.cloud.compute.v1.InstanceGroupManagers.ApplyUpdatesToInstances:input_type -> google.cloud.compute.v1.ApplyUpdatesToInstancesInstanceGroupManagerRequest + 707, // 1947: google.cloud.compute.v1.InstanceGroupManagers.CreateInstances:input_type -> google.cloud.compute.v1.CreateInstancesInstanceGroupManagerRequest + 742, // 1948: google.cloud.compute.v1.InstanceGroupManagers.Delete:input_type -> google.cloud.compute.v1.DeleteInstanceGroupManagerRequest + 747, // 1949: google.cloud.compute.v1.InstanceGroupManagers.DeleteInstances:input_type -> google.cloud.compute.v1.DeleteInstancesInstanceGroupManagerRequest + 768, // 1950: google.cloud.compute.v1.InstanceGroupManagers.DeletePerInstanceConfigs:input_type -> google.cloud.compute.v1.DeletePerInstanceConfigsInstanceGroupManagerRequest + 993, // 1951: google.cloud.compute.v1.InstanceGroupManagers.Get:input_type -> google.cloud.compute.v1.GetInstanceGroupManagerRequest + 1187, // 1952: google.cloud.compute.v1.InstanceGroupManagers.Insert:input_type -> google.cloud.compute.v1.InsertInstanceGroupManagerRequest + 1480, // 1953: google.cloud.compute.v1.InstanceGroupManagers.List:input_type -> google.cloud.compute.v1.ListInstanceGroupManagersRequest + 1464, // 1954: google.cloud.compute.v1.InstanceGroupManagers.ListErrors:input_type -> google.cloud.compute.v1.ListErrorsInstanceGroupManagersRequest + 1498, // 1955: google.cloud.compute.v1.InstanceGroupManagers.ListManagedInstances:input_type -> google.cloud.compute.v1.ListManagedInstancesInstanceGroupManagersRequest + 1515, // 1956: google.cloud.compute.v1.InstanceGroupManagers.ListPerInstanceConfigs:input_type -> google.cloud.compute.v1.ListPerInstanceConfigsInstanceGroupManagersRequest + 1723, // 1957: google.cloud.compute.v1.InstanceGroupManagers.Patch:input_type -> google.cloud.compute.v1.PatchInstanceGroupManagerRequest + 1737, // 1958: google.cloud.compute.v1.InstanceGroupManagers.PatchPerInstanceConfigs:input_type -> google.cloud.compute.v1.PatchPerInstanceConfigsInstanceGroupManagerRequest + 1815, // 1959: google.cloud.compute.v1.InstanceGroupManagers.RecreateInstances:input_type -> google.cloud.compute.v1.RecreateInstancesInstanceGroupManagerRequest + 1915, // 1960: google.cloud.compute.v1.InstanceGroupManagers.Resize:input_type -> google.cloud.compute.v1.ResizeInstanceGroupManagerRequest + 1946, // 1961: google.cloud.compute.v1.InstanceGroupManagers.ResumeInstances:input_type -> google.cloud.compute.v1.ResumeInstancesInstanceGroupManagerRequest + 2080, // 1962: google.cloud.compute.v1.InstanceGroupManagers.SetInstanceTemplate:input_type -> google.cloud.compute.v1.SetInstanceTemplateInstanceGroupManagerRequest + 2131, // 1963: google.cloud.compute.v1.InstanceGroupManagers.SetTargetPools:input_type -> google.cloud.compute.v1.SetTargetPoolsInstanceGroupManagerRequest + 2175, // 1964: google.cloud.compute.v1.InstanceGroupManagers.StartInstances:input_type -> google.cloud.compute.v1.StartInstancesInstanceGroupManagerRequest + 2188, // 1965: google.cloud.compute.v1.InstanceGroupManagers.StopInstances:input_type -> google.cloud.compute.v1.StopInstancesInstanceGroupManagerRequest + 2218, // 1966: google.cloud.compute.v1.InstanceGroupManagers.SuspendInstances:input_type -> google.cloud.compute.v1.SuspendInstancesInstanceGroupManagerRequest + 2346, // 1967: google.cloud.compute.v1.InstanceGroupManagers.UpdatePerInstanceConfigs:input_type -> google.cloud.compute.v1.UpdatePerInstanceConfigsInstanceGroupManagerRequest + 503, // 1968: google.cloud.compute.v1.InstanceGroups.AddInstances:input_type -> google.cloud.compute.v1.AddInstancesInstanceGroupRequest + 536, // 1969: google.cloud.compute.v1.InstanceGroups.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListInstanceGroupsRequest + 744, // 1970: google.cloud.compute.v1.InstanceGroups.Delete:input_type -> google.cloud.compute.v1.DeleteInstanceGroupRequest + 995, // 1971: google.cloud.compute.v1.InstanceGroups.Get:input_type -> google.cloud.compute.v1.GetInstanceGroupRequest + 1189, // 1972: google.cloud.compute.v1.InstanceGroups.Insert:input_type -> google.cloud.compute.v1.InsertInstanceGroupRequest + 1481, // 1973: google.cloud.compute.v1.InstanceGroups.List:input_type -> google.cloud.compute.v1.ListInstanceGroupsRequest + 1483, // 1974: google.cloud.compute.v1.InstanceGroups.ListInstances:input_type -> google.cloud.compute.v1.ListInstancesInstanceGroupsRequest + 1866, // 1975: google.cloud.compute.v1.InstanceGroups.RemoveInstances:input_type -> google.cloud.compute.v1.RemoveInstancesInstanceGroupRequest + 2108, // 1976: google.cloud.compute.v1.InstanceGroups.SetNamedPorts:input_type -> google.cloud.compute.v1.SetNamedPortsInstanceGroupRequest + 2279, // 1977: google.cloud.compute.v1.InstanceGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInstanceGroupRequest + 997, // 1978: google.cloud.compute.v1.InstanceSettingsService.Get:input_type -> google.cloud.compute.v1.GetInstanceSettingRequest + 1724, // 1979: google.cloud.compute.v1.InstanceSettingsService.Patch:input_type -> google.cloud.compute.v1.PatchInstanceSettingRequest + 537, // 1980: google.cloud.compute.v1.InstanceTemplates.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListInstanceTemplatesRequest + 746, // 1981: google.cloud.compute.v1.InstanceTemplates.Delete:input_type -> google.cloud.compute.v1.DeleteInstanceTemplateRequest + 998, // 1982: google.cloud.compute.v1.InstanceTemplates.Get:input_type -> google.cloud.compute.v1.GetInstanceTemplateRequest + 965, // 1983: google.cloud.compute.v1.InstanceTemplates.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyInstanceTemplateRequest + 1191, // 1984: google.cloud.compute.v1.InstanceTemplates.Insert:input_type -> google.cloud.compute.v1.InsertInstanceTemplateRequest + 1482, // 1985: google.cloud.compute.v1.InstanceTemplates.List:input_type -> google.cloud.compute.v1.ListInstanceTemplatesRequest + 2054, // 1986: google.cloud.compute.v1.InstanceTemplates.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyInstanceTemplateRequest + 2281, // 1987: google.cloud.compute.v1.InstanceTemplates.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInstanceTemplateRequest + 496, // 1988: google.cloud.compute.v1.Instances.AddAccessConfig:input_type -> google.cloud.compute.v1.AddAccessConfigInstanceRequest + 504, // 1989: google.cloud.compute.v1.Instances.AddNetworkInterface:input_type -> google.cloud.compute.v1.AddNetworkInterfaceInstanceRequest + 509, // 1990: google.cloud.compute.v1.Instances.AddResourcePolicies:input_type -> google.cloud.compute.v1.AddResourcePoliciesInstanceRequest + 538, // 1991: google.cloud.compute.v1.Instances.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListInstancesRequest + 592, // 1992: google.cloud.compute.v1.Instances.AttachDisk:input_type -> google.cloud.compute.v1.AttachDiskInstanceRequest + 663, // 1993: google.cloud.compute.v1.Instances.BulkInsert:input_type -> google.cloud.compute.v1.BulkInsertInstanceRequest + 745, // 1994: google.cloud.compute.v1.Instances.Delete:input_type -> google.cloud.compute.v1.DeleteInstanceRequest + 720, // 1995: google.cloud.compute.v1.Instances.DeleteAccessConfig:input_type -> google.cloud.compute.v1.DeleteAccessConfigInstanceRequest + 761, // 1996: google.cloud.compute.v1.Instances.DeleteNetworkInterface:input_type -> google.cloud.compute.v1.DeleteNetworkInterfaceInstanceRequest + 831, // 1997: google.cloud.compute.v1.Instances.DetachDisk:input_type -> google.cloud.compute.v1.DetachDiskInstanceRequest + 996, // 1998: google.cloud.compute.v1.Instances.Get:input_type -> google.cloud.compute.v1.GetInstanceRequest + 935, // 1999: google.cloud.compute.v1.Instances.GetEffectiveFirewalls:input_type -> google.cloud.compute.v1.GetEffectiveFirewallsInstanceRequest + 952, // 2000: google.cloud.compute.v1.Instances.GetGuestAttributes:input_type -> google.cloud.compute.v1.GetGuestAttributesInstanceRequest + 964, // 2001: google.cloud.compute.v1.Instances.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyInstanceRequest + 1078, // 2002: google.cloud.compute.v1.Instances.GetScreenshot:input_type -> google.cloud.compute.v1.GetScreenshotInstanceRequest + 1080, // 2003: google.cloud.compute.v1.Instances.GetSerialPortOutput:input_type -> google.cloud.compute.v1.GetSerialPortOutputInstanceRequest + 1082, // 2004: google.cloud.compute.v1.Instances.GetShieldedInstanceIdentity:input_type -> google.cloud.compute.v1.GetShieldedInstanceIdentityInstanceRequest + 1190, // 2005: google.cloud.compute.v1.Instances.Insert:input_type -> google.cloud.compute.v1.InsertInstanceRequest + 1485, // 2006: google.cloud.compute.v1.Instances.List:input_type -> google.cloud.compute.v1.ListInstancesRequest + 1522, // 2007: google.cloud.compute.v1.Instances.ListReferrers:input_type -> google.cloud.compute.v1.ListReferrersInstancesRequest + 1778, // 2008: google.cloud.compute.v1.Instances.PerformMaintenance:input_type -> google.cloud.compute.v1.PerformMaintenanceInstanceRequest + 1870, // 2009: google.cloud.compute.v1.Instances.RemoveResourcePolicies:input_type -> google.cloud.compute.v1.RemoveResourcePoliciesInstanceRequest + 1879, // 2010: google.cloud.compute.v1.Instances.ReportHostAsFaulty:input_type -> google.cloud.compute.v1.ReportHostAsFaultyInstanceRequest + 1913, // 2011: google.cloud.compute.v1.Instances.Reset:input_type -> google.cloud.compute.v1.ResetInstanceRequest + 1945, // 2012: google.cloud.compute.v1.Instances.Resume:input_type -> google.cloud.compute.v1.ResumeInstanceRequest + 2023, // 2013: google.cloud.compute.v1.Instances.SendDiagnosticInterrupt:input_type -> google.cloud.compute.v1.SendDiagnosticInterruptInstanceRequest + 2044, // 2014: google.cloud.compute.v1.Instances.SetDeletionProtection:input_type -> google.cloud.compute.v1.SetDeletionProtectionInstanceRequest + 2045, // 2015: google.cloud.compute.v1.Instances.SetDiskAutoDelete:input_type -> google.cloud.compute.v1.SetDiskAutoDeleteInstanceRequest + 2053, // 2016: google.cloud.compute.v1.Instances.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyInstanceRequest + 2089, // 2017: google.cloud.compute.v1.Instances.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsInstanceRequest + 2103, // 2018: google.cloud.compute.v1.Instances.SetMachineResources:input_type -> google.cloud.compute.v1.SetMachineResourcesInstanceRequest + 2104, // 2019: google.cloud.compute.v1.Instances.SetMachineType:input_type -> google.cloud.compute.v1.SetMachineTypeInstanceRequest + 2105, // 2020: google.cloud.compute.v1.Instances.SetMetadata:input_type -> google.cloud.compute.v1.SetMetadataInstanceRequest + 2106, // 2021: google.cloud.compute.v1.Instances.SetMinCpuPlatform:input_type -> google.cloud.compute.v1.SetMinCpuPlatformInstanceRequest + 2107, // 2022: google.cloud.compute.v1.Instances.SetName:input_type -> google.cloud.compute.v1.SetNameInstanceRequest + 2115, // 2023: google.cloud.compute.v1.Instances.SetScheduling:input_type -> google.cloud.compute.v1.SetSchedulingInstanceRequest + 2117, // 2024: google.cloud.compute.v1.Instances.SetSecurityPolicy:input_type -> google.cloud.compute.v1.SetSecurityPolicyInstanceRequest + 2121, // 2025: google.cloud.compute.v1.Instances.SetServiceAccount:input_type -> google.cloud.compute.v1.SetServiceAccountInstanceRequest + 2122, // 2026: google.cloud.compute.v1.Instances.SetShieldedInstanceIntegrityPolicy:input_type -> google.cloud.compute.v1.SetShieldedInstanceIntegrityPolicyInstanceRequest + 2128, // 2027: google.cloud.compute.v1.Instances.SetTags:input_type -> google.cloud.compute.v1.SetTagsInstanceRequest + 2145, // 2028: google.cloud.compute.v1.Instances.SimulateMaintenanceEvent:input_type -> google.cloud.compute.v1.SimulateMaintenanceEventInstanceRequest + 2174, // 2029: google.cloud.compute.v1.Instances.Start:input_type -> google.cloud.compute.v1.StartInstanceRequest + 2177, // 2030: google.cloud.compute.v1.Instances.StartWithEncryptionKey:input_type -> google.cloud.compute.v1.StartWithEncryptionKeyInstanceRequest + 2187, // 2031: google.cloud.compute.v1.Instances.Stop:input_type -> google.cloud.compute.v1.StopInstanceRequest + 2217, // 2032: google.cloud.compute.v1.Instances.Suspend:input_type -> google.cloud.compute.v1.SuspendInstanceRequest + 2280, // 2033: google.cloud.compute.v1.Instances.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInstanceRequest + 2338, // 2034: google.cloud.compute.v1.Instances.Update:input_type -> google.cloud.compute.v1.UpdateInstanceRequest + 2329, // 2035: google.cloud.compute.v1.Instances.UpdateAccessConfig:input_type -> google.cloud.compute.v1.UpdateAccessConfigInstanceRequest + 2334, // 2036: google.cloud.compute.v1.Instances.UpdateDisplayDevice:input_type -> google.cloud.compute.v1.UpdateDisplayDeviceInstanceRequest + 2344, // 2037: google.cloud.compute.v1.Instances.UpdateNetworkInterface:input_type -> google.cloud.compute.v1.UpdateNetworkInterfaceInstanceRequest + 2359, // 2038: google.cloud.compute.v1.Instances.UpdateShieldedInstanceConfig:input_type -> google.cloud.compute.v1.UpdateShieldedInstanceConfigInstanceRequest + 749, // 2039: google.cloud.compute.v1.InstantSnapshotGroups.Delete:input_type -> google.cloud.compute.v1.DeleteInstantSnapshotGroupRequest + 999, // 2040: google.cloud.compute.v1.InstantSnapshotGroups.Get:input_type -> google.cloud.compute.v1.GetInstantSnapshotGroupRequest + 966, // 2041: google.cloud.compute.v1.InstantSnapshotGroups.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyInstantSnapshotGroupRequest + 1192, // 2042: google.cloud.compute.v1.InstantSnapshotGroups.Insert:input_type -> google.cloud.compute.v1.InsertInstantSnapshotGroupRequest + 1487, // 2043: google.cloud.compute.v1.InstantSnapshotGroups.List:input_type -> google.cloud.compute.v1.ListInstantSnapshotGroupsRequest + 2055, // 2044: google.cloud.compute.v1.InstantSnapshotGroups.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyInstantSnapshotGroupRequest + 2282, // 2045: google.cloud.compute.v1.InstantSnapshotGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInstantSnapshotGroupRequest + 539, // 2046: google.cloud.compute.v1.InstantSnapshots.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListInstantSnapshotsRequest + 750, // 2047: google.cloud.compute.v1.InstantSnapshots.Delete:input_type -> google.cloud.compute.v1.DeleteInstantSnapshotRequest + 1000, // 2048: google.cloud.compute.v1.InstantSnapshots.Get:input_type -> google.cloud.compute.v1.GetInstantSnapshotRequest + 967, // 2049: google.cloud.compute.v1.InstantSnapshots.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyInstantSnapshotRequest + 1193, // 2050: google.cloud.compute.v1.InstantSnapshots.Insert:input_type -> google.cloud.compute.v1.InsertInstantSnapshotRequest + 1488, // 2051: google.cloud.compute.v1.InstantSnapshots.List:input_type -> google.cloud.compute.v1.ListInstantSnapshotsRequest + 2056, // 2052: google.cloud.compute.v1.InstantSnapshots.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyInstantSnapshotRequest + 2090, // 2053: google.cloud.compute.v1.InstantSnapshots.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsInstantSnapshotRequest + 2283, // 2054: google.cloud.compute.v1.InstantSnapshots.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInstantSnapshotRequest + 751, // 2055: google.cloud.compute.v1.InterconnectAttachmentGroups.Delete:input_type -> google.cloud.compute.v1.DeleteInterconnectAttachmentGroupRequest + 1001, // 2056: google.cloud.compute.v1.InterconnectAttachmentGroups.Get:input_type -> google.cloud.compute.v1.GetInterconnectAttachmentGroupRequest + 968, // 2057: google.cloud.compute.v1.InterconnectAttachmentGroups.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyInterconnectAttachmentGroupRequest + 1023, // 2058: google.cloud.compute.v1.InterconnectAttachmentGroups.GetOperationalStatus:input_type -> google.cloud.compute.v1.GetOperationalStatusInterconnectAttachmentGroupRequest + 1194, // 2059: google.cloud.compute.v1.InterconnectAttachmentGroups.Insert:input_type -> google.cloud.compute.v1.InsertInterconnectAttachmentGroupRequest + 1489, // 2060: google.cloud.compute.v1.InterconnectAttachmentGroups.List:input_type -> google.cloud.compute.v1.ListInterconnectAttachmentGroupsRequest + 1725, // 2061: google.cloud.compute.v1.InterconnectAttachmentGroups.Patch:input_type -> google.cloud.compute.v1.PatchInterconnectAttachmentGroupRequest + 2057, // 2062: google.cloud.compute.v1.InterconnectAttachmentGroups.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyInterconnectAttachmentGroupRequest + 2284, // 2063: google.cloud.compute.v1.InterconnectAttachmentGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInterconnectAttachmentGroupRequest + 540, // 2064: google.cloud.compute.v1.InterconnectAttachments.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListInterconnectAttachmentsRequest + 752, // 2065: google.cloud.compute.v1.InterconnectAttachments.Delete:input_type -> google.cloud.compute.v1.DeleteInterconnectAttachmentRequest + 1002, // 2066: google.cloud.compute.v1.InterconnectAttachments.Get:input_type -> google.cloud.compute.v1.GetInterconnectAttachmentRequest + 1195, // 2067: google.cloud.compute.v1.InterconnectAttachments.Insert:input_type -> google.cloud.compute.v1.InsertInterconnectAttachmentRequest + 1490, // 2068: google.cloud.compute.v1.InterconnectAttachments.List:input_type -> google.cloud.compute.v1.ListInterconnectAttachmentsRequest + 1726, // 2069: google.cloud.compute.v1.InterconnectAttachments.Patch:input_type -> google.cloud.compute.v1.PatchInterconnectAttachmentRequest + 2091, // 2070: google.cloud.compute.v1.InterconnectAttachments.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsInterconnectAttachmentRequest + 709, // 2071: google.cloud.compute.v1.InterconnectGroups.CreateMembers:input_type -> google.cloud.compute.v1.CreateMembersInterconnectGroupRequest + 753, // 2072: google.cloud.compute.v1.InterconnectGroups.Delete:input_type -> google.cloud.compute.v1.DeleteInterconnectGroupRequest + 1003, // 2073: google.cloud.compute.v1.InterconnectGroups.Get:input_type -> google.cloud.compute.v1.GetInterconnectGroupRequest + 969, // 2074: google.cloud.compute.v1.InterconnectGroups.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyInterconnectGroupRequest + 1024, // 2075: google.cloud.compute.v1.InterconnectGroups.GetOperationalStatus:input_type -> google.cloud.compute.v1.GetOperationalStatusInterconnectGroupRequest + 1196, // 2076: google.cloud.compute.v1.InterconnectGroups.Insert:input_type -> google.cloud.compute.v1.InsertInterconnectGroupRequest + 1491, // 2077: google.cloud.compute.v1.InterconnectGroups.List:input_type -> google.cloud.compute.v1.ListInterconnectGroupsRequest + 1727, // 2078: google.cloud.compute.v1.InterconnectGroups.Patch:input_type -> google.cloud.compute.v1.PatchInterconnectGroupRequest + 2058, // 2079: google.cloud.compute.v1.InterconnectGroups.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyInterconnectGroupRequest + 2285, // 2080: google.cloud.compute.v1.InterconnectGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsInterconnectGroupRequest + 1004, // 2081: google.cloud.compute.v1.InterconnectLocations.Get:input_type -> google.cloud.compute.v1.GetInterconnectLocationRequest + 1492, // 2082: google.cloud.compute.v1.InterconnectLocations.List:input_type -> google.cloud.compute.v1.ListInterconnectLocationsRequest + 1005, // 2083: google.cloud.compute.v1.InterconnectRemoteLocations.Get:input_type -> google.cloud.compute.v1.GetInterconnectRemoteLocationRequest + 1493, // 2084: google.cloud.compute.v1.InterconnectRemoteLocations.List:input_type -> google.cloud.compute.v1.ListInterconnectRemoteLocationsRequest + 754, // 2085: google.cloud.compute.v1.Interconnects.Delete:input_type -> google.cloud.compute.v1.DeleteInterconnectRequest + 1006, // 2086: google.cloud.compute.v1.Interconnects.Get:input_type -> google.cloud.compute.v1.GetInterconnectRequest + 932, // 2087: google.cloud.compute.v1.Interconnects.GetDiagnostics:input_type -> google.cloud.compute.v1.GetDiagnosticsInterconnectRequest + 1011, // 2088: google.cloud.compute.v1.Interconnects.GetMacsecConfig:input_type -> google.cloud.compute.v1.GetMacsecConfigInterconnectRequest + 1197, // 2089: google.cloud.compute.v1.Interconnects.Insert:input_type -> google.cloud.compute.v1.InsertInterconnectRequest + 1494, // 2090: google.cloud.compute.v1.Interconnects.List:input_type -> google.cloud.compute.v1.ListInterconnectsRequest + 1728, // 2091: google.cloud.compute.v1.Interconnects.Patch:input_type -> google.cloud.compute.v1.PatchInterconnectRequest + 2092, // 2092: google.cloud.compute.v1.Interconnects.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsInterconnectRequest + 1007, // 2093: google.cloud.compute.v1.LicenseCodes.Get:input_type -> google.cloud.compute.v1.GetLicenseCodeRequest + 2286, // 2094: google.cloud.compute.v1.LicenseCodes.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsLicenseCodeRequest + 755, // 2095: google.cloud.compute.v1.Licenses.Delete:input_type -> google.cloud.compute.v1.DeleteLicenseRequest + 1008, // 2096: google.cloud.compute.v1.Licenses.Get:input_type -> google.cloud.compute.v1.GetLicenseRequest + 970, // 2097: google.cloud.compute.v1.Licenses.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyLicenseRequest + 1198, // 2098: google.cloud.compute.v1.Licenses.Insert:input_type -> google.cloud.compute.v1.InsertLicenseRequest + 1495, // 2099: google.cloud.compute.v1.Licenses.List:input_type -> google.cloud.compute.v1.ListLicensesRequest + 2059, // 2100: google.cloud.compute.v1.Licenses.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyLicenseRequest + 2287, // 2101: google.cloud.compute.v1.Licenses.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsLicenseRequest + 2343, // 2102: google.cloud.compute.v1.Licenses.Update:input_type -> google.cloud.compute.v1.UpdateLicenseRequest + 756, // 2103: google.cloud.compute.v1.MachineImages.Delete:input_type -> google.cloud.compute.v1.DeleteMachineImageRequest + 1009, // 2104: google.cloud.compute.v1.MachineImages.Get:input_type -> google.cloud.compute.v1.GetMachineImageRequest + 971, // 2105: google.cloud.compute.v1.MachineImages.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyMachineImageRequest + 1199, // 2106: google.cloud.compute.v1.MachineImages.Insert:input_type -> google.cloud.compute.v1.InsertMachineImageRequest + 1496, // 2107: google.cloud.compute.v1.MachineImages.List:input_type -> google.cloud.compute.v1.ListMachineImagesRequest + 2060, // 2108: google.cloud.compute.v1.MachineImages.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyMachineImageRequest + 2093, // 2109: google.cloud.compute.v1.MachineImages.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsMachineImageRequest + 2288, // 2110: google.cloud.compute.v1.MachineImages.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsMachineImageRequest + 541, // 2111: google.cloud.compute.v1.MachineTypes.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListMachineTypesRequest + 1010, // 2112: google.cloud.compute.v1.MachineTypes.Get:input_type -> google.cloud.compute.v1.GetMachineTypeRequest + 1497, // 2113: google.cloud.compute.v1.MachineTypes.List:input_type -> google.cloud.compute.v1.ListMachineTypesRequest + 542, // 2114: google.cloud.compute.v1.NetworkAttachments.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNetworkAttachmentsRequest + 757, // 2115: google.cloud.compute.v1.NetworkAttachments.Delete:input_type -> google.cloud.compute.v1.DeleteNetworkAttachmentRequest + 1014, // 2116: google.cloud.compute.v1.NetworkAttachments.Get:input_type -> google.cloud.compute.v1.GetNetworkAttachmentRequest + 972, // 2117: google.cloud.compute.v1.NetworkAttachments.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyNetworkAttachmentRequest + 1200, // 2118: google.cloud.compute.v1.NetworkAttachments.Insert:input_type -> google.cloud.compute.v1.InsertNetworkAttachmentRequest + 1500, // 2119: google.cloud.compute.v1.NetworkAttachments.List:input_type -> google.cloud.compute.v1.ListNetworkAttachmentsRequest + 1729, // 2120: google.cloud.compute.v1.NetworkAttachments.Patch:input_type -> google.cloud.compute.v1.PatchNetworkAttachmentRequest + 2061, // 2121: google.cloud.compute.v1.NetworkAttachments.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyNetworkAttachmentRequest + 2289, // 2122: google.cloud.compute.v1.NetworkAttachments.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsNetworkAttachmentRequest + 543, // 2123: google.cloud.compute.v1.NetworkEdgeSecurityServices.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNetworkEdgeSecurityServicesRequest + 758, // 2124: google.cloud.compute.v1.NetworkEdgeSecurityServices.Delete:input_type -> google.cloud.compute.v1.DeleteNetworkEdgeSecurityServiceRequest + 1015, // 2125: google.cloud.compute.v1.NetworkEdgeSecurityServices.Get:input_type -> google.cloud.compute.v1.GetNetworkEdgeSecurityServiceRequest + 1201, // 2126: google.cloud.compute.v1.NetworkEdgeSecurityServices.Insert:input_type -> google.cloud.compute.v1.InsertNetworkEdgeSecurityServiceRequest + 1730, // 2127: google.cloud.compute.v1.NetworkEdgeSecurityServices.Patch:input_type -> google.cloud.compute.v1.PatchNetworkEdgeSecurityServiceRequest + 544, // 2128: google.cloud.compute.v1.NetworkEndpointGroups.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNetworkEndpointGroupsRequest + 594, // 2129: google.cloud.compute.v1.NetworkEndpointGroups.AttachNetworkEndpoints:input_type -> google.cloud.compute.v1.AttachNetworkEndpointsNetworkEndpointGroupRequest + 759, // 2130: google.cloud.compute.v1.NetworkEndpointGroups.Delete:input_type -> google.cloud.compute.v1.DeleteNetworkEndpointGroupRequest + 833, // 2131: google.cloud.compute.v1.NetworkEndpointGroups.DetachNetworkEndpoints:input_type -> google.cloud.compute.v1.DetachNetworkEndpointsNetworkEndpointGroupRequest + 1016, // 2132: google.cloud.compute.v1.NetworkEndpointGroups.Get:input_type -> google.cloud.compute.v1.GetNetworkEndpointGroupRequest + 1202, // 2133: google.cloud.compute.v1.NetworkEndpointGroups.Insert:input_type -> google.cloud.compute.v1.InsertNetworkEndpointGroupRequest + 1501, // 2134: google.cloud.compute.v1.NetworkEndpointGroups.List:input_type -> google.cloud.compute.v1.ListNetworkEndpointGroupsRequest + 1503, // 2135: google.cloud.compute.v1.NetworkEndpointGroups.ListNetworkEndpoints:input_type -> google.cloud.compute.v1.ListNetworkEndpointsNetworkEndpointGroupsRequest + 2290, // 2136: google.cloud.compute.v1.NetworkEndpointGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsNetworkEndpointGroupRequest + 498, // 2137: google.cloud.compute.v1.NetworkFirewallPolicies.AddAssociation:input_type -> google.cloud.compute.v1.AddAssociationNetworkFirewallPolicyRequest + 506, // 2138: google.cloud.compute.v1.NetworkFirewallPolicies.AddPacketMirroringRule:input_type -> google.cloud.compute.v1.AddPacketMirroringRuleNetworkFirewallPolicyRequest + 512, // 2139: google.cloud.compute.v1.NetworkFirewallPolicies.AddRule:input_type -> google.cloud.compute.v1.AddRuleNetworkFirewallPolicyRequest + 545, // 2140: google.cloud.compute.v1.NetworkFirewallPolicies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNetworkFirewallPoliciesRequest + 687, // 2141: google.cloud.compute.v1.NetworkFirewallPolicies.CloneRules:input_type -> google.cloud.compute.v1.CloneRulesNetworkFirewallPolicyRequest + 760, // 2142: google.cloud.compute.v1.NetworkFirewallPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteNetworkFirewallPolicyRequest + 1017, // 2143: google.cloud.compute.v1.NetworkFirewallPolicies.Get:input_type -> google.cloud.compute.v1.GetNetworkFirewallPolicyRequest + 925, // 2144: google.cloud.compute.v1.NetworkFirewallPolicies.GetAssociation:input_type -> google.cloud.compute.v1.GetAssociationNetworkFirewallPolicyRequest + 973, // 2145: google.cloud.compute.v1.NetworkFirewallPolicies.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyNetworkFirewallPolicyRequest + 1027, // 2146: google.cloud.compute.v1.NetworkFirewallPolicies.GetPacketMirroringRule:input_type -> google.cloud.compute.v1.GetPacketMirroringRuleNetworkFirewallPolicyRequest + 1073, // 2147: google.cloud.compute.v1.NetworkFirewallPolicies.GetRule:input_type -> google.cloud.compute.v1.GetRuleNetworkFirewallPolicyRequest + 1203, // 2148: google.cloud.compute.v1.NetworkFirewallPolicies.Insert:input_type -> google.cloud.compute.v1.InsertNetworkFirewallPolicyRequest + 1505, // 2149: google.cloud.compute.v1.NetworkFirewallPolicies.List:input_type -> google.cloud.compute.v1.ListNetworkFirewallPoliciesRequest + 1731, // 2150: google.cloud.compute.v1.NetworkFirewallPolicies.Patch:input_type -> google.cloud.compute.v1.PatchNetworkFirewallPolicyRequest + 1736, // 2151: google.cloud.compute.v1.NetworkFirewallPolicies.PatchPacketMirroringRule:input_type -> google.cloud.compute.v1.PatchPacketMirroringRuleNetworkFirewallPolicyRequest + 1760, // 2152: google.cloud.compute.v1.NetworkFirewallPolicies.PatchRule:input_type -> google.cloud.compute.v1.PatchRuleNetworkFirewallPolicyRequest + 1861, // 2153: google.cloud.compute.v1.NetworkFirewallPolicies.RemoveAssociation:input_type -> google.cloud.compute.v1.RemoveAssociationNetworkFirewallPolicyRequest + 1867, // 2154: google.cloud.compute.v1.NetworkFirewallPolicies.RemovePacketMirroringRule:input_type -> google.cloud.compute.v1.RemovePacketMirroringRuleNetworkFirewallPolicyRequest + 1873, // 2155: google.cloud.compute.v1.NetworkFirewallPolicies.RemoveRule:input_type -> google.cloud.compute.v1.RemoveRuleNetworkFirewallPolicyRequest + 2062, // 2156: google.cloud.compute.v1.NetworkFirewallPolicies.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyNetworkFirewallPolicyRequest + 2291, // 2157: google.cloud.compute.v1.NetworkFirewallPolicies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsNetworkFirewallPolicyRequest + 1018, // 2158: google.cloud.compute.v1.NetworkProfiles.Get:input_type -> google.cloud.compute.v1.GetNetworkProfileRequest + 1506, // 2159: google.cloud.compute.v1.NetworkProfiles.List:input_type -> google.cloud.compute.v1.ListNetworkProfilesRequest + 507, // 2160: google.cloud.compute.v1.Networks.AddPeering:input_type -> google.cloud.compute.v1.AddPeeringNetworkRequest + 762, // 2161: google.cloud.compute.v1.Networks.Delete:input_type -> google.cloud.compute.v1.DeleteNetworkRequest + 1019, // 2162: google.cloud.compute.v1.Networks.Get:input_type -> google.cloud.compute.v1.GetNetworkRequest + 936, // 2163: google.cloud.compute.v1.Networks.GetEffectiveFirewalls:input_type -> google.cloud.compute.v1.GetEffectiveFirewallsNetworkRequest + 1204, // 2164: google.cloud.compute.v1.Networks.Insert:input_type -> google.cloud.compute.v1.InsertNetworkRequest + 1507, // 2165: google.cloud.compute.v1.Networks.List:input_type -> google.cloud.compute.v1.ListNetworksRequest + 1514, // 2166: google.cloud.compute.v1.Networks.ListPeeringRoutes:input_type -> google.cloud.compute.v1.ListPeeringRoutesNetworksRequest + 1732, // 2167: google.cloud.compute.v1.Networks.Patch:input_type -> google.cloud.compute.v1.PatchNetworkRequest + 1868, // 2168: google.cloud.compute.v1.Networks.RemovePeering:input_type -> google.cloud.compute.v1.RemovePeeringNetworkRequest + 1881, // 2169: google.cloud.compute.v1.Networks.RequestRemovePeering:input_type -> google.cloud.compute.v1.RequestRemovePeeringNetworkRequest + 2220, // 2170: google.cloud.compute.v1.Networks.SwitchToCustomMode:input_type -> google.cloud.compute.v1.SwitchToCustomModeNetworkRequest + 2345, // 2171: google.cloud.compute.v1.Networks.UpdatePeering:input_type -> google.cloud.compute.v1.UpdatePeeringNetworkRequest + 505, // 2172: google.cloud.compute.v1.NodeGroups.AddNodes:input_type -> google.cloud.compute.v1.AddNodesNodeGroupRequest + 546, // 2173: google.cloud.compute.v1.NodeGroups.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNodeGroupsRequest + 763, // 2174: google.cloud.compute.v1.NodeGroups.Delete:input_type -> google.cloud.compute.v1.DeleteNodeGroupRequest + 765, // 2175: google.cloud.compute.v1.NodeGroups.DeleteNodes:input_type -> google.cloud.compute.v1.DeleteNodesNodeGroupRequest + 1020, // 2176: google.cloud.compute.v1.NodeGroups.Get:input_type -> google.cloud.compute.v1.GetNodeGroupRequest + 974, // 2177: google.cloud.compute.v1.NodeGroups.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyNodeGroupRequest + 1205, // 2178: google.cloud.compute.v1.NodeGroups.Insert:input_type -> google.cloud.compute.v1.InsertNodeGroupRequest + 1508, // 2179: google.cloud.compute.v1.NodeGroups.List:input_type -> google.cloud.compute.v1.ListNodeGroupsRequest + 1511, // 2180: google.cloud.compute.v1.NodeGroups.ListNodes:input_type -> google.cloud.compute.v1.ListNodesNodeGroupsRequest + 1733, // 2181: google.cloud.compute.v1.NodeGroups.Patch:input_type -> google.cloud.compute.v1.PatchNodeGroupRequest + 1779, // 2182: google.cloud.compute.v1.NodeGroups.PerformMaintenance:input_type -> google.cloud.compute.v1.PerformMaintenanceNodeGroupRequest + 2063, // 2183: google.cloud.compute.v1.NodeGroups.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyNodeGroupRequest + 2110, // 2184: google.cloud.compute.v1.NodeGroups.SetNodeTemplate:input_type -> google.cloud.compute.v1.SetNodeTemplateNodeGroupRequest + 2146, // 2185: google.cloud.compute.v1.NodeGroups.SimulateMaintenanceEvent:input_type -> google.cloud.compute.v1.SimulateMaintenanceEventNodeGroupRequest + 2292, // 2186: google.cloud.compute.v1.NodeGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsNodeGroupRequest + 547, // 2187: google.cloud.compute.v1.NodeTemplates.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNodeTemplatesRequest + 764, // 2188: google.cloud.compute.v1.NodeTemplates.Delete:input_type -> google.cloud.compute.v1.DeleteNodeTemplateRequest + 1021, // 2189: google.cloud.compute.v1.NodeTemplates.Get:input_type -> google.cloud.compute.v1.GetNodeTemplateRequest + 975, // 2190: google.cloud.compute.v1.NodeTemplates.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyNodeTemplateRequest + 1206, // 2191: google.cloud.compute.v1.NodeTemplates.Insert:input_type -> google.cloud.compute.v1.InsertNodeTemplateRequest + 1509, // 2192: google.cloud.compute.v1.NodeTemplates.List:input_type -> google.cloud.compute.v1.ListNodeTemplatesRequest + 2064, // 2193: google.cloud.compute.v1.NodeTemplates.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyNodeTemplateRequest + 2293, // 2194: google.cloud.compute.v1.NodeTemplates.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsNodeTemplateRequest + 548, // 2195: google.cloud.compute.v1.NodeTypes.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListNodeTypesRequest + 1022, // 2196: google.cloud.compute.v1.NodeTypes.Get:input_type -> google.cloud.compute.v1.GetNodeTypeRequest + 1510, // 2197: google.cloud.compute.v1.NodeTypes.List:input_type -> google.cloud.compute.v1.ListNodeTypesRequest + 499, // 2198: google.cloud.compute.v1.OrganizationSecurityPolicies.AddAssociation:input_type -> google.cloud.compute.v1.AddAssociationOrganizationSecurityPolicyRequest + 513, // 2199: google.cloud.compute.v1.OrganizationSecurityPolicies.AddRule:input_type -> google.cloud.compute.v1.AddRuleOrganizationSecurityPolicyRequest + 705, // 2200: google.cloud.compute.v1.OrganizationSecurityPolicies.CopyRules:input_type -> google.cloud.compute.v1.CopyRulesOrganizationSecurityPolicyRequest + 766, // 2201: google.cloud.compute.v1.OrganizationSecurityPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteOrganizationSecurityPolicyRequest + 1025, // 2202: google.cloud.compute.v1.OrganizationSecurityPolicies.Get:input_type -> google.cloud.compute.v1.GetOrganizationSecurityPolicyRequest + 926, // 2203: google.cloud.compute.v1.OrganizationSecurityPolicies.GetAssociation:input_type -> google.cloud.compute.v1.GetAssociationOrganizationSecurityPolicyRequest + 1074, // 2204: google.cloud.compute.v1.OrganizationSecurityPolicies.GetRule:input_type -> google.cloud.compute.v1.GetRuleOrganizationSecurityPolicyRequest + 1207, // 2205: google.cloud.compute.v1.OrganizationSecurityPolicies.Insert:input_type -> google.cloud.compute.v1.InsertOrganizationSecurityPolicyRequest + 1512, // 2206: google.cloud.compute.v1.OrganizationSecurityPolicies.List:input_type -> google.cloud.compute.v1.ListOrganizationSecurityPoliciesRequest + 1453, // 2207: google.cloud.compute.v1.OrganizationSecurityPolicies.ListAssociations:input_type -> google.cloud.compute.v1.ListAssociationsOrganizationSecurityPolicyRequest + 1517, // 2208: google.cloud.compute.v1.OrganizationSecurityPolicies.ListPreconfiguredExpressionSets:input_type -> google.cloud.compute.v1.ListPreconfiguredExpressionSetsOrganizationSecurityPoliciesRequest + 1618, // 2209: google.cloud.compute.v1.OrganizationSecurityPolicies.Move:input_type -> google.cloud.compute.v1.MoveOrganizationSecurityPolicyRequest + 1734, // 2210: google.cloud.compute.v1.OrganizationSecurityPolicies.Patch:input_type -> google.cloud.compute.v1.PatchOrganizationSecurityPolicyRequest + 1761, // 2211: google.cloud.compute.v1.OrganizationSecurityPolicies.PatchRule:input_type -> google.cloud.compute.v1.PatchRuleOrganizationSecurityPolicyRequest + 1862, // 2212: google.cloud.compute.v1.OrganizationSecurityPolicies.RemoveAssociation:input_type -> google.cloud.compute.v1.RemoveAssociationOrganizationSecurityPolicyRequest + 1874, // 2213: google.cloud.compute.v1.OrganizationSecurityPolicies.RemoveRule:input_type -> google.cloud.compute.v1.RemoveRuleOrganizationSecurityPolicyRequest + 549, // 2214: google.cloud.compute.v1.PacketMirrorings.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListPacketMirroringsRequest + 767, // 2215: google.cloud.compute.v1.PacketMirrorings.Delete:input_type -> google.cloud.compute.v1.DeletePacketMirroringRequest + 1026, // 2216: google.cloud.compute.v1.PacketMirrorings.Get:input_type -> google.cloud.compute.v1.GetPacketMirroringRequest + 1208, // 2217: google.cloud.compute.v1.PacketMirrorings.Insert:input_type -> google.cloud.compute.v1.InsertPacketMirroringRequest + 1513, // 2218: google.cloud.compute.v1.PacketMirrorings.List:input_type -> google.cloud.compute.v1.ListPacketMirroringsRequest + 1735, // 2219: google.cloud.compute.v1.PacketMirrorings.Patch:input_type -> google.cloud.compute.v1.PatchPacketMirroringRequest + 2294, // 2220: google.cloud.compute.v1.PacketMirrorings.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsPacketMirroringRequest + 1028, // 2221: google.cloud.compute.v1.PreviewFeatures.Get:input_type -> google.cloud.compute.v1.GetPreviewFeatureRequest + 1519, // 2222: google.cloud.compute.v1.PreviewFeatures.List:input_type -> google.cloud.compute.v1.ListPreviewFeaturesRequest + 2348, // 2223: google.cloud.compute.v1.PreviewFeatures.Update:input_type -> google.cloud.compute.v1.UpdatePreviewFeatureRequest + 835, // 2224: google.cloud.compute.v1.Projects.DisableXpnHost:input_type -> google.cloud.compute.v1.DisableXpnHostProjectRequest + 836, // 2225: google.cloud.compute.v1.Projects.DisableXpnResource:input_type -> google.cloud.compute.v1.DisableXpnResourceProjectRequest + 862, // 2226: google.cloud.compute.v1.Projects.EnableXpnHost:input_type -> google.cloud.compute.v1.EnableXpnHostProjectRequest + 863, // 2227: google.cloud.compute.v1.Projects.EnableXpnResource:input_type -> google.cloud.compute.v1.EnableXpnResourceProjectRequest + 1029, // 2228: google.cloud.compute.v1.Projects.Get:input_type -> google.cloud.compute.v1.GetProjectRequest + 1107, // 2229: google.cloud.compute.v1.Projects.GetXpnHost:input_type -> google.cloud.compute.v1.GetXpnHostProjectRequest + 1108, // 2230: google.cloud.compute.v1.Projects.GetXpnResources:input_type -> google.cloud.compute.v1.GetXpnResourcesProjectsRequest + 1587, // 2231: google.cloud.compute.v1.Projects.ListXpnHosts:input_type -> google.cloud.compute.v1.ListXpnHostsProjectsRequest + 1614, // 2232: google.cloud.compute.v1.Projects.MoveDisk:input_type -> google.cloud.compute.v1.MoveDiskProjectRequest + 1617, // 2233: google.cloud.compute.v1.Projects.MoveInstance:input_type -> google.cloud.compute.v1.MoveInstanceProjectRequest + 2039, // 2234: google.cloud.compute.v1.Projects.SetCloudArmorTier:input_type -> google.cloud.compute.v1.SetCloudArmorTierProjectRequest + 2042, // 2235: google.cloud.compute.v1.Projects.SetCommonInstanceMetadata:input_type -> google.cloud.compute.v1.SetCommonInstanceMetadataProjectRequest + 2043, // 2236: google.cloud.compute.v1.Projects.SetDefaultNetworkTier:input_type -> google.cloud.compute.v1.SetDefaultNetworkTierProjectRequest + 2137, // 2237: google.cloud.compute.v1.Projects.SetUsageExportBucket:input_type -> google.cloud.compute.v1.SetUsageExportBucketProjectRequest + 588, // 2238: google.cloud.compute.v1.PublicAdvertisedPrefixes.Announce:input_type -> google.cloud.compute.v1.AnnouncePublicAdvertisedPrefixeRequest + 770, // 2239: google.cloud.compute.v1.PublicAdvertisedPrefixes.Delete:input_type -> google.cloud.compute.v1.DeletePublicAdvertisedPrefixeRequest + 1030, // 2240: google.cloud.compute.v1.PublicAdvertisedPrefixes.Get:input_type -> google.cloud.compute.v1.GetPublicAdvertisedPrefixeRequest + 1209, // 2241: google.cloud.compute.v1.PublicAdvertisedPrefixes.Insert:input_type -> google.cloud.compute.v1.InsertPublicAdvertisedPrefixeRequest + 1520, // 2242: google.cloud.compute.v1.PublicAdvertisedPrefixes.List:input_type -> google.cloud.compute.v1.ListPublicAdvertisedPrefixesRequest + 1739, // 2243: google.cloud.compute.v1.PublicAdvertisedPrefixes.Patch:input_type -> google.cloud.compute.v1.PatchPublicAdvertisedPrefixeRequest + 2425, // 2244: google.cloud.compute.v1.PublicAdvertisedPrefixes.Withdraw:input_type -> google.cloud.compute.v1.WithdrawPublicAdvertisedPrefixeRequest + 550, // 2245: google.cloud.compute.v1.PublicDelegatedPrefixes.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListPublicDelegatedPrefixesRequest + 589, // 2246: google.cloud.compute.v1.PublicDelegatedPrefixes.Announce:input_type -> google.cloud.compute.v1.AnnouncePublicDelegatedPrefixeRequest + 771, // 2247: google.cloud.compute.v1.PublicDelegatedPrefixes.Delete:input_type -> google.cloud.compute.v1.DeletePublicDelegatedPrefixeRequest + 1031, // 2248: google.cloud.compute.v1.PublicDelegatedPrefixes.Get:input_type -> google.cloud.compute.v1.GetPublicDelegatedPrefixeRequest + 1210, // 2249: google.cloud.compute.v1.PublicDelegatedPrefixes.Insert:input_type -> google.cloud.compute.v1.InsertPublicDelegatedPrefixeRequest + 1521, // 2250: google.cloud.compute.v1.PublicDelegatedPrefixes.List:input_type -> google.cloud.compute.v1.ListPublicDelegatedPrefixesRequest + 1740, // 2251: google.cloud.compute.v1.PublicDelegatedPrefixes.Patch:input_type -> google.cloud.compute.v1.PatchPublicDelegatedPrefixeRequest + 2426, // 2252: google.cloud.compute.v1.PublicDelegatedPrefixes.Withdraw:input_type -> google.cloud.compute.v1.WithdrawPublicDelegatedPrefixeRequest + 772, // 2253: google.cloud.compute.v1.RegionAutoscalers.Delete:input_type -> google.cloud.compute.v1.DeleteRegionAutoscalerRequest + 1032, // 2254: google.cloud.compute.v1.RegionAutoscalers.Get:input_type -> google.cloud.compute.v1.GetRegionAutoscalerRequest + 1211, // 2255: google.cloud.compute.v1.RegionAutoscalers.Insert:input_type -> google.cloud.compute.v1.InsertRegionAutoscalerRequest + 1523, // 2256: google.cloud.compute.v1.RegionAutoscalers.List:input_type -> google.cloud.compute.v1.ListRegionAutoscalersRequest + 1741, // 2257: google.cloud.compute.v1.RegionAutoscalers.Patch:input_type -> google.cloud.compute.v1.PatchRegionAutoscalerRequest + 2295, // 2258: google.cloud.compute.v1.RegionAutoscalers.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionAutoscalerRequest + 2349, // 2259: google.cloud.compute.v1.RegionAutoscalers.Update:input_type -> google.cloud.compute.v1.UpdateRegionAutoscalerRequest + 773, // 2260: google.cloud.compute.v1.RegionBackendBuckets.Delete:input_type -> google.cloud.compute.v1.DeleteRegionBackendBucketRequest + 1033, // 2261: google.cloud.compute.v1.RegionBackendBuckets.Get:input_type -> google.cloud.compute.v1.GetRegionBackendBucketRequest + 976, // 2262: google.cloud.compute.v1.RegionBackendBuckets.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyRegionBackendBucketRequest + 1212, // 2263: google.cloud.compute.v1.RegionBackendBuckets.Insert:input_type -> google.cloud.compute.v1.InsertRegionBackendBucketRequest + 1524, // 2264: google.cloud.compute.v1.RegionBackendBuckets.List:input_type -> google.cloud.compute.v1.ListRegionBackendBucketsRequest + 1581, // 2265: google.cloud.compute.v1.RegionBackendBuckets.ListUsable:input_type -> google.cloud.compute.v1.ListUsableRegionBackendBucketsRequest + 1742, // 2266: google.cloud.compute.v1.RegionBackendBuckets.Patch:input_type -> google.cloud.compute.v1.PatchRegionBackendBucketRequest + 2065, // 2267: google.cloud.compute.v1.RegionBackendBuckets.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyRegionBackendBucketRequest + 2296, // 2268: google.cloud.compute.v1.RegionBackendBuckets.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionBackendBucketRequest + 774, // 2269: google.cloud.compute.v1.RegionBackendServices.Delete:input_type -> google.cloud.compute.v1.DeleteRegionBackendServiceRequest + 1034, // 2270: google.cloud.compute.v1.RegionBackendServices.Get:input_type -> google.cloud.compute.v1.GetRegionBackendServiceRequest + 955, // 2271: google.cloud.compute.v1.RegionBackendServices.GetHealth:input_type -> google.cloud.compute.v1.GetHealthRegionBackendServiceRequest + 977, // 2272: google.cloud.compute.v1.RegionBackendServices.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyRegionBackendServiceRequest + 1213, // 2273: google.cloud.compute.v1.RegionBackendServices.Insert:input_type -> google.cloud.compute.v1.InsertRegionBackendServiceRequest + 1525, // 2274: google.cloud.compute.v1.RegionBackendServices.List:input_type -> google.cloud.compute.v1.ListRegionBackendServicesRequest + 1582, // 2275: google.cloud.compute.v1.RegionBackendServices.ListUsable:input_type -> google.cloud.compute.v1.ListUsableRegionBackendServicesRequest + 1743, // 2276: google.cloud.compute.v1.RegionBackendServices.Patch:input_type -> google.cloud.compute.v1.PatchRegionBackendServiceRequest + 2066, // 2277: google.cloud.compute.v1.RegionBackendServices.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyRegionBackendServiceRequest + 2118, // 2278: google.cloud.compute.v1.RegionBackendServices.SetSecurityPolicy:input_type -> google.cloud.compute.v1.SetSecurityPolicyRegionBackendServiceRequest + 2297, // 2279: google.cloud.compute.v1.RegionBackendServices.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionBackendServiceRequest + 2350, // 2280: google.cloud.compute.v1.RegionBackendServices.Update:input_type -> google.cloud.compute.v1.UpdateRegionBackendServiceRequest + 551, // 2281: google.cloud.compute.v1.RegionCommitments.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRegionCommitmentsRequest + 1035, // 2282: google.cloud.compute.v1.RegionCommitments.Get:input_type -> google.cloud.compute.v1.GetRegionCommitmentRequest + 1214, // 2283: google.cloud.compute.v1.RegionCommitments.Insert:input_type -> google.cloud.compute.v1.InsertRegionCommitmentRequest + 1526, // 2284: google.cloud.compute.v1.RegionCommitments.List:input_type -> google.cloud.compute.v1.ListRegionCommitmentsRequest + 2351, // 2285: google.cloud.compute.v1.RegionCommitments.Update:input_type -> google.cloud.compute.v1.UpdateRegionCommitmentRequest + 552, // 2286: google.cloud.compute.v1.RegionCompositeHealthChecks.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRegionCompositeHealthChecksRequest + 775, // 2287: google.cloud.compute.v1.RegionCompositeHealthChecks.Delete:input_type -> google.cloud.compute.v1.DeleteRegionCompositeHealthCheckRequest + 1036, // 2288: google.cloud.compute.v1.RegionCompositeHealthChecks.Get:input_type -> google.cloud.compute.v1.GetRegionCompositeHealthCheckRequest + 956, // 2289: google.cloud.compute.v1.RegionCompositeHealthChecks.GetHealth:input_type -> google.cloud.compute.v1.GetHealthRegionCompositeHealthCheckRequest + 1215, // 2290: google.cloud.compute.v1.RegionCompositeHealthChecks.Insert:input_type -> google.cloud.compute.v1.InsertRegionCompositeHealthCheckRequest + 1527, // 2291: google.cloud.compute.v1.RegionCompositeHealthChecks.List:input_type -> google.cloud.compute.v1.ListRegionCompositeHealthChecksRequest + 1744, // 2292: google.cloud.compute.v1.RegionCompositeHealthChecks.Patch:input_type -> google.cloud.compute.v1.PatchRegionCompositeHealthCheckRequest + 2298, // 2293: google.cloud.compute.v1.RegionCompositeHealthChecks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionCompositeHealthCheckRequest + 1038, // 2294: google.cloud.compute.v1.RegionDiskTypes.Get:input_type -> google.cloud.compute.v1.GetRegionDiskTypeRequest + 1528, // 2295: google.cloud.compute.v1.RegionDiskTypes.List:input_type -> google.cloud.compute.v1.ListRegionDiskTypesRequest + 510, // 2296: google.cloud.compute.v1.RegionDisks.AddResourcePolicies:input_type -> google.cloud.compute.v1.AddResourcePoliciesRegionDiskRequest + 667, // 2297: google.cloud.compute.v1.RegionDisks.BulkInsert:input_type -> google.cloud.compute.v1.BulkInsertRegionDiskRequest + 711, // 2298: google.cloud.compute.v1.RegionDisks.CreateSnapshot:input_type -> google.cloud.compute.v1.CreateSnapshotRegionDiskRequest + 776, // 2299: google.cloud.compute.v1.RegionDisks.Delete:input_type -> google.cloud.compute.v1.DeleteRegionDiskRequest + 1037, // 2300: google.cloud.compute.v1.RegionDisks.Get:input_type -> google.cloud.compute.v1.GetRegionDiskRequest + 978, // 2301: google.cloud.compute.v1.RegionDisks.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyRegionDiskRequest + 1216, // 2302: google.cloud.compute.v1.RegionDisks.Insert:input_type -> google.cloud.compute.v1.InsertRegionDiskRequest + 1529, // 2303: google.cloud.compute.v1.RegionDisks.List:input_type -> google.cloud.compute.v1.ListRegionDisksRequest + 1871, // 2304: google.cloud.compute.v1.RegionDisks.RemoveResourcePolicies:input_type -> google.cloud.compute.v1.RemoveResourcePoliciesRegionDiskRequest + 1916, // 2305: google.cloud.compute.v1.RegionDisks.Resize:input_type -> google.cloud.compute.v1.ResizeRegionDiskRequest + 2067, // 2306: google.cloud.compute.v1.RegionDisks.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyRegionDiskRequest + 2094, // 2307: google.cloud.compute.v1.RegionDisks.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsRegionDiskRequest + 2173, // 2308: google.cloud.compute.v1.RegionDisks.StartAsyncReplication:input_type -> google.cloud.compute.v1.StartAsyncReplicationRegionDiskRequest + 2184, // 2309: google.cloud.compute.v1.RegionDisks.StopAsyncReplication:input_type -> google.cloud.compute.v1.StopAsyncReplicationRegionDiskRequest + 2186, // 2310: google.cloud.compute.v1.RegionDisks.StopGroupAsyncReplication:input_type -> google.cloud.compute.v1.StopGroupAsyncReplicationRegionDiskRequest + 2299, // 2311: google.cloud.compute.v1.RegionDisks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionDiskRequest + 2352, // 2312: google.cloud.compute.v1.RegionDisks.Update:input_type -> google.cloud.compute.v1.UpdateRegionDiskRequest + 2340, // 2313: google.cloud.compute.v1.RegionDisks.UpdateKmsKey:input_type -> google.cloud.compute.v1.UpdateKmsKeyRegionDiskRequest + 553, // 2314: google.cloud.compute.v1.RegionHealthAggregationPolicies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRegionHealthAggregationPoliciesRequest + 777, // 2315: google.cloud.compute.v1.RegionHealthAggregationPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionHealthAggregationPolicyRequest + 1039, // 2316: google.cloud.compute.v1.RegionHealthAggregationPolicies.Get:input_type -> google.cloud.compute.v1.GetRegionHealthAggregationPolicyRequest + 1217, // 2317: google.cloud.compute.v1.RegionHealthAggregationPolicies.Insert:input_type -> google.cloud.compute.v1.InsertRegionHealthAggregationPolicyRequest + 1530, // 2318: google.cloud.compute.v1.RegionHealthAggregationPolicies.List:input_type -> google.cloud.compute.v1.ListRegionHealthAggregationPoliciesRequest + 1745, // 2319: google.cloud.compute.v1.RegionHealthAggregationPolicies.Patch:input_type -> google.cloud.compute.v1.PatchRegionHealthAggregationPolicyRequest + 2300, // 2320: google.cloud.compute.v1.RegionHealthAggregationPolicies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionHealthAggregationPolicyRequest + 554, // 2321: google.cloud.compute.v1.RegionHealthCheckServices.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRegionHealthCheckServicesRequest + 779, // 2322: google.cloud.compute.v1.RegionHealthCheckServices.Delete:input_type -> google.cloud.compute.v1.DeleteRegionHealthCheckServiceRequest + 1041, // 2323: google.cloud.compute.v1.RegionHealthCheckServices.Get:input_type -> google.cloud.compute.v1.GetRegionHealthCheckServiceRequest + 1219, // 2324: google.cloud.compute.v1.RegionHealthCheckServices.Insert:input_type -> google.cloud.compute.v1.InsertRegionHealthCheckServiceRequest + 1531, // 2325: google.cloud.compute.v1.RegionHealthCheckServices.List:input_type -> google.cloud.compute.v1.ListRegionHealthCheckServicesRequest + 1747, // 2326: google.cloud.compute.v1.RegionHealthCheckServices.Patch:input_type -> google.cloud.compute.v1.PatchRegionHealthCheckServiceRequest + 2302, // 2327: google.cloud.compute.v1.RegionHealthCheckServices.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionHealthCheckServiceRequest + 778, // 2328: google.cloud.compute.v1.RegionHealthChecks.Delete:input_type -> google.cloud.compute.v1.DeleteRegionHealthCheckRequest + 1040, // 2329: google.cloud.compute.v1.RegionHealthChecks.Get:input_type -> google.cloud.compute.v1.GetRegionHealthCheckRequest + 1218, // 2330: google.cloud.compute.v1.RegionHealthChecks.Insert:input_type -> google.cloud.compute.v1.InsertRegionHealthCheckRequest + 1532, // 2331: google.cloud.compute.v1.RegionHealthChecks.List:input_type -> google.cloud.compute.v1.ListRegionHealthChecksRequest + 1746, // 2332: google.cloud.compute.v1.RegionHealthChecks.Patch:input_type -> google.cloud.compute.v1.PatchRegionHealthCheckRequest + 2301, // 2333: google.cloud.compute.v1.RegionHealthChecks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionHealthCheckRequest + 2353, // 2334: google.cloud.compute.v1.RegionHealthChecks.Update:input_type -> google.cloud.compute.v1.UpdateRegionHealthCheckRequest + 555, // 2335: google.cloud.compute.v1.RegionHealthSources.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRegionHealthSourcesRequest + 780, // 2336: google.cloud.compute.v1.RegionHealthSources.Delete:input_type -> google.cloud.compute.v1.DeleteRegionHealthSourceRequest + 1042, // 2337: google.cloud.compute.v1.RegionHealthSources.Get:input_type -> google.cloud.compute.v1.GetRegionHealthSourceRequest + 957, // 2338: google.cloud.compute.v1.RegionHealthSources.GetHealth:input_type -> google.cloud.compute.v1.GetHealthRegionHealthSourceRequest + 1220, // 2339: google.cloud.compute.v1.RegionHealthSources.Insert:input_type -> google.cloud.compute.v1.InsertRegionHealthSourceRequest + 1533, // 2340: google.cloud.compute.v1.RegionHealthSources.List:input_type -> google.cloud.compute.v1.ListRegionHealthSourcesRequest + 1748, // 2341: google.cloud.compute.v1.RegionHealthSources.Patch:input_type -> google.cloud.compute.v1.PatchRegionHealthSourceRequest + 2303, // 2342: google.cloud.compute.v1.RegionHealthSources.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionHealthSourceRequest + 684, // 2343: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests.Cancel:input_type -> google.cloud.compute.v1.CancelRegionInstanceGroupManagerResizeRequestRequest + 782, // 2344: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests.Delete:input_type -> google.cloud.compute.v1.DeleteRegionInstanceGroupManagerResizeRequestRequest + 1044, // 2345: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests.Get:input_type -> google.cloud.compute.v1.GetRegionInstanceGroupManagerResizeRequestRequest + 1222, // 2346: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests.Insert:input_type -> google.cloud.compute.v1.InsertRegionInstanceGroupManagerResizeRequestRequest + 1534, // 2347: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests.List:input_type -> google.cloud.compute.v1.ListRegionInstanceGroupManagerResizeRequestsRequest + 485, // 2348: google.cloud.compute.v1.RegionInstanceGroupManagers.AbandonInstances:input_type -> google.cloud.compute.v1.AbandonInstancesRegionInstanceGroupManagerRequest + 591, // 2349: google.cloud.compute.v1.RegionInstanceGroupManagers.ApplyUpdatesToInstances:input_type -> google.cloud.compute.v1.ApplyUpdatesToInstancesRegionInstanceGroupManagerRequest + 708, // 2350: google.cloud.compute.v1.RegionInstanceGroupManagers.CreateInstances:input_type -> google.cloud.compute.v1.CreateInstancesRegionInstanceGroupManagerRequest + 781, // 2351: google.cloud.compute.v1.RegionInstanceGroupManagers.Delete:input_type -> google.cloud.compute.v1.DeleteRegionInstanceGroupManagerRequest + 748, // 2352: google.cloud.compute.v1.RegionInstanceGroupManagers.DeleteInstances:input_type -> google.cloud.compute.v1.DeleteInstancesRegionInstanceGroupManagerRequest + 769, // 2353: google.cloud.compute.v1.RegionInstanceGroupManagers.DeletePerInstanceConfigs:input_type -> google.cloud.compute.v1.DeletePerInstanceConfigsRegionInstanceGroupManagerRequest + 1043, // 2354: google.cloud.compute.v1.RegionInstanceGroupManagers.Get:input_type -> google.cloud.compute.v1.GetRegionInstanceGroupManagerRequest + 1221, // 2355: google.cloud.compute.v1.RegionInstanceGroupManagers.Insert:input_type -> google.cloud.compute.v1.InsertRegionInstanceGroupManagerRequest + 1535, // 2356: google.cloud.compute.v1.RegionInstanceGroupManagers.List:input_type -> google.cloud.compute.v1.ListRegionInstanceGroupManagersRequest + 1465, // 2357: google.cloud.compute.v1.RegionInstanceGroupManagers.ListErrors:input_type -> google.cloud.compute.v1.ListErrorsRegionInstanceGroupManagersRequest + 1499, // 2358: google.cloud.compute.v1.RegionInstanceGroupManagers.ListManagedInstances:input_type -> google.cloud.compute.v1.ListManagedInstancesRegionInstanceGroupManagersRequest + 1516, // 2359: google.cloud.compute.v1.RegionInstanceGroupManagers.ListPerInstanceConfigs:input_type -> google.cloud.compute.v1.ListPerInstanceConfigsRegionInstanceGroupManagersRequest + 1749, // 2360: google.cloud.compute.v1.RegionInstanceGroupManagers.Patch:input_type -> google.cloud.compute.v1.PatchRegionInstanceGroupManagerRequest + 1738, // 2361: google.cloud.compute.v1.RegionInstanceGroupManagers.PatchPerInstanceConfigs:input_type -> google.cloud.compute.v1.PatchPerInstanceConfigsRegionInstanceGroupManagerRequest + 1816, // 2362: google.cloud.compute.v1.RegionInstanceGroupManagers.RecreateInstances:input_type -> google.cloud.compute.v1.RecreateInstancesRegionInstanceGroupManagerRequest + 1917, // 2363: google.cloud.compute.v1.RegionInstanceGroupManagers.Resize:input_type -> google.cloud.compute.v1.ResizeRegionInstanceGroupManagerRequest + 1947, // 2364: google.cloud.compute.v1.RegionInstanceGroupManagers.ResumeInstances:input_type -> google.cloud.compute.v1.ResumeInstancesRegionInstanceGroupManagerRequest + 2081, // 2365: google.cloud.compute.v1.RegionInstanceGroupManagers.SetInstanceTemplate:input_type -> google.cloud.compute.v1.SetInstanceTemplateRegionInstanceGroupManagerRequest + 2132, // 2366: google.cloud.compute.v1.RegionInstanceGroupManagers.SetTargetPools:input_type -> google.cloud.compute.v1.SetTargetPoolsRegionInstanceGroupManagerRequest + 2176, // 2367: google.cloud.compute.v1.RegionInstanceGroupManagers.StartInstances:input_type -> google.cloud.compute.v1.StartInstancesRegionInstanceGroupManagerRequest + 2189, // 2368: google.cloud.compute.v1.RegionInstanceGroupManagers.StopInstances:input_type -> google.cloud.compute.v1.StopInstancesRegionInstanceGroupManagerRequest + 2219, // 2369: google.cloud.compute.v1.RegionInstanceGroupManagers.SuspendInstances:input_type -> google.cloud.compute.v1.SuspendInstancesRegionInstanceGroupManagerRequest + 2347, // 2370: google.cloud.compute.v1.RegionInstanceGroupManagers.UpdatePerInstanceConfigs:input_type -> google.cloud.compute.v1.UpdatePerInstanceConfigsRegionInstanceGroupManagerRequest + 1045, // 2371: google.cloud.compute.v1.RegionInstanceGroups.Get:input_type -> google.cloud.compute.v1.GetRegionInstanceGroupRequest + 1536, // 2372: google.cloud.compute.v1.RegionInstanceGroups.List:input_type -> google.cloud.compute.v1.ListRegionInstanceGroupsRequest + 1484, // 2373: google.cloud.compute.v1.RegionInstanceGroups.ListInstances:input_type -> google.cloud.compute.v1.ListInstancesRegionInstanceGroupsRequest + 2109, // 2374: google.cloud.compute.v1.RegionInstanceGroups.SetNamedPorts:input_type -> google.cloud.compute.v1.SetNamedPortsRegionInstanceGroupRequest + 2304, // 2375: google.cloud.compute.v1.RegionInstanceGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionInstanceGroupRequest + 783, // 2376: google.cloud.compute.v1.RegionInstanceTemplates.Delete:input_type -> google.cloud.compute.v1.DeleteRegionInstanceTemplateRequest + 1046, // 2377: google.cloud.compute.v1.RegionInstanceTemplates.Get:input_type -> google.cloud.compute.v1.GetRegionInstanceTemplateRequest + 1223, // 2378: google.cloud.compute.v1.RegionInstanceTemplates.Insert:input_type -> google.cloud.compute.v1.InsertRegionInstanceTemplateRequest + 1537, // 2379: google.cloud.compute.v1.RegionInstanceTemplates.List:input_type -> google.cloud.compute.v1.ListRegionInstanceTemplatesRequest + 668, // 2380: google.cloud.compute.v1.RegionInstances.BulkInsert:input_type -> google.cloud.compute.v1.BulkInsertRegionInstanceRequest + 784, // 2381: google.cloud.compute.v1.RegionInstantSnapshotGroups.Delete:input_type -> google.cloud.compute.v1.DeleteRegionInstantSnapshotGroupRequest + 1047, // 2382: google.cloud.compute.v1.RegionInstantSnapshotGroups.Get:input_type -> google.cloud.compute.v1.GetRegionInstantSnapshotGroupRequest + 979, // 2383: google.cloud.compute.v1.RegionInstantSnapshotGroups.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyRegionInstantSnapshotGroupRequest + 1224, // 2384: google.cloud.compute.v1.RegionInstantSnapshotGroups.Insert:input_type -> google.cloud.compute.v1.InsertRegionInstantSnapshotGroupRequest + 1538, // 2385: google.cloud.compute.v1.RegionInstantSnapshotGroups.List:input_type -> google.cloud.compute.v1.ListRegionInstantSnapshotGroupsRequest + 2068, // 2386: google.cloud.compute.v1.RegionInstantSnapshotGroups.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyRegionInstantSnapshotGroupRequest + 2305, // 2387: google.cloud.compute.v1.RegionInstantSnapshotGroups.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionInstantSnapshotGroupRequest + 785, // 2388: google.cloud.compute.v1.RegionInstantSnapshots.Delete:input_type -> google.cloud.compute.v1.DeleteRegionInstantSnapshotRequest + 1048, // 2389: google.cloud.compute.v1.RegionInstantSnapshots.Get:input_type -> google.cloud.compute.v1.GetRegionInstantSnapshotRequest + 980, // 2390: google.cloud.compute.v1.RegionInstantSnapshots.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyRegionInstantSnapshotRequest + 1225, // 2391: google.cloud.compute.v1.RegionInstantSnapshots.Insert:input_type -> google.cloud.compute.v1.InsertRegionInstantSnapshotRequest + 1539, // 2392: google.cloud.compute.v1.RegionInstantSnapshots.List:input_type -> google.cloud.compute.v1.ListRegionInstantSnapshotsRequest + 2069, // 2393: google.cloud.compute.v1.RegionInstantSnapshots.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyRegionInstantSnapshotRequest + 2095, // 2394: google.cloud.compute.v1.RegionInstantSnapshots.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsRegionInstantSnapshotRequest + 2306, // 2395: google.cloud.compute.v1.RegionInstantSnapshots.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionInstantSnapshotRequest + 595, // 2396: google.cloud.compute.v1.RegionNetworkEndpointGroups.AttachNetworkEndpoints:input_type -> google.cloud.compute.v1.AttachNetworkEndpointsRegionNetworkEndpointGroupRequest + 786, // 2397: google.cloud.compute.v1.RegionNetworkEndpointGroups.Delete:input_type -> google.cloud.compute.v1.DeleteRegionNetworkEndpointGroupRequest + 834, // 2398: google.cloud.compute.v1.RegionNetworkEndpointGroups.DetachNetworkEndpoints:input_type -> google.cloud.compute.v1.DetachNetworkEndpointsRegionNetworkEndpointGroupRequest + 1049, // 2399: google.cloud.compute.v1.RegionNetworkEndpointGroups.Get:input_type -> google.cloud.compute.v1.GetRegionNetworkEndpointGroupRequest + 1226, // 2400: google.cloud.compute.v1.RegionNetworkEndpointGroups.Insert:input_type -> google.cloud.compute.v1.InsertRegionNetworkEndpointGroupRequest + 1540, // 2401: google.cloud.compute.v1.RegionNetworkEndpointGroups.List:input_type -> google.cloud.compute.v1.ListRegionNetworkEndpointGroupsRequest + 1504, // 2402: google.cloud.compute.v1.RegionNetworkEndpointGroups.ListNetworkEndpoints:input_type -> google.cloud.compute.v1.ListNetworkEndpointsRegionNetworkEndpointGroupsRequest + 500, // 2403: google.cloud.compute.v1.RegionNetworkFirewallPolicies.AddAssociation:input_type -> google.cloud.compute.v1.AddAssociationRegionNetworkFirewallPolicyRequest + 514, // 2404: google.cloud.compute.v1.RegionNetworkFirewallPolicies.AddRule:input_type -> google.cloud.compute.v1.AddRuleRegionNetworkFirewallPolicyRequest + 688, // 2405: google.cloud.compute.v1.RegionNetworkFirewallPolicies.CloneRules:input_type -> google.cloud.compute.v1.CloneRulesRegionNetworkFirewallPolicyRequest + 787, // 2406: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionNetworkFirewallPolicyRequest + 1050, // 2407: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Get:input_type -> google.cloud.compute.v1.GetRegionNetworkFirewallPolicyRequest + 927, // 2408: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetAssociation:input_type -> google.cloud.compute.v1.GetAssociationRegionNetworkFirewallPolicyRequest + 937, // 2409: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetEffectiveFirewalls:input_type -> google.cloud.compute.v1.GetEffectiveFirewallsRegionNetworkFirewallPolicyRequest + 981, // 2410: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyRegionNetworkFirewallPolicyRequest + 1075, // 2411: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetRule:input_type -> google.cloud.compute.v1.GetRuleRegionNetworkFirewallPolicyRequest + 1227, // 2412: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Insert:input_type -> google.cloud.compute.v1.InsertRegionNetworkFirewallPolicyRequest + 1541, // 2413: google.cloud.compute.v1.RegionNetworkFirewallPolicies.List:input_type -> google.cloud.compute.v1.ListRegionNetworkFirewallPoliciesRequest + 1750, // 2414: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Patch:input_type -> google.cloud.compute.v1.PatchRegionNetworkFirewallPolicyRequest + 1762, // 2415: google.cloud.compute.v1.RegionNetworkFirewallPolicies.PatchRule:input_type -> google.cloud.compute.v1.PatchRuleRegionNetworkFirewallPolicyRequest + 1863, // 2416: google.cloud.compute.v1.RegionNetworkFirewallPolicies.RemoveAssociation:input_type -> google.cloud.compute.v1.RemoveAssociationRegionNetworkFirewallPolicyRequest + 1875, // 2417: google.cloud.compute.v1.RegionNetworkFirewallPolicies.RemoveRule:input_type -> google.cloud.compute.v1.RemoveRuleRegionNetworkFirewallPolicyRequest + 2070, // 2418: google.cloud.compute.v1.RegionNetworkFirewallPolicies.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyRegionNetworkFirewallPolicyRequest + 2307, // 2419: google.cloud.compute.v1.RegionNetworkFirewallPolicies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionNetworkFirewallPolicyRequest + 556, // 2420: google.cloud.compute.v1.RegionNotificationEndpoints.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRegionNotificationEndpointsRequest + 788, // 2421: google.cloud.compute.v1.RegionNotificationEndpoints.Delete:input_type -> google.cloud.compute.v1.DeleteRegionNotificationEndpointRequest + 1051, // 2422: google.cloud.compute.v1.RegionNotificationEndpoints.Get:input_type -> google.cloud.compute.v1.GetRegionNotificationEndpointRequest + 1228, // 2423: google.cloud.compute.v1.RegionNotificationEndpoints.Insert:input_type -> google.cloud.compute.v1.InsertRegionNotificationEndpointRequest + 1542, // 2424: google.cloud.compute.v1.RegionNotificationEndpoints.List:input_type -> google.cloud.compute.v1.ListRegionNotificationEndpointsRequest + 2308, // 2425: google.cloud.compute.v1.RegionNotificationEndpoints.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionNotificationEndpointRequest + 789, // 2426: google.cloud.compute.v1.RegionOperations.Delete:input_type -> google.cloud.compute.v1.DeleteRegionOperationRequest + 1052, // 2427: google.cloud.compute.v1.RegionOperations.Get:input_type -> google.cloud.compute.v1.GetRegionOperationRequest + 1543, // 2428: google.cloud.compute.v1.RegionOperations.List:input_type -> google.cloud.compute.v1.ListRegionOperationsRequest + 2411, // 2429: google.cloud.compute.v1.RegionOperations.Wait:input_type -> google.cloud.compute.v1.WaitRegionOperationRequest + 515, // 2430: google.cloud.compute.v1.RegionSecurityPolicies.AddRule:input_type -> google.cloud.compute.v1.AddRuleRegionSecurityPolicyRequest + 791, // 2431: google.cloud.compute.v1.RegionSecurityPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionSecurityPolicyRequest + 1054, // 2432: google.cloud.compute.v1.RegionSecurityPolicies.Get:input_type -> google.cloud.compute.v1.GetRegionSecurityPolicyRequest + 1076, // 2433: google.cloud.compute.v1.RegionSecurityPolicies.GetRule:input_type -> google.cloud.compute.v1.GetRuleRegionSecurityPolicyRequest + 1229, // 2434: google.cloud.compute.v1.RegionSecurityPolicies.Insert:input_type -> google.cloud.compute.v1.InsertRegionSecurityPolicyRequest + 1544, // 2435: google.cloud.compute.v1.RegionSecurityPolicies.List:input_type -> google.cloud.compute.v1.ListRegionSecurityPoliciesRequest + 1751, // 2436: google.cloud.compute.v1.RegionSecurityPolicies.Patch:input_type -> google.cloud.compute.v1.PatchRegionSecurityPolicyRequest + 1763, // 2437: google.cloud.compute.v1.RegionSecurityPolicies.PatchRule:input_type -> google.cloud.compute.v1.PatchRuleRegionSecurityPolicyRequest + 1876, // 2438: google.cloud.compute.v1.RegionSecurityPolicies.RemoveRule:input_type -> google.cloud.compute.v1.RemoveRuleRegionSecurityPolicyRequest + 2096, // 2439: google.cloud.compute.v1.RegionSecurityPolicies.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsRegionSecurityPolicyRequest + 1056, // 2440: google.cloud.compute.v1.RegionSnapshotSettings.Get:input_type -> google.cloud.compute.v1.GetRegionSnapshotSettingRequest + 1752, // 2441: google.cloud.compute.v1.RegionSnapshotSettings.Patch:input_type -> google.cloud.compute.v1.PatchRegionSnapshotSettingRequest + 792, // 2442: google.cloud.compute.v1.RegionSnapshots.Delete:input_type -> google.cloud.compute.v1.DeleteRegionSnapshotRequest + 1055, // 2443: google.cloud.compute.v1.RegionSnapshots.Get:input_type -> google.cloud.compute.v1.GetRegionSnapshotRequest + 982, // 2444: google.cloud.compute.v1.RegionSnapshots.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyRegionSnapshotRequest + 1230, // 2445: google.cloud.compute.v1.RegionSnapshots.Insert:input_type -> google.cloud.compute.v1.InsertRegionSnapshotRequest + 1545, // 2446: google.cloud.compute.v1.RegionSnapshots.List:input_type -> google.cloud.compute.v1.ListRegionSnapshotsRequest + 2071, // 2447: google.cloud.compute.v1.RegionSnapshots.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyRegionSnapshotRequest + 2097, // 2448: google.cloud.compute.v1.RegionSnapshots.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsRegionSnapshotRequest + 2309, // 2449: google.cloud.compute.v1.RegionSnapshots.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRegionSnapshotRequest + 2341, // 2450: google.cloud.compute.v1.RegionSnapshots.UpdateKmsKey:input_type -> google.cloud.compute.v1.UpdateKmsKeyRegionSnapshotRequest + 793, // 2451: google.cloud.compute.v1.RegionSslCertificates.Delete:input_type -> google.cloud.compute.v1.DeleteRegionSslCertificateRequest + 1057, // 2452: google.cloud.compute.v1.RegionSslCertificates.Get:input_type -> google.cloud.compute.v1.GetRegionSslCertificateRequest + 1231, // 2453: google.cloud.compute.v1.RegionSslCertificates.Insert:input_type -> google.cloud.compute.v1.InsertRegionSslCertificateRequest + 1546, // 2454: google.cloud.compute.v1.RegionSslCertificates.List:input_type -> google.cloud.compute.v1.ListRegionSslCertificatesRequest + 794, // 2455: google.cloud.compute.v1.RegionSslPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionSslPolicyRequest + 1058, // 2456: google.cloud.compute.v1.RegionSslPolicies.Get:input_type -> google.cloud.compute.v1.GetRegionSslPolicyRequest + 1232, // 2457: google.cloud.compute.v1.RegionSslPolicies.Insert:input_type -> google.cloud.compute.v1.InsertRegionSslPolicyRequest + 1547, // 2458: google.cloud.compute.v1.RegionSslPolicies.List:input_type -> google.cloud.compute.v1.ListRegionSslPoliciesRequest + 1455, // 2459: google.cloud.compute.v1.RegionSslPolicies.ListAvailableFeatures:input_type -> google.cloud.compute.v1.ListAvailableFeaturesRegionSslPoliciesRequest + 1753, // 2460: google.cloud.compute.v1.RegionSslPolicies.Patch:input_type -> google.cloud.compute.v1.PatchRegionSslPolicyRequest + 795, // 2461: google.cloud.compute.v1.RegionTargetHttpProxies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionTargetHttpProxyRequest + 1059, // 2462: google.cloud.compute.v1.RegionTargetHttpProxies.Get:input_type -> google.cloud.compute.v1.GetRegionTargetHttpProxyRequest + 1233, // 2463: google.cloud.compute.v1.RegionTargetHttpProxies.Insert:input_type -> google.cloud.compute.v1.InsertRegionTargetHttpProxyRequest + 1548, // 2464: google.cloud.compute.v1.RegionTargetHttpProxies.List:input_type -> google.cloud.compute.v1.ListRegionTargetHttpProxiesRequest + 2133, // 2465: google.cloud.compute.v1.RegionTargetHttpProxies.SetUrlMap:input_type -> google.cloud.compute.v1.SetUrlMapRegionTargetHttpProxyRequest + 796, // 2466: google.cloud.compute.v1.RegionTargetHttpsProxies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionTargetHttpsProxyRequest + 1060, // 2467: google.cloud.compute.v1.RegionTargetHttpsProxies.Get:input_type -> google.cloud.compute.v1.GetRegionTargetHttpsProxyRequest + 1234, // 2468: google.cloud.compute.v1.RegionTargetHttpsProxies.Insert:input_type -> google.cloud.compute.v1.InsertRegionTargetHttpsProxyRequest + 1549, // 2469: google.cloud.compute.v1.RegionTargetHttpsProxies.List:input_type -> google.cloud.compute.v1.ListRegionTargetHttpsProxiesRequest + 1754, // 2470: google.cloud.compute.v1.RegionTargetHttpsProxies.Patch:input_type -> google.cloud.compute.v1.PatchRegionTargetHttpsProxyRequest + 2123, // 2471: google.cloud.compute.v1.RegionTargetHttpsProxies.SetSslCertificates:input_type -> google.cloud.compute.v1.SetSslCertificatesRegionTargetHttpsProxyRequest + 2134, // 2472: google.cloud.compute.v1.RegionTargetHttpsProxies.SetUrlMap:input_type -> google.cloud.compute.v1.SetUrlMapRegionTargetHttpsProxyRequest + 797, // 2473: google.cloud.compute.v1.RegionTargetTcpProxies.Delete:input_type -> google.cloud.compute.v1.DeleteRegionTargetTcpProxyRequest + 1061, // 2474: google.cloud.compute.v1.RegionTargetTcpProxies.Get:input_type -> google.cloud.compute.v1.GetRegionTargetTcpProxyRequest + 1235, // 2475: google.cloud.compute.v1.RegionTargetTcpProxies.Insert:input_type -> google.cloud.compute.v1.InsertRegionTargetTcpProxyRequest + 1550, // 2476: google.cloud.compute.v1.RegionTargetTcpProxies.List:input_type -> google.cloud.compute.v1.ListRegionTargetTcpProxiesRequest + 798, // 2477: google.cloud.compute.v1.RegionUrlMaps.Delete:input_type -> google.cloud.compute.v1.DeleteRegionUrlMapRequest + 1062, // 2478: google.cloud.compute.v1.RegionUrlMaps.Get:input_type -> google.cloud.compute.v1.GetRegionUrlMapRequest + 1236, // 2479: google.cloud.compute.v1.RegionUrlMaps.Insert:input_type -> google.cloud.compute.v1.InsertRegionUrlMapRequest + 1551, // 2480: google.cloud.compute.v1.RegionUrlMaps.List:input_type -> google.cloud.compute.v1.ListRegionUrlMapsRequest + 1755, // 2481: google.cloud.compute.v1.RegionUrlMaps.Patch:input_type -> google.cloud.compute.v1.PatchRegionUrlMapRequest + 2354, // 2482: google.cloud.compute.v1.RegionUrlMaps.Update:input_type -> google.cloud.compute.v1.UpdateRegionUrlMapRequest + 2378, // 2483: google.cloud.compute.v1.RegionUrlMaps.Validate:input_type -> google.cloud.compute.v1.ValidateRegionUrlMapRequest + 1552, // 2484: google.cloud.compute.v1.RegionZones.List:input_type -> google.cloud.compute.v1.ListRegionZonesRequest + 1053, // 2485: google.cloud.compute.v1.Regions.Get:input_type -> google.cloud.compute.v1.GetRegionRequest + 1553, // 2486: google.cloud.compute.v1.Regions.List:input_type -> google.cloud.compute.v1.ListRegionsRequest + 1063, // 2487: google.cloud.compute.v1.ReservationBlocks.Get:input_type -> google.cloud.compute.v1.GetReservationBlockRequest + 983, // 2488: google.cloud.compute.v1.ReservationBlocks.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyReservationBlockRequest + 1554, // 2489: google.cloud.compute.v1.ReservationBlocks.List:input_type -> google.cloud.compute.v1.ListReservationBlocksRequest + 1780, // 2490: google.cloud.compute.v1.ReservationBlocks.PerformMaintenance:input_type -> google.cloud.compute.v1.PerformMaintenanceReservationBlockRequest + 2072, // 2491: google.cloud.compute.v1.ReservationBlocks.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyReservationBlockRequest + 2310, // 2492: google.cloud.compute.v1.ReservationBlocks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsReservationBlockRequest + 1065, // 2493: google.cloud.compute.v1.ReservationSlots.Get:input_type -> google.cloud.compute.v1.GetReservationSlotRequest + 1102, // 2494: google.cloud.compute.v1.ReservationSlots.GetVersion:input_type -> google.cloud.compute.v1.GetVersionReservationSlotRequest + 1555, // 2495: google.cloud.compute.v1.ReservationSlots.List:input_type -> google.cloud.compute.v1.ListReservationSlotsRequest + 2356, // 2496: google.cloud.compute.v1.ReservationSlots.Update:input_type -> google.cloud.compute.v1.UpdateReservationSlotRequest + 1066, // 2497: google.cloud.compute.v1.ReservationSubBlocks.Get:input_type -> google.cloud.compute.v1.GetReservationSubBlockRequest + 985, // 2498: google.cloud.compute.v1.ReservationSubBlocks.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyReservationSubBlockRequest + 1103, // 2499: google.cloud.compute.v1.ReservationSubBlocks.GetVersion:input_type -> google.cloud.compute.v1.GetVersionReservationSubBlockRequest + 1556, // 2500: google.cloud.compute.v1.ReservationSubBlocks.List:input_type -> google.cloud.compute.v1.ListReservationSubBlocksRequest + 1782, // 2501: google.cloud.compute.v1.ReservationSubBlocks.PerformMaintenance:input_type -> google.cloud.compute.v1.PerformMaintenanceReservationSubBlockRequest + 1878, // 2502: google.cloud.compute.v1.ReservationSubBlocks.ReportFaulty:input_type -> google.cloud.compute.v1.ReportFaultyReservationSubBlockRequest + 2074, // 2503: google.cloud.compute.v1.ReservationSubBlocks.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyReservationSubBlockRequest + 2312, // 2504: google.cloud.compute.v1.ReservationSubBlocks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsReservationSubBlockRequest + 557, // 2505: google.cloud.compute.v1.Reservations.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListReservationsRequest + 799, // 2506: google.cloud.compute.v1.Reservations.Delete:input_type -> google.cloud.compute.v1.DeleteReservationRequest + 1064, // 2507: google.cloud.compute.v1.Reservations.Get:input_type -> google.cloud.compute.v1.GetReservationRequest + 984, // 2508: google.cloud.compute.v1.Reservations.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyReservationRequest + 1237, // 2509: google.cloud.compute.v1.Reservations.Insert:input_type -> google.cloud.compute.v1.InsertReservationRequest + 1557, // 2510: google.cloud.compute.v1.Reservations.List:input_type -> google.cloud.compute.v1.ListReservationsRequest + 1781, // 2511: google.cloud.compute.v1.Reservations.PerformMaintenance:input_type -> google.cloud.compute.v1.PerformMaintenanceReservationRequest + 1918, // 2512: google.cloud.compute.v1.Reservations.Resize:input_type -> google.cloud.compute.v1.ResizeReservationRequest + 2073, // 2513: google.cloud.compute.v1.Reservations.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyReservationRequest + 2311, // 2514: google.cloud.compute.v1.Reservations.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsReservationRequest + 2355, // 2515: google.cloud.compute.v1.Reservations.Update:input_type -> google.cloud.compute.v1.UpdateReservationRequest + 558, // 2516: google.cloud.compute.v1.ResourcePolicies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListResourcePoliciesRequest + 800, // 2517: google.cloud.compute.v1.ResourcePolicies.Delete:input_type -> google.cloud.compute.v1.DeleteResourcePolicyRequest + 1067, // 2518: google.cloud.compute.v1.ResourcePolicies.Get:input_type -> google.cloud.compute.v1.GetResourcePolicyRequest + 986, // 2519: google.cloud.compute.v1.ResourcePolicies.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyResourcePolicyRequest + 1238, // 2520: google.cloud.compute.v1.ResourcePolicies.Insert:input_type -> google.cloud.compute.v1.InsertResourcePolicyRequest + 1558, // 2521: google.cloud.compute.v1.ResourcePolicies.List:input_type -> google.cloud.compute.v1.ListResourcePoliciesRequest + 1756, // 2522: google.cloud.compute.v1.ResourcePolicies.Patch:input_type -> google.cloud.compute.v1.PatchResourcePolicyRequest + 2075, // 2523: google.cloud.compute.v1.ResourcePolicies.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyResourcePolicyRequest + 2313, // 2524: google.cloud.compute.v1.ResourcePolicies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsResourcePolicyRequest + 559, // 2525: google.cloud.compute.v1.Routers.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListRoutersRequest + 803, // 2526: google.cloud.compute.v1.Routers.Delete:input_type -> google.cloud.compute.v1.DeleteRouterRequest + 801, // 2527: google.cloud.compute.v1.Routers.DeleteRoutePolicy:input_type -> google.cloud.compute.v1.DeleteRoutePolicyRouterRequest + 1070, // 2528: google.cloud.compute.v1.Routers.Get:input_type -> google.cloud.compute.v1.GetRouterRequest + 1012, // 2529: google.cloud.compute.v1.Routers.GetNatIpInfo:input_type -> google.cloud.compute.v1.GetNatIpInfoRouterRequest + 1013, // 2530: google.cloud.compute.v1.Routers.GetNatMappingInfo:input_type -> google.cloud.compute.v1.GetNatMappingInfoRoutersRequest + 1068, // 2531: google.cloud.compute.v1.Routers.GetRoutePolicy:input_type -> google.cloud.compute.v1.GetRoutePolicyRouterRequest + 1071, // 2532: google.cloud.compute.v1.Routers.GetRouterStatus:input_type -> google.cloud.compute.v1.GetRouterStatusRouterRequest + 1240, // 2533: google.cloud.compute.v1.Routers.Insert:input_type -> google.cloud.compute.v1.InsertRouterRequest + 1560, // 2534: google.cloud.compute.v1.Routers.List:input_type -> google.cloud.compute.v1.ListRoutersRequest + 1459, // 2535: google.cloud.compute.v1.Routers.ListBgpRoutes:input_type -> google.cloud.compute.v1.ListBgpRoutesRoutersRequest + 1559, // 2536: google.cloud.compute.v1.Routers.ListRoutePolicies:input_type -> google.cloud.compute.v1.ListRoutePoliciesRoutersRequest + 1758, // 2537: google.cloud.compute.v1.Routers.Patch:input_type -> google.cloud.compute.v1.PatchRouterRequest + 1757, // 2538: google.cloud.compute.v1.Routers.PatchRoutePolicy:input_type -> google.cloud.compute.v1.PatchRoutePolicyRouterRequest + 1795, // 2539: google.cloud.compute.v1.Routers.Preview:input_type -> google.cloud.compute.v1.PreviewRouterRequest + 2358, // 2540: google.cloud.compute.v1.Routers.Update:input_type -> google.cloud.compute.v1.UpdateRouterRequest + 2357, // 2541: google.cloud.compute.v1.Routers.UpdateRoutePolicy:input_type -> google.cloud.compute.v1.UpdateRoutePolicyRouterRequest + 802, // 2542: google.cloud.compute.v1.Routes.Delete:input_type -> google.cloud.compute.v1.DeleteRouteRequest + 1069, // 2543: google.cloud.compute.v1.Routes.Get:input_type -> google.cloud.compute.v1.GetRouteRequest + 1239, // 2544: google.cloud.compute.v1.Routes.Insert:input_type -> google.cloud.compute.v1.InsertRouteRequest + 1561, // 2545: google.cloud.compute.v1.Routes.List:input_type -> google.cloud.compute.v1.ListRoutesRequest + 2314, // 2546: google.cloud.compute.v1.Routes.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsRouteRequest + 516, // 2547: google.cloud.compute.v1.SecurityPolicies.AddRule:input_type -> google.cloud.compute.v1.AddRuleSecurityPolicyRequest + 560, // 2548: google.cloud.compute.v1.SecurityPolicies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListSecurityPoliciesRequest + 804, // 2549: google.cloud.compute.v1.SecurityPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteSecurityPolicyRequest + 1079, // 2550: google.cloud.compute.v1.SecurityPolicies.Get:input_type -> google.cloud.compute.v1.GetSecurityPolicyRequest + 1077, // 2551: google.cloud.compute.v1.SecurityPolicies.GetRule:input_type -> google.cloud.compute.v1.GetRuleSecurityPolicyRequest + 1241, // 2552: google.cloud.compute.v1.SecurityPolicies.Insert:input_type -> google.cloud.compute.v1.InsertSecurityPolicyRequest + 1562, // 2553: google.cloud.compute.v1.SecurityPolicies.List:input_type -> google.cloud.compute.v1.ListSecurityPoliciesRequest + 1518, // 2554: google.cloud.compute.v1.SecurityPolicies.ListPreconfiguredExpressionSets:input_type -> google.cloud.compute.v1.ListPreconfiguredExpressionSetsSecurityPoliciesRequest + 1765, // 2555: google.cloud.compute.v1.SecurityPolicies.Patch:input_type -> google.cloud.compute.v1.PatchSecurityPolicyRequest + 1764, // 2556: google.cloud.compute.v1.SecurityPolicies.PatchRule:input_type -> google.cloud.compute.v1.PatchRuleSecurityPolicyRequest + 1877, // 2557: google.cloud.compute.v1.SecurityPolicies.RemoveRule:input_type -> google.cloud.compute.v1.RemoveRuleSecurityPolicyRequest + 2098, // 2558: google.cloud.compute.v1.SecurityPolicies.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsSecurityPolicyRequest + 561, // 2559: google.cloud.compute.v1.ServiceAttachments.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListServiceAttachmentsRequest + 805, // 2560: google.cloud.compute.v1.ServiceAttachments.Delete:input_type -> google.cloud.compute.v1.DeleteServiceAttachmentRequest + 1081, // 2561: google.cloud.compute.v1.ServiceAttachments.Get:input_type -> google.cloud.compute.v1.GetServiceAttachmentRequest + 987, // 2562: google.cloud.compute.v1.ServiceAttachments.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyServiceAttachmentRequest + 1242, // 2563: google.cloud.compute.v1.ServiceAttachments.Insert:input_type -> google.cloud.compute.v1.InsertServiceAttachmentRequest + 1563, // 2564: google.cloud.compute.v1.ServiceAttachments.List:input_type -> google.cloud.compute.v1.ListServiceAttachmentsRequest + 1766, // 2565: google.cloud.compute.v1.ServiceAttachments.Patch:input_type -> google.cloud.compute.v1.PatchServiceAttachmentRequest + 2076, // 2566: google.cloud.compute.v1.ServiceAttachments.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyServiceAttachmentRequest + 2315, // 2567: google.cloud.compute.v1.ServiceAttachments.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsServiceAttachmentRequest + 1084, // 2568: google.cloud.compute.v1.SnapshotSettingsService.Get:input_type -> google.cloud.compute.v1.GetSnapshotSettingRequest + 1767, // 2569: google.cloud.compute.v1.SnapshotSettingsService.Patch:input_type -> google.cloud.compute.v1.PatchSnapshotSettingRequest + 808, // 2570: google.cloud.compute.v1.Snapshots.Delete:input_type -> google.cloud.compute.v1.DeleteSnapshotRequest + 1083, // 2571: google.cloud.compute.v1.Snapshots.Get:input_type -> google.cloud.compute.v1.GetSnapshotRequest + 988, // 2572: google.cloud.compute.v1.Snapshots.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicySnapshotRequest + 1243, // 2573: google.cloud.compute.v1.Snapshots.Insert:input_type -> google.cloud.compute.v1.InsertSnapshotRequest + 1564, // 2574: google.cloud.compute.v1.Snapshots.List:input_type -> google.cloud.compute.v1.ListSnapshotsRequest + 2077, // 2575: google.cloud.compute.v1.Snapshots.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicySnapshotRequest + 2099, // 2576: google.cloud.compute.v1.Snapshots.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsSnapshotRequest + 2316, // 2577: google.cloud.compute.v1.Snapshots.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsSnapshotRequest + 2342, // 2578: google.cloud.compute.v1.Snapshots.UpdateKmsKey:input_type -> google.cloud.compute.v1.UpdateKmsKeySnapshotRequest + 562, // 2579: google.cloud.compute.v1.SslCertificates.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListSslCertificatesRequest + 809, // 2580: google.cloud.compute.v1.SslCertificates.Delete:input_type -> google.cloud.compute.v1.DeleteSslCertificateRequest + 1085, // 2581: google.cloud.compute.v1.SslCertificates.Get:input_type -> google.cloud.compute.v1.GetSslCertificateRequest + 1244, // 2582: google.cloud.compute.v1.SslCertificates.Insert:input_type -> google.cloud.compute.v1.InsertSslCertificateRequest + 1565, // 2583: google.cloud.compute.v1.SslCertificates.List:input_type -> google.cloud.compute.v1.ListSslCertificatesRequest + 563, // 2584: google.cloud.compute.v1.SslPolicies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListSslPoliciesRequest + 810, // 2585: google.cloud.compute.v1.SslPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteSslPolicyRequest + 1086, // 2586: google.cloud.compute.v1.SslPolicies.Get:input_type -> google.cloud.compute.v1.GetSslPolicyRequest + 1245, // 2587: google.cloud.compute.v1.SslPolicies.Insert:input_type -> google.cloud.compute.v1.InsertSslPolicyRequest + 1566, // 2588: google.cloud.compute.v1.SslPolicies.List:input_type -> google.cloud.compute.v1.ListSslPoliciesRequest + 1456, // 2589: google.cloud.compute.v1.SslPolicies.ListAvailableFeatures:input_type -> google.cloud.compute.v1.ListAvailableFeaturesSslPoliciesRequest + 1768, // 2590: google.cloud.compute.v1.SslPolicies.Patch:input_type -> google.cloud.compute.v1.PatchSslPolicyRequest + 564, // 2591: google.cloud.compute.v1.StoragePoolTypes.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListStoragePoolTypesRequest + 1089, // 2592: google.cloud.compute.v1.StoragePoolTypes.Get:input_type -> google.cloud.compute.v1.GetStoragePoolTypeRequest + 1567, // 2593: google.cloud.compute.v1.StoragePoolTypes.List:input_type -> google.cloud.compute.v1.ListStoragePoolTypesRequest + 565, // 2594: google.cloud.compute.v1.StoragePools.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListStoragePoolsRequest + 811, // 2595: google.cloud.compute.v1.StoragePools.Delete:input_type -> google.cloud.compute.v1.DeleteStoragePoolRequest + 1088, // 2596: google.cloud.compute.v1.StoragePools.Get:input_type -> google.cloud.compute.v1.GetStoragePoolRequest + 989, // 2597: google.cloud.compute.v1.StoragePools.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicyStoragePoolRequest + 1246, // 2598: google.cloud.compute.v1.StoragePools.Insert:input_type -> google.cloud.compute.v1.InsertStoragePoolRequest + 1568, // 2599: google.cloud.compute.v1.StoragePools.List:input_type -> google.cloud.compute.v1.ListStoragePoolsRequest + 1463, // 2600: google.cloud.compute.v1.StoragePools.ListDisks:input_type -> google.cloud.compute.v1.ListDisksStoragePoolsRequest + 2078, // 2601: google.cloud.compute.v1.StoragePools.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicyStoragePoolRequest + 2317, // 2602: google.cloud.compute.v1.StoragePools.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsStoragePoolRequest + 2360, // 2603: google.cloud.compute.v1.StoragePools.Update:input_type -> google.cloud.compute.v1.UpdateStoragePoolRequest + 566, // 2604: google.cloud.compute.v1.Subnetworks.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListSubnetworksRequest + 812, // 2605: google.cloud.compute.v1.Subnetworks.Delete:input_type -> google.cloud.compute.v1.DeleteSubnetworkRequest + 870, // 2606: google.cloud.compute.v1.Subnetworks.ExpandIpCidrRange:input_type -> google.cloud.compute.v1.ExpandIpCidrRangeSubnetworkRequest + 1090, // 2607: google.cloud.compute.v1.Subnetworks.Get:input_type -> google.cloud.compute.v1.GetSubnetworkRequest + 990, // 2608: google.cloud.compute.v1.Subnetworks.GetIamPolicy:input_type -> google.cloud.compute.v1.GetIamPolicySubnetworkRequest + 1247, // 2609: google.cloud.compute.v1.Subnetworks.Insert:input_type -> google.cloud.compute.v1.InsertSubnetworkRequest + 1569, // 2610: google.cloud.compute.v1.Subnetworks.List:input_type -> google.cloud.compute.v1.ListSubnetworksRequest + 1583, // 2611: google.cloud.compute.v1.Subnetworks.ListUsable:input_type -> google.cloud.compute.v1.ListUsableSubnetworksRequest + 1769, // 2612: google.cloud.compute.v1.Subnetworks.Patch:input_type -> google.cloud.compute.v1.PatchSubnetworkRequest + 2079, // 2613: google.cloud.compute.v1.Subnetworks.SetIamPolicy:input_type -> google.cloud.compute.v1.SetIamPolicySubnetworkRequest + 2111, // 2614: google.cloud.compute.v1.Subnetworks.SetPrivateIpGoogleAccess:input_type -> google.cloud.compute.v1.SetPrivateIpGoogleAccessSubnetworkRequest + 2318, // 2615: google.cloud.compute.v1.Subnetworks.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsSubnetworkRequest + 813, // 2616: google.cloud.compute.v1.TargetGrpcProxies.Delete:input_type -> google.cloud.compute.v1.DeleteTargetGrpcProxyRequest + 1091, // 2617: google.cloud.compute.v1.TargetGrpcProxies.Get:input_type -> google.cloud.compute.v1.GetTargetGrpcProxyRequest + 1248, // 2618: google.cloud.compute.v1.TargetGrpcProxies.Insert:input_type -> google.cloud.compute.v1.InsertTargetGrpcProxyRequest + 1570, // 2619: google.cloud.compute.v1.TargetGrpcProxies.List:input_type -> google.cloud.compute.v1.ListTargetGrpcProxiesRequest + 1770, // 2620: google.cloud.compute.v1.TargetGrpcProxies.Patch:input_type -> google.cloud.compute.v1.PatchTargetGrpcProxyRequest + 567, // 2621: google.cloud.compute.v1.TargetHttpProxies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListTargetHttpProxiesRequest + 814, // 2622: google.cloud.compute.v1.TargetHttpProxies.Delete:input_type -> google.cloud.compute.v1.DeleteTargetHttpProxyRequest + 1092, // 2623: google.cloud.compute.v1.TargetHttpProxies.Get:input_type -> google.cloud.compute.v1.GetTargetHttpProxyRequest + 1249, // 2624: google.cloud.compute.v1.TargetHttpProxies.Insert:input_type -> google.cloud.compute.v1.InsertTargetHttpProxyRequest + 1571, // 2625: google.cloud.compute.v1.TargetHttpProxies.List:input_type -> google.cloud.compute.v1.ListTargetHttpProxiesRequest + 1771, // 2626: google.cloud.compute.v1.TargetHttpProxies.Patch:input_type -> google.cloud.compute.v1.PatchTargetHttpProxyRequest + 2135, // 2627: google.cloud.compute.v1.TargetHttpProxies.SetUrlMap:input_type -> google.cloud.compute.v1.SetUrlMapTargetHttpProxyRequest + 568, // 2628: google.cloud.compute.v1.TargetHttpsProxies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListTargetHttpsProxiesRequest + 815, // 2629: google.cloud.compute.v1.TargetHttpsProxies.Delete:input_type -> google.cloud.compute.v1.DeleteTargetHttpsProxyRequest + 1093, // 2630: google.cloud.compute.v1.TargetHttpsProxies.Get:input_type -> google.cloud.compute.v1.GetTargetHttpsProxyRequest + 1250, // 2631: google.cloud.compute.v1.TargetHttpsProxies.Insert:input_type -> google.cloud.compute.v1.InsertTargetHttpsProxyRequest + 1572, // 2632: google.cloud.compute.v1.TargetHttpsProxies.List:input_type -> google.cloud.compute.v1.ListTargetHttpsProxiesRequest + 1772, // 2633: google.cloud.compute.v1.TargetHttpsProxies.Patch:input_type -> google.cloud.compute.v1.PatchTargetHttpsProxyRequest + 2037, // 2634: google.cloud.compute.v1.TargetHttpsProxies.SetCertificateMap:input_type -> google.cloud.compute.v1.SetCertificateMapTargetHttpsProxyRequest + 2114, // 2635: google.cloud.compute.v1.TargetHttpsProxies.SetQuicOverride:input_type -> google.cloud.compute.v1.SetQuicOverrideTargetHttpsProxyRequest + 2124, // 2636: google.cloud.compute.v1.TargetHttpsProxies.SetSslCertificates:input_type -> google.cloud.compute.v1.SetSslCertificatesTargetHttpsProxyRequest + 2126, // 2637: google.cloud.compute.v1.TargetHttpsProxies.SetSslPolicy:input_type -> google.cloud.compute.v1.SetSslPolicyTargetHttpsProxyRequest + 2136, // 2638: google.cloud.compute.v1.TargetHttpsProxies.SetUrlMap:input_type -> google.cloud.compute.v1.SetUrlMapTargetHttpsProxyRequest + 569, // 2639: google.cloud.compute.v1.TargetInstances.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListTargetInstancesRequest + 816, // 2640: google.cloud.compute.v1.TargetInstances.Delete:input_type -> google.cloud.compute.v1.DeleteTargetInstanceRequest + 1094, // 2641: google.cloud.compute.v1.TargetInstances.Get:input_type -> google.cloud.compute.v1.GetTargetInstanceRequest + 1251, // 2642: google.cloud.compute.v1.TargetInstances.Insert:input_type -> google.cloud.compute.v1.InsertTargetInstanceRequest + 1573, // 2643: google.cloud.compute.v1.TargetInstances.List:input_type -> google.cloud.compute.v1.ListTargetInstancesRequest + 2119, // 2644: google.cloud.compute.v1.TargetInstances.SetSecurityPolicy:input_type -> google.cloud.compute.v1.SetSecurityPolicyTargetInstanceRequest + 2319, // 2645: google.cloud.compute.v1.TargetInstances.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsTargetInstanceRequest + 501, // 2646: google.cloud.compute.v1.TargetPools.AddHealthCheck:input_type -> google.cloud.compute.v1.AddHealthCheckTargetPoolRequest + 502, // 2647: google.cloud.compute.v1.TargetPools.AddInstance:input_type -> google.cloud.compute.v1.AddInstanceTargetPoolRequest + 570, // 2648: google.cloud.compute.v1.TargetPools.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListTargetPoolsRequest + 817, // 2649: google.cloud.compute.v1.TargetPools.Delete:input_type -> google.cloud.compute.v1.DeleteTargetPoolRequest + 1095, // 2650: google.cloud.compute.v1.TargetPools.Get:input_type -> google.cloud.compute.v1.GetTargetPoolRequest + 958, // 2651: google.cloud.compute.v1.TargetPools.GetHealth:input_type -> google.cloud.compute.v1.GetHealthTargetPoolRequest + 1252, // 2652: google.cloud.compute.v1.TargetPools.Insert:input_type -> google.cloud.compute.v1.InsertTargetPoolRequest + 1574, // 2653: google.cloud.compute.v1.TargetPools.List:input_type -> google.cloud.compute.v1.ListTargetPoolsRequest + 1864, // 2654: google.cloud.compute.v1.TargetPools.RemoveHealthCheck:input_type -> google.cloud.compute.v1.RemoveHealthCheckTargetPoolRequest + 1865, // 2655: google.cloud.compute.v1.TargetPools.RemoveInstance:input_type -> google.cloud.compute.v1.RemoveInstanceTargetPoolRequest + 2036, // 2656: google.cloud.compute.v1.TargetPools.SetBackup:input_type -> google.cloud.compute.v1.SetBackupTargetPoolRequest + 2120, // 2657: google.cloud.compute.v1.TargetPools.SetSecurityPolicy:input_type -> google.cloud.compute.v1.SetSecurityPolicyTargetPoolRequest + 2320, // 2658: google.cloud.compute.v1.TargetPools.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsTargetPoolRequest + 818, // 2659: google.cloud.compute.v1.TargetSslProxies.Delete:input_type -> google.cloud.compute.v1.DeleteTargetSslProxyRequest + 1096, // 2660: google.cloud.compute.v1.TargetSslProxies.Get:input_type -> google.cloud.compute.v1.GetTargetSslProxyRequest + 1253, // 2661: google.cloud.compute.v1.TargetSslProxies.Insert:input_type -> google.cloud.compute.v1.InsertTargetSslProxyRequest + 1575, // 2662: google.cloud.compute.v1.TargetSslProxies.List:input_type -> google.cloud.compute.v1.ListTargetSslProxiesRequest + 2034, // 2663: google.cloud.compute.v1.TargetSslProxies.SetBackendService:input_type -> google.cloud.compute.v1.SetBackendServiceTargetSslProxyRequest + 2038, // 2664: google.cloud.compute.v1.TargetSslProxies.SetCertificateMap:input_type -> google.cloud.compute.v1.SetCertificateMapTargetSslProxyRequest + 2112, // 2665: google.cloud.compute.v1.TargetSslProxies.SetProxyHeader:input_type -> google.cloud.compute.v1.SetProxyHeaderTargetSslProxyRequest + 2125, // 2666: google.cloud.compute.v1.TargetSslProxies.SetSslCertificates:input_type -> google.cloud.compute.v1.SetSslCertificatesTargetSslProxyRequest + 2127, // 2667: google.cloud.compute.v1.TargetSslProxies.SetSslPolicy:input_type -> google.cloud.compute.v1.SetSslPolicyTargetSslProxyRequest + 2321, // 2668: google.cloud.compute.v1.TargetSslProxies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsTargetSslProxyRequest + 571, // 2669: google.cloud.compute.v1.TargetTcpProxies.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListTargetTcpProxiesRequest + 819, // 2670: google.cloud.compute.v1.TargetTcpProxies.Delete:input_type -> google.cloud.compute.v1.DeleteTargetTcpProxyRequest + 1097, // 2671: google.cloud.compute.v1.TargetTcpProxies.Get:input_type -> google.cloud.compute.v1.GetTargetTcpProxyRequest + 1254, // 2672: google.cloud.compute.v1.TargetTcpProxies.Insert:input_type -> google.cloud.compute.v1.InsertTargetTcpProxyRequest + 1576, // 2673: google.cloud.compute.v1.TargetTcpProxies.List:input_type -> google.cloud.compute.v1.ListTargetTcpProxiesRequest + 2035, // 2674: google.cloud.compute.v1.TargetTcpProxies.SetBackendService:input_type -> google.cloud.compute.v1.SetBackendServiceTargetTcpProxyRequest + 2113, // 2675: google.cloud.compute.v1.TargetTcpProxies.SetProxyHeader:input_type -> google.cloud.compute.v1.SetProxyHeaderTargetTcpProxyRequest + 2322, // 2676: google.cloud.compute.v1.TargetTcpProxies.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsTargetTcpProxyRequest + 572, // 2677: google.cloud.compute.v1.TargetVpnGateways.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListTargetVpnGatewaysRequest + 820, // 2678: google.cloud.compute.v1.TargetVpnGateways.Delete:input_type -> google.cloud.compute.v1.DeleteTargetVpnGatewayRequest + 1098, // 2679: google.cloud.compute.v1.TargetVpnGateways.Get:input_type -> google.cloud.compute.v1.GetTargetVpnGatewayRequest + 1255, // 2680: google.cloud.compute.v1.TargetVpnGateways.Insert:input_type -> google.cloud.compute.v1.InsertTargetVpnGatewayRequest + 1577, // 2681: google.cloud.compute.v1.TargetVpnGateways.List:input_type -> google.cloud.compute.v1.ListTargetVpnGatewaysRequest + 2100, // 2682: google.cloud.compute.v1.TargetVpnGateways.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsTargetVpnGatewayRequest + 573, // 2683: google.cloud.compute.v1.UrlMaps.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListUrlMapsRequest + 821, // 2684: google.cloud.compute.v1.UrlMaps.Delete:input_type -> google.cloud.compute.v1.DeleteUrlMapRequest + 1099, // 2685: google.cloud.compute.v1.UrlMaps.Get:input_type -> google.cloud.compute.v1.GetUrlMapRequest + 1256, // 2686: google.cloud.compute.v1.UrlMaps.Insert:input_type -> google.cloud.compute.v1.InsertUrlMapRequest + 1441, // 2687: google.cloud.compute.v1.UrlMaps.InvalidateCache:input_type -> google.cloud.compute.v1.InvalidateCacheUrlMapRequest + 1578, // 2688: google.cloud.compute.v1.UrlMaps.List:input_type -> google.cloud.compute.v1.ListUrlMapsRequest + 1773, // 2689: google.cloud.compute.v1.UrlMaps.Patch:input_type -> google.cloud.compute.v1.PatchUrlMapRequest + 2323, // 2690: google.cloud.compute.v1.UrlMaps.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsUrlMapRequest + 2361, // 2691: google.cloud.compute.v1.UrlMaps.Update:input_type -> google.cloud.compute.v1.UpdateUrlMapRequest + 2379, // 2692: google.cloud.compute.v1.UrlMaps.Validate:input_type -> google.cloud.compute.v1.ValidateUrlMapRequest + 574, // 2693: google.cloud.compute.v1.VpnGateways.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListVpnGatewaysRequest + 822, // 2694: google.cloud.compute.v1.VpnGateways.Delete:input_type -> google.cloud.compute.v1.DeleteVpnGatewayRequest + 1104, // 2695: google.cloud.compute.v1.VpnGateways.Get:input_type -> google.cloud.compute.v1.GetVpnGatewayRequest + 1087, // 2696: google.cloud.compute.v1.VpnGateways.GetStatus:input_type -> google.cloud.compute.v1.GetStatusVpnGatewayRequest + 1257, // 2697: google.cloud.compute.v1.VpnGateways.Insert:input_type -> google.cloud.compute.v1.InsertVpnGatewayRequest + 1584, // 2698: google.cloud.compute.v1.VpnGateways.List:input_type -> google.cloud.compute.v1.ListVpnGatewaysRequest + 2101, // 2699: google.cloud.compute.v1.VpnGateways.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsVpnGatewayRequest + 2324, // 2700: google.cloud.compute.v1.VpnGateways.TestIamPermissions:input_type -> google.cloud.compute.v1.TestIamPermissionsVpnGatewayRequest + 575, // 2701: google.cloud.compute.v1.VpnTunnels.AggregatedList:input_type -> google.cloud.compute.v1.AggregatedListVpnTunnelsRequest + 823, // 2702: google.cloud.compute.v1.VpnTunnels.Delete:input_type -> google.cloud.compute.v1.DeleteVpnTunnelRequest + 1105, // 2703: google.cloud.compute.v1.VpnTunnels.Get:input_type -> google.cloud.compute.v1.GetVpnTunnelRequest + 1258, // 2704: google.cloud.compute.v1.VpnTunnels.Insert:input_type -> google.cloud.compute.v1.InsertVpnTunnelRequest + 1585, // 2705: google.cloud.compute.v1.VpnTunnels.List:input_type -> google.cloud.compute.v1.ListVpnTunnelsRequest + 2102, // 2706: google.cloud.compute.v1.VpnTunnels.SetLabels:input_type -> google.cloud.compute.v1.SetLabelsVpnTunnelRequest + 824, // 2707: google.cloud.compute.v1.WireGroups.Delete:input_type -> google.cloud.compute.v1.DeleteWireGroupRequest + 1106, // 2708: google.cloud.compute.v1.WireGroups.Get:input_type -> google.cloud.compute.v1.GetWireGroupRequest + 1259, // 2709: google.cloud.compute.v1.WireGroups.Insert:input_type -> google.cloud.compute.v1.InsertWireGroupRequest + 1586, // 2710: google.cloud.compute.v1.WireGroups.List:input_type -> google.cloud.compute.v1.ListWireGroupsRequest + 1774, // 2711: google.cloud.compute.v1.WireGroups.Patch:input_type -> google.cloud.compute.v1.PatchWireGroupRequest + 825, // 2712: google.cloud.compute.v1.ZoneOperations.Delete:input_type -> google.cloud.compute.v1.DeleteZoneOperationRequest + 1109, // 2713: google.cloud.compute.v1.ZoneOperations.Get:input_type -> google.cloud.compute.v1.GetZoneOperationRequest + 1588, // 2714: google.cloud.compute.v1.ZoneOperations.List:input_type -> google.cloud.compute.v1.ListZoneOperationsRequest + 2412, // 2715: google.cloud.compute.v1.ZoneOperations.Wait:input_type -> google.cloud.compute.v1.WaitZoneOperationRequest + 827, // 2716: google.cloud.compute.v1.ZoneVmExtensionPolicies.Delete:input_type -> google.cloud.compute.v1.DeleteZoneVmExtensionPolicyRequest + 1111, // 2717: google.cloud.compute.v1.ZoneVmExtensionPolicies.Get:input_type -> google.cloud.compute.v1.GetZoneVmExtensionPolicyRequest + 1260, // 2718: google.cloud.compute.v1.ZoneVmExtensionPolicies.Insert:input_type -> google.cloud.compute.v1.InsertZoneVmExtensionPolicyRequest + 1589, // 2719: google.cloud.compute.v1.ZoneVmExtensionPolicies.List:input_type -> google.cloud.compute.v1.ListZoneVmExtensionPoliciesRequest + 2362, // 2720: google.cloud.compute.v1.ZoneVmExtensionPolicies.Update:input_type -> google.cloud.compute.v1.UpdateZoneVmExtensionPolicyRequest + 1110, // 2721: google.cloud.compute.v1.Zones.Get:input_type -> google.cloud.compute.v1.GetZoneRequest + 1590, // 2722: google.cloud.compute.v1.Zones.List:input_type -> google.cloud.compute.v1.ListZonesRequest + 491, // 2723: google.cloud.compute.v1.AcceleratorTypes.AggregatedList:output_type -> google.cloud.compute.v1.AcceleratorTypeAggregatedList + 490, // 2724: google.cloud.compute.v1.AcceleratorTypes.Get:output_type -> google.cloud.compute.v1.AcceleratorType + 492, // 2725: google.cloud.compute.v1.AcceleratorTypes.List:output_type -> google.cloud.compute.v1.AcceleratorTypeList + 520, // 2726: google.cloud.compute.v1.Addresses.AggregatedList:output_type -> google.cloud.compute.v1.AddressAggregatedList + 1695, // 2727: google.cloud.compute.v1.Addresses.Delete:output_type -> google.cloud.compute.v1.Operation + 519, // 2728: google.cloud.compute.v1.Addresses.Get:output_type -> google.cloud.compute.v1.Address + 1695, // 2729: google.cloud.compute.v1.Addresses.Insert:output_type -> google.cloud.compute.v1.Operation + 521, // 2730: google.cloud.compute.v1.Addresses.List:output_type -> google.cloud.compute.v1.AddressList + 1695, // 2731: google.cloud.compute.v1.Addresses.Move:output_type -> google.cloud.compute.v1.Operation + 1695, // 2732: google.cloud.compute.v1.Addresses.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2326, // 2733: google.cloud.compute.v1.Addresses.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 679, // 2734: google.cloud.compute.v1.Advice.CalendarMode:output_type -> google.cloud.compute.v1.CalendarModeAdviceResponse + 601, // 2735: google.cloud.compute.v1.Autoscalers.AggregatedList:output_type -> google.cloud.compute.v1.AutoscalerAggregatedList + 1695, // 2736: google.cloud.compute.v1.Autoscalers.Delete:output_type -> google.cloud.compute.v1.Operation + 600, // 2737: google.cloud.compute.v1.Autoscalers.Get:output_type -> google.cloud.compute.v1.Autoscaler + 1695, // 2738: google.cloud.compute.v1.Autoscalers.Insert:output_type -> google.cloud.compute.v1.Operation + 602, // 2739: google.cloud.compute.v1.Autoscalers.List:output_type -> google.cloud.compute.v1.AutoscalerList + 1695, // 2740: google.cloud.compute.v1.Autoscalers.Patch:output_type -> google.cloud.compute.v1.Operation + 2326, // 2741: google.cloud.compute.v1.Autoscalers.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 2742: google.cloud.compute.v1.Autoscalers.Update:output_type -> google.cloud.compute.v1.Operation + 1695, // 2743: google.cloud.compute.v1.BackendBuckets.AddSignedUrlKey:output_type -> google.cloud.compute.v1.Operation + 614, // 2744: google.cloud.compute.v1.BackendBuckets.AggregatedList:output_type -> google.cloud.compute.v1.BackendBucketAggregatedList + 1695, // 2745: google.cloud.compute.v1.BackendBuckets.Delete:output_type -> google.cloud.compute.v1.Operation + 1695, // 2746: google.cloud.compute.v1.BackendBuckets.DeleteSignedUrlKey:output_type -> google.cloud.compute.v1.Operation + 613, // 2747: google.cloud.compute.v1.BackendBuckets.Get:output_type -> google.cloud.compute.v1.BackendBucket + 1783, // 2748: google.cloud.compute.v1.BackendBuckets.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 2749: google.cloud.compute.v1.BackendBuckets.Insert:output_type -> google.cloud.compute.v1.Operation + 619, // 2750: google.cloud.compute.v1.BackendBuckets.List:output_type -> google.cloud.compute.v1.BackendBucketList + 620, // 2751: google.cloud.compute.v1.BackendBuckets.ListUsable:output_type -> google.cloud.compute.v1.BackendBucketListUsable + 1695, // 2752: google.cloud.compute.v1.BackendBuckets.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 2753: google.cloud.compute.v1.BackendBuckets.SetEdgeSecurityPolicy:output_type -> google.cloud.compute.v1.Operation + 1783, // 2754: google.cloud.compute.v1.BackendBuckets.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 2755: google.cloud.compute.v1.BackendBuckets.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 2756: google.cloud.compute.v1.BackendBuckets.Update:output_type -> google.cloud.compute.v1.Operation + 1695, // 2757: google.cloud.compute.v1.BackendServices.AddSignedUrlKey:output_type -> google.cloud.compute.v1.Operation + 626, // 2758: google.cloud.compute.v1.BackendServices.AggregatedList:output_type -> google.cloud.compute.v1.BackendServiceAggregatedList + 1695, // 2759: google.cloud.compute.v1.BackendServices.Delete:output_type -> google.cloud.compute.v1.Operation + 1695, // 2760: google.cloud.compute.v1.BackendServices.DeleteSignedUrlKey:output_type -> google.cloud.compute.v1.Operation + 625, // 2761: google.cloud.compute.v1.BackendServices.Get:output_type -> google.cloud.compute.v1.BackendService + 939, // 2762: google.cloud.compute.v1.BackendServices.GetEffectiveSecurityPolicies:output_type -> google.cloud.compute.v1.GetEffectiveSecurityPoliciesBackendServiceResponse + 633, // 2763: google.cloud.compute.v1.BackendServices.GetHealth:output_type -> google.cloud.compute.v1.BackendServiceGroupHealth + 1783, // 2764: google.cloud.compute.v1.BackendServices.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 2765: google.cloud.compute.v1.BackendServices.Insert:output_type -> google.cloud.compute.v1.Operation + 639, // 2766: google.cloud.compute.v1.BackendServices.List:output_type -> google.cloud.compute.v1.BackendServiceList + 640, // 2767: google.cloud.compute.v1.BackendServices.ListUsable:output_type -> google.cloud.compute.v1.BackendServiceListUsable + 1695, // 2768: google.cloud.compute.v1.BackendServices.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 2769: google.cloud.compute.v1.BackendServices.SetEdgeSecurityPolicy:output_type -> google.cloud.compute.v1.Operation + 1783, // 2770: google.cloud.compute.v1.BackendServices.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 2771: google.cloud.compute.v1.BackendServices.SetSecurityPolicy:output_type -> google.cloud.compute.v1.Operation + 2326, // 2772: google.cloud.compute.v1.BackendServices.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 2773: google.cloud.compute.v1.BackendServices.Update:output_type -> google.cloud.compute.v1.Operation + 1695, // 2774: google.cloud.compute.v1.CrossSiteNetworks.Delete:output_type -> google.cloud.compute.v1.Operation + 712, // 2775: google.cloud.compute.v1.CrossSiteNetworks.Get:output_type -> google.cloud.compute.v1.CrossSiteNetwork + 1695, // 2776: google.cloud.compute.v1.CrossSiteNetworks.Insert:output_type -> google.cloud.compute.v1.Operation + 713, // 2777: google.cloud.compute.v1.CrossSiteNetworks.List:output_type -> google.cloud.compute.v1.CrossSiteNetworkList + 1695, // 2778: google.cloud.compute.v1.CrossSiteNetworks.Patch:output_type -> google.cloud.compute.v1.Operation + 848, // 2779: google.cloud.compute.v1.DiskTypes.AggregatedList:output_type -> google.cloud.compute.v1.DiskTypeAggregatedList + 847, // 2780: google.cloud.compute.v1.DiskTypes.Get:output_type -> google.cloud.compute.v1.DiskType + 849, // 2781: google.cloud.compute.v1.DiskTypes.List:output_type -> google.cloud.compute.v1.DiskTypeList + 1695, // 2782: google.cloud.compute.v1.Disks.AddResourcePolicies:output_type -> google.cloud.compute.v1.Operation + 838, // 2783: google.cloud.compute.v1.Disks.AggregatedList:output_type -> google.cloud.compute.v1.DiskAggregatedList + 1695, // 2784: google.cloud.compute.v1.Disks.BulkInsert:output_type -> google.cloud.compute.v1.Operation + 1695, // 2785: google.cloud.compute.v1.Disks.BulkSetLabels:output_type -> google.cloud.compute.v1.Operation + 1695, // 2786: google.cloud.compute.v1.Disks.CreateSnapshot:output_type -> google.cloud.compute.v1.Operation + 1695, // 2787: google.cloud.compute.v1.Disks.Delete:output_type -> google.cloud.compute.v1.Operation + 837, // 2788: google.cloud.compute.v1.Disks.Get:output_type -> google.cloud.compute.v1.Disk + 1783, // 2789: google.cloud.compute.v1.Disks.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 2790: google.cloud.compute.v1.Disks.Insert:output_type -> google.cloud.compute.v1.Operation + 842, // 2791: google.cloud.compute.v1.Disks.List:output_type -> google.cloud.compute.v1.DiskList + 1695, // 2792: google.cloud.compute.v1.Disks.RemoveResourcePolicies:output_type -> google.cloud.compute.v1.Operation + 1695, // 2793: google.cloud.compute.v1.Disks.Resize:output_type -> google.cloud.compute.v1.Operation + 1783, // 2794: google.cloud.compute.v1.Disks.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 2795: google.cloud.compute.v1.Disks.SetLabels:output_type -> google.cloud.compute.v1.Operation + 1695, // 2796: google.cloud.compute.v1.Disks.StartAsyncReplication:output_type -> google.cloud.compute.v1.Operation + 1695, // 2797: google.cloud.compute.v1.Disks.StopAsyncReplication:output_type -> google.cloud.compute.v1.Operation + 1695, // 2798: google.cloud.compute.v1.Disks.StopGroupAsyncReplication:output_type -> google.cloud.compute.v1.Operation + 2326, // 2799: google.cloud.compute.v1.Disks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 2800: google.cloud.compute.v1.Disks.Update:output_type -> google.cloud.compute.v1.Operation + 1695, // 2801: google.cloud.compute.v1.Disks.UpdateKmsKey:output_type -> google.cloud.compute.v1.Operation + 1695, // 2802: google.cloud.compute.v1.ExternalVpnGateways.Delete:output_type -> google.cloud.compute.v1.Operation + 872, // 2803: google.cloud.compute.v1.ExternalVpnGateways.Get:output_type -> google.cloud.compute.v1.ExternalVpnGateway + 1695, // 2804: google.cloud.compute.v1.ExternalVpnGateways.Insert:output_type -> google.cloud.compute.v1.Operation + 874, // 2805: google.cloud.compute.v1.ExternalVpnGateways.List:output_type -> google.cloud.compute.v1.ExternalVpnGatewayList + 1695, // 2806: google.cloud.compute.v1.ExternalVpnGateways.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2326, // 2807: google.cloud.compute.v1.ExternalVpnGateways.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 2808: google.cloud.compute.v1.FirewallPolicies.AddAssociation:output_type -> google.cloud.compute.v1.Operation + 1695, // 2809: google.cloud.compute.v1.FirewallPolicies.AddRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 2810: google.cloud.compute.v1.FirewallPolicies.CloneRules:output_type -> google.cloud.compute.v1.Operation + 1695, // 2811: google.cloud.compute.v1.FirewallPolicies.Delete:output_type -> google.cloud.compute.v1.Operation + 883, // 2812: google.cloud.compute.v1.FirewallPolicies.Get:output_type -> google.cloud.compute.v1.FirewallPolicy + 884, // 2813: google.cloud.compute.v1.FirewallPolicies.GetAssociation:output_type -> google.cloud.compute.v1.FirewallPolicyAssociation + 1783, // 2814: google.cloud.compute.v1.FirewallPolicies.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 886, // 2815: google.cloud.compute.v1.FirewallPolicies.GetRule:output_type -> google.cloud.compute.v1.FirewallPolicyRule + 1695, // 2816: google.cloud.compute.v1.FirewallPolicies.Insert:output_type -> google.cloud.compute.v1.Operation + 885, // 2817: google.cloud.compute.v1.FirewallPolicies.List:output_type -> google.cloud.compute.v1.FirewallPolicyList + 881, // 2818: google.cloud.compute.v1.FirewallPolicies.ListAssociations:output_type -> google.cloud.compute.v1.FirewallPoliciesListAssociationsResponse + 1695, // 2819: google.cloud.compute.v1.FirewallPolicies.Move:output_type -> google.cloud.compute.v1.Operation + 1695, // 2820: google.cloud.compute.v1.FirewallPolicies.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 2821: google.cloud.compute.v1.FirewallPolicies.PatchRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 2822: google.cloud.compute.v1.FirewallPolicies.RemoveAssociation:output_type -> google.cloud.compute.v1.Operation + 1695, // 2823: google.cloud.compute.v1.FirewallPolicies.RemoveRule:output_type -> google.cloud.compute.v1.Operation + 1783, // 2824: google.cloud.compute.v1.FirewallPolicies.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 2825: google.cloud.compute.v1.FirewallPolicies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 2826: google.cloud.compute.v1.Firewalls.Delete:output_type -> google.cloud.compute.v1.Operation + 877, // 2827: google.cloud.compute.v1.Firewalls.Get:output_type -> google.cloud.compute.v1.Firewall + 1695, // 2828: google.cloud.compute.v1.Firewalls.Insert:output_type -> google.cloud.compute.v1.Operation + 878, // 2829: google.cloud.compute.v1.Firewalls.List:output_type -> google.cloud.compute.v1.FirewallList + 1695, // 2830: google.cloud.compute.v1.Firewalls.Patch:output_type -> google.cloud.compute.v1.Operation + 2326, // 2831: google.cloud.compute.v1.Firewalls.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 2832: google.cloud.compute.v1.Firewalls.Update:output_type -> google.cloud.compute.v1.Operation + 893, // 2833: google.cloud.compute.v1.ForwardingRules.AggregatedList:output_type -> google.cloud.compute.v1.ForwardingRuleAggregatedList + 1695, // 2834: google.cloud.compute.v1.ForwardingRules.Delete:output_type -> google.cloud.compute.v1.Operation + 892, // 2835: google.cloud.compute.v1.ForwardingRules.Get:output_type -> google.cloud.compute.v1.ForwardingRule + 1695, // 2836: google.cloud.compute.v1.ForwardingRules.Insert:output_type -> google.cloud.compute.v1.Operation + 894, // 2837: google.cloud.compute.v1.ForwardingRules.List:output_type -> google.cloud.compute.v1.ForwardingRuleList + 1695, // 2838: google.cloud.compute.v1.ForwardingRules.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 2839: google.cloud.compute.v1.ForwardingRules.SetLabels:output_type -> google.cloud.compute.v1.Operation + 1695, // 2840: google.cloud.compute.v1.ForwardingRules.SetTarget:output_type -> google.cloud.compute.v1.Operation + 908, // 2841: google.cloud.compute.v1.FutureReservations.AggregatedList:output_type -> google.cloud.compute.v1.FutureReservationsAggregatedListResponse + 1695, // 2842: google.cloud.compute.v1.FutureReservations.Cancel:output_type -> google.cloud.compute.v1.Operation + 1695, // 2843: google.cloud.compute.v1.FutureReservations.Delete:output_type -> google.cloud.compute.v1.Operation + 898, // 2844: google.cloud.compute.v1.FutureReservations.Get:output_type -> google.cloud.compute.v1.FutureReservation + 1695, // 2845: google.cloud.compute.v1.FutureReservations.Insert:output_type -> google.cloud.compute.v1.Operation + 909, // 2846: google.cloud.compute.v1.FutureReservations.List:output_type -> google.cloud.compute.v1.FutureReservationsListResponse + 1695, // 2847: google.cloud.compute.v1.FutureReservations.Update:output_type -> google.cloud.compute.v1.Operation + 1695, // 2848: google.cloud.compute.v1.GlobalAddresses.Delete:output_type -> google.cloud.compute.v1.Operation + 519, // 2849: google.cloud.compute.v1.GlobalAddresses.Get:output_type -> google.cloud.compute.v1.Address + 1695, // 2850: google.cloud.compute.v1.GlobalAddresses.Insert:output_type -> google.cloud.compute.v1.Operation + 521, // 2851: google.cloud.compute.v1.GlobalAddresses.List:output_type -> google.cloud.compute.v1.AddressList + 1695, // 2852: google.cloud.compute.v1.GlobalAddresses.Move:output_type -> google.cloud.compute.v1.Operation + 1695, // 2853: google.cloud.compute.v1.GlobalAddresses.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2326, // 2854: google.cloud.compute.v1.GlobalAddresses.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 2855: google.cloud.compute.v1.GlobalForwardingRules.Delete:output_type -> google.cloud.compute.v1.Operation + 892, // 2856: google.cloud.compute.v1.GlobalForwardingRules.Get:output_type -> google.cloud.compute.v1.ForwardingRule + 1695, // 2857: google.cloud.compute.v1.GlobalForwardingRules.Insert:output_type -> google.cloud.compute.v1.Operation + 894, // 2858: google.cloud.compute.v1.GlobalForwardingRules.List:output_type -> google.cloud.compute.v1.ForwardingRuleList + 1695, // 2859: google.cloud.compute.v1.GlobalForwardingRules.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 2860: google.cloud.compute.v1.GlobalForwardingRules.SetLabels:output_type -> google.cloud.compute.v1.Operation + 1695, // 2861: google.cloud.compute.v1.GlobalForwardingRules.SetTarget:output_type -> google.cloud.compute.v1.Operation + 1695, // 2862: google.cloud.compute.v1.GlobalNetworkEndpointGroups.AttachNetworkEndpoints:output_type -> google.cloud.compute.v1.Operation + 1695, // 2863: google.cloud.compute.v1.GlobalNetworkEndpointGroups.Delete:output_type -> google.cloud.compute.v1.Operation + 1695, // 2864: google.cloud.compute.v1.GlobalNetworkEndpointGroups.DetachNetworkEndpoints:output_type -> google.cloud.compute.v1.Operation + 1633, // 2865: google.cloud.compute.v1.GlobalNetworkEndpointGroups.Get:output_type -> google.cloud.compute.v1.NetworkEndpointGroup + 1695, // 2866: google.cloud.compute.v1.GlobalNetworkEndpointGroups.Insert:output_type -> google.cloud.compute.v1.Operation + 1638, // 2867: google.cloud.compute.v1.GlobalNetworkEndpointGroups.List:output_type -> google.cloud.compute.v1.NetworkEndpointGroupList + 1643, // 2868: google.cloud.compute.v1.GlobalNetworkEndpointGroups.ListNetworkEndpoints:output_type -> google.cloud.compute.v1.NetworkEndpointGroupsListNetworkEndpoints + 1696, // 2869: google.cloud.compute.v1.GlobalOperations.AggregatedList:output_type -> google.cloud.compute.v1.OperationAggregatedList + 736, // 2870: google.cloud.compute.v1.GlobalOperations.Delete:output_type -> google.cloud.compute.v1.DeleteGlobalOperationResponse + 1695, // 2871: google.cloud.compute.v1.GlobalOperations.Get:output_type -> google.cloud.compute.v1.Operation + 1697, // 2872: google.cloud.compute.v1.GlobalOperations.List:output_type -> google.cloud.compute.v1.OperationList + 1695, // 2873: google.cloud.compute.v1.GlobalOperations.Wait:output_type -> google.cloud.compute.v1.Operation + 738, // 2874: google.cloud.compute.v1.GlobalOrganizationOperations.Delete:output_type -> google.cloud.compute.v1.DeleteGlobalOrganizationOperationResponse + 1695, // 2875: google.cloud.compute.v1.GlobalOrganizationOperations.Get:output_type -> google.cloud.compute.v1.Operation + 1697, // 2876: google.cloud.compute.v1.GlobalOrganizationOperations.List:output_type -> google.cloud.compute.v1.OperationList + 1695, // 2877: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Delete:output_type -> google.cloud.compute.v1.Operation + 1806, // 2878: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Get:output_type -> google.cloud.compute.v1.PublicDelegatedPrefix + 1695, // 2879: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Insert:output_type -> google.cloud.compute.v1.Operation + 1808, // 2880: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.List:output_type -> google.cloud.compute.v1.PublicDelegatedPrefixList + 1695, // 2881: google.cloud.compute.v1.GlobalPublicDelegatedPrefixes.Patch:output_type -> google.cloud.compute.v1.Operation + 1139, // 2882: google.cloud.compute.v1.HealthChecks.AggregatedList:output_type -> google.cloud.compute.v1.HealthChecksAggregatedList + 1695, // 2883: google.cloud.compute.v1.HealthChecks.Delete:output_type -> google.cloud.compute.v1.Operation + 1130, // 2884: google.cloud.compute.v1.HealthChecks.Get:output_type -> google.cloud.compute.v1.HealthCheck + 1695, // 2885: google.cloud.compute.v1.HealthChecks.Insert:output_type -> google.cloud.compute.v1.Operation + 1131, // 2886: google.cloud.compute.v1.HealthChecks.List:output_type -> google.cloud.compute.v1.HealthCheckList + 1695, // 2887: google.cloud.compute.v1.HealthChecks.Patch:output_type -> google.cloud.compute.v1.Operation + 2326, // 2888: google.cloud.compute.v1.HealthChecks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 2889: google.cloud.compute.v1.HealthChecks.Update:output_type -> google.cloud.compute.v1.Operation + 1166, // 2890: google.cloud.compute.v1.ImageFamilyViews.Get:output_type -> google.cloud.compute.v1.ImageFamilyView + 1695, // 2891: google.cloud.compute.v1.Images.Delete:output_type -> google.cloud.compute.v1.Operation + 1695, // 2892: google.cloud.compute.v1.Images.Deprecate:output_type -> google.cloud.compute.v1.Operation + 1165, // 2893: google.cloud.compute.v1.Images.Get:output_type -> google.cloud.compute.v1.Image + 1165, // 2894: google.cloud.compute.v1.Images.GetFromFamily:output_type -> google.cloud.compute.v1.Image + 1783, // 2895: google.cloud.compute.v1.Images.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 2896: google.cloud.compute.v1.Images.Insert:output_type -> google.cloud.compute.v1.Operation + 1167, // 2897: google.cloud.compute.v1.Images.List:output_type -> google.cloud.compute.v1.ImageList + 1695, // 2898: google.cloud.compute.v1.Images.Patch:output_type -> google.cloud.compute.v1.Operation + 1783, // 2899: google.cloud.compute.v1.Images.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 2900: google.cloud.compute.v1.Images.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2326, // 2901: google.cloud.compute.v1.Images.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 2902: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Cancel:output_type -> google.cloud.compute.v1.Operation + 1695, // 2903: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Delete:output_type -> google.cloud.compute.v1.Operation + 1279, // 2904: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Get:output_type -> google.cloud.compute.v1.InstanceGroupManagerResizeRequest + 1695, // 2905: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.Insert:output_type -> google.cloud.compute.v1.Operation + 1282, // 2906: google.cloud.compute.v1.InstanceGroupManagerResizeRequests.List:output_type -> google.cloud.compute.v1.InstanceGroupManagerResizeRequestsListResponse + 1695, // 2907: google.cloud.compute.v1.InstanceGroupManagers.AbandonInstances:output_type -> google.cloud.compute.v1.Operation + 1272, // 2908: google.cloud.compute.v1.InstanceGroupManagers.AggregatedList:output_type -> google.cloud.compute.v1.InstanceGroupManagerAggregatedList + 1695, // 2909: google.cloud.compute.v1.InstanceGroupManagers.ApplyUpdatesToInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 2910: google.cloud.compute.v1.InstanceGroupManagers.CreateInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 2911: google.cloud.compute.v1.InstanceGroupManagers.Delete:output_type -> google.cloud.compute.v1.Operation + 1695, // 2912: google.cloud.compute.v1.InstanceGroupManagers.DeleteInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 2913: google.cloud.compute.v1.InstanceGroupManagers.DeletePerInstanceConfigs:output_type -> google.cloud.compute.v1.Operation + 1270, // 2914: google.cloud.compute.v1.InstanceGroupManagers.Get:output_type -> google.cloud.compute.v1.InstanceGroupManager + 1695, // 2915: google.cloud.compute.v1.InstanceGroupManagers.Insert:output_type -> google.cloud.compute.v1.Operation + 1278, // 2916: google.cloud.compute.v1.InstanceGroupManagers.List:output_type -> google.cloud.compute.v1.InstanceGroupManagerList + 1303, // 2917: google.cloud.compute.v1.InstanceGroupManagers.ListErrors:output_type -> google.cloud.compute.v1.InstanceGroupManagersListErrorsResponse + 1304, // 2918: google.cloud.compute.v1.InstanceGroupManagers.ListManagedInstances:output_type -> google.cloud.compute.v1.InstanceGroupManagersListManagedInstancesResponse + 1305, // 2919: google.cloud.compute.v1.InstanceGroupManagers.ListPerInstanceConfigs:output_type -> google.cloud.compute.v1.InstanceGroupManagersListPerInstanceConfigsResp + 1695, // 2920: google.cloud.compute.v1.InstanceGroupManagers.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 2921: google.cloud.compute.v1.InstanceGroupManagers.PatchPerInstanceConfigs:output_type -> google.cloud.compute.v1.Operation + 1695, // 2922: google.cloud.compute.v1.InstanceGroupManagers.RecreateInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 2923: google.cloud.compute.v1.InstanceGroupManagers.Resize:output_type -> google.cloud.compute.v1.Operation + 1695, // 2924: google.cloud.compute.v1.InstanceGroupManagers.ResumeInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 2925: google.cloud.compute.v1.InstanceGroupManagers.SetInstanceTemplate:output_type -> google.cloud.compute.v1.Operation + 1695, // 2926: google.cloud.compute.v1.InstanceGroupManagers.SetTargetPools:output_type -> google.cloud.compute.v1.Operation + 1695, // 2927: google.cloud.compute.v1.InstanceGroupManagers.StartInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 2928: google.cloud.compute.v1.InstanceGroupManagers.StopInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 2929: google.cloud.compute.v1.InstanceGroupManagers.SuspendInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 2930: google.cloud.compute.v1.InstanceGroupManagers.UpdatePerInstanceConfigs:output_type -> google.cloud.compute.v1.Operation + 1695, // 2931: google.cloud.compute.v1.InstanceGroups.AddInstances:output_type -> google.cloud.compute.v1.Operation + 1268, // 2932: google.cloud.compute.v1.InstanceGroups.AggregatedList:output_type -> google.cloud.compute.v1.InstanceGroupAggregatedList + 1695, // 2933: google.cloud.compute.v1.InstanceGroups.Delete:output_type -> google.cloud.compute.v1.Operation + 1267, // 2934: google.cloud.compute.v1.InstanceGroups.Get:output_type -> google.cloud.compute.v1.InstanceGroup + 1695, // 2935: google.cloud.compute.v1.InstanceGroups.Insert:output_type -> google.cloud.compute.v1.Operation + 1269, // 2936: google.cloud.compute.v1.InstanceGroups.List:output_type -> google.cloud.compute.v1.InstanceGroupList + 1317, // 2937: google.cloud.compute.v1.InstanceGroups.ListInstances:output_type -> google.cloud.compute.v1.InstanceGroupsListInstances + 1695, // 2938: google.cloud.compute.v1.InstanceGroups.RemoveInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 2939: google.cloud.compute.v1.InstanceGroups.SetNamedPorts:output_type -> google.cloud.compute.v1.Operation + 2326, // 2940: google.cloud.compute.v1.InstanceGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1332, // 2941: google.cloud.compute.v1.InstanceSettingsService.Get:output_type -> google.cloud.compute.v1.InstanceSettings + 1695, // 2942: google.cloud.compute.v1.InstanceSettingsService.Patch:output_type -> google.cloud.compute.v1.Operation + 1335, // 2943: google.cloud.compute.v1.InstanceTemplates.AggregatedList:output_type -> google.cloud.compute.v1.InstanceTemplateAggregatedList + 1695, // 2944: google.cloud.compute.v1.InstanceTemplates.Delete:output_type -> google.cloud.compute.v1.Operation + 1334, // 2945: google.cloud.compute.v1.InstanceTemplates.Get:output_type -> google.cloud.compute.v1.InstanceTemplate + 1783, // 2946: google.cloud.compute.v1.InstanceTemplates.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 2947: google.cloud.compute.v1.InstanceTemplates.Insert:output_type -> google.cloud.compute.v1.Operation + 1336, // 2948: google.cloud.compute.v1.InstanceTemplates.List:output_type -> google.cloud.compute.v1.InstanceTemplateList + 1783, // 2949: google.cloud.compute.v1.InstanceTemplates.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 2950: google.cloud.compute.v1.InstanceTemplates.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 2951: google.cloud.compute.v1.Instances.AddAccessConfig:output_type -> google.cloud.compute.v1.Operation + 1695, // 2952: google.cloud.compute.v1.Instances.AddNetworkInterface:output_type -> google.cloud.compute.v1.Operation + 1695, // 2953: google.cloud.compute.v1.Instances.AddResourcePolicies:output_type -> google.cloud.compute.v1.Operation + 1262, // 2954: google.cloud.compute.v1.Instances.AggregatedList:output_type -> google.cloud.compute.v1.InstanceAggregatedList + 1695, // 2955: google.cloud.compute.v1.Instances.AttachDisk:output_type -> google.cloud.compute.v1.Operation + 1695, // 2956: google.cloud.compute.v1.Instances.BulkInsert:output_type -> google.cloud.compute.v1.Operation + 1695, // 2957: google.cloud.compute.v1.Instances.Delete:output_type -> google.cloud.compute.v1.Operation + 1695, // 2958: google.cloud.compute.v1.Instances.DeleteAccessConfig:output_type -> google.cloud.compute.v1.Operation + 1695, // 2959: google.cloud.compute.v1.Instances.DeleteNetworkInterface:output_type -> google.cloud.compute.v1.Operation + 1695, // 2960: google.cloud.compute.v1.Instances.DetachDisk:output_type -> google.cloud.compute.v1.Operation + 1261, // 2961: google.cloud.compute.v1.Instances.Get:output_type -> google.cloud.compute.v1.Instance + 1341, // 2962: google.cloud.compute.v1.Instances.GetEffectiveFirewalls:output_type -> google.cloud.compute.v1.InstancesGetEffectiveFirewallsResponse + 1119, // 2963: google.cloud.compute.v1.Instances.GetGuestAttributes:output_type -> google.cloud.compute.v1.GuestAttributes + 1783, // 2964: google.cloud.compute.v1.Instances.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1988, // 2965: google.cloud.compute.v1.Instances.GetScreenshot:output_type -> google.cloud.compute.v1.Screenshot + 2025, // 2966: google.cloud.compute.v1.Instances.GetSerialPortOutput:output_type -> google.cloud.compute.v1.SerialPortOutput + 2141, // 2967: google.cloud.compute.v1.Instances.GetShieldedInstanceIdentity:output_type -> google.cloud.compute.v1.ShieldedInstanceIdentity + 1695, // 2968: google.cloud.compute.v1.Instances.Insert:output_type -> google.cloud.compute.v1.Operation + 1322, // 2969: google.cloud.compute.v1.Instances.List:output_type -> google.cloud.compute.v1.InstanceList + 1323, // 2970: google.cloud.compute.v1.Instances.ListReferrers:output_type -> google.cloud.compute.v1.InstanceListReferrers + 1695, // 2971: google.cloud.compute.v1.Instances.PerformMaintenance:output_type -> google.cloud.compute.v1.Operation + 1695, // 2972: google.cloud.compute.v1.Instances.RemoveResourcePolicies:output_type -> google.cloud.compute.v1.Operation + 1695, // 2973: google.cloud.compute.v1.Instances.ReportHostAsFaulty:output_type -> google.cloud.compute.v1.Operation + 1695, // 2974: google.cloud.compute.v1.Instances.Reset:output_type -> google.cloud.compute.v1.Operation + 1695, // 2975: google.cloud.compute.v1.Instances.Resume:output_type -> google.cloud.compute.v1.Operation + 2024, // 2976: google.cloud.compute.v1.Instances.SendDiagnosticInterrupt:output_type -> google.cloud.compute.v1.SendDiagnosticInterruptInstanceResponse + 1695, // 2977: google.cloud.compute.v1.Instances.SetDeletionProtection:output_type -> google.cloud.compute.v1.Operation + 1695, // 2978: google.cloud.compute.v1.Instances.SetDiskAutoDelete:output_type -> google.cloud.compute.v1.Operation + 1783, // 2979: google.cloud.compute.v1.Instances.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 2980: google.cloud.compute.v1.Instances.SetLabels:output_type -> google.cloud.compute.v1.Operation + 1695, // 2981: google.cloud.compute.v1.Instances.SetMachineResources:output_type -> google.cloud.compute.v1.Operation + 1695, // 2982: google.cloud.compute.v1.Instances.SetMachineType:output_type -> google.cloud.compute.v1.Operation + 1695, // 2983: google.cloud.compute.v1.Instances.SetMetadata:output_type -> google.cloud.compute.v1.Operation + 1695, // 2984: google.cloud.compute.v1.Instances.SetMinCpuPlatform:output_type -> google.cloud.compute.v1.Operation + 1695, // 2985: google.cloud.compute.v1.Instances.SetName:output_type -> google.cloud.compute.v1.Operation + 1695, // 2986: google.cloud.compute.v1.Instances.SetScheduling:output_type -> google.cloud.compute.v1.Operation + 1695, // 2987: google.cloud.compute.v1.Instances.SetSecurityPolicy:output_type -> google.cloud.compute.v1.Operation + 1695, // 2988: google.cloud.compute.v1.Instances.SetServiceAccount:output_type -> google.cloud.compute.v1.Operation + 1695, // 2989: google.cloud.compute.v1.Instances.SetShieldedInstanceIntegrityPolicy:output_type -> google.cloud.compute.v1.Operation + 1695, // 2990: google.cloud.compute.v1.Instances.SetTags:output_type -> google.cloud.compute.v1.Operation + 1695, // 2991: google.cloud.compute.v1.Instances.SimulateMaintenanceEvent:output_type -> google.cloud.compute.v1.Operation + 1695, // 2992: google.cloud.compute.v1.Instances.Start:output_type -> google.cloud.compute.v1.Operation + 1695, // 2993: google.cloud.compute.v1.Instances.StartWithEncryptionKey:output_type -> google.cloud.compute.v1.Operation + 1695, // 2994: google.cloud.compute.v1.Instances.Stop:output_type -> google.cloud.compute.v1.Operation + 1695, // 2995: google.cloud.compute.v1.Instances.Suspend:output_type -> google.cloud.compute.v1.Operation + 2326, // 2996: google.cloud.compute.v1.Instances.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 2997: google.cloud.compute.v1.Instances.Update:output_type -> google.cloud.compute.v1.Operation + 1695, // 2998: google.cloud.compute.v1.Instances.UpdateAccessConfig:output_type -> google.cloud.compute.v1.Operation + 1695, // 2999: google.cloud.compute.v1.Instances.UpdateDisplayDevice:output_type -> google.cloud.compute.v1.Operation + 1695, // 3000: google.cloud.compute.v1.Instances.UpdateNetworkInterface:output_type -> google.cloud.compute.v1.Operation + 1695, // 3001: google.cloud.compute.v1.Instances.UpdateShieldedInstanceConfig:output_type -> google.cloud.compute.v1.Operation + 1695, // 3002: google.cloud.compute.v1.InstantSnapshotGroups.Delete:output_type -> google.cloud.compute.v1.Operation + 1357, // 3003: google.cloud.compute.v1.InstantSnapshotGroups.Get:output_type -> google.cloud.compute.v1.InstantSnapshotGroup + 1783, // 3004: google.cloud.compute.v1.InstantSnapshotGroups.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3005: google.cloud.compute.v1.InstantSnapshotGroups.Insert:output_type -> google.cloud.compute.v1.Operation + 1486, // 3006: google.cloud.compute.v1.InstantSnapshotGroups.List:output_type -> google.cloud.compute.v1.ListInstantSnapshotGroups + 1783, // 3007: google.cloud.compute.v1.InstantSnapshotGroups.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3008: google.cloud.compute.v1.InstantSnapshotGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1356, // 3009: google.cloud.compute.v1.InstantSnapshots.AggregatedList:output_type -> google.cloud.compute.v1.InstantSnapshotAggregatedList + 1695, // 3010: google.cloud.compute.v1.InstantSnapshots.Delete:output_type -> google.cloud.compute.v1.Operation + 1355, // 3011: google.cloud.compute.v1.InstantSnapshots.Get:output_type -> google.cloud.compute.v1.InstantSnapshot + 1783, // 3012: google.cloud.compute.v1.InstantSnapshots.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3013: google.cloud.compute.v1.InstantSnapshots.Insert:output_type -> google.cloud.compute.v1.Operation + 1361, // 3014: google.cloud.compute.v1.InstantSnapshots.List:output_type -> google.cloud.compute.v1.InstantSnapshotList + 1783, // 3015: google.cloud.compute.v1.InstantSnapshots.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3016: google.cloud.compute.v1.InstantSnapshots.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2326, // 3017: google.cloud.compute.v1.InstantSnapshots.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3018: google.cloud.compute.v1.InterconnectAttachmentGroups.Delete:output_type -> google.cloud.compute.v1.Operation + 1375, // 3019: google.cloud.compute.v1.InterconnectAttachmentGroups.Get:output_type -> google.cloud.compute.v1.InterconnectAttachmentGroup + 1783, // 3020: google.cloud.compute.v1.InterconnectAttachmentGroups.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1386, // 3021: google.cloud.compute.v1.InterconnectAttachmentGroups.GetOperationalStatus:output_type -> google.cloud.compute.v1.InterconnectAttachmentGroupsGetOperationalStatusResponse + 1695, // 3022: google.cloud.compute.v1.InterconnectAttachmentGroups.Insert:output_type -> google.cloud.compute.v1.Operation + 1387, // 3023: google.cloud.compute.v1.InterconnectAttachmentGroups.List:output_type -> google.cloud.compute.v1.InterconnectAttachmentGroupsListResponse + 1695, // 3024: google.cloud.compute.v1.InterconnectAttachmentGroups.Patch:output_type -> google.cloud.compute.v1.Operation + 1783, // 3025: google.cloud.compute.v1.InterconnectAttachmentGroups.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3026: google.cloud.compute.v1.InterconnectAttachmentGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1372, // 3027: google.cloud.compute.v1.InterconnectAttachments.AggregatedList:output_type -> google.cloud.compute.v1.InterconnectAttachmentAggregatedList + 1695, // 3028: google.cloud.compute.v1.InterconnectAttachments.Delete:output_type -> google.cloud.compute.v1.Operation + 1371, // 3029: google.cloud.compute.v1.InterconnectAttachments.Get:output_type -> google.cloud.compute.v1.InterconnectAttachment + 1695, // 3030: google.cloud.compute.v1.InterconnectAttachments.Insert:output_type -> google.cloud.compute.v1.Operation + 1394, // 3031: google.cloud.compute.v1.InterconnectAttachments.List:output_type -> google.cloud.compute.v1.InterconnectAttachmentList + 1695, // 3032: google.cloud.compute.v1.InterconnectAttachments.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3033: google.cloud.compute.v1.InterconnectAttachments.SetLabels:output_type -> google.cloud.compute.v1.Operation + 1695, // 3034: google.cloud.compute.v1.InterconnectGroups.CreateMembers:output_type -> google.cloud.compute.v1.Operation + 1695, // 3035: google.cloud.compute.v1.InterconnectGroups.Delete:output_type -> google.cloud.compute.v1.Operation + 1406, // 3036: google.cloud.compute.v1.InterconnectGroups.Get:output_type -> google.cloud.compute.v1.InterconnectGroup + 1783, // 3037: google.cloud.compute.v1.InterconnectGroups.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1419, // 3038: google.cloud.compute.v1.InterconnectGroups.GetOperationalStatus:output_type -> google.cloud.compute.v1.InterconnectGroupsGetOperationalStatusResponse + 1695, // 3039: google.cloud.compute.v1.InterconnectGroups.Insert:output_type -> google.cloud.compute.v1.Operation + 1420, // 3040: google.cloud.compute.v1.InterconnectGroups.List:output_type -> google.cloud.compute.v1.InterconnectGroupsListResponse + 1695, // 3041: google.cloud.compute.v1.InterconnectGroups.Patch:output_type -> google.cloud.compute.v1.Operation + 1783, // 3042: google.cloud.compute.v1.InterconnectGroups.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3043: google.cloud.compute.v1.InterconnectGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1424, // 3044: google.cloud.compute.v1.InterconnectLocations.Get:output_type -> google.cloud.compute.v1.InterconnectLocation + 1426, // 3045: google.cloud.compute.v1.InterconnectLocations.List:output_type -> google.cloud.compute.v1.InterconnectLocationList + 1434, // 3046: google.cloud.compute.v1.InterconnectRemoteLocations.Get:output_type -> google.cloud.compute.v1.InterconnectRemoteLocation + 1437, // 3047: google.cloud.compute.v1.InterconnectRemoteLocations.List:output_type -> google.cloud.compute.v1.InterconnectRemoteLocationList + 1695, // 3048: google.cloud.compute.v1.Interconnects.Delete:output_type -> google.cloud.compute.v1.Operation + 1366, // 3049: google.cloud.compute.v1.Interconnects.Get:output_type -> google.cloud.compute.v1.Interconnect + 1439, // 3050: google.cloud.compute.v1.Interconnects.GetDiagnostics:output_type -> google.cloud.compute.v1.InterconnectsGetDiagnosticsResponse + 1440, // 3051: google.cloud.compute.v1.Interconnects.GetMacsecConfig:output_type -> google.cloud.compute.v1.InterconnectsGetMacsecConfigResponse + 1695, // 3052: google.cloud.compute.v1.Interconnects.Insert:output_type -> google.cloud.compute.v1.Operation + 1423, // 3053: google.cloud.compute.v1.Interconnects.List:output_type -> google.cloud.compute.v1.InterconnectList + 1695, // 3054: google.cloud.compute.v1.Interconnects.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3055: google.cloud.compute.v1.Interconnects.SetLabels:output_type -> google.cloud.compute.v1.Operation + 1444, // 3056: google.cloud.compute.v1.LicenseCodes.Get:output_type -> google.cloud.compute.v1.LicenseCode + 2326, // 3057: google.cloud.compute.v1.LicenseCodes.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3058: google.cloud.compute.v1.Licenses.Delete:output_type -> google.cloud.compute.v1.Operation + 1443, // 3059: google.cloud.compute.v1.Licenses.Get:output_type -> google.cloud.compute.v1.License + 1783, // 3060: google.cloud.compute.v1.Licenses.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3061: google.cloud.compute.v1.Licenses.Insert:output_type -> google.cloud.compute.v1.Operation + 1449, // 3062: google.cloud.compute.v1.Licenses.List:output_type -> google.cloud.compute.v1.LicensesListResponse + 1783, // 3063: google.cloud.compute.v1.Licenses.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3064: google.cloud.compute.v1.Licenses.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3065: google.cloud.compute.v1.Licenses.Update:output_type -> google.cloud.compute.v1.Operation + 1695, // 3066: google.cloud.compute.v1.MachineImages.Delete:output_type -> google.cloud.compute.v1.Operation + 1597, // 3067: google.cloud.compute.v1.MachineImages.Get:output_type -> google.cloud.compute.v1.MachineImage + 1783, // 3068: google.cloud.compute.v1.MachineImages.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3069: google.cloud.compute.v1.MachineImages.Insert:output_type -> google.cloud.compute.v1.Operation + 1598, // 3070: google.cloud.compute.v1.MachineImages.List:output_type -> google.cloud.compute.v1.MachineImageList + 1783, // 3071: google.cloud.compute.v1.MachineImages.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3072: google.cloud.compute.v1.MachineImages.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2326, // 3073: google.cloud.compute.v1.MachineImages.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1601, // 3074: google.cloud.compute.v1.MachineTypes.AggregatedList:output_type -> google.cloud.compute.v1.MachineTypeAggregatedList + 1600, // 3075: google.cloud.compute.v1.MachineTypes.Get:output_type -> google.cloud.compute.v1.MachineType + 1602, // 3076: google.cloud.compute.v1.MachineTypes.List:output_type -> google.cloud.compute.v1.MachineTypeList + 1625, // 3077: google.cloud.compute.v1.NetworkAttachments.AggregatedList:output_type -> google.cloud.compute.v1.NetworkAttachmentAggregatedList + 1695, // 3078: google.cloud.compute.v1.NetworkAttachments.Delete:output_type -> google.cloud.compute.v1.Operation + 1624, // 3079: google.cloud.compute.v1.NetworkAttachments.Get:output_type -> google.cloud.compute.v1.NetworkAttachment + 1783, // 3080: google.cloud.compute.v1.NetworkAttachments.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3081: google.cloud.compute.v1.NetworkAttachments.Insert:output_type -> google.cloud.compute.v1.Operation + 1627, // 3082: google.cloud.compute.v1.NetworkAttachments.List:output_type -> google.cloud.compute.v1.NetworkAttachmentList + 1695, // 3083: google.cloud.compute.v1.NetworkAttachments.Patch:output_type -> google.cloud.compute.v1.Operation + 1783, // 3084: google.cloud.compute.v1.NetworkAttachments.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3085: google.cloud.compute.v1.NetworkAttachments.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1630, // 3086: google.cloud.compute.v1.NetworkEdgeSecurityServices.AggregatedList:output_type -> google.cloud.compute.v1.NetworkEdgeSecurityServiceAggregatedList + 1695, // 3087: google.cloud.compute.v1.NetworkEdgeSecurityServices.Delete:output_type -> google.cloud.compute.v1.Operation + 1629, // 3088: google.cloud.compute.v1.NetworkEdgeSecurityServices.Get:output_type -> google.cloud.compute.v1.NetworkEdgeSecurityService + 1695, // 3089: google.cloud.compute.v1.NetworkEdgeSecurityServices.Insert:output_type -> google.cloud.compute.v1.Operation + 1695, // 3090: google.cloud.compute.v1.NetworkEdgeSecurityServices.Patch:output_type -> google.cloud.compute.v1.Operation + 1634, // 3091: google.cloud.compute.v1.NetworkEndpointGroups.AggregatedList:output_type -> google.cloud.compute.v1.NetworkEndpointGroupAggregatedList + 1695, // 3092: google.cloud.compute.v1.NetworkEndpointGroups.AttachNetworkEndpoints:output_type -> google.cloud.compute.v1.Operation + 1695, // 3093: google.cloud.compute.v1.NetworkEndpointGroups.Delete:output_type -> google.cloud.compute.v1.Operation + 1695, // 3094: google.cloud.compute.v1.NetworkEndpointGroups.DetachNetworkEndpoints:output_type -> google.cloud.compute.v1.Operation + 1633, // 3095: google.cloud.compute.v1.NetworkEndpointGroups.Get:output_type -> google.cloud.compute.v1.NetworkEndpointGroup + 1695, // 3096: google.cloud.compute.v1.NetworkEndpointGroups.Insert:output_type -> google.cloud.compute.v1.Operation + 1638, // 3097: google.cloud.compute.v1.NetworkEndpointGroups.List:output_type -> google.cloud.compute.v1.NetworkEndpointGroupList + 1643, // 3098: google.cloud.compute.v1.NetworkEndpointGroups.ListNetworkEndpoints:output_type -> google.cloud.compute.v1.NetworkEndpointGroupsListNetworkEndpoints + 2326, // 3099: google.cloud.compute.v1.NetworkEndpointGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3100: google.cloud.compute.v1.NetworkFirewallPolicies.AddAssociation:output_type -> google.cloud.compute.v1.Operation + 1695, // 3101: google.cloud.compute.v1.NetworkFirewallPolicies.AddPacketMirroringRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3102: google.cloud.compute.v1.NetworkFirewallPolicies.AddRule:output_type -> google.cloud.compute.v1.Operation + 1646, // 3103: google.cloud.compute.v1.NetworkFirewallPolicies.AggregatedList:output_type -> google.cloud.compute.v1.NetworkFirewallPolicyAggregatedList + 1695, // 3104: google.cloud.compute.v1.NetworkFirewallPolicies.CloneRules:output_type -> google.cloud.compute.v1.Operation + 1695, // 3105: google.cloud.compute.v1.NetworkFirewallPolicies.Delete:output_type -> google.cloud.compute.v1.Operation + 883, // 3106: google.cloud.compute.v1.NetworkFirewallPolicies.Get:output_type -> google.cloud.compute.v1.FirewallPolicy + 884, // 3107: google.cloud.compute.v1.NetworkFirewallPolicies.GetAssociation:output_type -> google.cloud.compute.v1.FirewallPolicyAssociation + 1783, // 3108: google.cloud.compute.v1.NetworkFirewallPolicies.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 886, // 3109: google.cloud.compute.v1.NetworkFirewallPolicies.GetPacketMirroringRule:output_type -> google.cloud.compute.v1.FirewallPolicyRule + 886, // 3110: google.cloud.compute.v1.NetworkFirewallPolicies.GetRule:output_type -> google.cloud.compute.v1.FirewallPolicyRule + 1695, // 3111: google.cloud.compute.v1.NetworkFirewallPolicies.Insert:output_type -> google.cloud.compute.v1.Operation + 885, // 3112: google.cloud.compute.v1.NetworkFirewallPolicies.List:output_type -> google.cloud.compute.v1.FirewallPolicyList + 1695, // 3113: google.cloud.compute.v1.NetworkFirewallPolicies.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3114: google.cloud.compute.v1.NetworkFirewallPolicies.PatchPacketMirroringRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3115: google.cloud.compute.v1.NetworkFirewallPolicies.PatchRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3116: google.cloud.compute.v1.NetworkFirewallPolicies.RemoveAssociation:output_type -> google.cloud.compute.v1.Operation + 1695, // 3117: google.cloud.compute.v1.NetworkFirewallPolicies.RemovePacketMirroringRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3118: google.cloud.compute.v1.NetworkFirewallPolicies.RemoveRule:output_type -> google.cloud.compute.v1.Operation + 1783, // 3119: google.cloud.compute.v1.NetworkFirewallPolicies.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3120: google.cloud.compute.v1.NetworkFirewallPolicies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1655, // 3121: google.cloud.compute.v1.NetworkProfiles.Get:output_type -> google.cloud.compute.v1.NetworkProfile + 1660, // 3122: google.cloud.compute.v1.NetworkProfiles.List:output_type -> google.cloud.compute.v1.NetworkProfilesListResponse + 1695, // 3123: google.cloud.compute.v1.Networks.AddPeering:output_type -> google.cloud.compute.v1.Operation + 1695, // 3124: google.cloud.compute.v1.Networks.Delete:output_type -> google.cloud.compute.v1.Operation + 1623, // 3125: google.cloud.compute.v1.Networks.Get:output_type -> google.cloud.compute.v1.Network + 1663, // 3126: google.cloud.compute.v1.Networks.GetEffectiveFirewalls:output_type -> google.cloud.compute.v1.NetworksGetEffectiveFirewallsResponse + 1695, // 3127: google.cloud.compute.v1.Networks.Insert:output_type -> google.cloud.compute.v1.Operation + 1648, // 3128: google.cloud.compute.v1.Networks.List:output_type -> google.cloud.compute.v1.NetworkList + 869, // 3129: google.cloud.compute.v1.Networks.ListPeeringRoutes:output_type -> google.cloud.compute.v1.ExchangedPeeringRoutesList + 1695, // 3130: google.cloud.compute.v1.Networks.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3131: google.cloud.compute.v1.Networks.RemovePeering:output_type -> google.cloud.compute.v1.Operation + 1695, // 3132: google.cloud.compute.v1.Networks.RequestRemovePeering:output_type -> google.cloud.compute.v1.Operation + 1695, // 3133: google.cloud.compute.v1.Networks.SwitchToCustomMode:output_type -> google.cloud.compute.v1.Operation + 1695, // 3134: google.cloud.compute.v1.Networks.UpdatePeering:output_type -> google.cloud.compute.v1.Operation + 1695, // 3135: google.cloud.compute.v1.NodeGroups.AddNodes:output_type -> google.cloud.compute.v1.Operation + 1669, // 3136: google.cloud.compute.v1.NodeGroups.AggregatedList:output_type -> google.cloud.compute.v1.NodeGroupAggregatedList + 1695, // 3137: google.cloud.compute.v1.NodeGroups.Delete:output_type -> google.cloud.compute.v1.Operation + 1695, // 3138: google.cloud.compute.v1.NodeGroups.DeleteNodes:output_type -> google.cloud.compute.v1.Operation + 1668, // 3139: google.cloud.compute.v1.NodeGroups.Get:output_type -> google.cloud.compute.v1.NodeGroup + 1783, // 3140: google.cloud.compute.v1.NodeGroups.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3141: google.cloud.compute.v1.NodeGroups.Insert:output_type -> google.cloud.compute.v1.Operation + 1671, // 3142: google.cloud.compute.v1.NodeGroups.List:output_type -> google.cloud.compute.v1.NodeGroupList + 1676, // 3143: google.cloud.compute.v1.NodeGroups.ListNodes:output_type -> google.cloud.compute.v1.NodeGroupsListNodes + 1695, // 3144: google.cloud.compute.v1.NodeGroups.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3145: google.cloud.compute.v1.NodeGroups.PerformMaintenance:output_type -> google.cloud.compute.v1.Operation + 1783, // 3146: google.cloud.compute.v1.NodeGroups.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3147: google.cloud.compute.v1.NodeGroups.SetNodeTemplate:output_type -> google.cloud.compute.v1.Operation + 1695, // 3148: google.cloud.compute.v1.NodeGroups.SimulateMaintenanceEvent:output_type -> google.cloud.compute.v1.Operation + 2326, // 3149: google.cloud.compute.v1.NodeGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1682, // 3150: google.cloud.compute.v1.NodeTemplates.AggregatedList:output_type -> google.cloud.compute.v1.NodeTemplateAggregatedList + 1695, // 3151: google.cloud.compute.v1.NodeTemplates.Delete:output_type -> google.cloud.compute.v1.Operation + 1681, // 3152: google.cloud.compute.v1.NodeTemplates.Get:output_type -> google.cloud.compute.v1.NodeTemplate + 1783, // 3153: google.cloud.compute.v1.NodeTemplates.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3154: google.cloud.compute.v1.NodeTemplates.Insert:output_type -> google.cloud.compute.v1.Operation + 1683, // 3155: google.cloud.compute.v1.NodeTemplates.List:output_type -> google.cloud.compute.v1.NodeTemplateList + 1783, // 3156: google.cloud.compute.v1.NodeTemplates.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3157: google.cloud.compute.v1.NodeTemplates.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1687, // 3158: google.cloud.compute.v1.NodeTypes.AggregatedList:output_type -> google.cloud.compute.v1.NodeTypeAggregatedList + 1686, // 3159: google.cloud.compute.v1.NodeTypes.Get:output_type -> google.cloud.compute.v1.NodeType + 1688, // 3160: google.cloud.compute.v1.NodeTypes.List:output_type -> google.cloud.compute.v1.NodeTypeList + 1695, // 3161: google.cloud.compute.v1.OrganizationSecurityPolicies.AddAssociation:output_type -> google.cloud.compute.v1.Operation + 1695, // 3162: google.cloud.compute.v1.OrganizationSecurityPolicies.AddRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3163: google.cloud.compute.v1.OrganizationSecurityPolicies.CopyRules:output_type -> google.cloud.compute.v1.Operation + 1695, // 3164: google.cloud.compute.v1.OrganizationSecurityPolicies.Delete:output_type -> google.cloud.compute.v1.Operation + 1993, // 3165: google.cloud.compute.v1.OrganizationSecurityPolicies.Get:output_type -> google.cloud.compute.v1.SecurityPolicy + 2000, // 3166: google.cloud.compute.v1.OrganizationSecurityPolicies.GetAssociation:output_type -> google.cloud.compute.v1.SecurityPolicyAssociation + 2005, // 3167: google.cloud.compute.v1.OrganizationSecurityPolicies.GetRule:output_type -> google.cloud.compute.v1.SecurityPolicyRule + 1695, // 3168: google.cloud.compute.v1.OrganizationSecurityPolicies.Insert:output_type -> google.cloud.compute.v1.Operation + 2002, // 3169: google.cloud.compute.v1.OrganizationSecurityPolicies.List:output_type -> google.cloud.compute.v1.SecurityPolicyList + 1699, // 3170: google.cloud.compute.v1.OrganizationSecurityPolicies.ListAssociations:output_type -> google.cloud.compute.v1.OrganizationSecurityPoliciesListAssociationsResponse + 1990, // 3171: google.cloud.compute.v1.OrganizationSecurityPolicies.ListPreconfiguredExpressionSets:output_type -> google.cloud.compute.v1.SecurityPoliciesListPreconfiguredExpressionSetsResponse + 1695, // 3172: google.cloud.compute.v1.OrganizationSecurityPolicies.Move:output_type -> google.cloud.compute.v1.Operation + 1695, // 3173: google.cloud.compute.v1.OrganizationSecurityPolicies.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3174: google.cloud.compute.v1.OrganizationSecurityPolicies.PatchRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3175: google.cloud.compute.v1.OrganizationSecurityPolicies.RemoveAssociation:output_type -> google.cloud.compute.v1.Operation + 1695, // 3176: google.cloud.compute.v1.OrganizationSecurityPolicies.RemoveRule:output_type -> google.cloud.compute.v1.Operation + 1703, // 3177: google.cloud.compute.v1.PacketMirrorings.AggregatedList:output_type -> google.cloud.compute.v1.PacketMirroringAggregatedList + 1695, // 3178: google.cloud.compute.v1.PacketMirrorings.Delete:output_type -> google.cloud.compute.v1.Operation + 1702, // 3179: google.cloud.compute.v1.PacketMirrorings.Get:output_type -> google.cloud.compute.v1.PacketMirroring + 1695, // 3180: google.cloud.compute.v1.PacketMirrorings.Insert:output_type -> google.cloud.compute.v1.Operation + 1706, // 3181: google.cloud.compute.v1.PacketMirrorings.List:output_type -> google.cloud.compute.v1.PacketMirroringList + 1695, // 3182: google.cloud.compute.v1.PacketMirrorings.Patch:output_type -> google.cloud.compute.v1.Operation + 2326, // 3183: google.cloud.compute.v1.PacketMirrorings.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1789, // 3184: google.cloud.compute.v1.PreviewFeatures.Get:output_type -> google.cloud.compute.v1.PreviewFeature + 1790, // 3185: google.cloud.compute.v1.PreviewFeatures.List:output_type -> google.cloud.compute.v1.PreviewFeatureList + 1695, // 3186: google.cloud.compute.v1.PreviewFeatures.Update:output_type -> google.cloud.compute.v1.Operation + 1695, // 3187: google.cloud.compute.v1.Projects.DisableXpnHost:output_type -> google.cloud.compute.v1.Operation + 1695, // 3188: google.cloud.compute.v1.Projects.DisableXpnResource:output_type -> google.cloud.compute.v1.Operation + 1695, // 3189: google.cloud.compute.v1.Projects.EnableXpnHost:output_type -> google.cloud.compute.v1.Operation + 1695, // 3190: google.cloud.compute.v1.Projects.EnableXpnResource:output_type -> google.cloud.compute.v1.Operation + 1796, // 3191: google.cloud.compute.v1.Projects.Get:output_type -> google.cloud.compute.v1.Project + 1796, // 3192: google.cloud.compute.v1.Projects.GetXpnHost:output_type -> google.cloud.compute.v1.Project + 1799, // 3193: google.cloud.compute.v1.Projects.GetXpnResources:output_type -> google.cloud.compute.v1.ProjectsGetXpnResources + 2428, // 3194: google.cloud.compute.v1.Projects.ListXpnHosts:output_type -> google.cloud.compute.v1.XpnHostList + 1695, // 3195: google.cloud.compute.v1.Projects.MoveDisk:output_type -> google.cloud.compute.v1.Operation + 1695, // 3196: google.cloud.compute.v1.Projects.MoveInstance:output_type -> google.cloud.compute.v1.Operation + 1695, // 3197: google.cloud.compute.v1.Projects.SetCloudArmorTier:output_type -> google.cloud.compute.v1.Operation + 1695, // 3198: google.cloud.compute.v1.Projects.SetCommonInstanceMetadata:output_type -> google.cloud.compute.v1.Operation + 1695, // 3199: google.cloud.compute.v1.Projects.SetDefaultNetworkTier:output_type -> google.cloud.compute.v1.Operation + 1695, // 3200: google.cloud.compute.v1.Projects.SetUsageExportBucket:output_type -> google.cloud.compute.v1.Operation + 1695, // 3201: google.cloud.compute.v1.PublicAdvertisedPrefixes.Announce:output_type -> google.cloud.compute.v1.Operation + 1695, // 3202: google.cloud.compute.v1.PublicAdvertisedPrefixes.Delete:output_type -> google.cloud.compute.v1.Operation + 1803, // 3203: google.cloud.compute.v1.PublicAdvertisedPrefixes.Get:output_type -> google.cloud.compute.v1.PublicAdvertisedPrefix + 1695, // 3204: google.cloud.compute.v1.PublicAdvertisedPrefixes.Insert:output_type -> google.cloud.compute.v1.Operation + 1804, // 3205: google.cloud.compute.v1.PublicAdvertisedPrefixes.List:output_type -> google.cloud.compute.v1.PublicAdvertisedPrefixList + 1695, // 3206: google.cloud.compute.v1.PublicAdvertisedPrefixes.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3207: google.cloud.compute.v1.PublicAdvertisedPrefixes.Withdraw:output_type -> google.cloud.compute.v1.Operation + 1807, // 3208: google.cloud.compute.v1.PublicDelegatedPrefixes.AggregatedList:output_type -> google.cloud.compute.v1.PublicDelegatedPrefixAggregatedList + 1695, // 3209: google.cloud.compute.v1.PublicDelegatedPrefixes.Announce:output_type -> google.cloud.compute.v1.Operation + 1695, // 3210: google.cloud.compute.v1.PublicDelegatedPrefixes.Delete:output_type -> google.cloud.compute.v1.Operation + 1806, // 3211: google.cloud.compute.v1.PublicDelegatedPrefixes.Get:output_type -> google.cloud.compute.v1.PublicDelegatedPrefix + 1695, // 3212: google.cloud.compute.v1.PublicDelegatedPrefixes.Insert:output_type -> google.cloud.compute.v1.Operation + 1808, // 3213: google.cloud.compute.v1.PublicDelegatedPrefixes.List:output_type -> google.cloud.compute.v1.PublicDelegatedPrefixList + 1695, // 3214: google.cloud.compute.v1.PublicDelegatedPrefixes.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3215: google.cloud.compute.v1.PublicDelegatedPrefixes.Withdraw:output_type -> google.cloud.compute.v1.Operation + 1695, // 3216: google.cloud.compute.v1.RegionAutoscalers.Delete:output_type -> google.cloud.compute.v1.Operation + 600, // 3217: google.cloud.compute.v1.RegionAutoscalers.Get:output_type -> google.cloud.compute.v1.Autoscaler + 1695, // 3218: google.cloud.compute.v1.RegionAutoscalers.Insert:output_type -> google.cloud.compute.v1.Operation + 1820, // 3219: google.cloud.compute.v1.RegionAutoscalers.List:output_type -> google.cloud.compute.v1.RegionAutoscalerList + 1695, // 3220: google.cloud.compute.v1.RegionAutoscalers.Patch:output_type -> google.cloud.compute.v1.Operation + 2326, // 3221: google.cloud.compute.v1.RegionAutoscalers.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3222: google.cloud.compute.v1.RegionAutoscalers.Update:output_type -> google.cloud.compute.v1.Operation + 1695, // 3223: google.cloud.compute.v1.RegionBackendBuckets.Delete:output_type -> google.cloud.compute.v1.Operation + 613, // 3224: google.cloud.compute.v1.RegionBackendBuckets.Get:output_type -> google.cloud.compute.v1.BackendBucket + 1783, // 3225: google.cloud.compute.v1.RegionBackendBuckets.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3226: google.cloud.compute.v1.RegionBackendBuckets.Insert:output_type -> google.cloud.compute.v1.Operation + 619, // 3227: google.cloud.compute.v1.RegionBackendBuckets.List:output_type -> google.cloud.compute.v1.BackendBucketList + 620, // 3228: google.cloud.compute.v1.RegionBackendBuckets.ListUsable:output_type -> google.cloud.compute.v1.BackendBucketListUsable + 1695, // 3229: google.cloud.compute.v1.RegionBackendBuckets.Patch:output_type -> google.cloud.compute.v1.Operation + 1783, // 3230: google.cloud.compute.v1.RegionBackendBuckets.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3231: google.cloud.compute.v1.RegionBackendBuckets.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3232: google.cloud.compute.v1.RegionBackendServices.Delete:output_type -> google.cloud.compute.v1.Operation + 625, // 3233: google.cloud.compute.v1.RegionBackendServices.Get:output_type -> google.cloud.compute.v1.BackendService + 633, // 3234: google.cloud.compute.v1.RegionBackendServices.GetHealth:output_type -> google.cloud.compute.v1.BackendServiceGroupHealth + 1783, // 3235: google.cloud.compute.v1.RegionBackendServices.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3236: google.cloud.compute.v1.RegionBackendServices.Insert:output_type -> google.cloud.compute.v1.Operation + 639, // 3237: google.cloud.compute.v1.RegionBackendServices.List:output_type -> google.cloud.compute.v1.BackendServiceList + 640, // 3238: google.cloud.compute.v1.RegionBackendServices.ListUsable:output_type -> google.cloud.compute.v1.BackendServiceListUsable + 1695, // 3239: google.cloud.compute.v1.RegionBackendServices.Patch:output_type -> google.cloud.compute.v1.Operation + 1783, // 3240: google.cloud.compute.v1.RegionBackendServices.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3241: google.cloud.compute.v1.RegionBackendServices.SetSecurityPolicy:output_type -> google.cloud.compute.v1.Operation + 2326, // 3242: google.cloud.compute.v1.RegionBackendServices.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3243: google.cloud.compute.v1.RegionBackendServices.Update:output_type -> google.cloud.compute.v1.Operation + 690, // 3244: google.cloud.compute.v1.RegionCommitments.AggregatedList:output_type -> google.cloud.compute.v1.CommitmentAggregatedList + 689, // 3245: google.cloud.compute.v1.RegionCommitments.Get:output_type -> google.cloud.compute.v1.Commitment + 1695, // 3246: google.cloud.compute.v1.RegionCommitments.Insert:output_type -> google.cloud.compute.v1.Operation + 691, // 3247: google.cloud.compute.v1.RegionCommitments.List:output_type -> google.cloud.compute.v1.CommitmentList + 1695, // 3248: google.cloud.compute.v1.RegionCommitments.Update:output_type -> google.cloud.compute.v1.Operation + 696, // 3249: google.cloud.compute.v1.RegionCompositeHealthChecks.AggregatedList:output_type -> google.cloud.compute.v1.CompositeHealthCheckAggregatedList + 1695, // 3250: google.cloud.compute.v1.RegionCompositeHealthChecks.Delete:output_type -> google.cloud.compute.v1.Operation + 695, // 3251: google.cloud.compute.v1.RegionCompositeHealthChecks.Get:output_type -> google.cloud.compute.v1.CompositeHealthCheck + 697, // 3252: google.cloud.compute.v1.RegionCompositeHealthChecks.GetHealth:output_type -> google.cloud.compute.v1.CompositeHealthCheckHealth + 1695, // 3253: google.cloud.compute.v1.RegionCompositeHealthChecks.Insert:output_type -> google.cloud.compute.v1.Operation + 698, // 3254: google.cloud.compute.v1.RegionCompositeHealthChecks.List:output_type -> google.cloud.compute.v1.CompositeHealthCheckList + 1695, // 3255: google.cloud.compute.v1.RegionCompositeHealthChecks.Patch:output_type -> google.cloud.compute.v1.Operation + 2326, // 3256: google.cloud.compute.v1.RegionCompositeHealthChecks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 847, // 3257: google.cloud.compute.v1.RegionDiskTypes.Get:output_type -> google.cloud.compute.v1.DiskType + 1821, // 3258: google.cloud.compute.v1.RegionDiskTypes.List:output_type -> google.cloud.compute.v1.RegionDiskTypeList + 1695, // 3259: google.cloud.compute.v1.RegionDisks.AddResourcePolicies:output_type -> google.cloud.compute.v1.Operation + 1695, // 3260: google.cloud.compute.v1.RegionDisks.BulkInsert:output_type -> google.cloud.compute.v1.Operation + 1695, // 3261: google.cloud.compute.v1.RegionDisks.CreateSnapshot:output_type -> google.cloud.compute.v1.Operation + 1695, // 3262: google.cloud.compute.v1.RegionDisks.Delete:output_type -> google.cloud.compute.v1.Operation + 837, // 3263: google.cloud.compute.v1.RegionDisks.Get:output_type -> google.cloud.compute.v1.Disk + 1783, // 3264: google.cloud.compute.v1.RegionDisks.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3265: google.cloud.compute.v1.RegionDisks.Insert:output_type -> google.cloud.compute.v1.Operation + 842, // 3266: google.cloud.compute.v1.RegionDisks.List:output_type -> google.cloud.compute.v1.DiskList + 1695, // 3267: google.cloud.compute.v1.RegionDisks.RemoveResourcePolicies:output_type -> google.cloud.compute.v1.Operation + 1695, // 3268: google.cloud.compute.v1.RegionDisks.Resize:output_type -> google.cloud.compute.v1.Operation + 1783, // 3269: google.cloud.compute.v1.RegionDisks.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3270: google.cloud.compute.v1.RegionDisks.SetLabels:output_type -> google.cloud.compute.v1.Operation + 1695, // 3271: google.cloud.compute.v1.RegionDisks.StartAsyncReplication:output_type -> google.cloud.compute.v1.Operation + 1695, // 3272: google.cloud.compute.v1.RegionDisks.StopAsyncReplication:output_type -> google.cloud.compute.v1.Operation + 1695, // 3273: google.cloud.compute.v1.RegionDisks.StopGroupAsyncReplication:output_type -> google.cloud.compute.v1.Operation + 2326, // 3274: google.cloud.compute.v1.RegionDisks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3275: google.cloud.compute.v1.RegionDisks.Update:output_type -> google.cloud.compute.v1.Operation + 1695, // 3276: google.cloud.compute.v1.RegionDisks.UpdateKmsKey:output_type -> google.cloud.compute.v1.Operation + 1128, // 3277: google.cloud.compute.v1.RegionHealthAggregationPolicies.AggregatedList:output_type -> google.cloud.compute.v1.HealthAggregationPolicyAggregatedList + 1695, // 3278: google.cloud.compute.v1.RegionHealthAggregationPolicies.Delete:output_type -> google.cloud.compute.v1.Operation + 1127, // 3279: google.cloud.compute.v1.RegionHealthAggregationPolicies.Get:output_type -> google.cloud.compute.v1.HealthAggregationPolicy + 1695, // 3280: google.cloud.compute.v1.RegionHealthAggregationPolicies.Insert:output_type -> google.cloud.compute.v1.Operation + 1129, // 3281: google.cloud.compute.v1.RegionHealthAggregationPolicies.List:output_type -> google.cloud.compute.v1.HealthAggregationPolicyList + 1695, // 3282: google.cloud.compute.v1.RegionHealthAggregationPolicies.Patch:output_type -> google.cloud.compute.v1.Operation + 2326, // 3283: google.cloud.compute.v1.RegionHealthAggregationPolicies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1135, // 3284: google.cloud.compute.v1.RegionHealthCheckServices.AggregatedList:output_type -> google.cloud.compute.v1.HealthCheckServiceAggregatedList + 1695, // 3285: google.cloud.compute.v1.RegionHealthCheckServices.Delete:output_type -> google.cloud.compute.v1.Operation + 1134, // 3286: google.cloud.compute.v1.RegionHealthCheckServices.Get:output_type -> google.cloud.compute.v1.HealthCheckService + 1695, // 3287: google.cloud.compute.v1.RegionHealthCheckServices.Insert:output_type -> google.cloud.compute.v1.Operation + 1137, // 3288: google.cloud.compute.v1.RegionHealthCheckServices.List:output_type -> google.cloud.compute.v1.HealthCheckServicesList + 1695, // 3289: google.cloud.compute.v1.RegionHealthCheckServices.Patch:output_type -> google.cloud.compute.v1.Operation + 2326, // 3290: google.cloud.compute.v1.RegionHealthCheckServices.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3291: google.cloud.compute.v1.RegionHealthChecks.Delete:output_type -> google.cloud.compute.v1.Operation + 1130, // 3292: google.cloud.compute.v1.RegionHealthChecks.Get:output_type -> google.cloud.compute.v1.HealthCheck + 1695, // 3293: google.cloud.compute.v1.RegionHealthChecks.Insert:output_type -> google.cloud.compute.v1.Operation + 1131, // 3294: google.cloud.compute.v1.RegionHealthChecks.List:output_type -> google.cloud.compute.v1.HealthCheckList + 1695, // 3295: google.cloud.compute.v1.RegionHealthChecks.Patch:output_type -> google.cloud.compute.v1.Operation + 2326, // 3296: google.cloud.compute.v1.RegionHealthChecks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3297: google.cloud.compute.v1.RegionHealthChecks.Update:output_type -> google.cloud.compute.v1.Operation + 1142, // 3298: google.cloud.compute.v1.RegionHealthSources.AggregatedList:output_type -> google.cloud.compute.v1.HealthSourceAggregatedList + 1695, // 3299: google.cloud.compute.v1.RegionHealthSources.Delete:output_type -> google.cloud.compute.v1.Operation + 1141, // 3300: google.cloud.compute.v1.RegionHealthSources.Get:output_type -> google.cloud.compute.v1.HealthSource + 1143, // 3301: google.cloud.compute.v1.RegionHealthSources.GetHealth:output_type -> google.cloud.compute.v1.HealthSourceHealth + 1695, // 3302: google.cloud.compute.v1.RegionHealthSources.Insert:output_type -> google.cloud.compute.v1.Operation + 1144, // 3303: google.cloud.compute.v1.RegionHealthSources.List:output_type -> google.cloud.compute.v1.HealthSourceList + 1695, // 3304: google.cloud.compute.v1.RegionHealthSources.Patch:output_type -> google.cloud.compute.v1.Operation + 2326, // 3305: google.cloud.compute.v1.RegionHealthSources.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3306: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests.Cancel:output_type -> google.cloud.compute.v1.Operation + 1695, // 3307: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests.Delete:output_type -> google.cloud.compute.v1.Operation + 1279, // 3308: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests.Get:output_type -> google.cloud.compute.v1.InstanceGroupManagerResizeRequest + 1695, // 3309: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests.Insert:output_type -> google.cloud.compute.v1.Operation + 1831, // 3310: google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests.List:output_type -> google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequestsListResponse + 1695, // 3311: google.cloud.compute.v1.RegionInstanceGroupManagers.AbandonInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 3312: google.cloud.compute.v1.RegionInstanceGroupManagers.ApplyUpdatesToInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 3313: google.cloud.compute.v1.RegionInstanceGroupManagers.CreateInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 3314: google.cloud.compute.v1.RegionInstanceGroupManagers.Delete:output_type -> google.cloud.compute.v1.Operation + 1695, // 3315: google.cloud.compute.v1.RegionInstanceGroupManagers.DeleteInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 3316: google.cloud.compute.v1.RegionInstanceGroupManagers.DeletePerInstanceConfigs:output_type -> google.cloud.compute.v1.Operation + 1270, // 3317: google.cloud.compute.v1.RegionInstanceGroupManagers.Get:output_type -> google.cloud.compute.v1.InstanceGroupManager + 1695, // 3318: google.cloud.compute.v1.RegionInstanceGroupManagers.Insert:output_type -> google.cloud.compute.v1.Operation + 1829, // 3319: google.cloud.compute.v1.RegionInstanceGroupManagers.List:output_type -> google.cloud.compute.v1.RegionInstanceGroupManagerList + 1837, // 3320: google.cloud.compute.v1.RegionInstanceGroupManagers.ListErrors:output_type -> google.cloud.compute.v1.RegionInstanceGroupManagersListErrorsResponse + 1839, // 3321: google.cloud.compute.v1.RegionInstanceGroupManagers.ListManagedInstances:output_type -> google.cloud.compute.v1.RegionInstanceGroupManagersListInstancesResponse + 1838, // 3322: google.cloud.compute.v1.RegionInstanceGroupManagers.ListPerInstanceConfigs:output_type -> google.cloud.compute.v1.RegionInstanceGroupManagersListInstanceConfigsResp + 1695, // 3323: google.cloud.compute.v1.RegionInstanceGroupManagers.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3324: google.cloud.compute.v1.RegionInstanceGroupManagers.PatchPerInstanceConfigs:output_type -> google.cloud.compute.v1.Operation + 1695, // 3325: google.cloud.compute.v1.RegionInstanceGroupManagers.RecreateInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 3326: google.cloud.compute.v1.RegionInstanceGroupManagers.Resize:output_type -> google.cloud.compute.v1.Operation + 1695, // 3327: google.cloud.compute.v1.RegionInstanceGroupManagers.ResumeInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 3328: google.cloud.compute.v1.RegionInstanceGroupManagers.SetInstanceTemplate:output_type -> google.cloud.compute.v1.Operation + 1695, // 3329: google.cloud.compute.v1.RegionInstanceGroupManagers.SetTargetPools:output_type -> google.cloud.compute.v1.Operation + 1695, // 3330: google.cloud.compute.v1.RegionInstanceGroupManagers.StartInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 3331: google.cloud.compute.v1.RegionInstanceGroupManagers.StopInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 3332: google.cloud.compute.v1.RegionInstanceGroupManagers.SuspendInstances:output_type -> google.cloud.compute.v1.Operation + 1695, // 3333: google.cloud.compute.v1.RegionInstanceGroupManagers.UpdatePerInstanceConfigs:output_type -> google.cloud.compute.v1.Operation + 1267, // 3334: google.cloud.compute.v1.RegionInstanceGroups.Get:output_type -> google.cloud.compute.v1.InstanceGroup + 1827, // 3335: google.cloud.compute.v1.RegionInstanceGroups.List:output_type -> google.cloud.compute.v1.RegionInstanceGroupList + 1847, // 3336: google.cloud.compute.v1.RegionInstanceGroups.ListInstances:output_type -> google.cloud.compute.v1.RegionInstanceGroupsListInstances + 1695, // 3337: google.cloud.compute.v1.RegionInstanceGroups.SetNamedPorts:output_type -> google.cloud.compute.v1.Operation + 2326, // 3338: google.cloud.compute.v1.RegionInstanceGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3339: google.cloud.compute.v1.RegionInstanceTemplates.Delete:output_type -> google.cloud.compute.v1.Operation + 1334, // 3340: google.cloud.compute.v1.RegionInstanceTemplates.Get:output_type -> google.cloud.compute.v1.InstanceTemplate + 1695, // 3341: google.cloud.compute.v1.RegionInstanceTemplates.Insert:output_type -> google.cloud.compute.v1.Operation + 1336, // 3342: google.cloud.compute.v1.RegionInstanceTemplates.List:output_type -> google.cloud.compute.v1.InstanceTemplateList + 1695, // 3343: google.cloud.compute.v1.RegionInstances.BulkInsert:output_type -> google.cloud.compute.v1.Operation + 1695, // 3344: google.cloud.compute.v1.RegionInstantSnapshotGroups.Delete:output_type -> google.cloud.compute.v1.Operation + 1357, // 3345: google.cloud.compute.v1.RegionInstantSnapshotGroups.Get:output_type -> google.cloud.compute.v1.InstantSnapshotGroup + 1783, // 3346: google.cloud.compute.v1.RegionInstantSnapshotGroups.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3347: google.cloud.compute.v1.RegionInstantSnapshotGroups.Insert:output_type -> google.cloud.compute.v1.Operation + 1486, // 3348: google.cloud.compute.v1.RegionInstantSnapshotGroups.List:output_type -> google.cloud.compute.v1.ListInstantSnapshotGroups + 1783, // 3349: google.cloud.compute.v1.RegionInstantSnapshotGroups.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3350: google.cloud.compute.v1.RegionInstantSnapshotGroups.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3351: google.cloud.compute.v1.RegionInstantSnapshots.Delete:output_type -> google.cloud.compute.v1.Operation + 1355, // 3352: google.cloud.compute.v1.RegionInstantSnapshots.Get:output_type -> google.cloud.compute.v1.InstantSnapshot + 1783, // 3353: google.cloud.compute.v1.RegionInstantSnapshots.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3354: google.cloud.compute.v1.RegionInstantSnapshots.Insert:output_type -> google.cloud.compute.v1.Operation + 1361, // 3355: google.cloud.compute.v1.RegionInstantSnapshots.List:output_type -> google.cloud.compute.v1.InstantSnapshotList + 1783, // 3356: google.cloud.compute.v1.RegionInstantSnapshots.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3357: google.cloud.compute.v1.RegionInstantSnapshots.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2326, // 3358: google.cloud.compute.v1.RegionInstantSnapshots.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3359: google.cloud.compute.v1.RegionNetworkEndpointGroups.AttachNetworkEndpoints:output_type -> google.cloud.compute.v1.Operation + 1695, // 3360: google.cloud.compute.v1.RegionNetworkEndpointGroups.Delete:output_type -> google.cloud.compute.v1.Operation + 1695, // 3361: google.cloud.compute.v1.RegionNetworkEndpointGroups.DetachNetworkEndpoints:output_type -> google.cloud.compute.v1.Operation + 1633, // 3362: google.cloud.compute.v1.RegionNetworkEndpointGroups.Get:output_type -> google.cloud.compute.v1.NetworkEndpointGroup + 1695, // 3363: google.cloud.compute.v1.RegionNetworkEndpointGroups.Insert:output_type -> google.cloud.compute.v1.Operation + 1638, // 3364: google.cloud.compute.v1.RegionNetworkEndpointGroups.List:output_type -> google.cloud.compute.v1.NetworkEndpointGroupList + 1643, // 3365: google.cloud.compute.v1.RegionNetworkEndpointGroups.ListNetworkEndpoints:output_type -> google.cloud.compute.v1.NetworkEndpointGroupsListNetworkEndpoints + 1695, // 3366: google.cloud.compute.v1.RegionNetworkFirewallPolicies.AddAssociation:output_type -> google.cloud.compute.v1.Operation + 1695, // 3367: google.cloud.compute.v1.RegionNetworkFirewallPolicies.AddRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3368: google.cloud.compute.v1.RegionNetworkFirewallPolicies.CloneRules:output_type -> google.cloud.compute.v1.Operation + 1695, // 3369: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Delete:output_type -> google.cloud.compute.v1.Operation + 883, // 3370: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Get:output_type -> google.cloud.compute.v1.FirewallPolicy + 884, // 3371: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetAssociation:output_type -> google.cloud.compute.v1.FirewallPolicyAssociation + 1853, // 3372: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetEffectiveFirewalls:output_type -> google.cloud.compute.v1.RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse + 1783, // 3373: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 886, // 3374: google.cloud.compute.v1.RegionNetworkFirewallPolicies.GetRule:output_type -> google.cloud.compute.v1.FirewallPolicyRule + 1695, // 3375: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Insert:output_type -> google.cloud.compute.v1.Operation + 885, // 3376: google.cloud.compute.v1.RegionNetworkFirewallPolicies.List:output_type -> google.cloud.compute.v1.FirewallPolicyList + 1695, // 3377: google.cloud.compute.v1.RegionNetworkFirewallPolicies.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3378: google.cloud.compute.v1.RegionNetworkFirewallPolicies.PatchRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3379: google.cloud.compute.v1.RegionNetworkFirewallPolicies.RemoveAssociation:output_type -> google.cloud.compute.v1.Operation + 1695, // 3380: google.cloud.compute.v1.RegionNetworkFirewallPolicies.RemoveRule:output_type -> google.cloud.compute.v1.Operation + 1783, // 3381: google.cloud.compute.v1.RegionNetworkFirewallPolicies.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3382: google.cloud.compute.v1.RegionNetworkFirewallPolicies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1691, // 3383: google.cloud.compute.v1.RegionNotificationEndpoints.AggregatedList:output_type -> google.cloud.compute.v1.NotificationEndpointAggregatedList + 1695, // 3384: google.cloud.compute.v1.RegionNotificationEndpoints.Delete:output_type -> google.cloud.compute.v1.Operation + 1690, // 3385: google.cloud.compute.v1.RegionNotificationEndpoints.Get:output_type -> google.cloud.compute.v1.NotificationEndpoint + 1695, // 3386: google.cloud.compute.v1.RegionNotificationEndpoints.Insert:output_type -> google.cloud.compute.v1.Operation + 1693, // 3387: google.cloud.compute.v1.RegionNotificationEndpoints.List:output_type -> google.cloud.compute.v1.NotificationEndpointList + 2326, // 3388: google.cloud.compute.v1.RegionNotificationEndpoints.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 790, // 3389: google.cloud.compute.v1.RegionOperations.Delete:output_type -> google.cloud.compute.v1.DeleteRegionOperationResponse + 1695, // 3390: google.cloud.compute.v1.RegionOperations.Get:output_type -> google.cloud.compute.v1.Operation + 1697, // 3391: google.cloud.compute.v1.RegionOperations.List:output_type -> google.cloud.compute.v1.OperationList + 1695, // 3392: google.cloud.compute.v1.RegionOperations.Wait:output_type -> google.cloud.compute.v1.Operation + 1695, // 3393: google.cloud.compute.v1.RegionSecurityPolicies.AddRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3394: google.cloud.compute.v1.RegionSecurityPolicies.Delete:output_type -> google.cloud.compute.v1.Operation + 1993, // 3395: google.cloud.compute.v1.RegionSecurityPolicies.Get:output_type -> google.cloud.compute.v1.SecurityPolicy + 2005, // 3396: google.cloud.compute.v1.RegionSecurityPolicies.GetRule:output_type -> google.cloud.compute.v1.SecurityPolicyRule + 1695, // 3397: google.cloud.compute.v1.RegionSecurityPolicies.Insert:output_type -> google.cloud.compute.v1.Operation + 2002, // 3398: google.cloud.compute.v1.RegionSecurityPolicies.List:output_type -> google.cloud.compute.v1.SecurityPolicyList + 1695, // 3399: google.cloud.compute.v1.RegionSecurityPolicies.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3400: google.cloud.compute.v1.RegionSecurityPolicies.PatchRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3401: google.cloud.compute.v1.RegionSecurityPolicies.RemoveRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3402: google.cloud.compute.v1.RegionSecurityPolicies.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2151, // 3403: google.cloud.compute.v1.RegionSnapshotSettings.Get:output_type -> google.cloud.compute.v1.SnapshotSettings + 1695, // 3404: google.cloud.compute.v1.RegionSnapshotSettings.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3405: google.cloud.compute.v1.RegionSnapshots.Delete:output_type -> google.cloud.compute.v1.Operation + 2147, // 3406: google.cloud.compute.v1.RegionSnapshots.Get:output_type -> google.cloud.compute.v1.Snapshot + 1783, // 3407: google.cloud.compute.v1.RegionSnapshots.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3408: google.cloud.compute.v1.RegionSnapshots.Insert:output_type -> google.cloud.compute.v1.Operation + 2149, // 3409: google.cloud.compute.v1.RegionSnapshots.List:output_type -> google.cloud.compute.v1.SnapshotList + 1783, // 3410: google.cloud.compute.v1.RegionSnapshots.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3411: google.cloud.compute.v1.RegionSnapshots.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2326, // 3412: google.cloud.compute.v1.RegionSnapshots.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3413: google.cloud.compute.v1.RegionSnapshots.UpdateKmsKey:output_type -> google.cloud.compute.v1.Operation + 1695, // 3414: google.cloud.compute.v1.RegionSslCertificates.Delete:output_type -> google.cloud.compute.v1.Operation + 2160, // 3415: google.cloud.compute.v1.RegionSslCertificates.Get:output_type -> google.cloud.compute.v1.SslCertificate + 1695, // 3416: google.cloud.compute.v1.RegionSslCertificates.Insert:output_type -> google.cloud.compute.v1.Operation + 2162, // 3417: google.cloud.compute.v1.RegionSslCertificates.List:output_type -> google.cloud.compute.v1.SslCertificateList + 1695, // 3418: google.cloud.compute.v1.RegionSslPolicies.Delete:output_type -> google.cloud.compute.v1.Operation + 2170, // 3419: google.cloud.compute.v1.RegionSslPolicies.Get:output_type -> google.cloud.compute.v1.SslPolicy + 1695, // 3420: google.cloud.compute.v1.RegionSslPolicies.Insert:output_type -> google.cloud.compute.v1.Operation + 2167, // 3421: google.cloud.compute.v1.RegionSslPolicies.List:output_type -> google.cloud.compute.v1.SslPoliciesList + 2168, // 3422: google.cloud.compute.v1.RegionSslPolicies.ListAvailableFeatures:output_type -> google.cloud.compute.v1.SslPoliciesListAvailableFeaturesResponse + 1695, // 3423: google.cloud.compute.v1.RegionSslPolicies.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3424: google.cloud.compute.v1.RegionTargetHttpProxies.Delete:output_type -> google.cloud.compute.v1.Operation + 2226, // 3425: google.cloud.compute.v1.RegionTargetHttpProxies.Get:output_type -> google.cloud.compute.v1.TargetHttpProxy + 1695, // 3426: google.cloud.compute.v1.RegionTargetHttpProxies.Insert:output_type -> google.cloud.compute.v1.Operation + 2228, // 3427: google.cloud.compute.v1.RegionTargetHttpProxies.List:output_type -> google.cloud.compute.v1.TargetHttpProxyList + 1695, // 3428: google.cloud.compute.v1.RegionTargetHttpProxies.SetUrlMap:output_type -> google.cloud.compute.v1.Operation + 1695, // 3429: google.cloud.compute.v1.RegionTargetHttpsProxies.Delete:output_type -> google.cloud.compute.v1.Operation + 2233, // 3430: google.cloud.compute.v1.RegionTargetHttpsProxies.Get:output_type -> google.cloud.compute.v1.TargetHttpsProxy + 1695, // 3431: google.cloud.compute.v1.RegionTargetHttpsProxies.Insert:output_type -> google.cloud.compute.v1.Operation + 2235, // 3432: google.cloud.compute.v1.RegionTargetHttpsProxies.List:output_type -> google.cloud.compute.v1.TargetHttpsProxyList + 1695, // 3433: google.cloud.compute.v1.RegionTargetHttpsProxies.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3434: google.cloud.compute.v1.RegionTargetHttpsProxies.SetSslCertificates:output_type -> google.cloud.compute.v1.Operation + 1695, // 3435: google.cloud.compute.v1.RegionTargetHttpsProxies.SetUrlMap:output_type -> google.cloud.compute.v1.Operation + 1695, // 3436: google.cloud.compute.v1.RegionTargetTcpProxies.Delete:output_type -> google.cloud.compute.v1.Operation + 2259, // 3437: google.cloud.compute.v1.RegionTargetTcpProxies.Get:output_type -> google.cloud.compute.v1.TargetTcpProxy + 1695, // 3438: google.cloud.compute.v1.RegionTargetTcpProxies.Insert:output_type -> google.cloud.compute.v1.Operation + 2261, // 3439: google.cloud.compute.v1.RegionTargetTcpProxies.List:output_type -> google.cloud.compute.v1.TargetTcpProxyList + 1695, // 3440: google.cloud.compute.v1.RegionUrlMaps.Delete:output_type -> google.cloud.compute.v1.Operation + 2363, // 3441: google.cloud.compute.v1.RegionUrlMaps.Get:output_type -> google.cloud.compute.v1.UrlMap + 1695, // 3442: google.cloud.compute.v1.RegionUrlMaps.Insert:output_type -> google.cloud.compute.v1.Operation + 2364, // 3443: google.cloud.compute.v1.RegionUrlMaps.List:output_type -> google.cloud.compute.v1.UrlMapList + 1695, // 3444: google.cloud.compute.v1.RegionUrlMaps.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3445: google.cloud.compute.v1.RegionUrlMaps.Update:output_type -> google.cloud.compute.v1.Operation + 2372, // 3446: google.cloud.compute.v1.RegionUrlMaps.Validate:output_type -> google.cloud.compute.v1.UrlMapsValidateResponse + 2431, // 3447: google.cloud.compute.v1.RegionZones.List:output_type -> google.cloud.compute.v1.ZoneList + 1818, // 3448: google.cloud.compute.v1.Regions.Get:output_type -> google.cloud.compute.v1.Region + 1850, // 3449: google.cloud.compute.v1.Regions.List:output_type -> google.cloud.compute.v1.RegionList + 1891, // 3450: google.cloud.compute.v1.ReservationBlocks.Get:output_type -> google.cloud.compute.v1.ReservationBlocksGetResponse + 1783, // 3451: google.cloud.compute.v1.ReservationBlocks.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1892, // 3452: google.cloud.compute.v1.ReservationBlocks.List:output_type -> google.cloud.compute.v1.ReservationBlocksListResponse + 1695, // 3453: google.cloud.compute.v1.ReservationBlocks.PerformMaintenance:output_type -> google.cloud.compute.v1.Operation + 1783, // 3454: google.cloud.compute.v1.ReservationBlocks.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3455: google.cloud.compute.v1.ReservationBlocks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1898, // 3456: google.cloud.compute.v1.ReservationSlots.Get:output_type -> google.cloud.compute.v1.ReservationSlotsGetResponse + 1695, // 3457: google.cloud.compute.v1.ReservationSlots.GetVersion:output_type -> google.cloud.compute.v1.Operation + 1900, // 3458: google.cloud.compute.v1.ReservationSlots.List:output_type -> google.cloud.compute.v1.ReservationSlotsListResponse + 1695, // 3459: google.cloud.compute.v1.ReservationSlots.Update:output_type -> google.cloud.compute.v1.Operation + 1904, // 3460: google.cloud.compute.v1.ReservationSubBlocks.Get:output_type -> google.cloud.compute.v1.ReservationSubBlocksGetResponse + 1783, // 3461: google.cloud.compute.v1.ReservationSubBlocks.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3462: google.cloud.compute.v1.ReservationSubBlocks.GetVersion:output_type -> google.cloud.compute.v1.Operation + 1906, // 3463: google.cloud.compute.v1.ReservationSubBlocks.List:output_type -> google.cloud.compute.v1.ReservationSubBlocksListResponse + 1695, // 3464: google.cloud.compute.v1.ReservationSubBlocks.PerformMaintenance:output_type -> google.cloud.compute.v1.Operation + 1695, // 3465: google.cloud.compute.v1.ReservationSubBlocks.ReportFaulty:output_type -> google.cloud.compute.v1.Operation + 1783, // 3466: google.cloud.compute.v1.ReservationSubBlocks.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3467: google.cloud.compute.v1.ReservationSubBlocks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1885, // 3468: google.cloud.compute.v1.Reservations.AggregatedList:output_type -> google.cloud.compute.v1.ReservationAggregatedList + 1695, // 3469: google.cloud.compute.v1.Reservations.Delete:output_type -> google.cloud.compute.v1.Operation + 1882, // 3470: google.cloud.compute.v1.Reservations.Get:output_type -> google.cloud.compute.v1.Reservation + 1783, // 3471: google.cloud.compute.v1.Reservations.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3472: google.cloud.compute.v1.Reservations.Insert:output_type -> google.cloud.compute.v1.Operation + 1893, // 3473: google.cloud.compute.v1.Reservations.List:output_type -> google.cloud.compute.v1.ReservationList + 1695, // 3474: google.cloud.compute.v1.Reservations.PerformMaintenance:output_type -> google.cloud.compute.v1.Operation + 1695, // 3475: google.cloud.compute.v1.Reservations.Resize:output_type -> google.cloud.compute.v1.Operation + 1783, // 3476: google.cloud.compute.v1.Reservations.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3477: google.cloud.compute.v1.Reservations.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3478: google.cloud.compute.v1.Reservations.Update:output_type -> google.cloud.compute.v1.Operation + 1923, // 3479: google.cloud.compute.v1.ResourcePolicies.AggregatedList:output_type -> google.cloud.compute.v1.ResourcePolicyAggregatedList + 1695, // 3480: google.cloud.compute.v1.ResourcePolicies.Delete:output_type -> google.cloud.compute.v1.Operation + 1922, // 3481: google.cloud.compute.v1.ResourcePolicies.Get:output_type -> google.cloud.compute.v1.ResourcePolicy + 1783, // 3482: google.cloud.compute.v1.ResourcePolicies.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3483: google.cloud.compute.v1.ResourcePolicies.Insert:output_type -> google.cloud.compute.v1.Operation + 1930, // 3484: google.cloud.compute.v1.ResourcePolicies.List:output_type -> google.cloud.compute.v1.ResourcePolicyList + 1695, // 3485: google.cloud.compute.v1.ResourcePolicies.Patch:output_type -> google.cloud.compute.v1.Operation + 1783, // 3486: google.cloud.compute.v1.ResourcePolicies.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3487: google.cloud.compute.v1.ResourcePolicies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1956, // 3488: google.cloud.compute.v1.Routers.AggregatedList:output_type -> google.cloud.compute.v1.RouterAggregatedList + 1695, // 3489: google.cloud.compute.v1.Routers.Delete:output_type -> google.cloud.compute.v1.Operation + 1695, // 3490: google.cloud.compute.v1.Routers.DeleteRoutePolicy:output_type -> google.cloud.compute.v1.Operation + 1954, // 3491: google.cloud.compute.v1.Routers.Get:output_type -> google.cloud.compute.v1.Router + 1622, // 3492: google.cloud.compute.v1.Routers.GetNatIpInfo:output_type -> google.cloud.compute.v1.NatIpInfoResponse + 2383, // 3493: google.cloud.compute.v1.Routers.GetNatMappingInfo:output_type -> google.cloud.compute.v1.VmEndpointNatMappingsList + 1976, // 3494: google.cloud.compute.v1.Routers.GetRoutePolicy:output_type -> google.cloud.compute.v1.RoutersGetRoutePolicyResponse + 1975, // 3495: google.cloud.compute.v1.Routers.GetRouterStatus:output_type -> google.cloud.compute.v1.RouterStatusResponse + 1695, // 3496: google.cloud.compute.v1.Routers.Insert:output_type -> google.cloud.compute.v1.Operation + 1962, // 3497: google.cloud.compute.v1.Routers.List:output_type -> google.cloud.compute.v1.RouterList + 1977, // 3498: google.cloud.compute.v1.Routers.ListBgpRoutes:output_type -> google.cloud.compute.v1.RoutersListBgpRoutes + 1978, // 3499: google.cloud.compute.v1.Routers.ListRoutePolicies:output_type -> google.cloud.compute.v1.RoutersListRoutePolicies + 1695, // 3500: google.cloud.compute.v1.Routers.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3501: google.cloud.compute.v1.Routers.PatchRoutePolicy:output_type -> google.cloud.compute.v1.Operation + 1979, // 3502: google.cloud.compute.v1.Routers.Preview:output_type -> google.cloud.compute.v1.RoutersPreviewResponse + 1695, // 3503: google.cloud.compute.v1.Routers.Update:output_type -> google.cloud.compute.v1.Operation + 1695, // 3504: google.cloud.compute.v1.Routers.UpdateRoutePolicy:output_type -> google.cloud.compute.v1.Operation + 1695, // 3505: google.cloud.compute.v1.Routes.Delete:output_type -> google.cloud.compute.v1.Operation + 1948, // 3506: google.cloud.compute.v1.Routes.Get:output_type -> google.cloud.compute.v1.Route + 1695, // 3507: google.cloud.compute.v1.Routes.Insert:output_type -> google.cloud.compute.v1.Operation + 1950, // 3508: google.cloud.compute.v1.Routes.List:output_type -> google.cloud.compute.v1.RouteList + 2326, // 3509: google.cloud.compute.v1.Routes.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3510: google.cloud.compute.v1.SecurityPolicies.AddRule:output_type -> google.cloud.compute.v1.Operation + 1989, // 3511: google.cloud.compute.v1.SecurityPolicies.AggregatedList:output_type -> google.cloud.compute.v1.SecurityPoliciesAggregatedList + 1695, // 3512: google.cloud.compute.v1.SecurityPolicies.Delete:output_type -> google.cloud.compute.v1.Operation + 1993, // 3513: google.cloud.compute.v1.SecurityPolicies.Get:output_type -> google.cloud.compute.v1.SecurityPolicy + 2005, // 3514: google.cloud.compute.v1.SecurityPolicies.GetRule:output_type -> google.cloud.compute.v1.SecurityPolicyRule + 1695, // 3515: google.cloud.compute.v1.SecurityPolicies.Insert:output_type -> google.cloud.compute.v1.Operation + 2002, // 3516: google.cloud.compute.v1.SecurityPolicies.List:output_type -> google.cloud.compute.v1.SecurityPolicyList + 1990, // 3517: google.cloud.compute.v1.SecurityPolicies.ListPreconfiguredExpressionSets:output_type -> google.cloud.compute.v1.SecurityPoliciesListPreconfiguredExpressionSetsResponse + 1695, // 3518: google.cloud.compute.v1.SecurityPolicies.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3519: google.cloud.compute.v1.SecurityPolicies.PatchRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3520: google.cloud.compute.v1.SecurityPolicies.RemoveRule:output_type -> google.cloud.compute.v1.Operation + 1695, // 3521: google.cloud.compute.v1.SecurityPolicies.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2029, // 3522: google.cloud.compute.v1.ServiceAttachments.AggregatedList:output_type -> google.cloud.compute.v1.ServiceAttachmentAggregatedList + 1695, // 3523: google.cloud.compute.v1.ServiceAttachments.Delete:output_type -> google.cloud.compute.v1.Operation + 2028, // 3524: google.cloud.compute.v1.ServiceAttachments.Get:output_type -> google.cloud.compute.v1.ServiceAttachment + 1783, // 3525: google.cloud.compute.v1.ServiceAttachments.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3526: google.cloud.compute.v1.ServiceAttachments.Insert:output_type -> google.cloud.compute.v1.Operation + 2032, // 3527: google.cloud.compute.v1.ServiceAttachments.List:output_type -> google.cloud.compute.v1.ServiceAttachmentList + 1695, // 3528: google.cloud.compute.v1.ServiceAttachments.Patch:output_type -> google.cloud.compute.v1.Operation + 1783, // 3529: google.cloud.compute.v1.ServiceAttachments.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3530: google.cloud.compute.v1.ServiceAttachments.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 2151, // 3531: google.cloud.compute.v1.SnapshotSettingsService.Get:output_type -> google.cloud.compute.v1.SnapshotSettings + 1695, // 3532: google.cloud.compute.v1.SnapshotSettingsService.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3533: google.cloud.compute.v1.Snapshots.Delete:output_type -> google.cloud.compute.v1.Operation + 2147, // 3534: google.cloud.compute.v1.Snapshots.Get:output_type -> google.cloud.compute.v1.Snapshot + 1783, // 3535: google.cloud.compute.v1.Snapshots.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3536: google.cloud.compute.v1.Snapshots.Insert:output_type -> google.cloud.compute.v1.Operation + 2149, // 3537: google.cloud.compute.v1.Snapshots.List:output_type -> google.cloud.compute.v1.SnapshotList + 1783, // 3538: google.cloud.compute.v1.Snapshots.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3539: google.cloud.compute.v1.Snapshots.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2326, // 3540: google.cloud.compute.v1.Snapshots.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3541: google.cloud.compute.v1.Snapshots.UpdateKmsKey:output_type -> google.cloud.compute.v1.Operation + 2161, // 3542: google.cloud.compute.v1.SslCertificates.AggregatedList:output_type -> google.cloud.compute.v1.SslCertificateAggregatedList + 1695, // 3543: google.cloud.compute.v1.SslCertificates.Delete:output_type -> google.cloud.compute.v1.Operation + 2160, // 3544: google.cloud.compute.v1.SslCertificates.Get:output_type -> google.cloud.compute.v1.SslCertificate + 1695, // 3545: google.cloud.compute.v1.SslCertificates.Insert:output_type -> google.cloud.compute.v1.Operation + 2162, // 3546: google.cloud.compute.v1.SslCertificates.List:output_type -> google.cloud.compute.v1.SslCertificateList + 2166, // 3547: google.cloud.compute.v1.SslPolicies.AggregatedList:output_type -> google.cloud.compute.v1.SslPoliciesAggregatedList + 1695, // 3548: google.cloud.compute.v1.SslPolicies.Delete:output_type -> google.cloud.compute.v1.Operation + 2170, // 3549: google.cloud.compute.v1.SslPolicies.Get:output_type -> google.cloud.compute.v1.SslPolicy + 1695, // 3550: google.cloud.compute.v1.SslPolicies.Insert:output_type -> google.cloud.compute.v1.Operation + 2167, // 3551: google.cloud.compute.v1.SslPolicies.List:output_type -> google.cloud.compute.v1.SslPoliciesList + 2168, // 3552: google.cloud.compute.v1.SslPolicies.ListAvailableFeatures:output_type -> google.cloud.compute.v1.SslPoliciesListAvailableFeaturesResponse + 1695, // 3553: google.cloud.compute.v1.SslPolicies.Patch:output_type -> google.cloud.compute.v1.Operation + 2199, // 3554: google.cloud.compute.v1.StoragePoolTypes.AggregatedList:output_type -> google.cloud.compute.v1.StoragePoolTypeAggregatedList + 2198, // 3555: google.cloud.compute.v1.StoragePoolTypes.Get:output_type -> google.cloud.compute.v1.StoragePoolType + 2200, // 3556: google.cloud.compute.v1.StoragePoolTypes.List:output_type -> google.cloud.compute.v1.StoragePoolTypeList + 2191, // 3557: google.cloud.compute.v1.StoragePools.AggregatedList:output_type -> google.cloud.compute.v1.StoragePoolAggregatedList + 1695, // 3558: google.cloud.compute.v1.StoragePools.Delete:output_type -> google.cloud.compute.v1.Operation + 2190, // 3559: google.cloud.compute.v1.StoragePools.Get:output_type -> google.cloud.compute.v1.StoragePool + 1783, // 3560: google.cloud.compute.v1.StoragePools.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3561: google.cloud.compute.v1.StoragePools.Insert:output_type -> google.cloud.compute.v1.Operation + 2194, // 3562: google.cloud.compute.v1.StoragePools.List:output_type -> google.cloud.compute.v1.StoragePoolList + 2195, // 3563: google.cloud.compute.v1.StoragePools.ListDisks:output_type -> google.cloud.compute.v1.StoragePoolListDisks + 1783, // 3564: google.cloud.compute.v1.StoragePools.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 2326, // 3565: google.cloud.compute.v1.StoragePools.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3566: google.cloud.compute.v1.StoragePools.Update:output_type -> google.cloud.compute.v1.Operation + 2204, // 3567: google.cloud.compute.v1.Subnetworks.AggregatedList:output_type -> google.cloud.compute.v1.SubnetworkAggregatedList + 1695, // 3568: google.cloud.compute.v1.Subnetworks.Delete:output_type -> google.cloud.compute.v1.Operation + 1695, // 3569: google.cloud.compute.v1.Subnetworks.ExpandIpCidrRange:output_type -> google.cloud.compute.v1.Operation + 2203, // 3570: google.cloud.compute.v1.Subnetworks.Get:output_type -> google.cloud.compute.v1.Subnetwork + 1783, // 3571: google.cloud.compute.v1.Subnetworks.GetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3572: google.cloud.compute.v1.Subnetworks.Insert:output_type -> google.cloud.compute.v1.Operation + 2205, // 3573: google.cloud.compute.v1.Subnetworks.List:output_type -> google.cloud.compute.v1.SubnetworkList + 2376, // 3574: google.cloud.compute.v1.Subnetworks.ListUsable:output_type -> google.cloud.compute.v1.UsableSubnetworksAggregatedList + 1695, // 3575: google.cloud.compute.v1.Subnetworks.Patch:output_type -> google.cloud.compute.v1.Operation + 1783, // 3576: google.cloud.compute.v1.Subnetworks.SetIamPolicy:output_type -> google.cloud.compute.v1.Policy + 1695, // 3577: google.cloud.compute.v1.Subnetworks.SetPrivateIpGoogleAccess:output_type -> google.cloud.compute.v1.Operation + 2326, // 3578: google.cloud.compute.v1.Subnetworks.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3579: google.cloud.compute.v1.TargetGrpcProxies.Delete:output_type -> google.cloud.compute.v1.Operation + 2223, // 3580: google.cloud.compute.v1.TargetGrpcProxies.Get:output_type -> google.cloud.compute.v1.TargetGrpcProxy + 1695, // 3581: google.cloud.compute.v1.TargetGrpcProxies.Insert:output_type -> google.cloud.compute.v1.Operation + 2224, // 3582: google.cloud.compute.v1.TargetGrpcProxies.List:output_type -> google.cloud.compute.v1.TargetGrpcProxyList + 1695, // 3583: google.cloud.compute.v1.TargetGrpcProxies.Patch:output_type -> google.cloud.compute.v1.Operation + 2227, // 3584: google.cloud.compute.v1.TargetHttpProxies.AggregatedList:output_type -> google.cloud.compute.v1.TargetHttpProxyAggregatedList + 1695, // 3585: google.cloud.compute.v1.TargetHttpProxies.Delete:output_type -> google.cloud.compute.v1.Operation + 2226, // 3586: google.cloud.compute.v1.TargetHttpProxies.Get:output_type -> google.cloud.compute.v1.TargetHttpProxy + 1695, // 3587: google.cloud.compute.v1.TargetHttpProxies.Insert:output_type -> google.cloud.compute.v1.Operation + 2228, // 3588: google.cloud.compute.v1.TargetHttpProxies.List:output_type -> google.cloud.compute.v1.TargetHttpProxyList + 1695, // 3589: google.cloud.compute.v1.TargetHttpProxies.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3590: google.cloud.compute.v1.TargetHttpProxies.SetUrlMap:output_type -> google.cloud.compute.v1.Operation + 2234, // 3591: google.cloud.compute.v1.TargetHttpsProxies.AggregatedList:output_type -> google.cloud.compute.v1.TargetHttpsProxyAggregatedList + 1695, // 3592: google.cloud.compute.v1.TargetHttpsProxies.Delete:output_type -> google.cloud.compute.v1.Operation + 2233, // 3593: google.cloud.compute.v1.TargetHttpsProxies.Get:output_type -> google.cloud.compute.v1.TargetHttpsProxy + 1695, // 3594: google.cloud.compute.v1.TargetHttpsProxies.Insert:output_type -> google.cloud.compute.v1.Operation + 2235, // 3595: google.cloud.compute.v1.TargetHttpsProxies.List:output_type -> google.cloud.compute.v1.TargetHttpsProxyList + 1695, // 3596: google.cloud.compute.v1.TargetHttpsProxies.Patch:output_type -> google.cloud.compute.v1.Operation + 1695, // 3597: google.cloud.compute.v1.TargetHttpsProxies.SetCertificateMap:output_type -> google.cloud.compute.v1.Operation + 1695, // 3598: google.cloud.compute.v1.TargetHttpsProxies.SetQuicOverride:output_type -> google.cloud.compute.v1.Operation + 1695, // 3599: google.cloud.compute.v1.TargetHttpsProxies.SetSslCertificates:output_type -> google.cloud.compute.v1.Operation + 1695, // 3600: google.cloud.compute.v1.TargetHttpsProxies.SetSslPolicy:output_type -> google.cloud.compute.v1.Operation + 1695, // 3601: google.cloud.compute.v1.TargetHttpsProxies.SetUrlMap:output_type -> google.cloud.compute.v1.Operation + 2237, // 3602: google.cloud.compute.v1.TargetInstances.AggregatedList:output_type -> google.cloud.compute.v1.TargetInstanceAggregatedList + 1695, // 3603: google.cloud.compute.v1.TargetInstances.Delete:output_type -> google.cloud.compute.v1.Operation + 2236, // 3604: google.cloud.compute.v1.TargetInstances.Get:output_type -> google.cloud.compute.v1.TargetInstance + 1695, // 3605: google.cloud.compute.v1.TargetInstances.Insert:output_type -> google.cloud.compute.v1.Operation + 2238, // 3606: google.cloud.compute.v1.TargetInstances.List:output_type -> google.cloud.compute.v1.TargetInstanceList + 1695, // 3607: google.cloud.compute.v1.TargetInstances.SetSecurityPolicy:output_type -> google.cloud.compute.v1.Operation + 2326, // 3608: google.cloud.compute.v1.TargetInstances.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3609: google.cloud.compute.v1.TargetPools.AddHealthCheck:output_type -> google.cloud.compute.v1.Operation + 1695, // 3610: google.cloud.compute.v1.TargetPools.AddInstance:output_type -> google.cloud.compute.v1.Operation + 2241, // 3611: google.cloud.compute.v1.TargetPools.AggregatedList:output_type -> google.cloud.compute.v1.TargetPoolAggregatedList + 1695, // 3612: google.cloud.compute.v1.TargetPools.Delete:output_type -> google.cloud.compute.v1.Operation + 2240, // 3613: google.cloud.compute.v1.TargetPools.Get:output_type -> google.cloud.compute.v1.TargetPool + 2242, // 3614: google.cloud.compute.v1.TargetPools.GetHealth:output_type -> google.cloud.compute.v1.TargetPoolInstanceHealth + 1695, // 3615: google.cloud.compute.v1.TargetPools.Insert:output_type -> google.cloud.compute.v1.Operation + 2243, // 3616: google.cloud.compute.v1.TargetPools.List:output_type -> google.cloud.compute.v1.TargetPoolList + 1695, // 3617: google.cloud.compute.v1.TargetPools.RemoveHealthCheck:output_type -> google.cloud.compute.v1.Operation + 1695, // 3618: google.cloud.compute.v1.TargetPools.RemoveInstance:output_type -> google.cloud.compute.v1.Operation + 1695, // 3619: google.cloud.compute.v1.TargetPools.SetBackup:output_type -> google.cloud.compute.v1.Operation + 1695, // 3620: google.cloud.compute.v1.TargetPools.SetSecurityPolicy:output_type -> google.cloud.compute.v1.Operation + 2326, // 3621: google.cloud.compute.v1.TargetPools.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3622: google.cloud.compute.v1.TargetSslProxies.Delete:output_type -> google.cloud.compute.v1.Operation + 2254, // 3623: google.cloud.compute.v1.TargetSslProxies.Get:output_type -> google.cloud.compute.v1.TargetSslProxy + 1695, // 3624: google.cloud.compute.v1.TargetSslProxies.Insert:output_type -> google.cloud.compute.v1.Operation + 2255, // 3625: google.cloud.compute.v1.TargetSslProxies.List:output_type -> google.cloud.compute.v1.TargetSslProxyList + 1695, // 3626: google.cloud.compute.v1.TargetSslProxies.SetBackendService:output_type -> google.cloud.compute.v1.Operation + 1695, // 3627: google.cloud.compute.v1.TargetSslProxies.SetCertificateMap:output_type -> google.cloud.compute.v1.Operation + 1695, // 3628: google.cloud.compute.v1.TargetSslProxies.SetProxyHeader:output_type -> google.cloud.compute.v1.Operation + 1695, // 3629: google.cloud.compute.v1.TargetSslProxies.SetSslCertificates:output_type -> google.cloud.compute.v1.Operation + 1695, // 3630: google.cloud.compute.v1.TargetSslProxies.SetSslPolicy:output_type -> google.cloud.compute.v1.Operation + 2326, // 3631: google.cloud.compute.v1.TargetSslProxies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 2260, // 3632: google.cloud.compute.v1.TargetTcpProxies.AggregatedList:output_type -> google.cloud.compute.v1.TargetTcpProxyAggregatedList + 1695, // 3633: google.cloud.compute.v1.TargetTcpProxies.Delete:output_type -> google.cloud.compute.v1.Operation + 2259, // 3634: google.cloud.compute.v1.TargetTcpProxies.Get:output_type -> google.cloud.compute.v1.TargetTcpProxy + 1695, // 3635: google.cloud.compute.v1.TargetTcpProxies.Insert:output_type -> google.cloud.compute.v1.Operation + 2261, // 3636: google.cloud.compute.v1.TargetTcpProxies.List:output_type -> google.cloud.compute.v1.TargetTcpProxyList + 1695, // 3637: google.cloud.compute.v1.TargetTcpProxies.SetBackendService:output_type -> google.cloud.compute.v1.Operation + 1695, // 3638: google.cloud.compute.v1.TargetTcpProxies.SetProxyHeader:output_type -> google.cloud.compute.v1.Operation + 2326, // 3639: google.cloud.compute.v1.TargetTcpProxies.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 2263, // 3640: google.cloud.compute.v1.TargetVpnGateways.AggregatedList:output_type -> google.cloud.compute.v1.TargetVpnGatewayAggregatedList + 1695, // 3641: google.cloud.compute.v1.TargetVpnGateways.Delete:output_type -> google.cloud.compute.v1.Operation + 2262, // 3642: google.cloud.compute.v1.TargetVpnGateways.Get:output_type -> google.cloud.compute.v1.TargetVpnGateway + 1695, // 3643: google.cloud.compute.v1.TargetVpnGateways.Insert:output_type -> google.cloud.compute.v1.Operation + 2264, // 3644: google.cloud.compute.v1.TargetVpnGateways.List:output_type -> google.cloud.compute.v1.TargetVpnGatewayList + 1695, // 3645: google.cloud.compute.v1.TargetVpnGateways.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2369, // 3646: google.cloud.compute.v1.UrlMaps.AggregatedList:output_type -> google.cloud.compute.v1.UrlMapsAggregatedList + 1695, // 3647: google.cloud.compute.v1.UrlMaps.Delete:output_type -> google.cloud.compute.v1.Operation + 2363, // 3648: google.cloud.compute.v1.UrlMaps.Get:output_type -> google.cloud.compute.v1.UrlMap + 1695, // 3649: google.cloud.compute.v1.UrlMaps.Insert:output_type -> google.cloud.compute.v1.Operation + 1695, // 3650: google.cloud.compute.v1.UrlMaps.InvalidateCache:output_type -> google.cloud.compute.v1.Operation + 2364, // 3651: google.cloud.compute.v1.UrlMaps.List:output_type -> google.cloud.compute.v1.UrlMapList + 1695, // 3652: google.cloud.compute.v1.UrlMaps.Patch:output_type -> google.cloud.compute.v1.Operation + 2326, // 3653: google.cloud.compute.v1.UrlMaps.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 1695, // 3654: google.cloud.compute.v1.UrlMaps.Update:output_type -> google.cloud.compute.v1.Operation + 2372, // 3655: google.cloud.compute.v1.UrlMaps.Validate:output_type -> google.cloud.compute.v1.UrlMapsValidateResponse + 2390, // 3656: google.cloud.compute.v1.VpnGateways.AggregatedList:output_type -> google.cloud.compute.v1.VpnGatewayAggregatedList + 1695, // 3657: google.cloud.compute.v1.VpnGateways.Delete:output_type -> google.cloud.compute.v1.Operation + 2389, // 3658: google.cloud.compute.v1.VpnGateways.Get:output_type -> google.cloud.compute.v1.VpnGateway + 2398, // 3659: google.cloud.compute.v1.VpnGateways.GetStatus:output_type -> google.cloud.compute.v1.VpnGatewaysGetStatusResponse + 1695, // 3660: google.cloud.compute.v1.VpnGateways.Insert:output_type -> google.cloud.compute.v1.Operation + 2391, // 3661: google.cloud.compute.v1.VpnGateways.List:output_type -> google.cloud.compute.v1.VpnGatewayList + 1695, // 3662: google.cloud.compute.v1.VpnGateways.SetLabels:output_type -> google.cloud.compute.v1.Operation + 2326, // 3663: google.cloud.compute.v1.VpnGateways.TestIamPermissions:output_type -> google.cloud.compute.v1.TestPermissionsResponse + 2401, // 3664: google.cloud.compute.v1.VpnTunnels.AggregatedList:output_type -> google.cloud.compute.v1.VpnTunnelAggregatedList + 1695, // 3665: google.cloud.compute.v1.VpnTunnels.Delete:output_type -> google.cloud.compute.v1.Operation + 2400, // 3666: google.cloud.compute.v1.VpnTunnels.Get:output_type -> google.cloud.compute.v1.VpnTunnel + 1695, // 3667: google.cloud.compute.v1.VpnTunnels.Insert:output_type -> google.cloud.compute.v1.Operation + 2403, // 3668: google.cloud.compute.v1.VpnTunnels.List:output_type -> google.cloud.compute.v1.VpnTunnelList + 1695, // 3669: google.cloud.compute.v1.VpnTunnels.SetLabels:output_type -> google.cloud.compute.v1.Operation + 1695, // 3670: google.cloud.compute.v1.WireGroups.Delete:output_type -> google.cloud.compute.v1.Operation + 2418, // 3671: google.cloud.compute.v1.WireGroups.Get:output_type -> google.cloud.compute.v1.WireGroup + 1695, // 3672: google.cloud.compute.v1.WireGroups.Insert:output_type -> google.cloud.compute.v1.Operation + 2421, // 3673: google.cloud.compute.v1.WireGroups.List:output_type -> google.cloud.compute.v1.WireGroupList + 1695, // 3674: google.cloud.compute.v1.WireGroups.Patch:output_type -> google.cloud.compute.v1.Operation + 826, // 3675: google.cloud.compute.v1.ZoneOperations.Delete:output_type -> google.cloud.compute.v1.DeleteZoneOperationResponse + 1695, // 3676: google.cloud.compute.v1.ZoneOperations.Get:output_type -> google.cloud.compute.v1.Operation + 1697, // 3677: google.cloud.compute.v1.ZoneOperations.List:output_type -> google.cloud.compute.v1.OperationList + 1695, // 3678: google.cloud.compute.v1.ZoneOperations.Wait:output_type -> google.cloud.compute.v1.Operation + 1695, // 3679: google.cloud.compute.v1.ZoneVmExtensionPolicies.Delete:output_type -> google.cloud.compute.v1.Operation + 2384, // 3680: google.cloud.compute.v1.ZoneVmExtensionPolicies.Get:output_type -> google.cloud.compute.v1.VmExtensionPolicy + 1695, // 3681: google.cloud.compute.v1.ZoneVmExtensionPolicies.Insert:output_type -> google.cloud.compute.v1.Operation + 2388, // 3682: google.cloud.compute.v1.ZoneVmExtensionPolicies.List:output_type -> google.cloud.compute.v1.VmExtensionPolicyList + 1695, // 3683: google.cloud.compute.v1.ZoneVmExtensionPolicies.Update:output_type -> google.cloud.compute.v1.Operation + 2430, // 3684: google.cloud.compute.v1.Zones.Get:output_type -> google.cloud.compute.v1.Zone + 2431, // 3685: google.cloud.compute.v1.Zones.List:output_type -> google.cloud.compute.v1.ZoneList + 2723, // [2723:3686] is the sub-list for method output_type + 1760, // [1760:2723] is the sub-list for method input_type + 1760, // [1760:1760] is the sub-list for extension type_name + 1760, // [1760:1760] is the sub-list for extension extendee + 0, // [0:1760] is the sub-list for field type_name } func init() { file_google_cloud_compute_v1_compute_proto_init() } @@ -238273,7 +247839,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[103].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[104].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[105].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[108].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[106].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[109].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[110].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[111].OneofWrappers = []any{} @@ -238297,11 +247863,11 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[129].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[130].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[131].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[132].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[133].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[134].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[135].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[136].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[137].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[138].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[139].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[140].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[141].OneofWrappers = []any{} @@ -238324,10 +247890,10 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[158].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[159].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[160].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[161].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[162].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[163].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[164].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[165].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[166].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[167].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[168].OneofWrappers = []any{} @@ -238346,16 +247912,16 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[181].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[182].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[183].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[184].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[185].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[186].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[187].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[189].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[190].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[191].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[192].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[193].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[194].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[195].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[196].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[197].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[198].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[199].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[200].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[201].OneofWrappers = []any{} @@ -238366,12 +247932,12 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[206].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[207].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[208].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[209].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[210].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[211].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[212].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[213].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[214].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[215].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[216].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[217].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[218].OneofWrappers = []any{} @@ -238382,7 +247948,6 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[223].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[224].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[225].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[226].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[227].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[228].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[229].OneofWrappers = []any{} @@ -238397,7 +247962,10 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[238].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[239].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[240].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[241].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[242].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[243].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[244].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[245].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[246].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[247].OneofWrappers = []any{} @@ -238405,10 +247973,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[249].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[250].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[251].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[252].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[253].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[254].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[255].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[256].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[257].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[258].OneofWrappers = []any{} @@ -238426,6 +247991,8 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[270].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[271].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[272].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[273].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[274].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[275].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[276].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[277].OneofWrappers = []any{} @@ -238436,12 +248003,12 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[282].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[283].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[284].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[285].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[286].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[287].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[288].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[289].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[290].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[291].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[292].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[293].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[294].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[295].OneofWrappers = []any{} @@ -238455,8 +248022,6 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[303].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[304].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[305].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[306].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[307].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[308].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[309].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[310].OneofWrappers = []any{} @@ -238475,6 +248040,8 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[323].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[324].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[325].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[326].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[327].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[328].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[329].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[330].OneofWrappers = []any{} @@ -238489,14 +248056,15 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[339].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[340].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[341].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[342].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[343].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[344].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[345].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[346].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[347].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[348].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[349].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[350].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[351].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[352].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[353].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[354].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[355].OneofWrappers = []any{} @@ -238505,24 +248073,23 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[358].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[359].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[360].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[361].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[362].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[363].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[364].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[365].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[366].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[367].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[368].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[369].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[370].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[371].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[372].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[373].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[374].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[375].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[376].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[377].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[378].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[379].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[380].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[381].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[382].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[383].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[384].OneofWrappers = []any{} @@ -238533,12 +248100,10 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[389].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[390].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[391].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[392].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[393].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[394].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[395].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[396].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[397].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[398].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[399].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[400].OneofWrappers = []any{} @@ -238555,38 +248120,35 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[411].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[412].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[413].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[414].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[415].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[416].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[417].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[418].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[419].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[420].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[421].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[422].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[423].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[424].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[425].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[448].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[450].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[455].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[456].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[457].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[458].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[459].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[460].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[461].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[462].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[463].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[464].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[465].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[466].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[426].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[427].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[428].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[429].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[430].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[431].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[432].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[434].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[435].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[436].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[437].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[438].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[441].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[442].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[443].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[444].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[467].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[468].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[469].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[470].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[471].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[472].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[473].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[474].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[475].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[476].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[477].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[478].OneofWrappers = []any{} @@ -238594,57 +248156,52 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[480].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[481].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[482].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[483].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[484].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[485].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[486].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[487].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[488].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[489].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[490].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[491].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[492].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[493].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[494].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[495].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[496].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[497].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[498].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[499].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[500].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[501].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[502].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[503].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[504].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[518].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[549].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[552].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[554].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[558].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[559].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[560].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[561].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[562].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[563].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[566].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[567].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[576].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[586].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[588].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[505].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[506].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[507].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[529].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[530].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[544].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[580].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[583].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[585].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[589].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[590].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[591].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[592].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[593].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[594].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[597].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[600].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[601].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[602].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[603].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[604].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[605].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[598].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[607].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[608].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[609].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[610].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[611].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[612].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[613].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[614].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[615].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[616].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[617].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[618].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[619].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[620].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[621].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[622].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[623].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[624].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[625].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[626].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[627].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[628].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[629].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[630].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[631].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[632].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[633].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[634].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[635].OneofWrappers = []any{} @@ -238661,6 +248218,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[647].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[648].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[649].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[650].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[651].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[652].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[653].OneofWrappers = []any{} @@ -238677,13 +248235,11 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[664].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[665].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[666].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[667].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[668].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[669].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[670].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[671].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[672].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[673].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[674].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[675].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[676].OneofWrappers = []any{} @@ -238695,7 +248251,6 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[682].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[683].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[684].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[685].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[686].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[687].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[688].OneofWrappers = []any{} @@ -238751,6 +248306,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[738].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[739].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[740].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[741].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[742].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[743].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[744].OneofWrappers = []any{} @@ -238760,6 +248316,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[748].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[749].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[750].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[751].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[752].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[753].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[754].OneofWrappers = []any{} @@ -238781,18 +248338,26 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[770].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[771].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[772].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[773].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[774].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[775].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[776].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[777].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[778].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[779].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[780].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[781].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[783].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[784].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[785].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[786].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[787].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[788].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[789].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[792].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[790].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[791].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[793].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[794].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[795].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[796].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[797].OneofWrappers = []any{} @@ -238803,6 +248368,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[802].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[803].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[804].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[805].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[806].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[807].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[808].OneofWrappers = []any{} @@ -238811,53 +248377,47 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[811].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[812].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[813].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[817].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[819].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[814].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[816].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[818].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[820].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[821].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[822].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[824].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[825].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[826].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[827].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[828].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[830].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[831].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[832].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[834].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[835].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[836].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[837].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[838].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[839].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[840].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[841].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[842].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[843].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[844].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[845].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[846].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[847].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[848].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[849].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[850].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[851].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[852].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[853].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[854].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[855].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[856].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[857].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[858].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[859].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[860].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[861].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[862].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[863].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[864].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[865].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[866].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[867].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[868].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[869].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[870].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[871].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[872].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[873].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[874].OneofWrappers = []any{} @@ -238865,14 +248425,12 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[876].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[877].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[878].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[879].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[880].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[881].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[882].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[883].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[884].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[885].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[886].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[887].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[888].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[889].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[890].OneofWrappers = []any{} @@ -238883,11 +248441,12 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[895].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[896].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[897].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[898].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[899].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[900].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[901].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[902].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[903].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[904].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[905].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[906].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[907].OneofWrappers = []any{} @@ -238895,11 +248454,11 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[909].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[910].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[911].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[912].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[913].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[914].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[915].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[916].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[917].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[918].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[919].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[920].OneofWrappers = []any{} @@ -238911,7 +248470,6 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[926].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[927].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[928].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[929].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[930].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[931].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[932].OneofWrappers = []any{} @@ -238928,11 +248486,9 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[943].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[944].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[945].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[946].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[947].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[948].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[949].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[950].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[951].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[952].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[953].OneofWrappers = []any{} @@ -238945,7 +248501,6 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[960].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[961].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[962].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[963].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[964].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[965].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[966].OneofWrappers = []any{} @@ -239043,6 +248598,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1058].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1059].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1060].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1061].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1062].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1063].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1064].OneofWrappers = []any{} @@ -239050,6 +248606,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1066].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1067].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1068].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1069].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1070].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1071].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1072].OneofWrappers = []any{} @@ -239064,6 +248621,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1081].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1082].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1083].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1084].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1085].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1086].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1087].OneofWrappers = []any{} @@ -239081,6 +248639,8 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1099].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1100].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1101].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1102].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1103].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1104].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1105].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1106].OneofWrappers = []any{} @@ -239088,11 +248648,11 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1108].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1109].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1110].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1111].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1112].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1113].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1114].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1115].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1116].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1117].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1118].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1119].OneofWrappers = []any{} @@ -239100,7 +248660,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1121].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1122].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1123].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1124].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1125].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1126].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1127].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1128].OneofWrappers = []any{} @@ -239112,10 +248672,11 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1134].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1135].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1136].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1137].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1138].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1139].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1140].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1141].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1142].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1143].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1144].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1145].OneofWrappers = []any{} @@ -239130,8 +248691,6 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1154].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1155].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1156].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1157].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1158].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1159].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1160].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1161].OneofWrappers = []any{} @@ -239139,9 +248698,9 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1163].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1164].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1165].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1166].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1167].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1168].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1169].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1170].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1171].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1172].OneofWrappers = []any{} @@ -239152,7 +248711,6 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1177].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1178].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1179].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1180].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1181].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1182].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1183].OneofWrappers = []any{} @@ -239164,12 +248722,10 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1189].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1190].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1191].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1192].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1193].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1194].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1195].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1196].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1197].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1198].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1199].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1200].OneofWrappers = []any{} @@ -239196,7 +248752,6 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1221].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1222].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1223].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1224].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1225].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1226].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1227].OneofWrappers = []any{} @@ -239216,6 +248771,8 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1241].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1242].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1243].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1244].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1245].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1246].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1247].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1248].OneofWrappers = []any{} @@ -239225,6 +248782,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1252].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1253].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1254].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1255].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1256].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1257].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1258].OneofWrappers = []any{} @@ -239251,26 +248809,37 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1279].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1280].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1281].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1282].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1283].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1284].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1285].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1286].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1287].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1288].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1289].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1290].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1291].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1292].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1293].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1294].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1295].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1296].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1297].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1298].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1299].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1300].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1301].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1303].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1304].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1305].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1306].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1307].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1308].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1312].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1309].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1310].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1311].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1313].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1314].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1315].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1316].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1317].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1318].OneofWrappers = []any{} @@ -239295,45 +248864,35 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1337].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1338].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1339].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1340].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1341].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1342].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1343].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1344].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1345].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1346].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1347].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1348].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1349].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1350].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1352].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1351].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1353].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1354].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1355].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1357].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1358].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1356].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1359].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1360].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1361].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1362].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1363].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1364].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1365].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1366].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1367].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1368].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1369].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1370].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1371].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1372].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1373].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1374].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1375].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1376].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1377].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1378].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1379].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1380].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1381].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1382].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1383].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1384].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1385].OneofWrappers = []any{} @@ -239345,6 +248904,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1391].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1392].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1393].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1394].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1395].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1396].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1397].OneofWrappers = []any{} @@ -239358,23 +248918,23 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1405].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1406].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1407].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1408].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1409].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1410].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1411].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1412].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1413].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1414].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1415].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1416].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1417].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1418].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1419].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1420].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1421].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1422].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1423].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1424].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1425].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1426].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1427].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1428].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1429].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1430].OneofWrappers = []any{} @@ -239389,7 +248949,6 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1439].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1440].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1441].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1442].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1443].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1444].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1445].OneofWrappers = []any{} @@ -239401,18 +248960,22 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1451].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1452].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1453].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1454].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1455].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1456].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1457].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1458].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1459].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1460].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1461].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1462].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1463].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1464].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1465].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1466].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1467].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1469].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1470].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1471].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1472].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1473].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1474].OneofWrappers = []any{} @@ -239421,12 +248984,12 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1477].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1478].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1479].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1480].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1481].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1482].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1483].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1484].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1485].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1486].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1487].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1488].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1489].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1490].OneofWrappers = []any{} @@ -239444,17 +249007,45 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1502].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1503].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1504].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1505].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1506].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1507].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1508].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1509].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1510].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1511].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1512].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1513].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1514].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1515].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1517].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1518].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1519].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1520].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1521].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1522].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1524].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1525].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1527].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1530].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1532].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1533].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1534].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1535].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1536].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1537].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1538].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1539].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1542].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1543].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1544].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1545].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1546].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1547].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1548].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1549].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1550].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1551].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1552].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1553].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1554].OneofWrappers = []any{} @@ -239468,55 +249059,18 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1562].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1563].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1564].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1565].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1566].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1567].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1568].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1569].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1570].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1571].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1572].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1573].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1574].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1575].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1576].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1577].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1578].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1579].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1580].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1581].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1582].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1583].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1584].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1585].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1586].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1587].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1588].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1589].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1590].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1591].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1592].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1593].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1594].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1595].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1596].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1597].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1598].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1599].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1600].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1602].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1603].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1604].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1605].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1606].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1607].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1608].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1609].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1610].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1611].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1612].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1613].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1614].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1615].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1617].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1618].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1619].OneofWrappers = []any{} @@ -239527,6 +249081,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1624].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1625].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1626].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1627].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1628].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1629].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1630].OneofWrappers = []any{} @@ -239543,6 +249098,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1641].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1642].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1643].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1644].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1645].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1646].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1647].OneofWrappers = []any{} @@ -239553,6 +249109,7 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1652].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1653].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1654].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1655].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1656].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1657].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1658].OneofWrappers = []any{} @@ -239564,7 +249121,6 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1664].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1665].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1666].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1667].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1668].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1669].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1670].OneofWrappers = []any{} @@ -239572,27 +249128,30 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1672].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1673].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1674].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1675].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1676].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1677].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1678].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1679].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1680].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1681].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1682].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1683].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1684].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1685].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1686].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1687].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1688].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1689].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1690].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1691].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1696].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1692].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1693].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1694].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1695].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1697].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1698].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1699].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1700].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1701].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1702].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1703].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1704].OneofWrappers = []any{} @@ -239606,6 +249165,54 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1712].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1714].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1715].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1716].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1717].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1718].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1719].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1720].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1721].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1722].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1723].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1725].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1726].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1727].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1728].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1729].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1730].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1731].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1732].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1733].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1734].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1735].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1736].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1737].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1738].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1739].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1740].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1741].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1742].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1743].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1744].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1745].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1746].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1747].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1748].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1750].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1751].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1752].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1753].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1754].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1755].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1756].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1757].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1758].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1759].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1760].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1765].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1766].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1767].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1768].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1769].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1771].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1772].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1773].OneofWrappers = []any{} @@ -239617,69 +249224,21 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1779].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1780].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1781].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1782].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1783].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1784].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1785].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1786].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1787].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1788].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1789].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1790].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1791].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1792].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1793].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1794].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1795].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1796].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1797].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1798].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1799].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1800].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1801].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1802].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1803].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1804].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1805].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1806].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1807].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1808].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1809].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1810].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1811].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1812].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1813].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1814].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1815].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1816].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1819].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1820].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1821].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1822].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1823].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1824].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1825].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1828].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1829].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1830].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1831].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1832].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1833].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1834].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1835].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1836].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1837].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1841].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1842].OneofWrappers = []any{} - file_google_cloud_compute_v1_compute_proto_msgTypes[1843].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1844].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1845].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1846].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1847].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1848].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1849].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1850].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1851].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1852].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1853].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1854].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1855].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1856].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1857].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1858].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1859].OneofWrappers = []any{} @@ -239692,15 +249251,85 @@ func file_google_cloud_compute_v1_compute_proto_init() { file_google_cloud_compute_v1_compute_proto_msgTypes[1866].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1867].OneofWrappers = []any{} file_google_cloud_compute_v1_compute_proto_msgTypes[1868].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1869].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1870].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1871].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1872].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1873].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1874].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1875].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1876].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1877].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1878].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1879].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1880].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1881].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1882].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1883].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1884].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1885].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1886].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1887].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1888].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1889].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1890].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1891].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1892].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1893].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1894].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1897].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1898].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1899].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1900].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1901].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1902].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1903].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1905].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1906].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1907].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1908].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1911].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1912].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1913].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1914].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1915].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1916].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1917].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1918].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1919].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1920].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1924].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1925].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1926].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1930].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1931].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1932].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1933].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1934].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1935].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1937].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1938].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1940].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1941].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1942].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1943].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1944].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1945].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1946].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1947].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1948].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1949].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1950].OneofWrappers = []any{} + file_google_cloud_compute_v1_compute_proto_msgTypes[1951].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_cloud_compute_v1_compute_proto_rawDesc), len(file_google_cloud_compute_v1_compute_proto_rawDesc)), - NumEnums: 473, - NumMessages: 2014, + NumEnums: 483, + NumMessages: 2103, NumExtensions: 0, - NumServices: 113, + NumServices: 120, }, GoTypes: file_google_cloud_compute_v1_compute_proto_goTypes, DependencyIndexes: file_google_cloud_compute_v1_compute_proto_depIdxs, diff --git a/vendor/cloud.google.com/go/compute/apiv1/computepb/compute_grpc.pb.go b/vendor/cloud.google.com/go/compute/apiv1/computepb/compute_grpc.pb.go index 86dc7b65..eb72aab0 100644 --- a/vendor/cloud.google.com/go/compute/apiv1/computepb/compute_grpc.pb.go +++ b/vendor/cloud.google.com/go/compute/apiv1/computepb/compute_grpc.pb.go @@ -14,14 +14,14 @@ // Generated by the disco-to-proto3-converter. DO NOT EDIT! // Source Discovery file: compute.v1.json -// Source file revision: 20260227 +// Source file revision: 20260410 // API name: compute // API version: v1 // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.3.0 -// - protoc v6.31.0 +// - protoc v6.33.2 // source: google/cloud/compute/v1/compute.proto package computepb @@ -1069,12 +1069,14 @@ var Autoscalers_ServiceDesc = grpc.ServiceDesc{ const ( BackendBuckets_AddSignedUrlKey_FullMethodName = "/google.cloud.compute.v1.BackendBuckets/AddSignedUrlKey" + BackendBuckets_AggregatedList_FullMethodName = "/google.cloud.compute.v1.BackendBuckets/AggregatedList" BackendBuckets_Delete_FullMethodName = "/google.cloud.compute.v1.BackendBuckets/Delete" BackendBuckets_DeleteSignedUrlKey_FullMethodName = "/google.cloud.compute.v1.BackendBuckets/DeleteSignedUrlKey" BackendBuckets_Get_FullMethodName = "/google.cloud.compute.v1.BackendBuckets/Get" BackendBuckets_GetIamPolicy_FullMethodName = "/google.cloud.compute.v1.BackendBuckets/GetIamPolicy" BackendBuckets_Insert_FullMethodName = "/google.cloud.compute.v1.BackendBuckets/Insert" BackendBuckets_List_FullMethodName = "/google.cloud.compute.v1.BackendBuckets/List" + BackendBuckets_ListUsable_FullMethodName = "/google.cloud.compute.v1.BackendBuckets/ListUsable" BackendBuckets_Patch_FullMethodName = "/google.cloud.compute.v1.BackendBuckets/Patch" BackendBuckets_SetEdgeSecurityPolicy_FullMethodName = "/google.cloud.compute.v1.BackendBuckets/SetEdgeSecurityPolicy" BackendBuckets_SetIamPolicy_FullMethodName = "/google.cloud.compute.v1.BackendBuckets/SetIamPolicy" @@ -1089,6 +1091,12 @@ type BackendBucketsClient interface { // Adds a key for validating requests with signed URLs for this backend // bucket. AddSignedUrlKey(ctx context.Context, in *AddSignedUrlKeyBackendBucketRequest, opts ...grpc.CallOption) (*Operation, error) + // Retrieves the list of all BackendBucket resources, regional and global, + // available to the specified project. + // + // To prevent failure, it is recommended that you set the + // `returnPartialSuccess` parameter to `true`. + AggregatedList(ctx context.Context, in *AggregatedListBackendBucketsRequest, opts ...grpc.CallOption) (*BackendBucketAggregatedList, error) // Deletes the specified BackendBucket resource. Delete(ctx context.Context, in *DeleteBackendBucketRequest, opts ...grpc.CallOption) (*Operation, error) // Deletes a key for validating requests with signed URLs for this backend @@ -1105,6 +1113,8 @@ type BackendBucketsClient interface { // Retrieves the list of BackendBucket resources available to the specified // project. List(ctx context.Context, in *ListBackendBucketsRequest, opts ...grpc.CallOption) (*BackendBucketList, error) + // Retrieves a list of all usable backend buckets in the specified project. + ListUsable(ctx context.Context, in *ListUsableBackendBucketsRequest, opts ...grpc.CallOption) (*BackendBucketListUsable, error) // Updates the specified BackendBucket resource with the data included in the // request. This method supportsPATCH // semantics and uses theJSON merge @@ -1139,6 +1149,15 @@ func (c *backendBucketsClient) AddSignedUrlKey(ctx context.Context, in *AddSigne return out, nil } +func (c *backendBucketsClient) AggregatedList(ctx context.Context, in *AggregatedListBackendBucketsRequest, opts ...grpc.CallOption) (*BackendBucketAggregatedList, error) { + out := new(BackendBucketAggregatedList) + err := c.cc.Invoke(ctx, BackendBuckets_AggregatedList_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *backendBucketsClient) Delete(ctx context.Context, in *DeleteBackendBucketRequest, opts ...grpc.CallOption) (*Operation, error) { out := new(Operation) err := c.cc.Invoke(ctx, BackendBuckets_Delete_FullMethodName, in, out, opts...) @@ -1193,6 +1212,15 @@ func (c *backendBucketsClient) List(ctx context.Context, in *ListBackendBucketsR return out, nil } +func (c *backendBucketsClient) ListUsable(ctx context.Context, in *ListUsableBackendBucketsRequest, opts ...grpc.CallOption) (*BackendBucketListUsable, error) { + out := new(BackendBucketListUsable) + err := c.cc.Invoke(ctx, BackendBuckets_ListUsable_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *backendBucketsClient) Patch(ctx context.Context, in *PatchBackendBucketRequest, opts ...grpc.CallOption) (*Operation, error) { out := new(Operation) err := c.cc.Invoke(ctx, BackendBuckets_Patch_FullMethodName, in, out, opts...) @@ -1245,6 +1273,12 @@ type BackendBucketsServer interface { // Adds a key for validating requests with signed URLs for this backend // bucket. AddSignedUrlKey(context.Context, *AddSignedUrlKeyBackendBucketRequest) (*Operation, error) + // Retrieves the list of all BackendBucket resources, regional and global, + // available to the specified project. + // + // To prevent failure, it is recommended that you set the + // `returnPartialSuccess` parameter to `true`. + AggregatedList(context.Context, *AggregatedListBackendBucketsRequest) (*BackendBucketAggregatedList, error) // Deletes the specified BackendBucket resource. Delete(context.Context, *DeleteBackendBucketRequest) (*Operation, error) // Deletes a key for validating requests with signed URLs for this backend @@ -1261,6 +1295,8 @@ type BackendBucketsServer interface { // Retrieves the list of BackendBucket resources available to the specified // project. List(context.Context, *ListBackendBucketsRequest) (*BackendBucketList, error) + // Retrieves a list of all usable backend buckets in the specified project. + ListUsable(context.Context, *ListUsableBackendBucketsRequest) (*BackendBucketListUsable, error) // Updates the specified BackendBucket resource with the data included in the // request. This method supportsPATCH // semantics and uses theJSON merge @@ -1285,6 +1321,9 @@ type UnimplementedBackendBucketsServer struct { func (UnimplementedBackendBucketsServer) AddSignedUrlKey(context.Context, *AddSignedUrlKeyBackendBucketRequest) (*Operation, error) { return nil, status.Errorf(codes.Unimplemented, "method AddSignedUrlKey not implemented") } +func (UnimplementedBackendBucketsServer) AggregatedList(context.Context, *AggregatedListBackendBucketsRequest) (*BackendBucketAggregatedList, error) { + return nil, status.Errorf(codes.Unimplemented, "method AggregatedList not implemented") +} func (UnimplementedBackendBucketsServer) Delete(context.Context, *DeleteBackendBucketRequest) (*Operation, error) { return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented") } @@ -1303,6 +1342,9 @@ func (UnimplementedBackendBucketsServer) Insert(context.Context, *InsertBackendB func (UnimplementedBackendBucketsServer) List(context.Context, *ListBackendBucketsRequest) (*BackendBucketList, error) { return nil, status.Errorf(codes.Unimplemented, "method List not implemented") } +func (UnimplementedBackendBucketsServer) ListUsable(context.Context, *ListUsableBackendBucketsRequest) (*BackendBucketListUsable, error) { + return nil, status.Errorf(codes.Unimplemented, "method ListUsable not implemented") +} func (UnimplementedBackendBucketsServer) Patch(context.Context, *PatchBackendBucketRequest) (*Operation, error) { return nil, status.Errorf(codes.Unimplemented, "method Patch not implemented") } @@ -1348,6 +1390,24 @@ func _BackendBuckets_AddSignedUrlKey_Handler(srv interface{}, ctx context.Contex return interceptor(ctx, in, info, handler) } +func _BackendBuckets_AggregatedList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(AggregatedListBackendBucketsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(BackendBucketsServer).AggregatedList(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: BackendBuckets_AggregatedList_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(BackendBucketsServer).AggregatedList(ctx, req.(*AggregatedListBackendBucketsRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _BackendBuckets_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(DeleteBackendBucketRequest) if err := dec(in); err != nil { @@ -1456,6 +1516,24 @@ func _BackendBuckets_List_Handler(srv interface{}, ctx context.Context, dec func return interceptor(ctx, in, info, handler) } +func _BackendBuckets_ListUsable_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListUsableBackendBucketsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(BackendBucketsServer).ListUsable(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: BackendBuckets_ListUsable_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(BackendBucketsServer).ListUsable(ctx, req.(*ListUsableBackendBucketsRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _BackendBuckets_Patch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(PatchBackendBucketRequest) if err := dec(in); err != nil { @@ -1557,6 +1635,10 @@ var BackendBuckets_ServiceDesc = grpc.ServiceDesc{ MethodName: "AddSignedUrlKey", Handler: _BackendBuckets_AddSignedUrlKey_Handler, }, + { + MethodName: "AggregatedList", + Handler: _BackendBuckets_AggregatedList_Handler, + }, { MethodName: "Delete", Handler: _BackendBuckets_Delete_Handler, @@ -1581,6 +1663,10 @@ var BackendBuckets_ServiceDesc = grpc.ServiceDesc{ MethodName: "List", Handler: _BackendBuckets_List_Handler, }, + { + MethodName: "ListUsable", + Handler: _BackendBuckets_ListUsable_Handler, + }, { MethodName: "Patch", Handler: _BackendBuckets_Patch_Handler, @@ -2822,6 +2908,7 @@ const ( Disks_StopGroupAsyncReplication_FullMethodName = "/google.cloud.compute.v1.Disks/StopGroupAsyncReplication" Disks_TestIamPermissions_FullMethodName = "/google.cloud.compute.v1.Disks/TestIamPermissions" Disks_Update_FullMethodName = "/google.cloud.compute.v1.Disks/Update" + Disks_UpdateKmsKey_FullMethodName = "/google.cloud.compute.v1.Disks/UpdateKmsKey" ) // DisksClient is the client API for Disks service. @@ -2893,6 +2980,9 @@ type DisksClient interface { // The update is performed only on selected fields included as part // of update-mask. Update(ctx context.Context, in *UpdateDiskRequest, opts ...grpc.CallOption) (*Operation, error) + // Rotates the customer-managed + // encryption key to the latest version for the specified persistent disk. + UpdateKmsKey(ctx context.Context, in *UpdateKmsKeyDiskRequest, opts ...grpc.CallOption) (*Operation, error) } type disksClient struct { @@ -3074,6 +3164,15 @@ func (c *disksClient) Update(ctx context.Context, in *UpdateDiskRequest, opts .. return out, nil } +func (c *disksClient) UpdateKmsKey(ctx context.Context, in *UpdateKmsKeyDiskRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, Disks_UpdateKmsKey_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // DisksServer is the server API for Disks service. // All implementations should embed UnimplementedDisksServer // for forward compatibility @@ -3143,6 +3242,9 @@ type DisksServer interface { // The update is performed only on selected fields included as part // of update-mask. Update(context.Context, *UpdateDiskRequest) (*Operation, error) + // Rotates the customer-managed + // encryption key to the latest version for the specified persistent disk. + UpdateKmsKey(context.Context, *UpdateKmsKeyDiskRequest) (*Operation, error) } // UnimplementedDisksServer should be embedded to have forward compatible implementations. @@ -3206,6 +3308,9 @@ func (UnimplementedDisksServer) TestIamPermissions(context.Context, *TestIamPerm func (UnimplementedDisksServer) Update(context.Context, *UpdateDiskRequest) (*Operation, error) { return nil, status.Errorf(codes.Unimplemented, "method Update not implemented") } +func (UnimplementedDisksServer) UpdateKmsKey(context.Context, *UpdateKmsKeyDiskRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method UpdateKmsKey not implemented") +} // UnsafeDisksServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to DisksServer will @@ -3560,6 +3665,24 @@ func _Disks_Update_Handler(srv interface{}, ctx context.Context, dec func(interf return interceptor(ctx, in, info, handler) } +func _Disks_UpdateKmsKey_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(UpdateKmsKeyDiskRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(DisksServer).UpdateKmsKey(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Disks_UpdateKmsKey_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(DisksServer).UpdateKmsKey(ctx, req.(*UpdateKmsKeyDiskRequest)) + } + return interceptor(ctx, in, info, handler) +} + // Disks_ServiceDesc is the grpc.ServiceDesc for Disks service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) @@ -3643,6 +3766,10 @@ var Disks_ServiceDesc = grpc.ServiceDesc{ MethodName: "Update", Handler: _Disks_Update_Handler, }, + { + MethodName: "UpdateKmsKey", + Handler: _Disks_UpdateKmsKey_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "google/cloud/compute/v1/compute.proto", @@ -13354,6 +13481,336 @@ var Instances_ServiceDesc = grpc.ServiceDesc{ Metadata: "google/cloud/compute/v1/compute.proto", } +const ( + InstantSnapshotGroups_Delete_FullMethodName = "/google.cloud.compute.v1.InstantSnapshotGroups/Delete" + InstantSnapshotGroups_Get_FullMethodName = "/google.cloud.compute.v1.InstantSnapshotGroups/Get" + InstantSnapshotGroups_GetIamPolicy_FullMethodName = "/google.cloud.compute.v1.InstantSnapshotGroups/GetIamPolicy" + InstantSnapshotGroups_Insert_FullMethodName = "/google.cloud.compute.v1.InstantSnapshotGroups/Insert" + InstantSnapshotGroups_List_FullMethodName = "/google.cloud.compute.v1.InstantSnapshotGroups/List" + InstantSnapshotGroups_SetIamPolicy_FullMethodName = "/google.cloud.compute.v1.InstantSnapshotGroups/SetIamPolicy" + InstantSnapshotGroups_TestIamPermissions_FullMethodName = "/google.cloud.compute.v1.InstantSnapshotGroups/TestIamPermissions" +) + +// InstantSnapshotGroupsClient is the client API for InstantSnapshotGroups 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. +type InstantSnapshotGroupsClient interface { + // deletes a Zonal InstantSnapshotGroup resource + Delete(ctx context.Context, in *DeleteInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Operation, error) + // returns the specified InstantSnapshotGroup resource in the specified zone. + Get(ctx context.Context, in *GetInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*InstantSnapshotGroup, error) + // Gets the access control policy for a resource. May be empty if no such + // policy or resource exists. + GetIamPolicy(ctx context.Context, in *GetIamPolicyInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Policy, error) + // inserts a Zonal InstantSnapshotGroup resource + Insert(ctx context.Context, in *InsertInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Operation, error) + // retrieves the list of InstantSnapshotGroup resources contained within + // the specified zone. + List(ctx context.Context, in *ListInstantSnapshotGroupsRequest, opts ...grpc.CallOption) (*ListInstantSnapshotGroups, error) + // Sets the access control policy on the specified resource. + // Replaces any existing policy. + SetIamPolicy(ctx context.Context, in *SetIamPolicyInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Policy, error) + // Returns permissions that a caller has on the specified resource. + TestIamPermissions(ctx context.Context, in *TestIamPermissionsInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*TestPermissionsResponse, error) +} + +type instantSnapshotGroupsClient struct { + cc grpc.ClientConnInterface +} + +func NewInstantSnapshotGroupsClient(cc grpc.ClientConnInterface) InstantSnapshotGroupsClient { + return &instantSnapshotGroupsClient{cc} +} + +func (c *instantSnapshotGroupsClient) Delete(ctx context.Context, in *DeleteInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, InstantSnapshotGroups_Delete_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *instantSnapshotGroupsClient) Get(ctx context.Context, in *GetInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*InstantSnapshotGroup, error) { + out := new(InstantSnapshotGroup) + err := c.cc.Invoke(ctx, InstantSnapshotGroups_Get_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *instantSnapshotGroupsClient) GetIamPolicy(ctx context.Context, in *GetIamPolicyInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Policy, error) { + out := new(Policy) + err := c.cc.Invoke(ctx, InstantSnapshotGroups_GetIamPolicy_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *instantSnapshotGroupsClient) Insert(ctx context.Context, in *InsertInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, InstantSnapshotGroups_Insert_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *instantSnapshotGroupsClient) List(ctx context.Context, in *ListInstantSnapshotGroupsRequest, opts ...grpc.CallOption) (*ListInstantSnapshotGroups, error) { + out := new(ListInstantSnapshotGroups) + err := c.cc.Invoke(ctx, InstantSnapshotGroups_List_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *instantSnapshotGroupsClient) SetIamPolicy(ctx context.Context, in *SetIamPolicyInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Policy, error) { + out := new(Policy) + err := c.cc.Invoke(ctx, InstantSnapshotGroups_SetIamPolicy_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *instantSnapshotGroupsClient) TestIamPermissions(ctx context.Context, in *TestIamPermissionsInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*TestPermissionsResponse, error) { + out := new(TestPermissionsResponse) + err := c.cc.Invoke(ctx, InstantSnapshotGroups_TestIamPermissions_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// InstantSnapshotGroupsServer is the server API for InstantSnapshotGroups service. +// All implementations should embed UnimplementedInstantSnapshotGroupsServer +// for forward compatibility +type InstantSnapshotGroupsServer interface { + // deletes a Zonal InstantSnapshotGroup resource + Delete(context.Context, *DeleteInstantSnapshotGroupRequest) (*Operation, error) + // returns the specified InstantSnapshotGroup resource in the specified zone. + Get(context.Context, *GetInstantSnapshotGroupRequest) (*InstantSnapshotGroup, error) + // Gets the access control policy for a resource. May be empty if no such + // policy or resource exists. + GetIamPolicy(context.Context, *GetIamPolicyInstantSnapshotGroupRequest) (*Policy, error) + // inserts a Zonal InstantSnapshotGroup resource + Insert(context.Context, *InsertInstantSnapshotGroupRequest) (*Operation, error) + // retrieves the list of InstantSnapshotGroup resources contained within + // the specified zone. + List(context.Context, *ListInstantSnapshotGroupsRequest) (*ListInstantSnapshotGroups, error) + // Sets the access control policy on the specified resource. + // Replaces any existing policy. + SetIamPolicy(context.Context, *SetIamPolicyInstantSnapshotGroupRequest) (*Policy, error) + // Returns permissions that a caller has on the specified resource. + TestIamPermissions(context.Context, *TestIamPermissionsInstantSnapshotGroupRequest) (*TestPermissionsResponse, error) +} + +// UnimplementedInstantSnapshotGroupsServer should be embedded to have forward compatible implementations. +type UnimplementedInstantSnapshotGroupsServer struct { +} + +func (UnimplementedInstantSnapshotGroupsServer) Delete(context.Context, *DeleteInstantSnapshotGroupRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented") +} +func (UnimplementedInstantSnapshotGroupsServer) Get(context.Context, *GetInstantSnapshotGroupRequest) (*InstantSnapshotGroup, error) { + return nil, status.Errorf(codes.Unimplemented, "method Get not implemented") +} +func (UnimplementedInstantSnapshotGroupsServer) GetIamPolicy(context.Context, *GetIamPolicyInstantSnapshotGroupRequest) (*Policy, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetIamPolicy not implemented") +} +func (UnimplementedInstantSnapshotGroupsServer) Insert(context.Context, *InsertInstantSnapshotGroupRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Insert not implemented") +} +func (UnimplementedInstantSnapshotGroupsServer) List(context.Context, *ListInstantSnapshotGroupsRequest) (*ListInstantSnapshotGroups, error) { + return nil, status.Errorf(codes.Unimplemented, "method List not implemented") +} +func (UnimplementedInstantSnapshotGroupsServer) SetIamPolicy(context.Context, *SetIamPolicyInstantSnapshotGroupRequest) (*Policy, error) { + return nil, status.Errorf(codes.Unimplemented, "method SetIamPolicy not implemented") +} +func (UnimplementedInstantSnapshotGroupsServer) TestIamPermissions(context.Context, *TestIamPermissionsInstantSnapshotGroupRequest) (*TestPermissionsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method TestIamPermissions not implemented") +} + +// UnsafeInstantSnapshotGroupsServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to InstantSnapshotGroupsServer will +// result in compilation errors. +type UnsafeInstantSnapshotGroupsServer interface { + mustEmbedUnimplementedInstantSnapshotGroupsServer() +} + +func RegisterInstantSnapshotGroupsServer(s grpc.ServiceRegistrar, srv InstantSnapshotGroupsServer) { + s.RegisterService(&InstantSnapshotGroups_ServiceDesc, srv) +} + +func _InstantSnapshotGroups_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DeleteInstantSnapshotGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(InstantSnapshotGroupsServer).Delete(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: InstantSnapshotGroups_Delete_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(InstantSnapshotGroupsServer).Delete(ctx, req.(*DeleteInstantSnapshotGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _InstantSnapshotGroups_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetInstantSnapshotGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(InstantSnapshotGroupsServer).Get(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: InstantSnapshotGroups_Get_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(InstantSnapshotGroupsServer).Get(ctx, req.(*GetInstantSnapshotGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _InstantSnapshotGroups_GetIamPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetIamPolicyInstantSnapshotGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(InstantSnapshotGroupsServer).GetIamPolicy(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: InstantSnapshotGroups_GetIamPolicy_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(InstantSnapshotGroupsServer).GetIamPolicy(ctx, req.(*GetIamPolicyInstantSnapshotGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _InstantSnapshotGroups_Insert_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(InsertInstantSnapshotGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(InstantSnapshotGroupsServer).Insert(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: InstantSnapshotGroups_Insert_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(InstantSnapshotGroupsServer).Insert(ctx, req.(*InsertInstantSnapshotGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _InstantSnapshotGroups_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListInstantSnapshotGroupsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(InstantSnapshotGroupsServer).List(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: InstantSnapshotGroups_List_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(InstantSnapshotGroupsServer).List(ctx, req.(*ListInstantSnapshotGroupsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _InstantSnapshotGroups_SetIamPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(SetIamPolicyInstantSnapshotGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(InstantSnapshotGroupsServer).SetIamPolicy(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: InstantSnapshotGroups_SetIamPolicy_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(InstantSnapshotGroupsServer).SetIamPolicy(ctx, req.(*SetIamPolicyInstantSnapshotGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _InstantSnapshotGroups_TestIamPermissions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(TestIamPermissionsInstantSnapshotGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(InstantSnapshotGroupsServer).TestIamPermissions(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: InstantSnapshotGroups_TestIamPermissions_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(InstantSnapshotGroupsServer).TestIamPermissions(ctx, req.(*TestIamPermissionsInstantSnapshotGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// InstantSnapshotGroups_ServiceDesc is the grpc.ServiceDesc for InstantSnapshotGroups service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var InstantSnapshotGroups_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "google.cloud.compute.v1.InstantSnapshotGroups", + HandlerType: (*InstantSnapshotGroupsServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "Delete", + Handler: _InstantSnapshotGroups_Delete_Handler, + }, + { + MethodName: "Get", + Handler: _InstantSnapshotGroups_Get_Handler, + }, + { + MethodName: "GetIamPolicy", + Handler: _InstantSnapshotGroups_GetIamPolicy_Handler, + }, + { + MethodName: "Insert", + Handler: _InstantSnapshotGroups_Insert_Handler, + }, + { + MethodName: "List", + Handler: _InstantSnapshotGroups_List_Handler, + }, + { + MethodName: "SetIamPolicy", + Handler: _InstantSnapshotGroups_SetIamPolicy_Handler, + }, + { + MethodName: "TestIamPermissions", + Handler: _InstantSnapshotGroups_TestIamPermissions_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/cloud/compute/v1/compute.proto", +} + const ( InstantSnapshots_AggregatedList_FullMethodName = "/google.cloud.compute.v1.InstantSnapshots/AggregatedList" InstantSnapshots_Delete_FullMethodName = "/google.cloud.compute.v1.InstantSnapshots/Delete" @@ -23777,6 +24234,424 @@ var RegionAutoscalers_ServiceDesc = grpc.ServiceDesc{ Metadata: "google/cloud/compute/v1/compute.proto", } +const ( + RegionBackendBuckets_Delete_FullMethodName = "/google.cloud.compute.v1.RegionBackendBuckets/Delete" + RegionBackendBuckets_Get_FullMethodName = "/google.cloud.compute.v1.RegionBackendBuckets/Get" + RegionBackendBuckets_GetIamPolicy_FullMethodName = "/google.cloud.compute.v1.RegionBackendBuckets/GetIamPolicy" + RegionBackendBuckets_Insert_FullMethodName = "/google.cloud.compute.v1.RegionBackendBuckets/Insert" + RegionBackendBuckets_List_FullMethodName = "/google.cloud.compute.v1.RegionBackendBuckets/List" + RegionBackendBuckets_ListUsable_FullMethodName = "/google.cloud.compute.v1.RegionBackendBuckets/ListUsable" + RegionBackendBuckets_Patch_FullMethodName = "/google.cloud.compute.v1.RegionBackendBuckets/Patch" + RegionBackendBuckets_SetIamPolicy_FullMethodName = "/google.cloud.compute.v1.RegionBackendBuckets/SetIamPolicy" + RegionBackendBuckets_TestIamPermissions_FullMethodName = "/google.cloud.compute.v1.RegionBackendBuckets/TestIamPermissions" +) + +// RegionBackendBucketsClient is the client API for RegionBackendBuckets 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. +type RegionBackendBucketsClient interface { + // Deletes the specified regional BackendBucket resource. + Delete(ctx context.Context, in *DeleteRegionBackendBucketRequest, opts ...grpc.CallOption) (*Operation, error) + // Returns the specified regional BackendBucket resource. + Get(ctx context.Context, in *GetRegionBackendBucketRequest, opts ...grpc.CallOption) (*BackendBucket, error) + // Gets the access control policy for a resource. May be empty if no such + // policy or resource exists. + GetIamPolicy(ctx context.Context, in *GetIamPolicyRegionBackendBucketRequest, opts ...grpc.CallOption) (*Policy, error) + // Creates a RegionBackendBucket in the specified project in the given scope + // using the parameters that are included in the request. + Insert(ctx context.Context, in *InsertRegionBackendBucketRequest, opts ...grpc.CallOption) (*Operation, error) + // Retrieves the list of BackendBucket resources available to the specified + // project in the given region. + List(ctx context.Context, in *ListRegionBackendBucketsRequest, opts ...grpc.CallOption) (*BackendBucketList, error) + // Retrieves a list of all usable backend buckets in the specified project in + // the given region. + ListUsable(ctx context.Context, in *ListUsableRegionBackendBucketsRequest, opts ...grpc.CallOption) (*BackendBucketListUsable, error) + // Updates the specified BackendBucket resource with the data included in the + // request. This method supportsPATCH + // semantics and uses theJSON merge + // patch format and processing rules. + Patch(ctx context.Context, in *PatchRegionBackendBucketRequest, opts ...grpc.CallOption) (*Operation, error) + // Sets the access control policy on the specified resource. + // Replaces any existing policy. + SetIamPolicy(ctx context.Context, in *SetIamPolicyRegionBackendBucketRequest, opts ...grpc.CallOption) (*Policy, error) + // Returns permissions that a caller has on the specified resource. + TestIamPermissions(ctx context.Context, in *TestIamPermissionsRegionBackendBucketRequest, opts ...grpc.CallOption) (*TestPermissionsResponse, error) +} + +type regionBackendBucketsClient struct { + cc grpc.ClientConnInterface +} + +func NewRegionBackendBucketsClient(cc grpc.ClientConnInterface) RegionBackendBucketsClient { + return ®ionBackendBucketsClient{cc} +} + +func (c *regionBackendBucketsClient) Delete(ctx context.Context, in *DeleteRegionBackendBucketRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionBackendBuckets_Delete_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionBackendBucketsClient) Get(ctx context.Context, in *GetRegionBackendBucketRequest, opts ...grpc.CallOption) (*BackendBucket, error) { + out := new(BackendBucket) + err := c.cc.Invoke(ctx, RegionBackendBuckets_Get_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionBackendBucketsClient) GetIamPolicy(ctx context.Context, in *GetIamPolicyRegionBackendBucketRequest, opts ...grpc.CallOption) (*Policy, error) { + out := new(Policy) + err := c.cc.Invoke(ctx, RegionBackendBuckets_GetIamPolicy_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionBackendBucketsClient) Insert(ctx context.Context, in *InsertRegionBackendBucketRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionBackendBuckets_Insert_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionBackendBucketsClient) List(ctx context.Context, in *ListRegionBackendBucketsRequest, opts ...grpc.CallOption) (*BackendBucketList, error) { + out := new(BackendBucketList) + err := c.cc.Invoke(ctx, RegionBackendBuckets_List_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionBackendBucketsClient) ListUsable(ctx context.Context, in *ListUsableRegionBackendBucketsRequest, opts ...grpc.CallOption) (*BackendBucketListUsable, error) { + out := new(BackendBucketListUsable) + err := c.cc.Invoke(ctx, RegionBackendBuckets_ListUsable_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionBackendBucketsClient) Patch(ctx context.Context, in *PatchRegionBackendBucketRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionBackendBuckets_Patch_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionBackendBucketsClient) SetIamPolicy(ctx context.Context, in *SetIamPolicyRegionBackendBucketRequest, opts ...grpc.CallOption) (*Policy, error) { + out := new(Policy) + err := c.cc.Invoke(ctx, RegionBackendBuckets_SetIamPolicy_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionBackendBucketsClient) TestIamPermissions(ctx context.Context, in *TestIamPermissionsRegionBackendBucketRequest, opts ...grpc.CallOption) (*TestPermissionsResponse, error) { + out := new(TestPermissionsResponse) + err := c.cc.Invoke(ctx, RegionBackendBuckets_TestIamPermissions_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// RegionBackendBucketsServer is the server API for RegionBackendBuckets service. +// All implementations should embed UnimplementedRegionBackendBucketsServer +// for forward compatibility +type RegionBackendBucketsServer interface { + // Deletes the specified regional BackendBucket resource. + Delete(context.Context, *DeleteRegionBackendBucketRequest) (*Operation, error) + // Returns the specified regional BackendBucket resource. + Get(context.Context, *GetRegionBackendBucketRequest) (*BackendBucket, error) + // Gets the access control policy for a resource. May be empty if no such + // policy or resource exists. + GetIamPolicy(context.Context, *GetIamPolicyRegionBackendBucketRequest) (*Policy, error) + // Creates a RegionBackendBucket in the specified project in the given scope + // using the parameters that are included in the request. + Insert(context.Context, *InsertRegionBackendBucketRequest) (*Operation, error) + // Retrieves the list of BackendBucket resources available to the specified + // project in the given region. + List(context.Context, *ListRegionBackendBucketsRequest) (*BackendBucketList, error) + // Retrieves a list of all usable backend buckets in the specified project in + // the given region. + ListUsable(context.Context, *ListUsableRegionBackendBucketsRequest) (*BackendBucketListUsable, error) + // Updates the specified BackendBucket resource with the data included in the + // request. This method supportsPATCH + // semantics and uses theJSON merge + // patch format and processing rules. + Patch(context.Context, *PatchRegionBackendBucketRequest) (*Operation, error) + // Sets the access control policy on the specified resource. + // Replaces any existing policy. + SetIamPolicy(context.Context, *SetIamPolicyRegionBackendBucketRequest) (*Policy, error) + // Returns permissions that a caller has on the specified resource. + TestIamPermissions(context.Context, *TestIamPermissionsRegionBackendBucketRequest) (*TestPermissionsResponse, error) +} + +// UnimplementedRegionBackendBucketsServer should be embedded to have forward compatible implementations. +type UnimplementedRegionBackendBucketsServer struct { +} + +func (UnimplementedRegionBackendBucketsServer) Delete(context.Context, *DeleteRegionBackendBucketRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented") +} +func (UnimplementedRegionBackendBucketsServer) Get(context.Context, *GetRegionBackendBucketRequest) (*BackendBucket, error) { + return nil, status.Errorf(codes.Unimplemented, "method Get not implemented") +} +func (UnimplementedRegionBackendBucketsServer) GetIamPolicy(context.Context, *GetIamPolicyRegionBackendBucketRequest) (*Policy, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetIamPolicy not implemented") +} +func (UnimplementedRegionBackendBucketsServer) Insert(context.Context, *InsertRegionBackendBucketRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Insert not implemented") +} +func (UnimplementedRegionBackendBucketsServer) List(context.Context, *ListRegionBackendBucketsRequest) (*BackendBucketList, error) { + return nil, status.Errorf(codes.Unimplemented, "method List not implemented") +} +func (UnimplementedRegionBackendBucketsServer) ListUsable(context.Context, *ListUsableRegionBackendBucketsRequest) (*BackendBucketListUsable, error) { + return nil, status.Errorf(codes.Unimplemented, "method ListUsable not implemented") +} +func (UnimplementedRegionBackendBucketsServer) Patch(context.Context, *PatchRegionBackendBucketRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Patch not implemented") +} +func (UnimplementedRegionBackendBucketsServer) SetIamPolicy(context.Context, *SetIamPolicyRegionBackendBucketRequest) (*Policy, error) { + return nil, status.Errorf(codes.Unimplemented, "method SetIamPolicy not implemented") +} +func (UnimplementedRegionBackendBucketsServer) TestIamPermissions(context.Context, *TestIamPermissionsRegionBackendBucketRequest) (*TestPermissionsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method TestIamPermissions not implemented") +} + +// UnsafeRegionBackendBucketsServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to RegionBackendBucketsServer will +// result in compilation errors. +type UnsafeRegionBackendBucketsServer interface { + mustEmbedUnimplementedRegionBackendBucketsServer() +} + +func RegisterRegionBackendBucketsServer(s grpc.ServiceRegistrar, srv RegionBackendBucketsServer) { + s.RegisterService(&RegionBackendBuckets_ServiceDesc, srv) +} + +func _RegionBackendBuckets_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DeleteRegionBackendBucketRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionBackendBucketsServer).Delete(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionBackendBuckets_Delete_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionBackendBucketsServer).Delete(ctx, req.(*DeleteRegionBackendBucketRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionBackendBuckets_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetRegionBackendBucketRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionBackendBucketsServer).Get(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionBackendBuckets_Get_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionBackendBucketsServer).Get(ctx, req.(*GetRegionBackendBucketRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionBackendBuckets_GetIamPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetIamPolicyRegionBackendBucketRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionBackendBucketsServer).GetIamPolicy(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionBackendBuckets_GetIamPolicy_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionBackendBucketsServer).GetIamPolicy(ctx, req.(*GetIamPolicyRegionBackendBucketRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionBackendBuckets_Insert_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(InsertRegionBackendBucketRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionBackendBucketsServer).Insert(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionBackendBuckets_Insert_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionBackendBucketsServer).Insert(ctx, req.(*InsertRegionBackendBucketRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionBackendBuckets_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListRegionBackendBucketsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionBackendBucketsServer).List(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionBackendBuckets_List_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionBackendBucketsServer).List(ctx, req.(*ListRegionBackendBucketsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionBackendBuckets_ListUsable_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListUsableRegionBackendBucketsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionBackendBucketsServer).ListUsable(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionBackendBuckets_ListUsable_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionBackendBucketsServer).ListUsable(ctx, req.(*ListUsableRegionBackendBucketsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionBackendBuckets_Patch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(PatchRegionBackendBucketRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionBackendBucketsServer).Patch(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionBackendBuckets_Patch_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionBackendBucketsServer).Patch(ctx, req.(*PatchRegionBackendBucketRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionBackendBuckets_SetIamPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(SetIamPolicyRegionBackendBucketRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionBackendBucketsServer).SetIamPolicy(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionBackendBuckets_SetIamPolicy_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionBackendBucketsServer).SetIamPolicy(ctx, req.(*SetIamPolicyRegionBackendBucketRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionBackendBuckets_TestIamPermissions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(TestIamPermissionsRegionBackendBucketRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionBackendBucketsServer).TestIamPermissions(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionBackendBuckets_TestIamPermissions_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionBackendBucketsServer).TestIamPermissions(ctx, req.(*TestIamPermissionsRegionBackendBucketRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// RegionBackendBuckets_ServiceDesc is the grpc.ServiceDesc for RegionBackendBuckets service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var RegionBackendBuckets_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "google.cloud.compute.v1.RegionBackendBuckets", + HandlerType: (*RegionBackendBucketsServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "Delete", + Handler: _RegionBackendBuckets_Delete_Handler, + }, + { + MethodName: "Get", + Handler: _RegionBackendBuckets_Get_Handler, + }, + { + MethodName: "GetIamPolicy", + Handler: _RegionBackendBuckets_GetIamPolicy_Handler, + }, + { + MethodName: "Insert", + Handler: _RegionBackendBuckets_Insert_Handler, + }, + { + MethodName: "List", + Handler: _RegionBackendBuckets_List_Handler, + }, + { + MethodName: "ListUsable", + Handler: _RegionBackendBuckets_ListUsable_Handler, + }, + { + MethodName: "Patch", + Handler: _RegionBackendBuckets_Patch_Handler, + }, + { + MethodName: "SetIamPolicy", + Handler: _RegionBackendBuckets_SetIamPolicy_Handler, + }, + { + MethodName: "TestIamPermissions", + Handler: _RegionBackendBuckets_TestIamPermissions_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/cloud/compute/v1/compute.proto", +} + const ( RegionBackendServices_Delete_FullMethodName = "/google.cloud.compute.v1.RegionBackendServices/Delete" RegionBackendServices_Get_FullMethodName = "/google.cloud.compute.v1.RegionBackendServices/Get" @@ -24592,6 +25467,7 @@ const ( RegionCompositeHealthChecks_AggregatedList_FullMethodName = "/google.cloud.compute.v1.RegionCompositeHealthChecks/AggregatedList" RegionCompositeHealthChecks_Delete_FullMethodName = "/google.cloud.compute.v1.RegionCompositeHealthChecks/Delete" RegionCompositeHealthChecks_Get_FullMethodName = "/google.cloud.compute.v1.RegionCompositeHealthChecks/Get" + RegionCompositeHealthChecks_GetHealth_FullMethodName = "/google.cloud.compute.v1.RegionCompositeHealthChecks/GetHealth" RegionCompositeHealthChecks_Insert_FullMethodName = "/google.cloud.compute.v1.RegionCompositeHealthChecks/Insert" RegionCompositeHealthChecks_List_FullMethodName = "/google.cloud.compute.v1.RegionCompositeHealthChecks/List" RegionCompositeHealthChecks_Patch_FullMethodName = "/google.cloud.compute.v1.RegionCompositeHealthChecks/Patch" @@ -24612,6 +25488,9 @@ type RegionCompositeHealthChecksClient interface { Delete(ctx context.Context, in *DeleteRegionCompositeHealthCheckRequest, opts ...grpc.CallOption) (*Operation, error) // Returns the specified CompositeHealthCheck resource in the given region. Get(ctx context.Context, in *GetRegionCompositeHealthCheckRequest, opts ...grpc.CallOption) (*CompositeHealthCheck, error) + // Gets the most recent health check results for this + // regional CompositeHealthCheck. + GetHealth(ctx context.Context, in *GetHealthRegionCompositeHealthCheckRequest, opts ...grpc.CallOption) (*CompositeHealthCheckHealth, error) // Create a CompositeHealthCheck in the specified project in the given region // using the parameters that are included in the request. Insert(ctx context.Context, in *InsertRegionCompositeHealthCheckRequest, opts ...grpc.CallOption) (*Operation, error) @@ -24661,6 +25540,15 @@ func (c *regionCompositeHealthChecksClient) Get(ctx context.Context, in *GetRegi return out, nil } +func (c *regionCompositeHealthChecksClient) GetHealth(ctx context.Context, in *GetHealthRegionCompositeHealthCheckRequest, opts ...grpc.CallOption) (*CompositeHealthCheckHealth, error) { + out := new(CompositeHealthCheckHealth) + err := c.cc.Invoke(ctx, RegionCompositeHealthChecks_GetHealth_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *regionCompositeHealthChecksClient) Insert(ctx context.Context, in *InsertRegionCompositeHealthCheckRequest, opts ...grpc.CallOption) (*Operation, error) { out := new(Operation) err := c.cc.Invoke(ctx, RegionCompositeHealthChecks_Insert_FullMethodName, in, out, opts...) @@ -24711,6 +25599,9 @@ type RegionCompositeHealthChecksServer interface { Delete(context.Context, *DeleteRegionCompositeHealthCheckRequest) (*Operation, error) // Returns the specified CompositeHealthCheck resource in the given region. Get(context.Context, *GetRegionCompositeHealthCheckRequest) (*CompositeHealthCheck, error) + // Gets the most recent health check results for this + // regional CompositeHealthCheck. + GetHealth(context.Context, *GetHealthRegionCompositeHealthCheckRequest) (*CompositeHealthCheckHealth, error) // Create a CompositeHealthCheck in the specified project in the given region // using the parameters that are included in the request. Insert(context.Context, *InsertRegionCompositeHealthCheckRequest) (*Operation, error) @@ -24738,6 +25629,9 @@ func (UnimplementedRegionCompositeHealthChecksServer) Delete(context.Context, *D func (UnimplementedRegionCompositeHealthChecksServer) Get(context.Context, *GetRegionCompositeHealthCheckRequest) (*CompositeHealthCheck, error) { return nil, status.Errorf(codes.Unimplemented, "method Get not implemented") } +func (UnimplementedRegionCompositeHealthChecksServer) GetHealth(context.Context, *GetHealthRegionCompositeHealthCheckRequest) (*CompositeHealthCheckHealth, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetHealth not implemented") +} func (UnimplementedRegionCompositeHealthChecksServer) Insert(context.Context, *InsertRegionCompositeHealthCheckRequest) (*Operation, error) { return nil, status.Errorf(codes.Unimplemented, "method Insert not implemented") } @@ -24816,6 +25710,24 @@ func _RegionCompositeHealthChecks_Get_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } +func _RegionCompositeHealthChecks_GetHealth_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetHealthRegionCompositeHealthCheckRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionCompositeHealthChecksServer).GetHealth(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionCompositeHealthChecks_GetHealth_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionCompositeHealthChecksServer).GetHealth(ctx, req.(*GetHealthRegionCompositeHealthCheckRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _RegionCompositeHealthChecks_Insert_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(InsertRegionCompositeHealthCheckRequest) if err := dec(in); err != nil { @@ -24907,6 +25819,10 @@ var RegionCompositeHealthChecks_ServiceDesc = grpc.ServiceDesc{ MethodName: "Get", Handler: _RegionCompositeHealthChecks_Get_Handler, }, + { + MethodName: "GetHealth", + Handler: _RegionCompositeHealthChecks_GetHealth_Handler, + }, { MethodName: "Insert", Handler: _RegionCompositeHealthChecks_Insert_Handler, @@ -25075,6 +25991,7 @@ const ( RegionDisks_StopGroupAsyncReplication_FullMethodName = "/google.cloud.compute.v1.RegionDisks/StopGroupAsyncReplication" RegionDisks_TestIamPermissions_FullMethodName = "/google.cloud.compute.v1.RegionDisks/TestIamPermissions" RegionDisks_Update_FullMethodName = "/google.cloud.compute.v1.RegionDisks/Update" + RegionDisks_UpdateKmsKey_FullMethodName = "/google.cloud.compute.v1.RegionDisks/UpdateKmsKey" ) // RegionDisksClient is the client API for RegionDisks service. @@ -25132,6 +26049,9 @@ type RegionDisksClient interface { // Update the specified disk with the data included in the request. Update is // performed only on selected fields included as part of update-mask. Update(ctx context.Context, in *UpdateRegionDiskRequest, opts ...grpc.CallOption) (*Operation, error) + // Rotates the customer-managed + // encryption key to the latest version for the specified persistent disk. + UpdateKmsKey(ctx context.Context, in *UpdateKmsKeyRegionDiskRequest, opts ...grpc.CallOption) (*Operation, error) } type regionDisksClient struct { @@ -25295,6 +26215,15 @@ func (c *regionDisksClient) Update(ctx context.Context, in *UpdateRegionDiskRequ return out, nil } +func (c *regionDisksClient) UpdateKmsKey(ctx context.Context, in *UpdateKmsKeyRegionDiskRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionDisks_UpdateKmsKey_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // RegionDisksServer is the server API for RegionDisks service. // All implementations should embed UnimplementedRegionDisksServer // for forward compatibility @@ -25350,6 +26279,9 @@ type RegionDisksServer interface { // Update the specified disk with the data included in the request. Update is // performed only on selected fields included as part of update-mask. Update(context.Context, *UpdateRegionDiskRequest) (*Operation, error) + // Rotates the customer-managed + // encryption key to the latest version for the specified persistent disk. + UpdateKmsKey(context.Context, *UpdateKmsKeyRegionDiskRequest) (*Operation, error) } // UnimplementedRegionDisksServer should be embedded to have forward compatible implementations. @@ -25407,6 +26339,9 @@ func (UnimplementedRegionDisksServer) TestIamPermissions(context.Context, *TestI func (UnimplementedRegionDisksServer) Update(context.Context, *UpdateRegionDiskRequest) (*Operation, error) { return nil, status.Errorf(codes.Unimplemented, "method Update not implemented") } +func (UnimplementedRegionDisksServer) UpdateKmsKey(context.Context, *UpdateKmsKeyRegionDiskRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method UpdateKmsKey not implemented") +} // UnsafeRegionDisksServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to RegionDisksServer will @@ -25725,6 +26660,24 @@ func _RegionDisks_Update_Handler(srv interface{}, ctx context.Context, dec func( return interceptor(ctx, in, info, handler) } +func _RegionDisks_UpdateKmsKey_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(UpdateKmsKeyRegionDiskRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionDisksServer).UpdateKmsKey(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionDisks_UpdateKmsKey_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionDisksServer).UpdateKmsKey(ctx, req.(*UpdateKmsKeyRegionDiskRequest)) + } + return interceptor(ctx, in, info, handler) +} + // RegionDisks_ServiceDesc is the grpc.ServiceDesc for RegionDisks service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) @@ -25800,6 +26753,10 @@ var RegionDisks_ServiceDesc = grpc.ServiceDesc{ MethodName: "Update", Handler: _RegionDisks_Update_Handler, }, + { + MethodName: "UpdateKmsKey", + Handler: _RegionDisks_UpdateKmsKey_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "google/cloud/compute/v1/compute.proto", @@ -26827,6 +27784,7 @@ const ( RegionHealthSources_AggregatedList_FullMethodName = "/google.cloud.compute.v1.RegionHealthSources/AggregatedList" RegionHealthSources_Delete_FullMethodName = "/google.cloud.compute.v1.RegionHealthSources/Delete" RegionHealthSources_Get_FullMethodName = "/google.cloud.compute.v1.RegionHealthSources/Get" + RegionHealthSources_GetHealth_FullMethodName = "/google.cloud.compute.v1.RegionHealthSources/GetHealth" RegionHealthSources_Insert_FullMethodName = "/google.cloud.compute.v1.RegionHealthSources/Insert" RegionHealthSources_List_FullMethodName = "/google.cloud.compute.v1.RegionHealthSources/List" RegionHealthSources_Patch_FullMethodName = "/google.cloud.compute.v1.RegionHealthSources/Patch" @@ -26847,6 +27805,9 @@ type RegionHealthSourcesClient interface { Delete(ctx context.Context, in *DeleteRegionHealthSourceRequest, opts ...grpc.CallOption) (*Operation, error) // Returns the specified HealthSource resource in the given region. Get(ctx context.Context, in *GetRegionHealthSourceRequest, opts ...grpc.CallOption) (*HealthSource, error) + // Gets the most recent health check results for this + // regional HealthSource. + GetHealth(ctx context.Context, in *GetHealthRegionHealthSourceRequest, opts ...grpc.CallOption) (*HealthSourceHealth, error) // Create a HealthSource in the specified project in the given region // using the parameters that are included in the request. Insert(ctx context.Context, in *InsertRegionHealthSourceRequest, opts ...grpc.CallOption) (*Operation, error) @@ -26896,6 +27857,15 @@ func (c *regionHealthSourcesClient) Get(ctx context.Context, in *GetRegionHealth return out, nil } +func (c *regionHealthSourcesClient) GetHealth(ctx context.Context, in *GetHealthRegionHealthSourceRequest, opts ...grpc.CallOption) (*HealthSourceHealth, error) { + out := new(HealthSourceHealth) + err := c.cc.Invoke(ctx, RegionHealthSources_GetHealth_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *regionHealthSourcesClient) Insert(ctx context.Context, in *InsertRegionHealthSourceRequest, opts ...grpc.CallOption) (*Operation, error) { out := new(Operation) err := c.cc.Invoke(ctx, RegionHealthSources_Insert_FullMethodName, in, out, opts...) @@ -26946,6 +27916,9 @@ type RegionHealthSourcesServer interface { Delete(context.Context, *DeleteRegionHealthSourceRequest) (*Operation, error) // Returns the specified HealthSource resource in the given region. Get(context.Context, *GetRegionHealthSourceRequest) (*HealthSource, error) + // Gets the most recent health check results for this + // regional HealthSource. + GetHealth(context.Context, *GetHealthRegionHealthSourceRequest) (*HealthSourceHealth, error) // Create a HealthSource in the specified project in the given region // using the parameters that are included in the request. Insert(context.Context, *InsertRegionHealthSourceRequest) (*Operation, error) @@ -26973,6 +27946,9 @@ func (UnimplementedRegionHealthSourcesServer) Delete(context.Context, *DeleteReg func (UnimplementedRegionHealthSourcesServer) Get(context.Context, *GetRegionHealthSourceRequest) (*HealthSource, error) { return nil, status.Errorf(codes.Unimplemented, "method Get not implemented") } +func (UnimplementedRegionHealthSourcesServer) GetHealth(context.Context, *GetHealthRegionHealthSourceRequest) (*HealthSourceHealth, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetHealth not implemented") +} func (UnimplementedRegionHealthSourcesServer) Insert(context.Context, *InsertRegionHealthSourceRequest) (*Operation, error) { return nil, status.Errorf(codes.Unimplemented, "method Insert not implemented") } @@ -27051,6 +28027,24 @@ func _RegionHealthSources_Get_Handler(srv interface{}, ctx context.Context, dec return interceptor(ctx, in, info, handler) } +func _RegionHealthSources_GetHealth_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetHealthRegionHealthSourceRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionHealthSourcesServer).GetHealth(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionHealthSources_GetHealth_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionHealthSourcesServer).GetHealth(ctx, req.(*GetHealthRegionHealthSourceRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _RegionHealthSources_Insert_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(InsertRegionHealthSourceRequest) if err := dec(in); err != nil { @@ -27142,6 +28136,10 @@ var RegionHealthSources_ServiceDesc = grpc.ServiceDesc{ MethodName: "Get", Handler: _RegionHealthSources_Get_Handler, }, + { + MethodName: "GetHealth", + Handler: _RegionHealthSources_GetHealth_Handler, + }, { MethodName: "Insert", Handler: _RegionHealthSources_Insert_Handler, @@ -27163,6 +28161,266 @@ var RegionHealthSources_ServiceDesc = grpc.ServiceDesc{ Metadata: "google/cloud/compute/v1/compute.proto", } +const ( + RegionInstanceGroupManagerResizeRequests_Cancel_FullMethodName = "/google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests/Cancel" + RegionInstanceGroupManagerResizeRequests_Delete_FullMethodName = "/google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests/Delete" + RegionInstanceGroupManagerResizeRequests_Get_FullMethodName = "/google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests/Get" + RegionInstanceGroupManagerResizeRequests_Insert_FullMethodName = "/google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests/Insert" + RegionInstanceGroupManagerResizeRequests_List_FullMethodName = "/google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests/List" +) + +// RegionInstanceGroupManagerResizeRequestsClient is the client API for RegionInstanceGroupManagerResizeRequests 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. +type RegionInstanceGroupManagerResizeRequestsClient interface { + // Cancels the specified resize request. + // Cancelled resize request no longer waits for the resources to be + // provisioned. Cancel is only possible for requests that are in accepted + // state. + Cancel(ctx context.Context, in *CancelRegionInstanceGroupManagerResizeRequestRequest, opts ...grpc.CallOption) (*Operation, error) + // Deletes the specified, inactive resize request. Requests that are still + // active cannot be deleted. Deleting request does not delete instances that + // were provisioned previously. + Delete(ctx context.Context, in *DeleteRegionInstanceGroupManagerResizeRequestRequest, opts ...grpc.CallOption) (*Operation, error) + // Returns all of the details about the specified resize request. + Get(ctx context.Context, in *GetRegionInstanceGroupManagerResizeRequestRequest, opts ...grpc.CallOption) (*InstanceGroupManagerResizeRequest, error) + // Creates a new Resize Request that starts provisioning VMs immediately + // or queues VM creation. + Insert(ctx context.Context, in *InsertRegionInstanceGroupManagerResizeRequestRequest, opts ...grpc.CallOption) (*Operation, error) + // Retrieves a list of Resize Requests that are contained in the + // managed instance group. + List(ctx context.Context, in *ListRegionInstanceGroupManagerResizeRequestsRequest, opts ...grpc.CallOption) (*RegionInstanceGroupManagerResizeRequestsListResponse, error) +} + +type regionInstanceGroupManagerResizeRequestsClient struct { + cc grpc.ClientConnInterface +} + +func NewRegionInstanceGroupManagerResizeRequestsClient(cc grpc.ClientConnInterface) RegionInstanceGroupManagerResizeRequestsClient { + return ®ionInstanceGroupManagerResizeRequestsClient{cc} +} + +func (c *regionInstanceGroupManagerResizeRequestsClient) Cancel(ctx context.Context, in *CancelRegionInstanceGroupManagerResizeRequestRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionInstanceGroupManagerResizeRequests_Cancel_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionInstanceGroupManagerResizeRequestsClient) Delete(ctx context.Context, in *DeleteRegionInstanceGroupManagerResizeRequestRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionInstanceGroupManagerResizeRequests_Delete_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionInstanceGroupManagerResizeRequestsClient) Get(ctx context.Context, in *GetRegionInstanceGroupManagerResizeRequestRequest, opts ...grpc.CallOption) (*InstanceGroupManagerResizeRequest, error) { + out := new(InstanceGroupManagerResizeRequest) + err := c.cc.Invoke(ctx, RegionInstanceGroupManagerResizeRequests_Get_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionInstanceGroupManagerResizeRequestsClient) Insert(ctx context.Context, in *InsertRegionInstanceGroupManagerResizeRequestRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionInstanceGroupManagerResizeRequests_Insert_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionInstanceGroupManagerResizeRequestsClient) List(ctx context.Context, in *ListRegionInstanceGroupManagerResizeRequestsRequest, opts ...grpc.CallOption) (*RegionInstanceGroupManagerResizeRequestsListResponse, error) { + out := new(RegionInstanceGroupManagerResizeRequestsListResponse) + err := c.cc.Invoke(ctx, RegionInstanceGroupManagerResizeRequests_List_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// RegionInstanceGroupManagerResizeRequestsServer is the server API for RegionInstanceGroupManagerResizeRequests service. +// All implementations should embed UnimplementedRegionInstanceGroupManagerResizeRequestsServer +// for forward compatibility +type RegionInstanceGroupManagerResizeRequestsServer interface { + // Cancels the specified resize request. + // Cancelled resize request no longer waits for the resources to be + // provisioned. Cancel is only possible for requests that are in accepted + // state. + Cancel(context.Context, *CancelRegionInstanceGroupManagerResizeRequestRequest) (*Operation, error) + // Deletes the specified, inactive resize request. Requests that are still + // active cannot be deleted. Deleting request does not delete instances that + // were provisioned previously. + Delete(context.Context, *DeleteRegionInstanceGroupManagerResizeRequestRequest) (*Operation, error) + // Returns all of the details about the specified resize request. + Get(context.Context, *GetRegionInstanceGroupManagerResizeRequestRequest) (*InstanceGroupManagerResizeRequest, error) + // Creates a new Resize Request that starts provisioning VMs immediately + // or queues VM creation. + Insert(context.Context, *InsertRegionInstanceGroupManagerResizeRequestRequest) (*Operation, error) + // Retrieves a list of Resize Requests that are contained in the + // managed instance group. + List(context.Context, *ListRegionInstanceGroupManagerResizeRequestsRequest) (*RegionInstanceGroupManagerResizeRequestsListResponse, error) +} + +// UnimplementedRegionInstanceGroupManagerResizeRequestsServer should be embedded to have forward compatible implementations. +type UnimplementedRegionInstanceGroupManagerResizeRequestsServer struct { +} + +func (UnimplementedRegionInstanceGroupManagerResizeRequestsServer) Cancel(context.Context, *CancelRegionInstanceGroupManagerResizeRequestRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Cancel not implemented") +} +func (UnimplementedRegionInstanceGroupManagerResizeRequestsServer) Delete(context.Context, *DeleteRegionInstanceGroupManagerResizeRequestRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented") +} +func (UnimplementedRegionInstanceGroupManagerResizeRequestsServer) Get(context.Context, *GetRegionInstanceGroupManagerResizeRequestRequest) (*InstanceGroupManagerResizeRequest, error) { + return nil, status.Errorf(codes.Unimplemented, "method Get not implemented") +} +func (UnimplementedRegionInstanceGroupManagerResizeRequestsServer) Insert(context.Context, *InsertRegionInstanceGroupManagerResizeRequestRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Insert not implemented") +} +func (UnimplementedRegionInstanceGroupManagerResizeRequestsServer) List(context.Context, *ListRegionInstanceGroupManagerResizeRequestsRequest) (*RegionInstanceGroupManagerResizeRequestsListResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method List not implemented") +} + +// UnsafeRegionInstanceGroupManagerResizeRequestsServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to RegionInstanceGroupManagerResizeRequestsServer will +// result in compilation errors. +type UnsafeRegionInstanceGroupManagerResizeRequestsServer interface { + mustEmbedUnimplementedRegionInstanceGroupManagerResizeRequestsServer() +} + +func RegisterRegionInstanceGroupManagerResizeRequestsServer(s grpc.ServiceRegistrar, srv RegionInstanceGroupManagerResizeRequestsServer) { + s.RegisterService(&RegionInstanceGroupManagerResizeRequests_ServiceDesc, srv) +} + +func _RegionInstanceGroupManagerResizeRequests_Cancel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CancelRegionInstanceGroupManagerResizeRequestRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionInstanceGroupManagerResizeRequestsServer).Cancel(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionInstanceGroupManagerResizeRequests_Cancel_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionInstanceGroupManagerResizeRequestsServer).Cancel(ctx, req.(*CancelRegionInstanceGroupManagerResizeRequestRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionInstanceGroupManagerResizeRequests_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DeleteRegionInstanceGroupManagerResizeRequestRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionInstanceGroupManagerResizeRequestsServer).Delete(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionInstanceGroupManagerResizeRequests_Delete_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionInstanceGroupManagerResizeRequestsServer).Delete(ctx, req.(*DeleteRegionInstanceGroupManagerResizeRequestRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionInstanceGroupManagerResizeRequests_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetRegionInstanceGroupManagerResizeRequestRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionInstanceGroupManagerResizeRequestsServer).Get(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionInstanceGroupManagerResizeRequests_Get_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionInstanceGroupManagerResizeRequestsServer).Get(ctx, req.(*GetRegionInstanceGroupManagerResizeRequestRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionInstanceGroupManagerResizeRequests_Insert_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(InsertRegionInstanceGroupManagerResizeRequestRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionInstanceGroupManagerResizeRequestsServer).Insert(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionInstanceGroupManagerResizeRequests_Insert_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionInstanceGroupManagerResizeRequestsServer).Insert(ctx, req.(*InsertRegionInstanceGroupManagerResizeRequestRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionInstanceGroupManagerResizeRequests_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListRegionInstanceGroupManagerResizeRequestsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionInstanceGroupManagerResizeRequestsServer).List(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionInstanceGroupManagerResizeRequests_List_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionInstanceGroupManagerResizeRequestsServer).List(ctx, req.(*ListRegionInstanceGroupManagerResizeRequestsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// RegionInstanceGroupManagerResizeRequests_ServiceDesc is the grpc.ServiceDesc for RegionInstanceGroupManagerResizeRequests service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var RegionInstanceGroupManagerResizeRequests_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests", + HandlerType: (*RegionInstanceGroupManagerResizeRequestsServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "Cancel", + Handler: _RegionInstanceGroupManagerResizeRequests_Cancel_Handler, + }, + { + MethodName: "Delete", + Handler: _RegionInstanceGroupManagerResizeRequests_Delete_Handler, + }, + { + MethodName: "Get", + Handler: _RegionInstanceGroupManagerResizeRequests_Get_Handler, + }, + { + MethodName: "Insert", + Handler: _RegionInstanceGroupManagerResizeRequests_Insert_Handler, + }, + { + MethodName: "List", + Handler: _RegionInstanceGroupManagerResizeRequests_List_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/cloud/compute/v1/compute.proto", +} + const ( RegionInstanceGroupManagers_AbandonInstances_FullMethodName = "/google.cloud.compute.v1.RegionInstanceGroupManagers/AbandonInstances" RegionInstanceGroupManagers_ApplyUpdatesToInstances_FullMethodName = "/google.cloud.compute.v1.RegionInstanceGroupManagers/ApplyUpdatesToInstances" @@ -29016,6 +30274,338 @@ var RegionInstances_ServiceDesc = grpc.ServiceDesc{ Metadata: "google/cloud/compute/v1/compute.proto", } +const ( + RegionInstantSnapshotGroups_Delete_FullMethodName = "/google.cloud.compute.v1.RegionInstantSnapshotGroups/Delete" + RegionInstantSnapshotGroups_Get_FullMethodName = "/google.cloud.compute.v1.RegionInstantSnapshotGroups/Get" + RegionInstantSnapshotGroups_GetIamPolicy_FullMethodName = "/google.cloud.compute.v1.RegionInstantSnapshotGroups/GetIamPolicy" + RegionInstantSnapshotGroups_Insert_FullMethodName = "/google.cloud.compute.v1.RegionInstantSnapshotGroups/Insert" + RegionInstantSnapshotGroups_List_FullMethodName = "/google.cloud.compute.v1.RegionInstantSnapshotGroups/List" + RegionInstantSnapshotGroups_SetIamPolicy_FullMethodName = "/google.cloud.compute.v1.RegionInstantSnapshotGroups/SetIamPolicy" + RegionInstantSnapshotGroups_TestIamPermissions_FullMethodName = "/google.cloud.compute.v1.RegionInstantSnapshotGroups/TestIamPermissions" +) + +// RegionInstantSnapshotGroupsClient is the client API for RegionInstantSnapshotGroups 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. +type RegionInstantSnapshotGroupsClient interface { + // deletes a Regional InstantSnapshotGroup resource + Delete(ctx context.Context, in *DeleteRegionInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Operation, error) + // returns the specified InstantSnapshotGroup resource in the specified + // region. + Get(ctx context.Context, in *GetRegionInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*InstantSnapshotGroup, error) + // Gets the access control policy for a resource. May be empty if no such + // policy or resource exists. + GetIamPolicy(ctx context.Context, in *GetIamPolicyRegionInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Policy, error) + // creates a Regional InstantSnapshotGroup resource + Insert(ctx context.Context, in *InsertRegionInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Operation, error) + // retrieves the list of InstantSnapshotGroup resources contained within + // the specified region. + List(ctx context.Context, in *ListRegionInstantSnapshotGroupsRequest, opts ...grpc.CallOption) (*ListInstantSnapshotGroups, error) + // Sets the access control policy on the specified resource. + // Replaces any existing policy. + SetIamPolicy(ctx context.Context, in *SetIamPolicyRegionInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Policy, error) + // Returns permissions that a caller has on the specified resource. + TestIamPermissions(ctx context.Context, in *TestIamPermissionsRegionInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*TestPermissionsResponse, error) +} + +type regionInstantSnapshotGroupsClient struct { + cc grpc.ClientConnInterface +} + +func NewRegionInstantSnapshotGroupsClient(cc grpc.ClientConnInterface) RegionInstantSnapshotGroupsClient { + return ®ionInstantSnapshotGroupsClient{cc} +} + +func (c *regionInstantSnapshotGroupsClient) Delete(ctx context.Context, in *DeleteRegionInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionInstantSnapshotGroups_Delete_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionInstantSnapshotGroupsClient) Get(ctx context.Context, in *GetRegionInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*InstantSnapshotGroup, error) { + out := new(InstantSnapshotGroup) + err := c.cc.Invoke(ctx, RegionInstantSnapshotGroups_Get_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionInstantSnapshotGroupsClient) GetIamPolicy(ctx context.Context, in *GetIamPolicyRegionInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Policy, error) { + out := new(Policy) + err := c.cc.Invoke(ctx, RegionInstantSnapshotGroups_GetIamPolicy_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionInstantSnapshotGroupsClient) Insert(ctx context.Context, in *InsertRegionInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionInstantSnapshotGroups_Insert_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionInstantSnapshotGroupsClient) List(ctx context.Context, in *ListRegionInstantSnapshotGroupsRequest, opts ...grpc.CallOption) (*ListInstantSnapshotGroups, error) { + out := new(ListInstantSnapshotGroups) + err := c.cc.Invoke(ctx, RegionInstantSnapshotGroups_List_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionInstantSnapshotGroupsClient) SetIamPolicy(ctx context.Context, in *SetIamPolicyRegionInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*Policy, error) { + out := new(Policy) + err := c.cc.Invoke(ctx, RegionInstantSnapshotGroups_SetIamPolicy_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionInstantSnapshotGroupsClient) TestIamPermissions(ctx context.Context, in *TestIamPermissionsRegionInstantSnapshotGroupRequest, opts ...grpc.CallOption) (*TestPermissionsResponse, error) { + out := new(TestPermissionsResponse) + err := c.cc.Invoke(ctx, RegionInstantSnapshotGroups_TestIamPermissions_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// RegionInstantSnapshotGroupsServer is the server API for RegionInstantSnapshotGroups service. +// All implementations should embed UnimplementedRegionInstantSnapshotGroupsServer +// for forward compatibility +type RegionInstantSnapshotGroupsServer interface { + // deletes a Regional InstantSnapshotGroup resource + Delete(context.Context, *DeleteRegionInstantSnapshotGroupRequest) (*Operation, error) + // returns the specified InstantSnapshotGroup resource in the specified + // region. + Get(context.Context, *GetRegionInstantSnapshotGroupRequest) (*InstantSnapshotGroup, error) + // Gets the access control policy for a resource. May be empty if no such + // policy or resource exists. + GetIamPolicy(context.Context, *GetIamPolicyRegionInstantSnapshotGroupRequest) (*Policy, error) + // creates a Regional InstantSnapshotGroup resource + Insert(context.Context, *InsertRegionInstantSnapshotGroupRequest) (*Operation, error) + // retrieves the list of InstantSnapshotGroup resources contained within + // the specified region. + List(context.Context, *ListRegionInstantSnapshotGroupsRequest) (*ListInstantSnapshotGroups, error) + // Sets the access control policy on the specified resource. + // Replaces any existing policy. + SetIamPolicy(context.Context, *SetIamPolicyRegionInstantSnapshotGroupRequest) (*Policy, error) + // Returns permissions that a caller has on the specified resource. + TestIamPermissions(context.Context, *TestIamPermissionsRegionInstantSnapshotGroupRequest) (*TestPermissionsResponse, error) +} + +// UnimplementedRegionInstantSnapshotGroupsServer should be embedded to have forward compatible implementations. +type UnimplementedRegionInstantSnapshotGroupsServer struct { +} + +func (UnimplementedRegionInstantSnapshotGroupsServer) Delete(context.Context, *DeleteRegionInstantSnapshotGroupRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented") +} +func (UnimplementedRegionInstantSnapshotGroupsServer) Get(context.Context, *GetRegionInstantSnapshotGroupRequest) (*InstantSnapshotGroup, error) { + return nil, status.Errorf(codes.Unimplemented, "method Get not implemented") +} +func (UnimplementedRegionInstantSnapshotGroupsServer) GetIamPolicy(context.Context, *GetIamPolicyRegionInstantSnapshotGroupRequest) (*Policy, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetIamPolicy not implemented") +} +func (UnimplementedRegionInstantSnapshotGroupsServer) Insert(context.Context, *InsertRegionInstantSnapshotGroupRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Insert not implemented") +} +func (UnimplementedRegionInstantSnapshotGroupsServer) List(context.Context, *ListRegionInstantSnapshotGroupsRequest) (*ListInstantSnapshotGroups, error) { + return nil, status.Errorf(codes.Unimplemented, "method List not implemented") +} +func (UnimplementedRegionInstantSnapshotGroupsServer) SetIamPolicy(context.Context, *SetIamPolicyRegionInstantSnapshotGroupRequest) (*Policy, error) { + return nil, status.Errorf(codes.Unimplemented, "method SetIamPolicy not implemented") +} +func (UnimplementedRegionInstantSnapshotGroupsServer) TestIamPermissions(context.Context, *TestIamPermissionsRegionInstantSnapshotGroupRequest) (*TestPermissionsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method TestIamPermissions not implemented") +} + +// UnsafeRegionInstantSnapshotGroupsServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to RegionInstantSnapshotGroupsServer will +// result in compilation errors. +type UnsafeRegionInstantSnapshotGroupsServer interface { + mustEmbedUnimplementedRegionInstantSnapshotGroupsServer() +} + +func RegisterRegionInstantSnapshotGroupsServer(s grpc.ServiceRegistrar, srv RegionInstantSnapshotGroupsServer) { + s.RegisterService(&RegionInstantSnapshotGroups_ServiceDesc, srv) +} + +func _RegionInstantSnapshotGroups_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DeleteRegionInstantSnapshotGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionInstantSnapshotGroupsServer).Delete(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionInstantSnapshotGroups_Delete_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionInstantSnapshotGroupsServer).Delete(ctx, req.(*DeleteRegionInstantSnapshotGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionInstantSnapshotGroups_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetRegionInstantSnapshotGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionInstantSnapshotGroupsServer).Get(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionInstantSnapshotGroups_Get_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionInstantSnapshotGroupsServer).Get(ctx, req.(*GetRegionInstantSnapshotGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionInstantSnapshotGroups_GetIamPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetIamPolicyRegionInstantSnapshotGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionInstantSnapshotGroupsServer).GetIamPolicy(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionInstantSnapshotGroups_GetIamPolicy_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionInstantSnapshotGroupsServer).GetIamPolicy(ctx, req.(*GetIamPolicyRegionInstantSnapshotGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionInstantSnapshotGroups_Insert_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(InsertRegionInstantSnapshotGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionInstantSnapshotGroupsServer).Insert(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionInstantSnapshotGroups_Insert_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionInstantSnapshotGroupsServer).Insert(ctx, req.(*InsertRegionInstantSnapshotGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionInstantSnapshotGroups_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListRegionInstantSnapshotGroupsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionInstantSnapshotGroupsServer).List(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionInstantSnapshotGroups_List_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionInstantSnapshotGroupsServer).List(ctx, req.(*ListRegionInstantSnapshotGroupsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionInstantSnapshotGroups_SetIamPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(SetIamPolicyRegionInstantSnapshotGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionInstantSnapshotGroupsServer).SetIamPolicy(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionInstantSnapshotGroups_SetIamPolicy_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionInstantSnapshotGroupsServer).SetIamPolicy(ctx, req.(*SetIamPolicyRegionInstantSnapshotGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionInstantSnapshotGroups_TestIamPermissions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(TestIamPermissionsRegionInstantSnapshotGroupRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionInstantSnapshotGroupsServer).TestIamPermissions(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionInstantSnapshotGroups_TestIamPermissions_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionInstantSnapshotGroupsServer).TestIamPermissions(ctx, req.(*TestIamPermissionsRegionInstantSnapshotGroupRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// RegionInstantSnapshotGroups_ServiceDesc is the grpc.ServiceDesc for RegionInstantSnapshotGroups service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var RegionInstantSnapshotGroups_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "google.cloud.compute.v1.RegionInstantSnapshotGroups", + HandlerType: (*RegionInstantSnapshotGroupsServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "Delete", + Handler: _RegionInstantSnapshotGroups_Delete_Handler, + }, + { + MethodName: "Get", + Handler: _RegionInstantSnapshotGroups_Get_Handler, + }, + { + MethodName: "GetIamPolicy", + Handler: _RegionInstantSnapshotGroups_GetIamPolicy_Handler, + }, + { + MethodName: "Insert", + Handler: _RegionInstantSnapshotGroups_Insert_Handler, + }, + { + MethodName: "List", + Handler: _RegionInstantSnapshotGroups_List_Handler, + }, + { + MethodName: "SetIamPolicy", + Handler: _RegionInstantSnapshotGroups_SetIamPolicy_Handler, + }, + { + MethodName: "TestIamPermissions", + Handler: _RegionInstantSnapshotGroups_TestIamPermissions_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/cloud/compute/v1/compute.proto", +} + const ( RegionInstantSnapshots_Delete_FullMethodName = "/google.cloud.compute.v1.RegionInstantSnapshots/Delete" RegionInstantSnapshots_Get_FullMethodName = "/google.cloud.compute.v1.RegionInstantSnapshots/Get" @@ -31466,6 +33056,565 @@ var RegionSecurityPolicies_ServiceDesc = grpc.ServiceDesc{ Metadata: "google/cloud/compute/v1/compute.proto", } +const ( + RegionSnapshotSettings_Get_FullMethodName = "/google.cloud.compute.v1.RegionSnapshotSettings/Get" + RegionSnapshotSettings_Patch_FullMethodName = "/google.cloud.compute.v1.RegionSnapshotSettings/Patch" +) + +// RegionSnapshotSettingsClient is the client API for RegionSnapshotSettings 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. +type RegionSnapshotSettingsClient interface { + // Get region snapshot settings. + Get(ctx context.Context, in *GetRegionSnapshotSettingRequest, opts ...grpc.CallOption) (*SnapshotSettings, error) + // Patch region snapshot settings. + Patch(ctx context.Context, in *PatchRegionSnapshotSettingRequest, opts ...grpc.CallOption) (*Operation, error) +} + +type regionSnapshotSettingsClient struct { + cc grpc.ClientConnInterface +} + +func NewRegionSnapshotSettingsClient(cc grpc.ClientConnInterface) RegionSnapshotSettingsClient { + return ®ionSnapshotSettingsClient{cc} +} + +func (c *regionSnapshotSettingsClient) Get(ctx context.Context, in *GetRegionSnapshotSettingRequest, opts ...grpc.CallOption) (*SnapshotSettings, error) { + out := new(SnapshotSettings) + err := c.cc.Invoke(ctx, RegionSnapshotSettings_Get_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionSnapshotSettingsClient) Patch(ctx context.Context, in *PatchRegionSnapshotSettingRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionSnapshotSettings_Patch_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// RegionSnapshotSettingsServer is the server API for RegionSnapshotSettings service. +// All implementations should embed UnimplementedRegionSnapshotSettingsServer +// for forward compatibility +type RegionSnapshotSettingsServer interface { + // Get region snapshot settings. + Get(context.Context, *GetRegionSnapshotSettingRequest) (*SnapshotSettings, error) + // Patch region snapshot settings. + Patch(context.Context, *PatchRegionSnapshotSettingRequest) (*Operation, error) +} + +// UnimplementedRegionSnapshotSettingsServer should be embedded to have forward compatible implementations. +type UnimplementedRegionSnapshotSettingsServer struct { +} + +func (UnimplementedRegionSnapshotSettingsServer) Get(context.Context, *GetRegionSnapshotSettingRequest) (*SnapshotSettings, error) { + return nil, status.Errorf(codes.Unimplemented, "method Get not implemented") +} +func (UnimplementedRegionSnapshotSettingsServer) Patch(context.Context, *PatchRegionSnapshotSettingRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Patch not implemented") +} + +// UnsafeRegionSnapshotSettingsServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to RegionSnapshotSettingsServer will +// result in compilation errors. +type UnsafeRegionSnapshotSettingsServer interface { + mustEmbedUnimplementedRegionSnapshotSettingsServer() +} + +func RegisterRegionSnapshotSettingsServer(s grpc.ServiceRegistrar, srv RegionSnapshotSettingsServer) { + s.RegisterService(&RegionSnapshotSettings_ServiceDesc, srv) +} + +func _RegionSnapshotSettings_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetRegionSnapshotSettingRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionSnapshotSettingsServer).Get(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionSnapshotSettings_Get_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionSnapshotSettingsServer).Get(ctx, req.(*GetRegionSnapshotSettingRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionSnapshotSettings_Patch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(PatchRegionSnapshotSettingRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionSnapshotSettingsServer).Patch(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionSnapshotSettings_Patch_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionSnapshotSettingsServer).Patch(ctx, req.(*PatchRegionSnapshotSettingRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// RegionSnapshotSettings_ServiceDesc is the grpc.ServiceDesc for RegionSnapshotSettings service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var RegionSnapshotSettings_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "google.cloud.compute.v1.RegionSnapshotSettings", + HandlerType: (*RegionSnapshotSettingsServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "Get", + Handler: _RegionSnapshotSettings_Get_Handler, + }, + { + MethodName: "Patch", + Handler: _RegionSnapshotSettings_Patch_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/cloud/compute/v1/compute.proto", +} + +const ( + RegionSnapshots_Delete_FullMethodName = "/google.cloud.compute.v1.RegionSnapshots/Delete" + RegionSnapshots_Get_FullMethodName = "/google.cloud.compute.v1.RegionSnapshots/Get" + RegionSnapshots_GetIamPolicy_FullMethodName = "/google.cloud.compute.v1.RegionSnapshots/GetIamPolicy" + RegionSnapshots_Insert_FullMethodName = "/google.cloud.compute.v1.RegionSnapshots/Insert" + RegionSnapshots_List_FullMethodName = "/google.cloud.compute.v1.RegionSnapshots/List" + RegionSnapshots_SetIamPolicy_FullMethodName = "/google.cloud.compute.v1.RegionSnapshots/SetIamPolicy" + RegionSnapshots_SetLabels_FullMethodName = "/google.cloud.compute.v1.RegionSnapshots/SetLabels" + RegionSnapshots_TestIamPermissions_FullMethodName = "/google.cloud.compute.v1.RegionSnapshots/TestIamPermissions" + RegionSnapshots_UpdateKmsKey_FullMethodName = "/google.cloud.compute.v1.RegionSnapshots/UpdateKmsKey" +) + +// RegionSnapshotsClient is the client API for RegionSnapshots 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. +type RegionSnapshotsClient interface { + // Deletes the specified Snapshot resource. Keep in mind that deleting + // a single snapshot might not necessarily delete all the data on that + // snapshot. If any data on the snapshot that is marked for deletion is + // needed for subsequent snapshots, the data will be moved to the next + // corresponding snapshot. + // + // For more information, seeDeleting + // snapshots. + Delete(ctx context.Context, in *DeleteRegionSnapshotRequest, opts ...grpc.CallOption) (*Operation, error) + // Returns the specified Snapshot resource. + Get(ctx context.Context, in *GetRegionSnapshotRequest, opts ...grpc.CallOption) (*Snapshot, error) + // Gets the access control policy for a resource. May be empty if no such + // policy or resource exists. + GetIamPolicy(ctx context.Context, in *GetIamPolicyRegionSnapshotRequest, opts ...grpc.CallOption) (*Policy, error) + // Creates a snapshot in the specified region using the data included + // in the request. + Insert(ctx context.Context, in *InsertRegionSnapshotRequest, opts ...grpc.CallOption) (*Operation, error) + // Retrieves the list of Snapshot resources contained within + // the specified region. + List(ctx context.Context, in *ListRegionSnapshotsRequest, opts ...grpc.CallOption) (*SnapshotList, error) + // Sets the access control policy on the specified resource. + // Replaces any existing policy. + SetIamPolicy(ctx context.Context, in *SetIamPolicyRegionSnapshotRequest, opts ...grpc.CallOption) (*Policy, error) + // Sets the labels on a regional snapshot. To learn more about labels, read + // the Labeling Resources + // documentation. + SetLabels(ctx context.Context, in *SetLabelsRegionSnapshotRequest, opts ...grpc.CallOption) (*Operation, error) + // Returns permissions that a caller has on the specified resource. + TestIamPermissions(ctx context.Context, in *TestIamPermissionsRegionSnapshotRequest, opts ...grpc.CallOption) (*TestPermissionsResponse, error) + // Rotates the customer-managed + // encryption key to the latest version for the specified snapshot. + UpdateKmsKey(ctx context.Context, in *UpdateKmsKeyRegionSnapshotRequest, opts ...grpc.CallOption) (*Operation, error) +} + +type regionSnapshotsClient struct { + cc grpc.ClientConnInterface +} + +func NewRegionSnapshotsClient(cc grpc.ClientConnInterface) RegionSnapshotsClient { + return ®ionSnapshotsClient{cc} +} + +func (c *regionSnapshotsClient) Delete(ctx context.Context, in *DeleteRegionSnapshotRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionSnapshots_Delete_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionSnapshotsClient) Get(ctx context.Context, in *GetRegionSnapshotRequest, opts ...grpc.CallOption) (*Snapshot, error) { + out := new(Snapshot) + err := c.cc.Invoke(ctx, RegionSnapshots_Get_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionSnapshotsClient) GetIamPolicy(ctx context.Context, in *GetIamPolicyRegionSnapshotRequest, opts ...grpc.CallOption) (*Policy, error) { + out := new(Policy) + err := c.cc.Invoke(ctx, RegionSnapshots_GetIamPolicy_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionSnapshotsClient) Insert(ctx context.Context, in *InsertRegionSnapshotRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionSnapshots_Insert_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionSnapshotsClient) List(ctx context.Context, in *ListRegionSnapshotsRequest, opts ...grpc.CallOption) (*SnapshotList, error) { + out := new(SnapshotList) + err := c.cc.Invoke(ctx, RegionSnapshots_List_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionSnapshotsClient) SetIamPolicy(ctx context.Context, in *SetIamPolicyRegionSnapshotRequest, opts ...grpc.CallOption) (*Policy, error) { + out := new(Policy) + err := c.cc.Invoke(ctx, RegionSnapshots_SetIamPolicy_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionSnapshotsClient) SetLabels(ctx context.Context, in *SetLabelsRegionSnapshotRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionSnapshots_SetLabels_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionSnapshotsClient) TestIamPermissions(ctx context.Context, in *TestIamPermissionsRegionSnapshotRequest, opts ...grpc.CallOption) (*TestPermissionsResponse, error) { + out := new(TestPermissionsResponse) + err := c.cc.Invoke(ctx, RegionSnapshots_TestIamPermissions_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *regionSnapshotsClient) UpdateKmsKey(ctx context.Context, in *UpdateKmsKeyRegionSnapshotRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, RegionSnapshots_UpdateKmsKey_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// RegionSnapshotsServer is the server API for RegionSnapshots service. +// All implementations should embed UnimplementedRegionSnapshotsServer +// for forward compatibility +type RegionSnapshotsServer interface { + // Deletes the specified Snapshot resource. Keep in mind that deleting + // a single snapshot might not necessarily delete all the data on that + // snapshot. If any data on the snapshot that is marked for deletion is + // needed for subsequent snapshots, the data will be moved to the next + // corresponding snapshot. + // + // For more information, seeDeleting + // snapshots. + Delete(context.Context, *DeleteRegionSnapshotRequest) (*Operation, error) + // Returns the specified Snapshot resource. + Get(context.Context, *GetRegionSnapshotRequest) (*Snapshot, error) + // Gets the access control policy for a resource. May be empty if no such + // policy or resource exists. + GetIamPolicy(context.Context, *GetIamPolicyRegionSnapshotRequest) (*Policy, error) + // Creates a snapshot in the specified region using the data included + // in the request. + Insert(context.Context, *InsertRegionSnapshotRequest) (*Operation, error) + // Retrieves the list of Snapshot resources contained within + // the specified region. + List(context.Context, *ListRegionSnapshotsRequest) (*SnapshotList, error) + // Sets the access control policy on the specified resource. + // Replaces any existing policy. + SetIamPolicy(context.Context, *SetIamPolicyRegionSnapshotRequest) (*Policy, error) + // Sets the labels on a regional snapshot. To learn more about labels, read + // the Labeling Resources + // documentation. + SetLabels(context.Context, *SetLabelsRegionSnapshotRequest) (*Operation, error) + // Returns permissions that a caller has on the specified resource. + TestIamPermissions(context.Context, *TestIamPermissionsRegionSnapshotRequest) (*TestPermissionsResponse, error) + // Rotates the customer-managed + // encryption key to the latest version for the specified snapshot. + UpdateKmsKey(context.Context, *UpdateKmsKeyRegionSnapshotRequest) (*Operation, error) +} + +// UnimplementedRegionSnapshotsServer should be embedded to have forward compatible implementations. +type UnimplementedRegionSnapshotsServer struct { +} + +func (UnimplementedRegionSnapshotsServer) Delete(context.Context, *DeleteRegionSnapshotRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented") +} +func (UnimplementedRegionSnapshotsServer) Get(context.Context, *GetRegionSnapshotRequest) (*Snapshot, error) { + return nil, status.Errorf(codes.Unimplemented, "method Get not implemented") +} +func (UnimplementedRegionSnapshotsServer) GetIamPolicy(context.Context, *GetIamPolicyRegionSnapshotRequest) (*Policy, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetIamPolicy not implemented") +} +func (UnimplementedRegionSnapshotsServer) Insert(context.Context, *InsertRegionSnapshotRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Insert not implemented") +} +func (UnimplementedRegionSnapshotsServer) List(context.Context, *ListRegionSnapshotsRequest) (*SnapshotList, error) { + return nil, status.Errorf(codes.Unimplemented, "method List not implemented") +} +func (UnimplementedRegionSnapshotsServer) SetIamPolicy(context.Context, *SetIamPolicyRegionSnapshotRequest) (*Policy, error) { + return nil, status.Errorf(codes.Unimplemented, "method SetIamPolicy not implemented") +} +func (UnimplementedRegionSnapshotsServer) SetLabels(context.Context, *SetLabelsRegionSnapshotRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method SetLabels not implemented") +} +func (UnimplementedRegionSnapshotsServer) TestIamPermissions(context.Context, *TestIamPermissionsRegionSnapshotRequest) (*TestPermissionsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method TestIamPermissions not implemented") +} +func (UnimplementedRegionSnapshotsServer) UpdateKmsKey(context.Context, *UpdateKmsKeyRegionSnapshotRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method UpdateKmsKey not implemented") +} + +// UnsafeRegionSnapshotsServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to RegionSnapshotsServer will +// result in compilation errors. +type UnsafeRegionSnapshotsServer interface { + mustEmbedUnimplementedRegionSnapshotsServer() +} + +func RegisterRegionSnapshotsServer(s grpc.ServiceRegistrar, srv RegionSnapshotsServer) { + s.RegisterService(&RegionSnapshots_ServiceDesc, srv) +} + +func _RegionSnapshots_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DeleteRegionSnapshotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionSnapshotsServer).Delete(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionSnapshots_Delete_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionSnapshotsServer).Delete(ctx, req.(*DeleteRegionSnapshotRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionSnapshots_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetRegionSnapshotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionSnapshotsServer).Get(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionSnapshots_Get_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionSnapshotsServer).Get(ctx, req.(*GetRegionSnapshotRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionSnapshots_GetIamPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetIamPolicyRegionSnapshotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionSnapshotsServer).GetIamPolicy(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionSnapshots_GetIamPolicy_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionSnapshotsServer).GetIamPolicy(ctx, req.(*GetIamPolicyRegionSnapshotRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionSnapshots_Insert_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(InsertRegionSnapshotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionSnapshotsServer).Insert(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionSnapshots_Insert_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionSnapshotsServer).Insert(ctx, req.(*InsertRegionSnapshotRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionSnapshots_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListRegionSnapshotsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionSnapshotsServer).List(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionSnapshots_List_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionSnapshotsServer).List(ctx, req.(*ListRegionSnapshotsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionSnapshots_SetIamPolicy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(SetIamPolicyRegionSnapshotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionSnapshotsServer).SetIamPolicy(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionSnapshots_SetIamPolicy_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionSnapshotsServer).SetIamPolicy(ctx, req.(*SetIamPolicyRegionSnapshotRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionSnapshots_SetLabels_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(SetLabelsRegionSnapshotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionSnapshotsServer).SetLabels(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionSnapshots_SetLabels_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionSnapshotsServer).SetLabels(ctx, req.(*SetLabelsRegionSnapshotRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionSnapshots_TestIamPermissions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(TestIamPermissionsRegionSnapshotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionSnapshotsServer).TestIamPermissions(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionSnapshots_TestIamPermissions_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionSnapshotsServer).TestIamPermissions(ctx, req.(*TestIamPermissionsRegionSnapshotRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _RegionSnapshots_UpdateKmsKey_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(UpdateKmsKeyRegionSnapshotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(RegionSnapshotsServer).UpdateKmsKey(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: RegionSnapshots_UpdateKmsKey_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(RegionSnapshotsServer).UpdateKmsKey(ctx, req.(*UpdateKmsKeyRegionSnapshotRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// RegionSnapshots_ServiceDesc is the grpc.ServiceDesc for RegionSnapshots service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var RegionSnapshots_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "google.cloud.compute.v1.RegionSnapshots", + HandlerType: (*RegionSnapshotsServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "Delete", + Handler: _RegionSnapshots_Delete_Handler, + }, + { + MethodName: "Get", + Handler: _RegionSnapshots_Get_Handler, + }, + { + MethodName: "GetIamPolicy", + Handler: _RegionSnapshots_GetIamPolicy_Handler, + }, + { + MethodName: "Insert", + Handler: _RegionSnapshots_Insert_Handler, + }, + { + MethodName: "List", + Handler: _RegionSnapshots_List_Handler, + }, + { + MethodName: "SetIamPolicy", + Handler: _RegionSnapshots_SetIamPolicy_Handler, + }, + { + MethodName: "SetLabels", + Handler: _RegionSnapshots_SetLabels_Handler, + }, + { + MethodName: "TestIamPermissions", + Handler: _RegionSnapshots_TestIamPermissions_Handler, + }, + { + MethodName: "UpdateKmsKey", + Handler: _RegionSnapshots_UpdateKmsKey_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/cloud/compute/v1/compute.proto", +} + const ( RegionSslCertificates_Delete_FullMethodName = "/google.cloud.compute.v1.RegionSslCertificates/Delete" RegionSslCertificates_Get_FullMethodName = "/google.cloud.compute.v1.RegionSslCertificates/Get" @@ -37268,6 +39417,7 @@ const ( Snapshots_SetIamPolicy_FullMethodName = "/google.cloud.compute.v1.Snapshots/SetIamPolicy" Snapshots_SetLabels_FullMethodName = "/google.cloud.compute.v1.Snapshots/SetLabels" Snapshots_TestIamPermissions_FullMethodName = "/google.cloud.compute.v1.Snapshots/TestIamPermissions" + Snapshots_UpdateKmsKey_FullMethodName = "/google.cloud.compute.v1.Snapshots/UpdateKmsKey" ) // SnapshotsClient is the client API for Snapshots service. @@ -37305,6 +39455,9 @@ type SnapshotsClient interface { SetLabels(ctx context.Context, in *SetLabelsSnapshotRequest, opts ...grpc.CallOption) (*Operation, error) // Returns permissions that a caller has on the specified resource. TestIamPermissions(ctx context.Context, in *TestIamPermissionsSnapshotRequest, opts ...grpc.CallOption) (*TestPermissionsResponse, error) + // Rotates the customer-managed + // encryption key to the latest version for the specified snapshot. + UpdateKmsKey(ctx context.Context, in *UpdateKmsKeySnapshotRequest, opts ...grpc.CallOption) (*Operation, error) } type snapshotsClient struct { @@ -37387,6 +39540,15 @@ func (c *snapshotsClient) TestIamPermissions(ctx context.Context, in *TestIamPer return out, nil } +func (c *snapshotsClient) UpdateKmsKey(ctx context.Context, in *UpdateKmsKeySnapshotRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, Snapshots_UpdateKmsKey_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // SnapshotsServer is the server API for Snapshots service. // All implementations should embed UnimplementedSnapshotsServer // for forward compatibility @@ -37422,6 +39584,9 @@ type SnapshotsServer interface { SetLabels(context.Context, *SetLabelsSnapshotRequest) (*Operation, error) // Returns permissions that a caller has on the specified resource. TestIamPermissions(context.Context, *TestIamPermissionsSnapshotRequest) (*TestPermissionsResponse, error) + // Rotates the customer-managed + // encryption key to the latest version for the specified snapshot. + UpdateKmsKey(context.Context, *UpdateKmsKeySnapshotRequest) (*Operation, error) } // UnimplementedSnapshotsServer should be embedded to have forward compatible implementations. @@ -37452,6 +39617,9 @@ func (UnimplementedSnapshotsServer) SetLabels(context.Context, *SetLabelsSnapsho func (UnimplementedSnapshotsServer) TestIamPermissions(context.Context, *TestIamPermissionsSnapshotRequest) (*TestPermissionsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method TestIamPermissions not implemented") } +func (UnimplementedSnapshotsServer) UpdateKmsKey(context.Context, *UpdateKmsKeySnapshotRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method UpdateKmsKey not implemented") +} // UnsafeSnapshotsServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to SnapshotsServer will @@ -37608,6 +39776,24 @@ func _Snapshots_TestIamPermissions_Handler(srv interface{}, ctx context.Context, return interceptor(ctx, in, info, handler) } +func _Snapshots_UpdateKmsKey_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(UpdateKmsKeySnapshotRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(SnapshotsServer).UpdateKmsKey(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: Snapshots_UpdateKmsKey_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(SnapshotsServer).UpdateKmsKey(ctx, req.(*UpdateKmsKeySnapshotRequest)) + } + return interceptor(ctx, in, info, handler) +} + // Snapshots_ServiceDesc is the grpc.ServiceDesc for Snapshots service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) @@ -37647,6 +39833,10 @@ var Snapshots_ServiceDesc = grpc.ServiceDesc{ MethodName: "TestIamPermissions", Handler: _Snapshots_TestIamPermissions_Handler, }, + { + MethodName: "UpdateKmsKey", + Handler: _Snapshots_UpdateKmsKey_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "google/cloud/compute/v1/compute.proto", @@ -44211,6 +46401,252 @@ var ZoneOperations_ServiceDesc = grpc.ServiceDesc{ Metadata: "google/cloud/compute/v1/compute.proto", } +const ( + ZoneVmExtensionPolicies_Delete_FullMethodName = "/google.cloud.compute.v1.ZoneVmExtensionPolicies/Delete" + ZoneVmExtensionPolicies_Get_FullMethodName = "/google.cloud.compute.v1.ZoneVmExtensionPolicies/Get" + ZoneVmExtensionPolicies_Insert_FullMethodName = "/google.cloud.compute.v1.ZoneVmExtensionPolicies/Insert" + ZoneVmExtensionPolicies_List_FullMethodName = "/google.cloud.compute.v1.ZoneVmExtensionPolicies/List" + ZoneVmExtensionPolicies_Update_FullMethodName = "/google.cloud.compute.v1.ZoneVmExtensionPolicies/Update" +) + +// ZoneVmExtensionPoliciesClient is the client API for ZoneVmExtensionPolicies 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. +type ZoneVmExtensionPoliciesClient interface { + // Deletes a specified zone VM extension policy. + Delete(ctx context.Context, in *DeleteZoneVmExtensionPolicyRequest, opts ...grpc.CallOption) (*Operation, error) + // Retrieves details of a specific zone VM extension policy. + Get(ctx context.Context, in *GetZoneVmExtensionPolicyRequest, opts ...grpc.CallOption) (*VmExtensionPolicy, error) + // Creates a new zone-level VM extension policy within a project. + Insert(ctx context.Context, in *InsertZoneVmExtensionPolicyRequest, opts ...grpc.CallOption) (*Operation, error) + // Lists all VM extension policies within a specific zone for a project. + List(ctx context.Context, in *ListZoneVmExtensionPoliciesRequest, opts ...grpc.CallOption) (*VmExtensionPolicyList, error) + // Modifies an existing zone VM extension policy. + Update(ctx context.Context, in *UpdateZoneVmExtensionPolicyRequest, opts ...grpc.CallOption) (*Operation, error) +} + +type zoneVmExtensionPoliciesClient struct { + cc grpc.ClientConnInterface +} + +func NewZoneVmExtensionPoliciesClient(cc grpc.ClientConnInterface) ZoneVmExtensionPoliciesClient { + return &zoneVmExtensionPoliciesClient{cc} +} + +func (c *zoneVmExtensionPoliciesClient) Delete(ctx context.Context, in *DeleteZoneVmExtensionPolicyRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, ZoneVmExtensionPolicies_Delete_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *zoneVmExtensionPoliciesClient) Get(ctx context.Context, in *GetZoneVmExtensionPolicyRequest, opts ...grpc.CallOption) (*VmExtensionPolicy, error) { + out := new(VmExtensionPolicy) + err := c.cc.Invoke(ctx, ZoneVmExtensionPolicies_Get_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *zoneVmExtensionPoliciesClient) Insert(ctx context.Context, in *InsertZoneVmExtensionPolicyRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, ZoneVmExtensionPolicies_Insert_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *zoneVmExtensionPoliciesClient) List(ctx context.Context, in *ListZoneVmExtensionPoliciesRequest, opts ...grpc.CallOption) (*VmExtensionPolicyList, error) { + out := new(VmExtensionPolicyList) + err := c.cc.Invoke(ctx, ZoneVmExtensionPolicies_List_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *zoneVmExtensionPoliciesClient) Update(ctx context.Context, in *UpdateZoneVmExtensionPolicyRequest, opts ...grpc.CallOption) (*Operation, error) { + out := new(Operation) + err := c.cc.Invoke(ctx, ZoneVmExtensionPolicies_Update_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// ZoneVmExtensionPoliciesServer is the server API for ZoneVmExtensionPolicies service. +// All implementations should embed UnimplementedZoneVmExtensionPoliciesServer +// for forward compatibility +type ZoneVmExtensionPoliciesServer interface { + // Deletes a specified zone VM extension policy. + Delete(context.Context, *DeleteZoneVmExtensionPolicyRequest) (*Operation, error) + // Retrieves details of a specific zone VM extension policy. + Get(context.Context, *GetZoneVmExtensionPolicyRequest) (*VmExtensionPolicy, error) + // Creates a new zone-level VM extension policy within a project. + Insert(context.Context, *InsertZoneVmExtensionPolicyRequest) (*Operation, error) + // Lists all VM extension policies within a specific zone for a project. + List(context.Context, *ListZoneVmExtensionPoliciesRequest) (*VmExtensionPolicyList, error) + // Modifies an existing zone VM extension policy. + Update(context.Context, *UpdateZoneVmExtensionPolicyRequest) (*Operation, error) +} + +// UnimplementedZoneVmExtensionPoliciesServer should be embedded to have forward compatible implementations. +type UnimplementedZoneVmExtensionPoliciesServer struct { +} + +func (UnimplementedZoneVmExtensionPoliciesServer) Delete(context.Context, *DeleteZoneVmExtensionPolicyRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented") +} +func (UnimplementedZoneVmExtensionPoliciesServer) Get(context.Context, *GetZoneVmExtensionPolicyRequest) (*VmExtensionPolicy, error) { + return nil, status.Errorf(codes.Unimplemented, "method Get not implemented") +} +func (UnimplementedZoneVmExtensionPoliciesServer) Insert(context.Context, *InsertZoneVmExtensionPolicyRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Insert not implemented") +} +func (UnimplementedZoneVmExtensionPoliciesServer) List(context.Context, *ListZoneVmExtensionPoliciesRequest) (*VmExtensionPolicyList, error) { + return nil, status.Errorf(codes.Unimplemented, "method List not implemented") +} +func (UnimplementedZoneVmExtensionPoliciesServer) Update(context.Context, *UpdateZoneVmExtensionPolicyRequest) (*Operation, error) { + return nil, status.Errorf(codes.Unimplemented, "method Update not implemented") +} + +// UnsafeZoneVmExtensionPoliciesServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to ZoneVmExtensionPoliciesServer will +// result in compilation errors. +type UnsafeZoneVmExtensionPoliciesServer interface { + mustEmbedUnimplementedZoneVmExtensionPoliciesServer() +} + +func RegisterZoneVmExtensionPoliciesServer(s grpc.ServiceRegistrar, srv ZoneVmExtensionPoliciesServer) { + s.RegisterService(&ZoneVmExtensionPolicies_ServiceDesc, srv) +} + +func _ZoneVmExtensionPolicies_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DeleteZoneVmExtensionPolicyRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ZoneVmExtensionPoliciesServer).Delete(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: ZoneVmExtensionPolicies_Delete_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ZoneVmExtensionPoliciesServer).Delete(ctx, req.(*DeleteZoneVmExtensionPolicyRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _ZoneVmExtensionPolicies_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetZoneVmExtensionPolicyRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ZoneVmExtensionPoliciesServer).Get(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: ZoneVmExtensionPolicies_Get_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ZoneVmExtensionPoliciesServer).Get(ctx, req.(*GetZoneVmExtensionPolicyRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _ZoneVmExtensionPolicies_Insert_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(InsertZoneVmExtensionPolicyRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ZoneVmExtensionPoliciesServer).Insert(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: ZoneVmExtensionPolicies_Insert_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ZoneVmExtensionPoliciesServer).Insert(ctx, req.(*InsertZoneVmExtensionPolicyRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _ZoneVmExtensionPolicies_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ListZoneVmExtensionPoliciesRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ZoneVmExtensionPoliciesServer).List(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: ZoneVmExtensionPolicies_List_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ZoneVmExtensionPoliciesServer).List(ctx, req.(*ListZoneVmExtensionPoliciesRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _ZoneVmExtensionPolicies_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(UpdateZoneVmExtensionPolicyRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ZoneVmExtensionPoliciesServer).Update(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: ZoneVmExtensionPolicies_Update_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ZoneVmExtensionPoliciesServer).Update(ctx, req.(*UpdateZoneVmExtensionPolicyRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// ZoneVmExtensionPolicies_ServiceDesc is the grpc.ServiceDesc for ZoneVmExtensionPolicies service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var ZoneVmExtensionPolicies_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "google.cloud.compute.v1.ZoneVmExtensionPolicies", + HandlerType: (*ZoneVmExtensionPoliciesServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "Delete", + Handler: _ZoneVmExtensionPolicies_Delete_Handler, + }, + { + MethodName: "Get", + Handler: _ZoneVmExtensionPolicies_Get_Handler, + }, + { + MethodName: "Insert", + Handler: _ZoneVmExtensionPolicies_Insert_Handler, + }, + { + MethodName: "List", + Handler: _ZoneVmExtensionPolicies_List_Handler, + }, + { + MethodName: "Update", + Handler: _ZoneVmExtensionPolicies_Update_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/cloud/compute/v1/compute.proto", +} + const ( Zones_Get_FullMethodName = "/google.cloud.compute.v1.Zones/Get" Zones_List_FullMethodName = "/google.cloud.compute.v1.Zones/List" diff --git a/vendor/cloud.google.com/go/compute/apiv1/disks_client.go b/vendor/cloud.google.com/go/compute/apiv1/disks_client.go index be74c8af..73917aa6 100644 --- a/vendor/cloud.google.com/go/compute/apiv1/disks_client.go +++ b/vendor/cloud.google.com/go/compute/apiv1/disks_client.go @@ -62,6 +62,7 @@ type DisksCallOptions struct { StopGroupAsyncReplication []gax.CallOption TestIamPermissions []gax.CallOption Update []gax.CallOption + UpdateKmsKey []gax.CallOption } func defaultDisksRESTCallOptions() *DisksCallOptions { @@ -159,6 +160,9 @@ func defaultDisksRESTCallOptions() *DisksCallOptions { Update: []gax.CallOption{ gax.WithTimeout(600000 * time.Millisecond), }, + UpdateKmsKey: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, } } @@ -186,6 +190,7 @@ type internalDisksClient interface { StopGroupAsyncReplication(context.Context, *computepb.StopGroupAsyncReplicationDiskRequest, ...gax.CallOption) (*Operation, error) TestIamPermissions(context.Context, *computepb.TestIamPermissionsDiskRequest, ...gax.CallOption) (*computepb.TestPermissionsResponse, error) Update(context.Context, *computepb.UpdateDiskRequest, ...gax.CallOption) (*Operation, error) + UpdateKmsKey(context.Context, *computepb.UpdateKmsKeyDiskRequest, ...gax.CallOption) (*Operation, error) } // DisksClient is a client for interacting with Google Compute Engine API. @@ -345,6 +350,12 @@ func (c *DisksClient) Update(ctx context.Context, req *computepb.UpdateDiskReque return c.internalClient.Update(ctx, req, opts...) } +// UpdateKmsKey rotates the customer-managed +// encryption key to the latest version for the specified persistent disk. +func (c *DisksClient) UpdateKmsKey(ctx context.Context, req *computepb.UpdateKmsKeyDiskRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.UpdateKmsKey(ctx, req, opts...) +} + // Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. type disksRESTClient struct { // The http endpoint to connect to. @@ -425,6 +436,7 @@ func NewDisksRESTClient(ctx context.Context, opts ...option.ClientOption) (*Disk callOpts.StopGroupAsyncReplication = append(callOpts.StopGroupAsyncReplication, gax.WithClientMetrics(metrics)) callOpts.TestIamPermissions = append(callOpts.TestIamPermissions, gax.WithClientMetrics(metrics)) callOpts.Update = append(callOpts.Update, gax.WithClientMetrics(metrics)) + callOpts.UpdateKmsKey = append(callOpts.UpdateKmsKey, gax.WithClientMetrics(metrics)) } o := []option.ClientOption{ @@ -1884,3 +1896,78 @@ func (c *disksRESTClient) Update(ctx context.Context, req *computepb.UpdateDiskR } return op, nil } + +// UpdateKmsKey rotates the customer-managed +// encryption key to the latest version for the specified persistent disk. +func (c *disksRESTClient) UpdateKmsKey(ctx context.Context, req *computepb.UpdateKmsKeyDiskRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetDiskUpdateKmsKeyRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/disks/%v/updateKmsKey", req.GetProject(), req.GetZone(), req.GetDisk()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "zone", url.QueryEscape(req.GetZone()), "disk", url.QueryEscape(req.GetDisk()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/zones/%v/disks/%v", req.GetProject(), req.GetZone(), req.GetDisk())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.Disks/UpdateKmsKey") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/zones/{zone}/disks/{disk}/updateKmsKey") + } + opts = append((*c.CallOptions).UpdateKmsKey[0:len((*c.CallOptions).UpdateKmsKey):len((*c.CallOptions).UpdateKmsKey)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "UpdateKmsKey") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + &zoneOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + zone: req.GetZone(), + }, + } + return op, nil +} diff --git a/vendor/cloud.google.com/go/compute/apiv1/doc.go b/vendor/cloud.google.com/go/compute/apiv1/doc.go index 7ff66379..52c3b771 100644 --- a/vendor/cloud.google.com/go/compute/apiv1/doc.go +++ b/vendor/cloud.google.com/go/compute/apiv1/doc.go @@ -40,7 +40,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 := compute.NewAcceleratorTypesClient(ctx) +// c, err := compute.NewAcceleratorTypesRESTClient(ctx) // if err != nil { // // TODO: Handle error. // } @@ -79,7 +79,7 @@ // // # Use of Context // -// The ctx passed to NewAcceleratorTypesClient is used for authentication requests and +// The ctx passed to NewAcceleratorTypesRESTClient 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/vendor/cloud.google.com/go/compute/apiv1/gapic_metadata.json b/vendor/cloud.google.com/go/compute/apiv1/gapic_metadata.json index f6d589b4..2817cc81 100644 --- a/vendor/cloud.google.com/go/compute/apiv1/gapic_metadata.json +++ b/vendor/cloud.google.com/go/compute/apiv1/gapic_metadata.json @@ -151,6 +151,11 @@ "AddSignedUrlKey" ] }, + "AggregatedList": { + "methods": [ + "AggregatedList" + ] + }, "Delete": { "methods": [ "Delete" @@ -181,6 +186,11 @@ "List" ] }, + "ListUsable": { + "methods": [ + "ListUsable" + ] + }, "Patch": { "methods": [ "Patch" @@ -461,6 +471,11 @@ "methods": [ "Update" ] + }, + "UpdateKmsKey": { + "methods": [ + "UpdateKmsKey" + ] } } } @@ -1646,6 +1661,50 @@ } } }, + "InstantSnapshotGroups": { + "clients": { + "rest": { + "libraryClient": "InstantSnapshotGroupsClient", + "rpcs": { + "Delete": { + "methods": [ + "Delete" + ] + }, + "Get": { + "methods": [ + "Get" + ] + }, + "GetIamPolicy": { + "methods": [ + "GetIamPolicy" + ] + }, + "Insert": { + "methods": [ + "Insert" + ] + }, + "List": { + "methods": [ + "List" + ] + }, + "SetIamPolicy": { + "methods": [ + "SetIamPolicy" + ] + }, + "TestIamPermissions": { + "methods": [ + "TestIamPermissions" + ] + } + } + } + } + }, "InstantSnapshots": { "clients": { "rest": { @@ -2959,6 +3018,60 @@ } } }, + "RegionBackendBuckets": { + "clients": { + "rest": { + "libraryClient": "RegionBackendBucketsClient", + "rpcs": { + "Delete": { + "methods": [ + "Delete" + ] + }, + "Get": { + "methods": [ + "Get" + ] + }, + "GetIamPolicy": { + "methods": [ + "GetIamPolicy" + ] + }, + "Insert": { + "methods": [ + "Insert" + ] + }, + "List": { + "methods": [ + "List" + ] + }, + "ListUsable": { + "methods": [ + "ListUsable" + ] + }, + "Patch": { + "methods": [ + "Patch" + ] + }, + "SetIamPolicy": { + "methods": [ + "SetIamPolicy" + ] + }, + "TestIamPermissions": { + "methods": [ + "TestIamPermissions" + ] + } + } + } + } + }, "RegionBackendServices": { "clients": { "rest": { @@ -3082,6 +3195,11 @@ "Get" ] }, + "GetHealth": { + "methods": [ + "GetHealth" + ] + }, "Insert": { "methods": [ "Insert" @@ -3214,6 +3332,11 @@ "methods": [ "Update" ] + }, + "UpdateKmsKey": { + "methods": [ + "UpdateKmsKey" + ] } } } @@ -3371,6 +3494,11 @@ "Get" ] }, + "GetHealth": { + "methods": [ + "GetHealth" + ] + }, "Insert": { "methods": [ "Insert" @@ -3395,6 +3523,40 @@ } } }, + "RegionInstanceGroupManagerResizeRequests": { + "clients": { + "rest": { + "libraryClient": "RegionInstanceGroupManagerResizeRequestsClient", + "rpcs": { + "Cancel": { + "methods": [ + "Cancel" + ] + }, + "Delete": { + "methods": [ + "Delete" + ] + }, + "Get": { + "methods": [ + "Get" + ] + }, + "Insert": { + "methods": [ + "Insert" + ] + }, + "List": { + "methods": [ + "List" + ] + } + } + } + } + }, "RegionInstanceGroupManagers": { "clients": { "rest": { @@ -3596,6 +3758,50 @@ } } }, + "RegionInstantSnapshotGroups": { + "clients": { + "rest": { + "libraryClient": "RegionInstantSnapshotGroupsClient", + "rpcs": { + "Delete": { + "methods": [ + "Delete" + ] + }, + "Get": { + "methods": [ + "Get" + ] + }, + "GetIamPolicy": { + "methods": [ + "GetIamPolicy" + ] + }, + "Insert": { + "methods": [ + "Insert" + ] + }, + "List": { + "methods": [ + "List" + ] + }, + "SetIamPolicy": { + "methods": [ + "SetIamPolicy" + ] + }, + "TestIamPermissions": { + "methods": [ + "TestIamPermissions" + ] + } + } + } + } + }, "RegionInstantSnapshots": { "clients": { "rest": { @@ -3910,6 +4116,79 @@ } } }, + "RegionSnapshotSettings": { + "clients": { + "rest": { + "libraryClient": "RegionSnapshotSettingsClient", + "rpcs": { + "Get": { + "methods": [ + "Get" + ] + }, + "Patch": { + "methods": [ + "Patch" + ] + } + } + } + } + }, + "RegionSnapshots": { + "clients": { + "rest": { + "libraryClient": "RegionSnapshotsClient", + "rpcs": { + "Delete": { + "methods": [ + "Delete" + ] + }, + "Get": { + "methods": [ + "Get" + ] + }, + "GetIamPolicy": { + "methods": [ + "GetIamPolicy" + ] + }, + "Insert": { + "methods": [ + "Insert" + ] + }, + "List": { + "methods": [ + "List" + ] + }, + "SetIamPolicy": { + "methods": [ + "SetIamPolicy" + ] + }, + "SetLabels": { + "methods": [ + "SetLabels" + ] + }, + "TestIamPermissions": { + "methods": [ + "TestIamPermissions" + ] + }, + "UpdateKmsKey": { + "methods": [ + "UpdateKmsKey" + ] + } + } + } + } + }, "RegionSslCertificates": { "clients": { "rest": { @@ -4711,6 +4990,11 @@ "methods": [ "TestIamPermissions" ] + }, + "UpdateKmsKey": { + "methods": [ + "UpdateKmsKey" + ] } } } @@ -5563,6 +5847,40 @@ } } }, + "ZoneVmExtensionPolicies": { + "clients": { + "rest": { + "libraryClient": "ZoneVmExtensionPoliciesClient", + "rpcs": { + "Delete": { + "methods": [ + "Delete" + ] + }, + "Get": { + "methods": [ + "Get" + ] + }, + "Insert": { + "methods": [ + "Insert" + ] + }, + "List": { + "methods": [ + "List" + ] + }, + "Update": { + "methods": [ + "Update" + ] + } + } + } + } + }, "Zones": { "clients": { "rest": { diff --git a/vendor/cloud.google.com/go/compute/apiv1/instant_snapshot_groups_client.go b/vendor/cloud.google.com/go/compute/apiv1/instant_snapshot_groups_client.go new file mode 100644 index 00000000..8dfcedc2 --- /dev/null +++ b/vendor/cloud.google.com/go/compute/apiv1/instant_snapshot_groups_client.go @@ -0,0 +1,778 @@ +// Copyright 2026 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 compute + +import ( + "bytes" + "context" + "fmt" + "log/slog" + "math" + "net/http" + "net/url" + "time" + + computepb "cloud.google.com/go/compute/apiv1/computepb" + gax "github.com/googleapis/gax-go/v2" + "github.com/googleapis/gax-go/v2/callctx" + "google.golang.org/api/iterator" + "google.golang.org/api/option" + "google.golang.org/api/option/internaloption" + httptransport "google.golang.org/api/transport/http" + "google.golang.org/grpc" + "google.golang.org/protobuf/encoding/protojson" + "google.golang.org/protobuf/proto" +) + +var newInstantSnapshotGroupsClientHook clientHook + +// InstantSnapshotGroupsCallOptions contains the retry settings for each method of InstantSnapshotGroupsClient. +type InstantSnapshotGroupsCallOptions struct { + Delete []gax.CallOption + Get []gax.CallOption + GetIamPolicy []gax.CallOption + Insert []gax.CallOption + List []gax.CallOption + SetIamPolicy []gax.CallOption + TestIamPermissions []gax.CallOption +} + +func defaultInstantSnapshotGroupsRESTCallOptions() *InstantSnapshotGroupsCallOptions { + return &InstantSnapshotGroupsCallOptions{ + Delete: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + Get: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + GetIamPolicy: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + Insert: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + List: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + SetIamPolicy: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + TestIamPermissions: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + } +} + +// internalInstantSnapshotGroupsClient is an interface that defines the methods available from Google Compute Engine API. +type internalInstantSnapshotGroupsClient interface { + Close() error + setGoogleClientInfo(...string) + Connection() *grpc.ClientConn + Delete(context.Context, *computepb.DeleteInstantSnapshotGroupRequest, ...gax.CallOption) (*Operation, error) + Get(context.Context, *computepb.GetInstantSnapshotGroupRequest, ...gax.CallOption) (*computepb.InstantSnapshotGroup, error) + GetIamPolicy(context.Context, *computepb.GetIamPolicyInstantSnapshotGroupRequest, ...gax.CallOption) (*computepb.Policy, error) + Insert(context.Context, *computepb.InsertInstantSnapshotGroupRequest, ...gax.CallOption) (*Operation, error) + List(context.Context, *computepb.ListInstantSnapshotGroupsRequest, ...gax.CallOption) *InstantSnapshotGroupIterator + SetIamPolicy(context.Context, *computepb.SetIamPolicyInstantSnapshotGroupRequest, ...gax.CallOption) (*computepb.Policy, error) + TestIamPermissions(context.Context, *computepb.TestIamPermissionsInstantSnapshotGroupRequest, ...gax.CallOption) (*computepb.TestPermissionsResponse, error) +} + +// InstantSnapshotGroupsClient is a client for interacting with Google Compute Engine API. +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +// +// The InstantSnapshotGroups API. +type InstantSnapshotGroupsClient struct { + // The internal transport-dependent client. + internalClient internalInstantSnapshotGroupsClient + + // The call options for this service. + CallOptions *InstantSnapshotGroupsCallOptions +} + +// 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 *InstantSnapshotGroupsClient) 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 *InstantSnapshotGroupsClient) 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 *InstantSnapshotGroupsClient) Connection() *grpc.ClientConn { + return c.internalClient.Connection() +} + +// Delete deletes a Zonal InstantSnapshotGroup resource +func (c *InstantSnapshotGroupsClient) Delete(ctx context.Context, req *computepb.DeleteInstantSnapshotGroupRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Delete(ctx, req, opts...) +} + +// Get returns the specified InstantSnapshotGroup resource in the specified zone. +func (c *InstantSnapshotGroupsClient) Get(ctx context.Context, req *computepb.GetInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.InstantSnapshotGroup, error) { + return c.internalClient.Get(ctx, req, opts...) +} + +// GetIamPolicy gets the access control policy for a resource. May be empty if no such +// policy or resource exists. +func (c *InstantSnapshotGroupsClient) GetIamPolicy(ctx context.Context, req *computepb.GetIamPolicyInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + return c.internalClient.GetIamPolicy(ctx, req, opts...) +} + +// Insert inserts a Zonal InstantSnapshotGroup resource +func (c *InstantSnapshotGroupsClient) Insert(ctx context.Context, req *computepb.InsertInstantSnapshotGroupRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Insert(ctx, req, opts...) +} + +// List retrieves the list of InstantSnapshotGroup resources contained within +// the specified zone. +func (c *InstantSnapshotGroupsClient) List(ctx context.Context, req *computepb.ListInstantSnapshotGroupsRequest, opts ...gax.CallOption) *InstantSnapshotGroupIterator { + return c.internalClient.List(ctx, req, opts...) +} + +// SetIamPolicy sets the access control policy on the specified resource. +// Replaces any existing policy. +func (c *InstantSnapshotGroupsClient) SetIamPolicy(ctx context.Context, req *computepb.SetIamPolicyInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + return c.internalClient.SetIamPolicy(ctx, req, opts...) +} + +// TestIamPermissions returns permissions that a caller has on the specified resource. +func (c *InstantSnapshotGroupsClient) TestIamPermissions(ctx context.Context, req *computepb.TestIamPermissionsInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.TestPermissionsResponse, error) { + return c.internalClient.TestIamPermissions(ctx, req, opts...) +} + +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +type instantSnapshotGroupsRESTClient struct { + // The http endpoint to connect to. + endpoint string + + // The http client. + httpClient *http.Client + + // operationClient is used to call the operation-specific management service. + operationClient *ZoneOperationsClient + + // The x-goog-* headers to be sent with each request. + xGoogHeaders []string + + // Points back to the CallOptions field of the containing InstantSnapshotGroupsClient + CallOptions **InstantSnapshotGroupsCallOptions + + logger *slog.Logger +} + +// NewInstantSnapshotGroupsRESTClient creates a new instant snapshot groups rest client. +// +// The InstantSnapshotGroups API. +func NewInstantSnapshotGroupsRESTClient(ctx context.Context, opts ...option.ClientOption) (*InstantSnapshotGroupsClient, error) { + clientOpts := append(defaultInstantSnapshotGroupsRESTClientOptions(), opts...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + clientOpts = append(clientOpts, internaloption.WithTelemetryAttributes(map[string]string{ + "gcp.client.service": "compute", + "gcp.client.version": getVersionClient(), + "gcp.client.repo": "googleapis/google-cloud-go", + "gcp.client.artifact": "cloud.google.com/go/compute/apiv1", + "gcp.client.language": "go", + "url.domain": "compute.googleapis.com", + })) + } + httpClient, endpoint, err := httptransport.NewClient(ctx, clientOpts...) + if err != nil { + return nil, err + } + + callOpts := defaultInstantSnapshotGroupsRESTCallOptions() + c := &instantSnapshotGroupsRESTClient{ + endpoint: endpoint, + httpClient: httpClient, + CallOptions: &callOpts, + logger: internaloption.GetLogger(opts), + } + c.setGoogleClientInfo() + + if gax.IsFeatureEnabled("METRICS") { + metrics := gax.NewClientMetrics( + gax.WithTelemetryLogger(c.logger), + gax.WithTelemetryAttributes(map[string]string{ + gax.ClientService: "compute", + gax.ClientVersion: getVersionClient(), + gax.ClientArtifact: "cloud.google.com/go/compute/apiv1", + gax.RPCSystem: "http", + gax.URLDomain: "compute.googleapis.com", + }), + ) + + callOpts.Delete = append(callOpts.Delete, gax.WithClientMetrics(metrics)) + callOpts.Get = append(callOpts.Get, gax.WithClientMetrics(metrics)) + callOpts.GetIamPolicy = append(callOpts.GetIamPolicy, gax.WithClientMetrics(metrics)) + callOpts.Insert = append(callOpts.Insert, gax.WithClientMetrics(metrics)) + callOpts.List = append(callOpts.List, gax.WithClientMetrics(metrics)) + callOpts.SetIamPolicy = append(callOpts.SetIamPolicy, gax.WithClientMetrics(metrics)) + callOpts.TestIamPermissions = append(callOpts.TestIamPermissions, gax.WithClientMetrics(metrics)) + } + + o := []option.ClientOption{ + option.WithHTTPClient(httpClient), + option.WithEndpoint(endpoint), + } + opC, err := NewZoneOperationsRESTClient(ctx, o...) + if err != nil { + return nil, err + } + c.operationClient = opC + + return &InstantSnapshotGroupsClient{internalClient: c, CallOptions: callOpts}, nil +} + +func defaultInstantSnapshotGroupsRESTClientOptions() []option.ClientOption { + return []option.ClientOption{ + internaloption.WithDefaultEndpoint("https://compute.googleapis.com"), + internaloption.WithDefaultEndpointTemplate("https://compute.UNIVERSE_DOMAIN"), + internaloption.WithDefaultMTLSEndpoint("https://compute.mtls.googleapis.com"), + internaloption.WithDefaultUniverseDomain("googleapis.com"), + internaloption.WithDefaultAudience("https://compute.googleapis.com/"), + internaloption.WithDefaultScopes(DefaultAuthScopes()...), + internaloption.EnableNewAuthLibrary(), + } +} + +// 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 *instantSnapshotGroupsRESTClient) setGoogleClientInfo(keyval ...string) { + kv := append([]string{"gl-go", gax.GoVersion}, keyval...) + kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "rest", "UNKNOWN", "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 *instantSnapshotGroupsRESTClient) Close() error { + // Replace httpClient with nil to force cleanup. + c.httpClient = nil + if err := c.operationClient.Close(); err != nil { + return err + } + return nil +} + +// Connection returns a connection to the API service. +// +// Deprecated: This method always returns nil. +func (c *instantSnapshotGroupsRESTClient) Connection() *grpc.ClientConn { + return nil +} + +// Delete deletes a Zonal InstantSnapshotGroup resource +func (c *instantSnapshotGroupsRESTClient) Delete(ctx context.Context, req *computepb.DeleteInstantSnapshotGroupRequest, opts ...gax.CallOption) (*Operation, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetZone(), req.GetInstantSnapshotGroup()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "zone", url.QueryEscape(req.GetZone()), "instant_snapshot_group", url.QueryEscape(req.GetInstantSnapshotGroup()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/zones/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetZone(), req.GetInstantSnapshotGroup())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.InstantSnapshotGroups/Delete") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups/{instant_snapshot_group}") + } + opts = append((*c.CallOptions).Delete[0:len((*c.CallOptions).Delete):len((*c.CallOptions).Delete)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("DELETE", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Delete") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + &zoneOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + zone: req.GetZone(), + }, + } + return op, nil +} + +// Get returns the specified InstantSnapshotGroup resource in the specified zone. +func (c *instantSnapshotGroupsRESTClient) Get(ctx context.Context, req *computepb.GetInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.InstantSnapshotGroup, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetZone(), req.GetInstantSnapshotGroup()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "zone", url.QueryEscape(req.GetZone()), "instant_snapshot_group", url.QueryEscape(req.GetInstantSnapshotGroup()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/zones/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetZone(), req.GetInstantSnapshotGroup())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.InstantSnapshotGroups/Get") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups/{instant_snapshot_group}") + } + opts = append((*c.CallOptions).Get[0:len((*c.CallOptions).Get):len((*c.CallOptions).Get)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.InstantSnapshotGroup{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Get") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// GetIamPolicy gets the access control policy for a resource. May be empty if no such +// policy or resource exists. +func (c *instantSnapshotGroupsRESTClient) GetIamPolicy(ctx context.Context, req *computepb.GetIamPolicyInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/instantSnapshotGroups/%v/getIamPolicy", req.GetProject(), req.GetZone(), req.GetResource()) + + params := url.Values{} + if req != nil && req.OptionsRequestedPolicyVersion != nil { + params.Add("optionsRequestedPolicyVersion", fmt.Sprintf("%v", req.GetOptionsRequestedPolicyVersion())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "zone", url.QueryEscape(req.GetZone()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/zones/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetZone(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.InstantSnapshotGroups/GetIamPolicy") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups/{resource}/getIamPolicy") + } + opts = append((*c.CallOptions).GetIamPolicy[0:len((*c.CallOptions).GetIamPolicy):len((*c.CallOptions).GetIamPolicy)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Policy{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "GetIamPolicy") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// Insert inserts a Zonal InstantSnapshotGroup resource +func (c *instantSnapshotGroupsRESTClient) Insert(ctx context.Context, req *computepb.InsertInstantSnapshotGroupRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetInstantSnapshotGroupResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/instantSnapshotGroups", req.GetProject(), req.GetZone()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + if req != nil && req.SourceConsistencyGroup != nil { + params.Add("sourceConsistencyGroup", fmt.Sprintf("%v", req.GetSourceConsistencyGroup())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "zone", url.QueryEscape(req.GetZone()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/zones/%v", req.GetProject(), req.GetZone())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.InstantSnapshotGroups/Insert") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups") + } + opts = append((*c.CallOptions).Insert[0:len((*c.CallOptions).Insert):len((*c.CallOptions).Insert)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "Insert") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + &zoneOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + zone: req.GetZone(), + }, + } + return op, nil +} + +// List retrieves the list of InstantSnapshotGroup resources contained within +// the specified zone. +func (c *instantSnapshotGroupsRESTClient) List(ctx context.Context, req *computepb.ListInstantSnapshotGroupsRequest, opts ...gax.CallOption) *InstantSnapshotGroupIterator { + it := &InstantSnapshotGroupIterator{} + req = proto.Clone(req).(*computepb.ListInstantSnapshotGroupsRequest) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.InstantSnapshotGroup, string, error) { + resp := &computepb.ListInstantSnapshotGroups{} + if pageToken != "" { + req.PageToken = proto.String(pageToken) + } + if pageSize > math.MaxInt32 { + req.MaxResults = proto.Uint32(uint32(math.MaxInt32)) + } else if pageSize != 0 { + req.MaxResults = proto.Uint32(uint32(pageSize)) + } + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, "", err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/instantSnapshotGroups", req.GetProject(), req.GetZone()) + + params := url.Values{} + if req != nil && req.Filter != nil { + params.Add("filter", fmt.Sprintf("%v", req.GetFilter())) + } + if req != nil && req.MaxResults != nil { + params.Add("maxResults", fmt.Sprintf("%v", req.GetMaxResults())) + } + if req != nil && req.OrderBy != nil { + params.Add("orderBy", fmt.Sprintf("%v", req.GetOrderBy())) + } + if req != nil && req.PageToken != nil { + params.Add("pageToken", fmt.Sprintf("%v", req.GetPageToken())) + } + if req != nil && req.ReturnPartialSuccess != nil { + params.Add("returnPartialSuccess", fmt.Sprintf("%v", req.GetReturnPartialSuccess())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := append(c.xGoogHeaders, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "List") + if err != nil { + return err + } + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, "", e + } + it.Response = resp + return resp.GetItems(), resp.GetNextPageToken(), nil + } + + fetch := func(pageSize int, pageToken string) (string, error) { + items, nextPageToken, err := it.InternalFetch(pageSize, pageToken) + if err != nil { + return "", err + } + it.items = append(it.items, items...) + return nextPageToken, nil + } + + it.pageInfo, it.nextFunc = iterator.NewPageInfo(fetch, it.bufLen, it.takeBuf) + it.pageInfo.MaxSize = int(req.GetMaxResults()) + it.pageInfo.Token = req.GetPageToken() + + return it +} + +// SetIamPolicy sets the access control policy on the specified resource. +// Replaces any existing policy. +func (c *instantSnapshotGroupsRESTClient) SetIamPolicy(ctx context.Context, req *computepb.SetIamPolicyInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetZoneSetPolicyRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/instantSnapshotGroups/%v/setIamPolicy", req.GetProject(), req.GetZone(), req.GetResource()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "zone", url.QueryEscape(req.GetZone()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/zones/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetZone(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.InstantSnapshotGroups/SetIamPolicy") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups/{resource}/setIamPolicy") + } + opts = append((*c.CallOptions).SetIamPolicy[0:len((*c.CallOptions).SetIamPolicy):len((*c.CallOptions).SetIamPolicy)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Policy{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "SetIamPolicy") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// TestIamPermissions returns permissions that a caller has on the specified resource. +func (c *instantSnapshotGroupsRESTClient) TestIamPermissions(ctx context.Context, req *computepb.TestIamPermissionsInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.TestPermissionsResponse, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetTestPermissionsRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/instantSnapshotGroups/%v/testIamPermissions", req.GetProject(), req.GetZone(), req.GetResource()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "zone", url.QueryEscape(req.GetZone()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/zones/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetZone(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.InstantSnapshotGroups/TestIamPermissions") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/zones/{zone}/instantSnapshotGroups/{resource}/testIamPermissions") + } + opts = append((*c.CallOptions).TestIamPermissions[0:len((*c.CallOptions).TestIamPermissions):len((*c.CallOptions).TestIamPermissions)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.TestPermissionsResponse{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "TestIamPermissions") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} diff --git a/vendor/cloud.google.com/go/compute/apiv1/region_backend_buckets_client.go b/vendor/cloud.google.com/go/compute/apiv1/region_backend_buckets_client.go new file mode 100644 index 00000000..40699c6f --- /dev/null +++ b/vendor/cloud.google.com/go/compute/apiv1/region_backend_buckets_client.go @@ -0,0 +1,976 @@ +// Copyright 2026 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 compute + +import ( + "bytes" + "context" + "fmt" + "log/slog" + "math" + "net/http" + "net/url" + "time" + + computepb "cloud.google.com/go/compute/apiv1/computepb" + gax "github.com/googleapis/gax-go/v2" + "github.com/googleapis/gax-go/v2/callctx" + "google.golang.org/api/iterator" + "google.golang.org/api/option" + "google.golang.org/api/option/internaloption" + httptransport "google.golang.org/api/transport/http" + "google.golang.org/grpc" + "google.golang.org/protobuf/encoding/protojson" + "google.golang.org/protobuf/proto" +) + +var newRegionBackendBucketsClientHook clientHook + +// RegionBackendBucketsCallOptions contains the retry settings for each method of RegionBackendBucketsClient. +type RegionBackendBucketsCallOptions struct { + Delete []gax.CallOption + Get []gax.CallOption + GetIamPolicy []gax.CallOption + Insert []gax.CallOption + List []gax.CallOption + ListUsable []gax.CallOption + Patch []gax.CallOption + SetIamPolicy []gax.CallOption + TestIamPermissions []gax.CallOption +} + +func defaultRegionBackendBucketsRESTCallOptions() *RegionBackendBucketsCallOptions { + return &RegionBackendBucketsCallOptions{ + Delete: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + Get: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + GetIamPolicy: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + Insert: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + List: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + ListUsable: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + Patch: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + SetIamPolicy: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + TestIamPermissions: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + } +} + +// internalRegionBackendBucketsClient is an interface that defines the methods available from Google Compute Engine API. +type internalRegionBackendBucketsClient interface { + Close() error + setGoogleClientInfo(...string) + Connection() *grpc.ClientConn + Delete(context.Context, *computepb.DeleteRegionBackendBucketRequest, ...gax.CallOption) (*Operation, error) + Get(context.Context, *computepb.GetRegionBackendBucketRequest, ...gax.CallOption) (*computepb.BackendBucket, error) + GetIamPolicy(context.Context, *computepb.GetIamPolicyRegionBackendBucketRequest, ...gax.CallOption) (*computepb.Policy, error) + Insert(context.Context, *computepb.InsertRegionBackendBucketRequest, ...gax.CallOption) (*Operation, error) + List(context.Context, *computepb.ListRegionBackendBucketsRequest, ...gax.CallOption) *BackendBucketIterator + ListUsable(context.Context, *computepb.ListUsableRegionBackendBucketsRequest, ...gax.CallOption) *BackendBucketIterator + Patch(context.Context, *computepb.PatchRegionBackendBucketRequest, ...gax.CallOption) (*Operation, error) + SetIamPolicy(context.Context, *computepb.SetIamPolicyRegionBackendBucketRequest, ...gax.CallOption) (*computepb.Policy, error) + TestIamPermissions(context.Context, *computepb.TestIamPermissionsRegionBackendBucketRequest, ...gax.CallOption) (*computepb.TestPermissionsResponse, error) +} + +// RegionBackendBucketsClient is a client for interacting with Google Compute Engine API. +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +// +// The RegionBackendBuckets API. +type RegionBackendBucketsClient struct { + // The internal transport-dependent client. + internalClient internalRegionBackendBucketsClient + + // The call options for this service. + CallOptions *RegionBackendBucketsCallOptions +} + +// 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 *RegionBackendBucketsClient) 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 *RegionBackendBucketsClient) 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 *RegionBackendBucketsClient) Connection() *grpc.ClientConn { + return c.internalClient.Connection() +} + +// Delete deletes the specified regional BackendBucket resource. +func (c *RegionBackendBucketsClient) Delete(ctx context.Context, req *computepb.DeleteRegionBackendBucketRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Delete(ctx, req, opts...) +} + +// Get returns the specified regional BackendBucket resource. +func (c *RegionBackendBucketsClient) Get(ctx context.Context, req *computepb.GetRegionBackendBucketRequest, opts ...gax.CallOption) (*computepb.BackendBucket, error) { + return c.internalClient.Get(ctx, req, opts...) +} + +// GetIamPolicy gets the access control policy for a resource. May be empty if no such +// policy or resource exists. +func (c *RegionBackendBucketsClient) GetIamPolicy(ctx context.Context, req *computepb.GetIamPolicyRegionBackendBucketRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + return c.internalClient.GetIamPolicy(ctx, req, opts...) +} + +// Insert creates a RegionBackendBucket in the specified project in the given scope +// using the parameters that are included in the request. +func (c *RegionBackendBucketsClient) Insert(ctx context.Context, req *computepb.InsertRegionBackendBucketRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Insert(ctx, req, opts...) +} + +// List retrieves the list of BackendBucket resources available to the specified +// project in the given region. +func (c *RegionBackendBucketsClient) List(ctx context.Context, req *computepb.ListRegionBackendBucketsRequest, opts ...gax.CallOption) *BackendBucketIterator { + return c.internalClient.List(ctx, req, opts...) +} + +// ListUsable retrieves a list of all usable backend buckets in the specified project in +// the given region. +func (c *RegionBackendBucketsClient) ListUsable(ctx context.Context, req *computepb.ListUsableRegionBackendBucketsRequest, opts ...gax.CallOption) *BackendBucketIterator { + return c.internalClient.ListUsable(ctx, req, opts...) +} + +// Patch updates the specified BackendBucket resource with the data included in the +// request. This method supportsPATCH +// semantics and uses theJSON merge +// patch format and processing rules. +func (c *RegionBackendBucketsClient) Patch(ctx context.Context, req *computepb.PatchRegionBackendBucketRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Patch(ctx, req, opts...) +} + +// SetIamPolicy sets the access control policy on the specified resource. +// Replaces any existing policy. +func (c *RegionBackendBucketsClient) SetIamPolicy(ctx context.Context, req *computepb.SetIamPolicyRegionBackendBucketRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + return c.internalClient.SetIamPolicy(ctx, req, opts...) +} + +// TestIamPermissions returns permissions that a caller has on the specified resource. +func (c *RegionBackendBucketsClient) TestIamPermissions(ctx context.Context, req *computepb.TestIamPermissionsRegionBackendBucketRequest, opts ...gax.CallOption) (*computepb.TestPermissionsResponse, error) { + return c.internalClient.TestIamPermissions(ctx, req, opts...) +} + +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +type regionBackendBucketsRESTClient struct { + // The http endpoint to connect to. + endpoint string + + // The http client. + httpClient *http.Client + + // operationClient is used to call the operation-specific management service. + operationClient *RegionOperationsClient + + // The x-goog-* headers to be sent with each request. + xGoogHeaders []string + + // Points back to the CallOptions field of the containing RegionBackendBucketsClient + CallOptions **RegionBackendBucketsCallOptions + + logger *slog.Logger +} + +// NewRegionBackendBucketsRESTClient creates a new region backend buckets rest client. +// +// The RegionBackendBuckets API. +func NewRegionBackendBucketsRESTClient(ctx context.Context, opts ...option.ClientOption) (*RegionBackendBucketsClient, error) { + clientOpts := append(defaultRegionBackendBucketsRESTClientOptions(), opts...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + clientOpts = append(clientOpts, internaloption.WithTelemetryAttributes(map[string]string{ + "gcp.client.service": "compute", + "gcp.client.version": getVersionClient(), + "gcp.client.repo": "googleapis/google-cloud-go", + "gcp.client.artifact": "cloud.google.com/go/compute/apiv1", + "gcp.client.language": "go", + "url.domain": "compute.googleapis.com", + })) + } + httpClient, endpoint, err := httptransport.NewClient(ctx, clientOpts...) + if err != nil { + return nil, err + } + + callOpts := defaultRegionBackendBucketsRESTCallOptions() + c := ®ionBackendBucketsRESTClient{ + endpoint: endpoint, + httpClient: httpClient, + CallOptions: &callOpts, + logger: internaloption.GetLogger(opts), + } + c.setGoogleClientInfo() + + if gax.IsFeatureEnabled("METRICS") { + metrics := gax.NewClientMetrics( + gax.WithTelemetryLogger(c.logger), + gax.WithTelemetryAttributes(map[string]string{ + gax.ClientService: "compute", + gax.ClientVersion: getVersionClient(), + gax.ClientArtifact: "cloud.google.com/go/compute/apiv1", + gax.RPCSystem: "http", + gax.URLDomain: "compute.googleapis.com", + }), + ) + + callOpts.Delete = append(callOpts.Delete, gax.WithClientMetrics(metrics)) + callOpts.Get = append(callOpts.Get, gax.WithClientMetrics(metrics)) + callOpts.GetIamPolicy = append(callOpts.GetIamPolicy, gax.WithClientMetrics(metrics)) + callOpts.Insert = append(callOpts.Insert, gax.WithClientMetrics(metrics)) + callOpts.List = append(callOpts.List, gax.WithClientMetrics(metrics)) + callOpts.ListUsable = append(callOpts.ListUsable, gax.WithClientMetrics(metrics)) + callOpts.Patch = append(callOpts.Patch, gax.WithClientMetrics(metrics)) + callOpts.SetIamPolicy = append(callOpts.SetIamPolicy, gax.WithClientMetrics(metrics)) + callOpts.TestIamPermissions = append(callOpts.TestIamPermissions, gax.WithClientMetrics(metrics)) + } + + o := []option.ClientOption{ + option.WithHTTPClient(httpClient), + option.WithEndpoint(endpoint), + } + opC, err := NewRegionOperationsRESTClient(ctx, o...) + if err != nil { + return nil, err + } + c.operationClient = opC + + return &RegionBackendBucketsClient{internalClient: c, CallOptions: callOpts}, nil +} + +func defaultRegionBackendBucketsRESTClientOptions() []option.ClientOption { + return []option.ClientOption{ + internaloption.WithDefaultEndpoint("https://compute.googleapis.com"), + internaloption.WithDefaultEndpointTemplate("https://compute.UNIVERSE_DOMAIN"), + internaloption.WithDefaultMTLSEndpoint("https://compute.mtls.googleapis.com"), + internaloption.WithDefaultUniverseDomain("googleapis.com"), + internaloption.WithDefaultAudience("https://compute.googleapis.com/"), + internaloption.WithDefaultScopes(DefaultAuthScopes()...), + internaloption.EnableNewAuthLibrary(), + } +} + +// 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 *regionBackendBucketsRESTClient) setGoogleClientInfo(keyval ...string) { + kv := append([]string{"gl-go", gax.GoVersion}, keyval...) + kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "rest", "UNKNOWN", "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 *regionBackendBucketsRESTClient) Close() error { + // Replace httpClient with nil to force cleanup. + c.httpClient = nil + if err := c.operationClient.Close(); err != nil { + return err + } + return nil +} + +// Connection returns a connection to the API service. +// +// Deprecated: This method always returns nil. +func (c *regionBackendBucketsRESTClient) Connection() *grpc.ClientConn { + return nil +} + +// Delete deletes the specified regional BackendBucket resource. +func (c *regionBackendBucketsRESTClient) Delete(ctx context.Context, req *computepb.DeleteRegionBackendBucketRequest, opts ...gax.CallOption) (*Operation, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/backendBuckets/%v", req.GetProject(), req.GetRegion(), req.GetBackendBucket()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "backend_bucket", url.QueryEscape(req.GetBackendBucket()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/backendBuckets/%v", req.GetProject(), req.GetRegion(), req.GetBackendBucket())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionBackendBuckets/Delete") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/backendBuckets/{backend_bucket}") + } + opts = append((*c.CallOptions).Delete[0:len((*c.CallOptions).Delete):len((*c.CallOptions).Delete)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("DELETE", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Delete") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} + +// Get returns the specified regional BackendBucket resource. +func (c *regionBackendBucketsRESTClient) Get(ctx context.Context, req *computepb.GetRegionBackendBucketRequest, opts ...gax.CallOption) (*computepb.BackendBucket, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/backendBuckets/%v", req.GetProject(), req.GetRegion(), req.GetBackendBucket()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "backend_bucket", url.QueryEscape(req.GetBackendBucket()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/backendBuckets/%v", req.GetProject(), req.GetRegion(), req.GetBackendBucket())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionBackendBuckets/Get") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/backendBuckets/{backend_bucket}") + } + opts = append((*c.CallOptions).Get[0:len((*c.CallOptions).Get):len((*c.CallOptions).Get)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.BackendBucket{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Get") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// GetIamPolicy gets the access control policy for a resource. May be empty if no such +// policy or resource exists. +func (c *regionBackendBucketsRESTClient) GetIamPolicy(ctx context.Context, req *computepb.GetIamPolicyRegionBackendBucketRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/backendBuckets/%v/getIamPolicy", req.GetProject(), req.GetRegion(), req.GetResource()) + + params := url.Values{} + if req != nil && req.OptionsRequestedPolicyVersion != nil { + params.Add("optionsRequestedPolicyVersion", fmt.Sprintf("%v", req.GetOptionsRequestedPolicyVersion())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/backendBuckets/%v", req.GetProject(), req.GetRegion(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionBackendBuckets/GetIamPolicy") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/backendBuckets/{resource}/getIamPolicy") + } + opts = append((*c.CallOptions).GetIamPolicy[0:len((*c.CallOptions).GetIamPolicy):len((*c.CallOptions).GetIamPolicy)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Policy{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "GetIamPolicy") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// Insert creates a RegionBackendBucket in the specified project in the given scope +// using the parameters that are included in the request. +func (c *regionBackendBucketsRESTClient) Insert(ctx context.Context, req *computepb.InsertRegionBackendBucketRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetBackendBucketResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/backendBuckets", req.GetProject(), req.GetRegion()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v", req.GetProject(), req.GetRegion())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionBackendBuckets/Insert") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/backendBuckets") + } + opts = append((*c.CallOptions).Insert[0:len((*c.CallOptions).Insert):len((*c.CallOptions).Insert)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "Insert") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} + +// List retrieves the list of BackendBucket resources available to the specified +// project in the given region. +func (c *regionBackendBucketsRESTClient) List(ctx context.Context, req *computepb.ListRegionBackendBucketsRequest, opts ...gax.CallOption) *BackendBucketIterator { + it := &BackendBucketIterator{} + req = proto.Clone(req).(*computepb.ListRegionBackendBucketsRequest) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.BackendBucket, string, error) { + resp := &computepb.BackendBucketList{} + if pageToken != "" { + req.PageToken = proto.String(pageToken) + } + if pageSize > math.MaxInt32 { + req.MaxResults = proto.Uint32(uint32(math.MaxInt32)) + } else if pageSize != 0 { + req.MaxResults = proto.Uint32(uint32(pageSize)) + } + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, "", err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/backendBuckets", req.GetProject(), req.GetRegion()) + + params := url.Values{} + if req != nil && req.Filter != nil { + params.Add("filter", fmt.Sprintf("%v", req.GetFilter())) + } + if req != nil && req.MaxResults != nil { + params.Add("maxResults", fmt.Sprintf("%v", req.GetMaxResults())) + } + if req != nil && req.OrderBy != nil { + params.Add("orderBy", fmt.Sprintf("%v", req.GetOrderBy())) + } + if req != nil && req.PageToken != nil { + params.Add("pageToken", fmt.Sprintf("%v", req.GetPageToken())) + } + if req != nil && req.ReturnPartialSuccess != nil { + params.Add("returnPartialSuccess", fmt.Sprintf("%v", req.GetReturnPartialSuccess())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := append(c.xGoogHeaders, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "List") + if err != nil { + return err + } + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, "", e + } + it.Response = resp + return resp.GetItems(), resp.GetNextPageToken(), nil + } + + fetch := func(pageSize int, pageToken string) (string, error) { + items, nextPageToken, err := it.InternalFetch(pageSize, pageToken) + if err != nil { + return "", err + } + it.items = append(it.items, items...) + return nextPageToken, nil + } + + it.pageInfo, it.nextFunc = iterator.NewPageInfo(fetch, it.bufLen, it.takeBuf) + it.pageInfo.MaxSize = int(req.GetMaxResults()) + it.pageInfo.Token = req.GetPageToken() + + return it +} + +// ListUsable retrieves a list of all usable backend buckets in the specified project in +// the given region. +func (c *regionBackendBucketsRESTClient) ListUsable(ctx context.Context, req *computepb.ListUsableRegionBackendBucketsRequest, opts ...gax.CallOption) *BackendBucketIterator { + it := &BackendBucketIterator{} + req = proto.Clone(req).(*computepb.ListUsableRegionBackendBucketsRequest) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.BackendBucket, string, error) { + resp := &computepb.BackendBucketListUsable{} + if pageToken != "" { + req.PageToken = proto.String(pageToken) + } + if pageSize > math.MaxInt32 { + req.MaxResults = proto.Uint32(uint32(math.MaxInt32)) + } else if pageSize != 0 { + req.MaxResults = proto.Uint32(uint32(pageSize)) + } + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, "", err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/backendBuckets/listUsable", req.GetProject(), req.GetRegion()) + + params := url.Values{} + if req != nil && req.Filter != nil { + params.Add("filter", fmt.Sprintf("%v", req.GetFilter())) + } + if req != nil && req.MaxResults != nil { + params.Add("maxResults", fmt.Sprintf("%v", req.GetMaxResults())) + } + if req != nil && req.OrderBy != nil { + params.Add("orderBy", fmt.Sprintf("%v", req.GetOrderBy())) + } + if req != nil && req.PageToken != nil { + params.Add("pageToken", fmt.Sprintf("%v", req.GetPageToken())) + } + if req != nil && req.ReturnPartialSuccess != nil { + params.Add("returnPartialSuccess", fmt.Sprintf("%v", req.GetReturnPartialSuccess())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := append(c.xGoogHeaders, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "ListUsable") + if err != nil { + return err + } + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, "", e + } + it.Response = resp + return resp.GetItems(), resp.GetNextPageToken(), nil + } + + fetch := func(pageSize int, pageToken string) (string, error) { + items, nextPageToken, err := it.InternalFetch(pageSize, pageToken) + if err != nil { + return "", err + } + it.items = append(it.items, items...) + return nextPageToken, nil + } + + it.pageInfo, it.nextFunc = iterator.NewPageInfo(fetch, it.bufLen, it.takeBuf) + it.pageInfo.MaxSize = int(req.GetMaxResults()) + it.pageInfo.Token = req.GetPageToken() + + return it +} + +// Patch updates the specified BackendBucket resource with the data included in the +// request. This method supportsPATCH +// semantics and uses theJSON merge +// patch format and processing rules. +func (c *regionBackendBucketsRESTClient) Patch(ctx context.Context, req *computepb.PatchRegionBackendBucketRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetBackendBucketResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/backendBuckets/%v", req.GetProject(), req.GetRegion(), req.GetBackendBucket()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "backend_bucket", url.QueryEscape(req.GetBackendBucket()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/backendBuckets/%v", req.GetProject(), req.GetRegion(), req.GetBackendBucket())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionBackendBuckets/Patch") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/backendBuckets/{backend_bucket}") + } + opts = append((*c.CallOptions).Patch[0:len((*c.CallOptions).Patch):len((*c.CallOptions).Patch)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("PATCH", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "Patch") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} + +// SetIamPolicy sets the access control policy on the specified resource. +// Replaces any existing policy. +func (c *regionBackendBucketsRESTClient) SetIamPolicy(ctx context.Context, req *computepb.SetIamPolicyRegionBackendBucketRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetRegionSetPolicyRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/backendBuckets/%v/setIamPolicy", req.GetProject(), req.GetRegion(), req.GetResource()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/backendBuckets/%v", req.GetProject(), req.GetRegion(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionBackendBuckets/SetIamPolicy") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/backendBuckets/{resource}/setIamPolicy") + } + opts = append((*c.CallOptions).SetIamPolicy[0:len((*c.CallOptions).SetIamPolicy):len((*c.CallOptions).SetIamPolicy)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Policy{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "SetIamPolicy") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// TestIamPermissions returns permissions that a caller has on the specified resource. +func (c *regionBackendBucketsRESTClient) TestIamPermissions(ctx context.Context, req *computepb.TestIamPermissionsRegionBackendBucketRequest, opts ...gax.CallOption) (*computepb.TestPermissionsResponse, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetTestPermissionsRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/backendBuckets/%v/testIamPermissions", req.GetProject(), req.GetRegion(), req.GetResource()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/backendBuckets/%v", req.GetProject(), req.GetRegion(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionBackendBuckets/TestIamPermissions") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/backendBuckets/{resource}/testIamPermissions") + } + opts = append((*c.CallOptions).TestIamPermissions[0:len((*c.CallOptions).TestIamPermissions):len((*c.CallOptions).TestIamPermissions)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.TestPermissionsResponse{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "TestIamPermissions") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} diff --git a/vendor/cloud.google.com/go/compute/apiv1/region_composite_health_checks_client.go b/vendor/cloud.google.com/go/compute/apiv1/region_composite_health_checks_client.go index ca597a27..8e865dda 100644 --- a/vendor/cloud.google.com/go/compute/apiv1/region_composite_health_checks_client.go +++ b/vendor/cloud.google.com/go/compute/apiv1/region_composite_health_checks_client.go @@ -46,6 +46,7 @@ type RegionCompositeHealthChecksCallOptions struct { AggregatedList []gax.CallOption Delete []gax.CallOption Get []gax.CallOption + GetHealth []gax.CallOption Insert []gax.CallOption List []gax.CallOption Patch []gax.CallOption @@ -81,6 +82,18 @@ func defaultRegionCompositeHealthChecksRESTCallOptions() *RegionCompositeHealthC http.StatusServiceUnavailable) }), }, + GetHealth: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, Insert: []gax.CallOption{ gax.WithTimeout(600000 * time.Millisecond), }, @@ -113,6 +126,7 @@ type internalRegionCompositeHealthChecksClient interface { AggregatedList(context.Context, *computepb.AggregatedListRegionCompositeHealthChecksRequest, ...gax.CallOption) *CompositeHealthChecksScopedListPairIterator Delete(context.Context, *computepb.DeleteRegionCompositeHealthCheckRequest, ...gax.CallOption) (*Operation, error) Get(context.Context, *computepb.GetRegionCompositeHealthCheckRequest, ...gax.CallOption) (*computepb.CompositeHealthCheck, error) + GetHealth(context.Context, *computepb.GetHealthRegionCompositeHealthCheckRequest, ...gax.CallOption) (*computepb.CompositeHealthCheckHealth, error) Insert(context.Context, *computepb.InsertRegionCompositeHealthCheckRequest, ...gax.CallOption) (*Operation, error) List(context.Context, *computepb.ListRegionCompositeHealthChecksRequest, ...gax.CallOption) *CompositeHealthCheckIterator Patch(context.Context, *computepb.PatchRegionCompositeHealthCheckRequest, ...gax.CallOption) (*Operation, error) @@ -173,6 +187,12 @@ func (c *RegionCompositeHealthChecksClient) Get(ctx context.Context, req *comput return c.internalClient.Get(ctx, req, opts...) } +// GetHealth gets the most recent health check results for this +// regional CompositeHealthCheck. +func (c *RegionCompositeHealthChecksClient) GetHealth(ctx context.Context, req *computepb.GetHealthRegionCompositeHealthCheckRequest, opts ...gax.CallOption) (*computepb.CompositeHealthCheckHealth, error) { + return c.internalClient.GetHealth(ctx, req, opts...) +} + // Insert create a CompositeHealthCheck in the specified project in the given region // using the parameters that are included in the request. func (c *RegionCompositeHealthChecksClient) Insert(ctx context.Context, req *computepb.InsertRegionCompositeHealthCheckRequest, opts ...gax.CallOption) (*Operation, error) { @@ -261,6 +281,7 @@ func NewRegionCompositeHealthChecksRESTClient(ctx context.Context, opts ...optio callOpts.AggregatedList = append(callOpts.AggregatedList, gax.WithClientMetrics(metrics)) callOpts.Delete = append(callOpts.Delete, gax.WithClientMetrics(metrics)) callOpts.Get = append(callOpts.Get, gax.WithClientMetrics(metrics)) + callOpts.GetHealth = append(callOpts.GetHealth, gax.WithClientMetrics(metrics)) callOpts.Insert = append(callOpts.Insert, gax.WithClientMetrics(metrics)) callOpts.List = append(callOpts.List, gax.WithClientMetrics(metrics)) callOpts.Patch = append(callOpts.Patch, gax.WithClientMetrics(metrics)) @@ -543,6 +564,59 @@ func (c *regionCompositeHealthChecksRESTClient) Get(ctx context.Context, req *co return resp, nil } +// GetHealth gets the most recent health check results for this +// regional CompositeHealthCheck. +func (c *regionCompositeHealthChecksRESTClient) GetHealth(ctx context.Context, req *computepb.GetHealthRegionCompositeHealthCheckRequest, opts ...gax.CallOption) (*computepb.CompositeHealthCheckHealth, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/compositeHealthChecks/%v/getHealth", req.GetProject(), req.GetRegion(), req.GetCompositeHealthCheck()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "composite_health_check", url.QueryEscape(req.GetCompositeHealthCheck()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/compositeHealthChecks/%v", req.GetProject(), req.GetRegion(), req.GetCompositeHealthCheck())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionCompositeHealthChecks/GetHealth") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/compositeHealthChecks/{composite_health_check}/getHealth") + } + opts = append((*c.CallOptions).GetHealth[0:len((*c.CallOptions).GetHealth):len((*c.CallOptions).GetHealth)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.CompositeHealthCheckHealth{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "GetHealth") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + // Insert create a CompositeHealthCheck in the specified project in the given region // using the parameters that are included in the request. func (c *regionCompositeHealthChecksRESTClient) Insert(ctx context.Context, req *computepb.InsertRegionCompositeHealthCheckRequest, opts ...gax.CallOption) (*Operation, error) { diff --git a/vendor/cloud.google.com/go/compute/apiv1/region_disks_client.go b/vendor/cloud.google.com/go/compute/apiv1/region_disks_client.go index f03f641c..6861784a 100644 --- a/vendor/cloud.google.com/go/compute/apiv1/region_disks_client.go +++ b/vendor/cloud.google.com/go/compute/apiv1/region_disks_client.go @@ -59,6 +59,7 @@ type RegionDisksCallOptions struct { StopGroupAsyncReplication []gax.CallOption TestIamPermissions []gax.CallOption Update []gax.CallOption + UpdateKmsKey []gax.CallOption } func defaultRegionDisksRESTCallOptions() *RegionDisksCallOptions { @@ -141,6 +142,9 @@ func defaultRegionDisksRESTCallOptions() *RegionDisksCallOptions { Update: []gax.CallOption{ gax.WithTimeout(600000 * time.Millisecond), }, + UpdateKmsKey: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, } } @@ -166,6 +170,7 @@ type internalRegionDisksClient interface { StopGroupAsyncReplication(context.Context, *computepb.StopGroupAsyncReplicationRegionDiskRequest, ...gax.CallOption) (*Operation, error) TestIamPermissions(context.Context, *computepb.TestIamPermissionsRegionDiskRequest, ...gax.CallOption) (*computepb.TestPermissionsResponse, error) Update(context.Context, *computepb.UpdateRegionDiskRequest, ...gax.CallOption) (*Operation, error) + UpdateKmsKey(context.Context, *computepb.UpdateKmsKeyRegionDiskRequest, ...gax.CallOption) (*Operation, error) } // RegionDisksClient is a client for interacting with Google Compute Engine API. @@ -305,6 +310,12 @@ func (c *RegionDisksClient) Update(ctx context.Context, req *computepb.UpdateReg return c.internalClient.Update(ctx, req, opts...) } +// UpdateKmsKey rotates the customer-managed +// encryption key to the latest version for the specified persistent disk. +func (c *RegionDisksClient) UpdateKmsKey(ctx context.Context, req *computepb.UpdateKmsKeyRegionDiskRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.UpdateKmsKey(ctx, req, opts...) +} + // Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. type regionDisksRESTClient struct { // The http endpoint to connect to. @@ -383,6 +394,7 @@ func NewRegionDisksRESTClient(ctx context.Context, opts ...option.ClientOption) callOpts.StopGroupAsyncReplication = append(callOpts.StopGroupAsyncReplication, gax.WithClientMetrics(metrics)) callOpts.TestIamPermissions = append(callOpts.TestIamPermissions, gax.WithClientMetrics(metrics)) callOpts.Update = append(callOpts.Update, gax.WithClientMetrics(metrics)) + callOpts.UpdateKmsKey = append(callOpts.UpdateKmsKey, gax.WithClientMetrics(metrics)) } o := []option.ClientOption{ @@ -1653,3 +1665,78 @@ func (c *regionDisksRESTClient) Update(ctx context.Context, req *computepb.Updat } return op, nil } + +// UpdateKmsKey rotates the customer-managed +// encryption key to the latest version for the specified persistent disk. +func (c *regionDisksRESTClient) UpdateKmsKey(ctx context.Context, req *computepb.UpdateKmsKeyRegionDiskRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetRegionDiskUpdateKmsKeyRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/disks/%v/updateKmsKey", req.GetProject(), req.GetRegion(), req.GetDisk()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "disk", url.QueryEscape(req.GetDisk()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/disks/%v", req.GetProject(), req.GetRegion(), req.GetDisk())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionDisks/UpdateKmsKey") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/disks/{disk}/updateKmsKey") + } + opts = append((*c.CallOptions).UpdateKmsKey[0:len((*c.CallOptions).UpdateKmsKey):len((*c.CallOptions).UpdateKmsKey)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "UpdateKmsKey") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} diff --git a/vendor/cloud.google.com/go/compute/apiv1/region_health_sources_client.go b/vendor/cloud.google.com/go/compute/apiv1/region_health_sources_client.go index f5d3cb13..ac4e0bfe 100644 --- a/vendor/cloud.google.com/go/compute/apiv1/region_health_sources_client.go +++ b/vendor/cloud.google.com/go/compute/apiv1/region_health_sources_client.go @@ -46,6 +46,7 @@ type RegionHealthSourcesCallOptions struct { AggregatedList []gax.CallOption Delete []gax.CallOption Get []gax.CallOption + GetHealth []gax.CallOption Insert []gax.CallOption List []gax.CallOption Patch []gax.CallOption @@ -81,6 +82,18 @@ func defaultRegionHealthSourcesRESTCallOptions() *RegionHealthSourcesCallOptions http.StatusServiceUnavailable) }), }, + GetHealth: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, Insert: []gax.CallOption{ gax.WithTimeout(600000 * time.Millisecond), }, @@ -113,6 +126,7 @@ type internalRegionHealthSourcesClient interface { AggregatedList(context.Context, *computepb.AggregatedListRegionHealthSourcesRequest, ...gax.CallOption) *HealthSourcesScopedListPairIterator Delete(context.Context, *computepb.DeleteRegionHealthSourceRequest, ...gax.CallOption) (*Operation, error) Get(context.Context, *computepb.GetRegionHealthSourceRequest, ...gax.CallOption) (*computepb.HealthSource, error) + GetHealth(context.Context, *computepb.GetHealthRegionHealthSourceRequest, ...gax.CallOption) (*computepb.HealthSourceHealth, error) Insert(context.Context, *computepb.InsertRegionHealthSourceRequest, ...gax.CallOption) (*Operation, error) List(context.Context, *computepb.ListRegionHealthSourcesRequest, ...gax.CallOption) *HealthSourceIterator Patch(context.Context, *computepb.PatchRegionHealthSourceRequest, ...gax.CallOption) (*Operation, error) @@ -173,6 +187,12 @@ func (c *RegionHealthSourcesClient) Get(ctx context.Context, req *computepb.GetR return c.internalClient.Get(ctx, req, opts...) } +// GetHealth gets the most recent health check results for this +// regional HealthSource. +func (c *RegionHealthSourcesClient) GetHealth(ctx context.Context, req *computepb.GetHealthRegionHealthSourceRequest, opts ...gax.CallOption) (*computepb.HealthSourceHealth, error) { + return c.internalClient.GetHealth(ctx, req, opts...) +} + // Insert create a HealthSource in the specified project in the given region // using the parameters that are included in the request. func (c *RegionHealthSourcesClient) Insert(ctx context.Context, req *computepb.InsertRegionHealthSourceRequest, opts ...gax.CallOption) (*Operation, error) { @@ -261,6 +281,7 @@ func NewRegionHealthSourcesRESTClient(ctx context.Context, opts ...option.Client callOpts.AggregatedList = append(callOpts.AggregatedList, gax.WithClientMetrics(metrics)) callOpts.Delete = append(callOpts.Delete, gax.WithClientMetrics(metrics)) callOpts.Get = append(callOpts.Get, gax.WithClientMetrics(metrics)) + callOpts.GetHealth = append(callOpts.GetHealth, gax.WithClientMetrics(metrics)) callOpts.Insert = append(callOpts.Insert, gax.WithClientMetrics(metrics)) callOpts.List = append(callOpts.List, gax.WithClientMetrics(metrics)) callOpts.Patch = append(callOpts.Patch, gax.WithClientMetrics(metrics)) @@ -543,6 +564,59 @@ func (c *regionHealthSourcesRESTClient) Get(ctx context.Context, req *computepb. return resp, nil } +// GetHealth gets the most recent health check results for this +// regional HealthSource. +func (c *regionHealthSourcesRESTClient) GetHealth(ctx context.Context, req *computepb.GetHealthRegionHealthSourceRequest, opts ...gax.CallOption) (*computepb.HealthSourceHealth, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/healthSources/%v/getHealth", req.GetProject(), req.GetRegion(), req.GetHealthSource()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "health_source", url.QueryEscape(req.GetHealthSource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/healthSources/%v", req.GetProject(), req.GetRegion(), req.GetHealthSource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionHealthSources/GetHealth") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/healthSources/{health_source}/getHealth") + } + opts = append((*c.CallOptions).GetHealth[0:len((*c.CallOptions).GetHealth):len((*c.CallOptions).GetHealth)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.HealthSourceHealth{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "GetHealth") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + // Insert create a HealthSource in the specified project in the given region // using the parameters that are included in the request. func (c *regionHealthSourcesRESTClient) Insert(ctx context.Context, req *computepb.InsertRegionHealthSourceRequest, opts ...gax.CallOption) (*Operation, error) { diff --git a/vendor/cloud.google.com/go/compute/apiv1/region_instance_group_manager_resize_requests_client.go b/vendor/cloud.google.com/go/compute/apiv1/region_instance_group_manager_resize_requests_client.go new file mode 100644 index 00000000..86ab228c --- /dev/null +++ b/vendor/cloud.google.com/go/compute/apiv1/region_instance_group_manager_resize_requests_client.go @@ -0,0 +1,642 @@ +// Copyright 2026 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 compute + +import ( + "bytes" + "context" + "fmt" + "log/slog" + "math" + "net/http" + "net/url" + "time" + + computepb "cloud.google.com/go/compute/apiv1/computepb" + gax "github.com/googleapis/gax-go/v2" + "github.com/googleapis/gax-go/v2/callctx" + "google.golang.org/api/iterator" + "google.golang.org/api/option" + "google.golang.org/api/option/internaloption" + httptransport "google.golang.org/api/transport/http" + "google.golang.org/grpc" + "google.golang.org/protobuf/encoding/protojson" + "google.golang.org/protobuf/proto" +) + +var newRegionInstanceGroupManagerResizeRequestsClientHook clientHook + +// RegionInstanceGroupManagerResizeRequestsCallOptions contains the retry settings for each method of RegionInstanceGroupManagerResizeRequestsClient. +type RegionInstanceGroupManagerResizeRequestsCallOptions struct { + Cancel []gax.CallOption + Delete []gax.CallOption + Get []gax.CallOption + Insert []gax.CallOption + List []gax.CallOption +} + +func defaultRegionInstanceGroupManagerResizeRequestsRESTCallOptions() *RegionInstanceGroupManagerResizeRequestsCallOptions { + return &RegionInstanceGroupManagerResizeRequestsCallOptions{ + Cancel: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + Delete: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + Get: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + Insert: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + List: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + } +} + +// internalRegionInstanceGroupManagerResizeRequestsClient is an interface that defines the methods available from Google Compute Engine API. +type internalRegionInstanceGroupManagerResizeRequestsClient interface { + Close() error + setGoogleClientInfo(...string) + Connection() *grpc.ClientConn + Cancel(context.Context, *computepb.CancelRegionInstanceGroupManagerResizeRequestRequest, ...gax.CallOption) (*Operation, error) + Delete(context.Context, *computepb.DeleteRegionInstanceGroupManagerResizeRequestRequest, ...gax.CallOption) (*Operation, error) + Get(context.Context, *computepb.GetRegionInstanceGroupManagerResizeRequestRequest, ...gax.CallOption) (*computepb.InstanceGroupManagerResizeRequest, error) + Insert(context.Context, *computepb.InsertRegionInstanceGroupManagerResizeRequestRequest, ...gax.CallOption) (*Operation, error) + List(context.Context, *computepb.ListRegionInstanceGroupManagerResizeRequestsRequest, ...gax.CallOption) *InstanceGroupManagerResizeRequestIterator +} + +// RegionInstanceGroupManagerResizeRequestsClient is a client for interacting with Google Compute Engine API. +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +// +// The RegionInstanceGroupManagerResizeRequests API. +type RegionInstanceGroupManagerResizeRequestsClient struct { + // The internal transport-dependent client. + internalClient internalRegionInstanceGroupManagerResizeRequestsClient + + // The call options for this service. + CallOptions *RegionInstanceGroupManagerResizeRequestsCallOptions +} + +// 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 *RegionInstanceGroupManagerResizeRequestsClient) 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 *RegionInstanceGroupManagerResizeRequestsClient) 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 *RegionInstanceGroupManagerResizeRequestsClient) Connection() *grpc.ClientConn { + return c.internalClient.Connection() +} + +// Cancel cancels the specified resize request. +// Cancelled resize request no longer waits for the resources to be +// provisioned. Cancel is only possible for requests that are in accepted +// state. +func (c *RegionInstanceGroupManagerResizeRequestsClient) Cancel(ctx context.Context, req *computepb.CancelRegionInstanceGroupManagerResizeRequestRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Cancel(ctx, req, opts...) +} + +// Delete deletes the specified, inactive resize request. Requests that are still +// active cannot be deleted. Deleting request does not delete instances that +// were provisioned previously. +func (c *RegionInstanceGroupManagerResizeRequestsClient) Delete(ctx context.Context, req *computepb.DeleteRegionInstanceGroupManagerResizeRequestRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Delete(ctx, req, opts...) +} + +// Get returns all of the details about the specified resize request. +func (c *RegionInstanceGroupManagerResizeRequestsClient) Get(ctx context.Context, req *computepb.GetRegionInstanceGroupManagerResizeRequestRequest, opts ...gax.CallOption) (*computepb.InstanceGroupManagerResizeRequest, error) { + return c.internalClient.Get(ctx, req, opts...) +} + +// Insert creates a new Resize Request that starts provisioning VMs immediately +// or queues VM creation. +func (c *RegionInstanceGroupManagerResizeRequestsClient) Insert(ctx context.Context, req *computepb.InsertRegionInstanceGroupManagerResizeRequestRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Insert(ctx, req, opts...) +} + +// List retrieves a list of Resize Requests that are contained in the +// managed instance group. +func (c *RegionInstanceGroupManagerResizeRequestsClient) List(ctx context.Context, req *computepb.ListRegionInstanceGroupManagerResizeRequestsRequest, opts ...gax.CallOption) *InstanceGroupManagerResizeRequestIterator { + return c.internalClient.List(ctx, req, opts...) +} + +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +type regionInstanceGroupManagerResizeRequestsRESTClient struct { + // The http endpoint to connect to. + endpoint string + + // The http client. + httpClient *http.Client + + // operationClient is used to call the operation-specific management service. + operationClient *RegionOperationsClient + + // The x-goog-* headers to be sent with each request. + xGoogHeaders []string + + // Points back to the CallOptions field of the containing RegionInstanceGroupManagerResizeRequestsClient + CallOptions **RegionInstanceGroupManagerResizeRequestsCallOptions + + logger *slog.Logger +} + +// NewRegionInstanceGroupManagerResizeRequestsRESTClient creates a new region instance group manager resize requests rest client. +// +// The RegionInstanceGroupManagerResizeRequests API. +func NewRegionInstanceGroupManagerResizeRequestsRESTClient(ctx context.Context, opts ...option.ClientOption) (*RegionInstanceGroupManagerResizeRequestsClient, error) { + clientOpts := append(defaultRegionInstanceGroupManagerResizeRequestsRESTClientOptions(), opts...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + clientOpts = append(clientOpts, internaloption.WithTelemetryAttributes(map[string]string{ + "gcp.client.service": "compute", + "gcp.client.version": getVersionClient(), + "gcp.client.repo": "googleapis/google-cloud-go", + "gcp.client.artifact": "cloud.google.com/go/compute/apiv1", + "gcp.client.language": "go", + "url.domain": "compute.googleapis.com", + })) + } + httpClient, endpoint, err := httptransport.NewClient(ctx, clientOpts...) + if err != nil { + return nil, err + } + + callOpts := defaultRegionInstanceGroupManagerResizeRequestsRESTCallOptions() + c := ®ionInstanceGroupManagerResizeRequestsRESTClient{ + endpoint: endpoint, + httpClient: httpClient, + CallOptions: &callOpts, + logger: internaloption.GetLogger(opts), + } + c.setGoogleClientInfo() + + if gax.IsFeatureEnabled("METRICS") { + metrics := gax.NewClientMetrics( + gax.WithTelemetryLogger(c.logger), + gax.WithTelemetryAttributes(map[string]string{ + gax.ClientService: "compute", + gax.ClientVersion: getVersionClient(), + gax.ClientArtifact: "cloud.google.com/go/compute/apiv1", + gax.RPCSystem: "http", + gax.URLDomain: "compute.googleapis.com", + }), + ) + + callOpts.Cancel = append(callOpts.Cancel, gax.WithClientMetrics(metrics)) + callOpts.Delete = append(callOpts.Delete, gax.WithClientMetrics(metrics)) + callOpts.Get = append(callOpts.Get, gax.WithClientMetrics(metrics)) + callOpts.Insert = append(callOpts.Insert, gax.WithClientMetrics(metrics)) + callOpts.List = append(callOpts.List, gax.WithClientMetrics(metrics)) + } + + o := []option.ClientOption{ + option.WithHTTPClient(httpClient), + option.WithEndpoint(endpoint), + } + opC, err := NewRegionOperationsRESTClient(ctx, o...) + if err != nil { + return nil, err + } + c.operationClient = opC + + return &RegionInstanceGroupManagerResizeRequestsClient{internalClient: c, CallOptions: callOpts}, nil +} + +func defaultRegionInstanceGroupManagerResizeRequestsRESTClientOptions() []option.ClientOption { + return []option.ClientOption{ + internaloption.WithDefaultEndpoint("https://compute.googleapis.com"), + internaloption.WithDefaultEndpointTemplate("https://compute.UNIVERSE_DOMAIN"), + internaloption.WithDefaultMTLSEndpoint("https://compute.mtls.googleapis.com"), + internaloption.WithDefaultUniverseDomain("googleapis.com"), + internaloption.WithDefaultAudience("https://compute.googleapis.com/"), + internaloption.WithDefaultScopes(DefaultAuthScopes()...), + internaloption.EnableNewAuthLibrary(), + } +} + +// 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 *regionInstanceGroupManagerResizeRequestsRESTClient) setGoogleClientInfo(keyval ...string) { + kv := append([]string{"gl-go", gax.GoVersion}, keyval...) + kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "rest", "UNKNOWN", "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 *regionInstanceGroupManagerResizeRequestsRESTClient) Close() error { + // Replace httpClient with nil to force cleanup. + c.httpClient = nil + if err := c.operationClient.Close(); err != nil { + return err + } + return nil +} + +// Connection returns a connection to the API service. +// +// Deprecated: This method always returns nil. +func (c *regionInstanceGroupManagerResizeRequestsRESTClient) Connection() *grpc.ClientConn { + return nil +} + +// Cancel cancels the specified resize request. +// Cancelled resize request no longer waits for the resources to be +// provisioned. Cancel is only possible for requests that are in accepted +// state. +func (c *regionInstanceGroupManagerResizeRequestsRESTClient) Cancel(ctx context.Context, req *computepb.CancelRegionInstanceGroupManagerResizeRequestRequest, opts ...gax.CallOption) (*Operation, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/instanceGroupManagers/%v/resizeRequests/%v/cancel", req.GetProject(), req.GetRegion(), req.GetInstanceGroupManager(), req.GetResizeRequest()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "instance_group_manager", url.QueryEscape(req.GetInstanceGroupManager()), "resize_request", url.QueryEscape(req.GetResizeRequest()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/instanceGroupManagers/%v/resizeRequests/%v", req.GetProject(), req.GetRegion(), req.GetInstanceGroupManager(), req.GetResizeRequest())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests/Cancel") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/instanceGroupManagers/{instance_group_manager}/resizeRequests/{resize_request}/cancel") + } + opts = append((*c.CallOptions).Cancel[0:len((*c.CallOptions).Cancel):len((*c.CallOptions).Cancel)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Cancel") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} + +// Delete deletes the specified, inactive resize request. Requests that are still +// active cannot be deleted. Deleting request does not delete instances that +// were provisioned previously. +func (c *regionInstanceGroupManagerResizeRequestsRESTClient) Delete(ctx context.Context, req *computepb.DeleteRegionInstanceGroupManagerResizeRequestRequest, opts ...gax.CallOption) (*Operation, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/instanceGroupManagers/%v/resizeRequests/%v", req.GetProject(), req.GetRegion(), req.GetInstanceGroupManager(), req.GetResizeRequest()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "instance_group_manager", url.QueryEscape(req.GetInstanceGroupManager()), "resize_request", url.QueryEscape(req.GetResizeRequest()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/instanceGroupManagers/%v/resizeRequests/%v", req.GetProject(), req.GetRegion(), req.GetInstanceGroupManager(), req.GetResizeRequest())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests/Delete") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/instanceGroupManagers/{instance_group_manager}/resizeRequests/{resize_request}") + } + opts = append((*c.CallOptions).Delete[0:len((*c.CallOptions).Delete):len((*c.CallOptions).Delete)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("DELETE", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Delete") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} + +// Get returns all of the details about the specified resize request. +func (c *regionInstanceGroupManagerResizeRequestsRESTClient) Get(ctx context.Context, req *computepb.GetRegionInstanceGroupManagerResizeRequestRequest, opts ...gax.CallOption) (*computepb.InstanceGroupManagerResizeRequest, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/instanceGroupManagers/%v/resizeRequests/%v", req.GetProject(), req.GetRegion(), req.GetInstanceGroupManager(), req.GetResizeRequest()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "instance_group_manager", url.QueryEscape(req.GetInstanceGroupManager()), "resize_request", url.QueryEscape(req.GetResizeRequest()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/instanceGroupManagers/%v/resizeRequests/%v", req.GetProject(), req.GetRegion(), req.GetInstanceGroupManager(), req.GetResizeRequest())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests/Get") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/instanceGroupManagers/{instance_group_manager}/resizeRequests/{resize_request}") + } + opts = append((*c.CallOptions).Get[0:len((*c.CallOptions).Get):len((*c.CallOptions).Get)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.InstanceGroupManagerResizeRequest{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Get") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// Insert creates a new Resize Request that starts provisioning VMs immediately +// or queues VM creation. +func (c *regionInstanceGroupManagerResizeRequestsRESTClient) Insert(ctx context.Context, req *computepb.InsertRegionInstanceGroupManagerResizeRequestRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetInstanceGroupManagerResizeRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/instanceGroupManagers/%v/resizeRequests", req.GetProject(), req.GetRegion(), req.GetInstanceGroupManager()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "instance_group_manager", url.QueryEscape(req.GetInstanceGroupManager()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/instanceGroupManagers/%v", req.GetProject(), req.GetRegion(), req.GetInstanceGroupManager())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionInstanceGroupManagerResizeRequests/Insert") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/instanceGroupManagers/{instance_group_manager}/resizeRequests") + } + opts = append((*c.CallOptions).Insert[0:len((*c.CallOptions).Insert):len((*c.CallOptions).Insert)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "Insert") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} + +// List retrieves a list of Resize Requests that are contained in the +// managed instance group. +func (c *regionInstanceGroupManagerResizeRequestsRESTClient) List(ctx context.Context, req *computepb.ListRegionInstanceGroupManagerResizeRequestsRequest, opts ...gax.CallOption) *InstanceGroupManagerResizeRequestIterator { + it := &InstanceGroupManagerResizeRequestIterator{} + req = proto.Clone(req).(*computepb.ListRegionInstanceGroupManagerResizeRequestsRequest) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.InstanceGroupManagerResizeRequest, string, error) { + resp := &computepb.RegionInstanceGroupManagerResizeRequestsListResponse{} + if pageToken != "" { + req.PageToken = proto.String(pageToken) + } + if pageSize > math.MaxInt32 { + req.MaxResults = proto.Uint32(uint32(math.MaxInt32)) + } else if pageSize != 0 { + req.MaxResults = proto.Uint32(uint32(pageSize)) + } + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, "", err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/instanceGroupManagers/%v/resizeRequests", req.GetProject(), req.GetRegion(), req.GetInstanceGroupManager()) + + params := url.Values{} + if req != nil && req.Filter != nil { + params.Add("filter", fmt.Sprintf("%v", req.GetFilter())) + } + if req != nil && req.MaxResults != nil { + params.Add("maxResults", fmt.Sprintf("%v", req.GetMaxResults())) + } + if req != nil && req.OrderBy != nil { + params.Add("orderBy", fmt.Sprintf("%v", req.GetOrderBy())) + } + if req != nil && req.PageToken != nil { + params.Add("pageToken", fmt.Sprintf("%v", req.GetPageToken())) + } + if req != nil && req.ReturnPartialSuccess != nil { + params.Add("returnPartialSuccess", fmt.Sprintf("%v", req.GetReturnPartialSuccess())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := append(c.xGoogHeaders, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "List") + if err != nil { + return err + } + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, "", e + } + it.Response = resp + return resp.GetItems(), resp.GetNextPageToken(), nil + } + + fetch := func(pageSize int, pageToken string) (string, error) { + items, nextPageToken, err := it.InternalFetch(pageSize, pageToken) + if err != nil { + return "", err + } + it.items = append(it.items, items...) + return nextPageToken, nil + } + + it.pageInfo, it.nextFunc = iterator.NewPageInfo(fetch, it.bufLen, it.takeBuf) + it.pageInfo.MaxSize = int(req.GetMaxResults()) + it.pageInfo.Token = req.GetPageToken() + + return it +} diff --git a/vendor/cloud.google.com/go/compute/apiv1/region_instant_snapshot_groups_client.go b/vendor/cloud.google.com/go/compute/apiv1/region_instant_snapshot_groups_client.go new file mode 100644 index 00000000..efdfee50 --- /dev/null +++ b/vendor/cloud.google.com/go/compute/apiv1/region_instant_snapshot_groups_client.go @@ -0,0 +1,780 @@ +// Copyright 2026 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 compute + +import ( + "bytes" + "context" + "fmt" + "log/slog" + "math" + "net/http" + "net/url" + "time" + + computepb "cloud.google.com/go/compute/apiv1/computepb" + gax "github.com/googleapis/gax-go/v2" + "github.com/googleapis/gax-go/v2/callctx" + "google.golang.org/api/iterator" + "google.golang.org/api/option" + "google.golang.org/api/option/internaloption" + httptransport "google.golang.org/api/transport/http" + "google.golang.org/grpc" + "google.golang.org/protobuf/encoding/protojson" + "google.golang.org/protobuf/proto" +) + +var newRegionInstantSnapshotGroupsClientHook clientHook + +// RegionInstantSnapshotGroupsCallOptions contains the retry settings for each method of RegionInstantSnapshotGroupsClient. +type RegionInstantSnapshotGroupsCallOptions struct { + Delete []gax.CallOption + Get []gax.CallOption + GetIamPolicy []gax.CallOption + Insert []gax.CallOption + List []gax.CallOption + SetIamPolicy []gax.CallOption + TestIamPermissions []gax.CallOption +} + +func defaultRegionInstantSnapshotGroupsRESTCallOptions() *RegionInstantSnapshotGroupsCallOptions { + return &RegionInstantSnapshotGroupsCallOptions{ + Delete: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + Get: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + GetIamPolicy: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + Insert: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + List: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + SetIamPolicy: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + TestIamPermissions: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + } +} + +// internalRegionInstantSnapshotGroupsClient is an interface that defines the methods available from Google Compute Engine API. +type internalRegionInstantSnapshotGroupsClient interface { + Close() error + setGoogleClientInfo(...string) + Connection() *grpc.ClientConn + Delete(context.Context, *computepb.DeleteRegionInstantSnapshotGroupRequest, ...gax.CallOption) (*Operation, error) + Get(context.Context, *computepb.GetRegionInstantSnapshotGroupRequest, ...gax.CallOption) (*computepb.InstantSnapshotGroup, error) + GetIamPolicy(context.Context, *computepb.GetIamPolicyRegionInstantSnapshotGroupRequest, ...gax.CallOption) (*computepb.Policy, error) + Insert(context.Context, *computepb.InsertRegionInstantSnapshotGroupRequest, ...gax.CallOption) (*Operation, error) + List(context.Context, *computepb.ListRegionInstantSnapshotGroupsRequest, ...gax.CallOption) *InstantSnapshotGroupIterator + SetIamPolicy(context.Context, *computepb.SetIamPolicyRegionInstantSnapshotGroupRequest, ...gax.CallOption) (*computepb.Policy, error) + TestIamPermissions(context.Context, *computepb.TestIamPermissionsRegionInstantSnapshotGroupRequest, ...gax.CallOption) (*computepb.TestPermissionsResponse, error) +} + +// RegionInstantSnapshotGroupsClient is a client for interacting with Google Compute Engine API. +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +// +// The RegionInstantSnapshotGroups API. +type RegionInstantSnapshotGroupsClient struct { + // The internal transport-dependent client. + internalClient internalRegionInstantSnapshotGroupsClient + + // The call options for this service. + CallOptions *RegionInstantSnapshotGroupsCallOptions +} + +// 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 *RegionInstantSnapshotGroupsClient) 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 *RegionInstantSnapshotGroupsClient) 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 *RegionInstantSnapshotGroupsClient) Connection() *grpc.ClientConn { + return c.internalClient.Connection() +} + +// Delete deletes a Regional InstantSnapshotGroup resource +func (c *RegionInstantSnapshotGroupsClient) Delete(ctx context.Context, req *computepb.DeleteRegionInstantSnapshotGroupRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Delete(ctx, req, opts...) +} + +// Get returns the specified InstantSnapshotGroup resource in the specified +// region. +func (c *RegionInstantSnapshotGroupsClient) Get(ctx context.Context, req *computepb.GetRegionInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.InstantSnapshotGroup, error) { + return c.internalClient.Get(ctx, req, opts...) +} + +// GetIamPolicy gets the access control policy for a resource. May be empty if no such +// policy or resource exists. +func (c *RegionInstantSnapshotGroupsClient) GetIamPolicy(ctx context.Context, req *computepb.GetIamPolicyRegionInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + return c.internalClient.GetIamPolicy(ctx, req, opts...) +} + +// Insert creates a Regional InstantSnapshotGroup resource +func (c *RegionInstantSnapshotGroupsClient) Insert(ctx context.Context, req *computepb.InsertRegionInstantSnapshotGroupRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Insert(ctx, req, opts...) +} + +// List retrieves the list of InstantSnapshotGroup resources contained within +// the specified region. +func (c *RegionInstantSnapshotGroupsClient) List(ctx context.Context, req *computepb.ListRegionInstantSnapshotGroupsRequest, opts ...gax.CallOption) *InstantSnapshotGroupIterator { + return c.internalClient.List(ctx, req, opts...) +} + +// SetIamPolicy sets the access control policy on the specified resource. +// Replaces any existing policy. +func (c *RegionInstantSnapshotGroupsClient) SetIamPolicy(ctx context.Context, req *computepb.SetIamPolicyRegionInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + return c.internalClient.SetIamPolicy(ctx, req, opts...) +} + +// TestIamPermissions returns permissions that a caller has on the specified resource. +func (c *RegionInstantSnapshotGroupsClient) TestIamPermissions(ctx context.Context, req *computepb.TestIamPermissionsRegionInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.TestPermissionsResponse, error) { + return c.internalClient.TestIamPermissions(ctx, req, opts...) +} + +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +type regionInstantSnapshotGroupsRESTClient struct { + // The http endpoint to connect to. + endpoint string + + // The http client. + httpClient *http.Client + + // operationClient is used to call the operation-specific management service. + operationClient *RegionOperationsClient + + // The x-goog-* headers to be sent with each request. + xGoogHeaders []string + + // Points back to the CallOptions field of the containing RegionInstantSnapshotGroupsClient + CallOptions **RegionInstantSnapshotGroupsCallOptions + + logger *slog.Logger +} + +// NewRegionInstantSnapshotGroupsRESTClient creates a new region instant snapshot groups rest client. +// +// The RegionInstantSnapshotGroups API. +func NewRegionInstantSnapshotGroupsRESTClient(ctx context.Context, opts ...option.ClientOption) (*RegionInstantSnapshotGroupsClient, error) { + clientOpts := append(defaultRegionInstantSnapshotGroupsRESTClientOptions(), opts...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + clientOpts = append(clientOpts, internaloption.WithTelemetryAttributes(map[string]string{ + "gcp.client.service": "compute", + "gcp.client.version": getVersionClient(), + "gcp.client.repo": "googleapis/google-cloud-go", + "gcp.client.artifact": "cloud.google.com/go/compute/apiv1", + "gcp.client.language": "go", + "url.domain": "compute.googleapis.com", + })) + } + httpClient, endpoint, err := httptransport.NewClient(ctx, clientOpts...) + if err != nil { + return nil, err + } + + callOpts := defaultRegionInstantSnapshotGroupsRESTCallOptions() + c := ®ionInstantSnapshotGroupsRESTClient{ + endpoint: endpoint, + httpClient: httpClient, + CallOptions: &callOpts, + logger: internaloption.GetLogger(opts), + } + c.setGoogleClientInfo() + + if gax.IsFeatureEnabled("METRICS") { + metrics := gax.NewClientMetrics( + gax.WithTelemetryLogger(c.logger), + gax.WithTelemetryAttributes(map[string]string{ + gax.ClientService: "compute", + gax.ClientVersion: getVersionClient(), + gax.ClientArtifact: "cloud.google.com/go/compute/apiv1", + gax.RPCSystem: "http", + gax.URLDomain: "compute.googleapis.com", + }), + ) + + callOpts.Delete = append(callOpts.Delete, gax.WithClientMetrics(metrics)) + callOpts.Get = append(callOpts.Get, gax.WithClientMetrics(metrics)) + callOpts.GetIamPolicy = append(callOpts.GetIamPolicy, gax.WithClientMetrics(metrics)) + callOpts.Insert = append(callOpts.Insert, gax.WithClientMetrics(metrics)) + callOpts.List = append(callOpts.List, gax.WithClientMetrics(metrics)) + callOpts.SetIamPolicy = append(callOpts.SetIamPolicy, gax.WithClientMetrics(metrics)) + callOpts.TestIamPermissions = append(callOpts.TestIamPermissions, gax.WithClientMetrics(metrics)) + } + + o := []option.ClientOption{ + option.WithHTTPClient(httpClient), + option.WithEndpoint(endpoint), + } + opC, err := NewRegionOperationsRESTClient(ctx, o...) + if err != nil { + return nil, err + } + c.operationClient = opC + + return &RegionInstantSnapshotGroupsClient{internalClient: c, CallOptions: callOpts}, nil +} + +func defaultRegionInstantSnapshotGroupsRESTClientOptions() []option.ClientOption { + return []option.ClientOption{ + internaloption.WithDefaultEndpoint("https://compute.googleapis.com"), + internaloption.WithDefaultEndpointTemplate("https://compute.UNIVERSE_DOMAIN"), + internaloption.WithDefaultMTLSEndpoint("https://compute.mtls.googleapis.com"), + internaloption.WithDefaultUniverseDomain("googleapis.com"), + internaloption.WithDefaultAudience("https://compute.googleapis.com/"), + internaloption.WithDefaultScopes(DefaultAuthScopes()...), + internaloption.EnableNewAuthLibrary(), + } +} + +// 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 *regionInstantSnapshotGroupsRESTClient) setGoogleClientInfo(keyval ...string) { + kv := append([]string{"gl-go", gax.GoVersion}, keyval...) + kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "rest", "UNKNOWN", "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 *regionInstantSnapshotGroupsRESTClient) Close() error { + // Replace httpClient with nil to force cleanup. + c.httpClient = nil + if err := c.operationClient.Close(); err != nil { + return err + } + return nil +} + +// Connection returns a connection to the API service. +// +// Deprecated: This method always returns nil. +func (c *regionInstantSnapshotGroupsRESTClient) Connection() *grpc.ClientConn { + return nil +} + +// Delete deletes a Regional InstantSnapshotGroup resource +func (c *regionInstantSnapshotGroupsRESTClient) Delete(ctx context.Context, req *computepb.DeleteRegionInstantSnapshotGroupRequest, opts ...gax.CallOption) (*Operation, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetRegion(), req.GetInstantSnapshotGroup()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "instant_snapshot_group", url.QueryEscape(req.GetInstantSnapshotGroup()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetRegion(), req.GetInstantSnapshotGroup())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionInstantSnapshotGroups/Delete") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/instantSnapshotGroups/{instant_snapshot_group}") + } + opts = append((*c.CallOptions).Delete[0:len((*c.CallOptions).Delete):len((*c.CallOptions).Delete)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("DELETE", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Delete") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} + +// Get returns the specified InstantSnapshotGroup resource in the specified +// region. +func (c *regionInstantSnapshotGroupsRESTClient) Get(ctx context.Context, req *computepb.GetRegionInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.InstantSnapshotGroup, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetRegion(), req.GetInstantSnapshotGroup()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "instant_snapshot_group", url.QueryEscape(req.GetInstantSnapshotGroup()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetRegion(), req.GetInstantSnapshotGroup())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionInstantSnapshotGroups/Get") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/instantSnapshotGroups/{instant_snapshot_group}") + } + opts = append((*c.CallOptions).Get[0:len((*c.CallOptions).Get):len((*c.CallOptions).Get)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.InstantSnapshotGroup{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Get") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// GetIamPolicy gets the access control policy for a resource. May be empty if no such +// policy or resource exists. +func (c *regionInstantSnapshotGroupsRESTClient) GetIamPolicy(ctx context.Context, req *computepb.GetIamPolicyRegionInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/instantSnapshotGroups/%v/getIamPolicy", req.GetProject(), req.GetRegion(), req.GetResource()) + + params := url.Values{} + if req != nil && req.OptionsRequestedPolicyVersion != nil { + params.Add("optionsRequestedPolicyVersion", fmt.Sprintf("%v", req.GetOptionsRequestedPolicyVersion())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetRegion(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionInstantSnapshotGroups/GetIamPolicy") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/instantSnapshotGroups/{resource}/getIamPolicy") + } + opts = append((*c.CallOptions).GetIamPolicy[0:len((*c.CallOptions).GetIamPolicy):len((*c.CallOptions).GetIamPolicy)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Policy{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "GetIamPolicy") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// Insert creates a Regional InstantSnapshotGroup resource +func (c *regionInstantSnapshotGroupsRESTClient) Insert(ctx context.Context, req *computepb.InsertRegionInstantSnapshotGroupRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetInstantSnapshotGroupResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/instantSnapshotGroups", req.GetProject(), req.GetRegion()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + if req != nil && req.SourceConsistencyGroup != nil { + params.Add("sourceConsistencyGroup", fmt.Sprintf("%v", req.GetSourceConsistencyGroup())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v", req.GetProject(), req.GetRegion())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionInstantSnapshotGroups/Insert") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/instantSnapshotGroups") + } + opts = append((*c.CallOptions).Insert[0:len((*c.CallOptions).Insert):len((*c.CallOptions).Insert)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "Insert") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} + +// List retrieves the list of InstantSnapshotGroup resources contained within +// the specified region. +func (c *regionInstantSnapshotGroupsRESTClient) List(ctx context.Context, req *computepb.ListRegionInstantSnapshotGroupsRequest, opts ...gax.CallOption) *InstantSnapshotGroupIterator { + it := &InstantSnapshotGroupIterator{} + req = proto.Clone(req).(*computepb.ListRegionInstantSnapshotGroupsRequest) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.InstantSnapshotGroup, string, error) { + resp := &computepb.ListInstantSnapshotGroups{} + if pageToken != "" { + req.PageToken = proto.String(pageToken) + } + if pageSize > math.MaxInt32 { + req.MaxResults = proto.Uint32(uint32(math.MaxInt32)) + } else if pageSize != 0 { + req.MaxResults = proto.Uint32(uint32(pageSize)) + } + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, "", err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/instantSnapshotGroups", req.GetProject(), req.GetRegion()) + + params := url.Values{} + if req != nil && req.Filter != nil { + params.Add("filter", fmt.Sprintf("%v", req.GetFilter())) + } + if req != nil && req.MaxResults != nil { + params.Add("maxResults", fmt.Sprintf("%v", req.GetMaxResults())) + } + if req != nil && req.OrderBy != nil { + params.Add("orderBy", fmt.Sprintf("%v", req.GetOrderBy())) + } + if req != nil && req.PageToken != nil { + params.Add("pageToken", fmt.Sprintf("%v", req.GetPageToken())) + } + if req != nil && req.ReturnPartialSuccess != nil { + params.Add("returnPartialSuccess", fmt.Sprintf("%v", req.GetReturnPartialSuccess())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := append(c.xGoogHeaders, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "List") + if err != nil { + return err + } + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, "", e + } + it.Response = resp + return resp.GetItems(), resp.GetNextPageToken(), nil + } + + fetch := func(pageSize int, pageToken string) (string, error) { + items, nextPageToken, err := it.InternalFetch(pageSize, pageToken) + if err != nil { + return "", err + } + it.items = append(it.items, items...) + return nextPageToken, nil + } + + it.pageInfo, it.nextFunc = iterator.NewPageInfo(fetch, it.bufLen, it.takeBuf) + it.pageInfo.MaxSize = int(req.GetMaxResults()) + it.pageInfo.Token = req.GetPageToken() + + return it +} + +// SetIamPolicy sets the access control policy on the specified resource. +// Replaces any existing policy. +func (c *regionInstantSnapshotGroupsRESTClient) SetIamPolicy(ctx context.Context, req *computepb.SetIamPolicyRegionInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetRegionSetPolicyRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/instantSnapshotGroups/%v/setIamPolicy", req.GetProject(), req.GetRegion(), req.GetResource()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetRegion(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionInstantSnapshotGroups/SetIamPolicy") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/instantSnapshotGroups/{resource}/setIamPolicy") + } + opts = append((*c.CallOptions).SetIamPolicy[0:len((*c.CallOptions).SetIamPolicy):len((*c.CallOptions).SetIamPolicy)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Policy{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "SetIamPolicy") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// TestIamPermissions returns permissions that a caller has on the specified resource. +func (c *regionInstantSnapshotGroupsRESTClient) TestIamPermissions(ctx context.Context, req *computepb.TestIamPermissionsRegionInstantSnapshotGroupRequest, opts ...gax.CallOption) (*computepb.TestPermissionsResponse, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetTestPermissionsRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/instantSnapshotGroups/%v/testIamPermissions", req.GetProject(), req.GetRegion(), req.GetResource()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/instantSnapshotGroups/%v", req.GetProject(), req.GetRegion(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionInstantSnapshotGroups/TestIamPermissions") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/instantSnapshotGroups/{resource}/testIamPermissions") + } + opts = append((*c.CallOptions).TestIamPermissions[0:len((*c.CallOptions).TestIamPermissions):len((*c.CallOptions).TestIamPermissions)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.TestPermissionsResponse{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "TestIamPermissions") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} diff --git a/vendor/cloud.google.com/go/compute/apiv1/region_snapshot_settings_client.go b/vendor/cloud.google.com/go/compute/apiv1/region_snapshot_settings_client.go new file mode 100644 index 00000000..891db69b --- /dev/null +++ b/vendor/cloud.google.com/go/compute/apiv1/region_snapshot_settings_client.go @@ -0,0 +1,366 @@ +// Copyright 2026 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 compute + +import ( + "bytes" + "context" + "fmt" + "log/slog" + "net/http" + "net/url" + "time" + + computepb "cloud.google.com/go/compute/apiv1/computepb" + gax "github.com/googleapis/gax-go/v2" + "github.com/googleapis/gax-go/v2/callctx" + "google.golang.org/api/option" + "google.golang.org/api/option/internaloption" + httptransport "google.golang.org/api/transport/http" + "google.golang.org/grpc" + "google.golang.org/protobuf/encoding/protojson" +) + +var newRegionSnapshotSettingsClientHook clientHook + +// RegionSnapshotSettingsCallOptions contains the retry settings for each method of RegionSnapshotSettingsClient. +type RegionSnapshotSettingsCallOptions struct { + Get []gax.CallOption + Patch []gax.CallOption +} + +func defaultRegionSnapshotSettingsRESTCallOptions() *RegionSnapshotSettingsCallOptions { + return &RegionSnapshotSettingsCallOptions{ + Get: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + Patch: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + } +} + +// internalRegionSnapshotSettingsClient is an interface that defines the methods available from Google Compute Engine API. +type internalRegionSnapshotSettingsClient interface { + Close() error + setGoogleClientInfo(...string) + Connection() *grpc.ClientConn + Get(context.Context, *computepb.GetRegionSnapshotSettingRequest, ...gax.CallOption) (*computepb.SnapshotSettings, error) + Patch(context.Context, *computepb.PatchRegionSnapshotSettingRequest, ...gax.CallOption) (*Operation, error) +} + +// RegionSnapshotSettingsClient is a client for interacting with Google Compute Engine API. +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +// +// The RegionSnapshotSettings API. +type RegionSnapshotSettingsClient struct { + // The internal transport-dependent client. + internalClient internalRegionSnapshotSettingsClient + + // The call options for this service. + CallOptions *RegionSnapshotSettingsCallOptions +} + +// 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 *RegionSnapshotSettingsClient) 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 *RegionSnapshotSettingsClient) 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 *RegionSnapshotSettingsClient) Connection() *grpc.ClientConn { + return c.internalClient.Connection() +} + +// Get get region snapshot settings. +func (c *RegionSnapshotSettingsClient) Get(ctx context.Context, req *computepb.GetRegionSnapshotSettingRequest, opts ...gax.CallOption) (*computepb.SnapshotSettings, error) { + return c.internalClient.Get(ctx, req, opts...) +} + +// Patch patch region snapshot settings. +func (c *RegionSnapshotSettingsClient) Patch(ctx context.Context, req *computepb.PatchRegionSnapshotSettingRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Patch(ctx, req, opts...) +} + +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +type regionSnapshotSettingsRESTClient struct { + // The http endpoint to connect to. + endpoint string + + // The http client. + httpClient *http.Client + + // operationClient is used to call the operation-specific management service. + operationClient *RegionOperationsClient + + // The x-goog-* headers to be sent with each request. + xGoogHeaders []string + + // Points back to the CallOptions field of the containing RegionSnapshotSettingsClient + CallOptions **RegionSnapshotSettingsCallOptions + + logger *slog.Logger +} + +// NewRegionSnapshotSettingsRESTClient creates a new region snapshot settings rest client. +// +// The RegionSnapshotSettings API. +func NewRegionSnapshotSettingsRESTClient(ctx context.Context, opts ...option.ClientOption) (*RegionSnapshotSettingsClient, error) { + clientOpts := append(defaultRegionSnapshotSettingsRESTClientOptions(), opts...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + clientOpts = append(clientOpts, internaloption.WithTelemetryAttributes(map[string]string{ + "gcp.client.service": "compute", + "gcp.client.version": getVersionClient(), + "gcp.client.repo": "googleapis/google-cloud-go", + "gcp.client.artifact": "cloud.google.com/go/compute/apiv1", + "gcp.client.language": "go", + "url.domain": "compute.googleapis.com", + })) + } + httpClient, endpoint, err := httptransport.NewClient(ctx, clientOpts...) + if err != nil { + return nil, err + } + + callOpts := defaultRegionSnapshotSettingsRESTCallOptions() + c := ®ionSnapshotSettingsRESTClient{ + endpoint: endpoint, + httpClient: httpClient, + CallOptions: &callOpts, + logger: internaloption.GetLogger(opts), + } + c.setGoogleClientInfo() + + if gax.IsFeatureEnabled("METRICS") { + metrics := gax.NewClientMetrics( + gax.WithTelemetryLogger(c.logger), + gax.WithTelemetryAttributes(map[string]string{ + gax.ClientService: "compute", + gax.ClientVersion: getVersionClient(), + gax.ClientArtifact: "cloud.google.com/go/compute/apiv1", + gax.RPCSystem: "http", + gax.URLDomain: "compute.googleapis.com", + }), + ) + + callOpts.Get = append(callOpts.Get, gax.WithClientMetrics(metrics)) + callOpts.Patch = append(callOpts.Patch, gax.WithClientMetrics(metrics)) + } + + o := []option.ClientOption{ + option.WithHTTPClient(httpClient), + option.WithEndpoint(endpoint), + } + opC, err := NewRegionOperationsRESTClient(ctx, o...) + if err != nil { + return nil, err + } + c.operationClient = opC + + return &RegionSnapshotSettingsClient{internalClient: c, CallOptions: callOpts}, nil +} + +func defaultRegionSnapshotSettingsRESTClientOptions() []option.ClientOption { + return []option.ClientOption{ + internaloption.WithDefaultEndpoint("https://compute.googleapis.com"), + internaloption.WithDefaultEndpointTemplate("https://compute.UNIVERSE_DOMAIN"), + internaloption.WithDefaultMTLSEndpoint("https://compute.mtls.googleapis.com"), + internaloption.WithDefaultUniverseDomain("googleapis.com"), + internaloption.WithDefaultAudience("https://compute.googleapis.com/"), + internaloption.WithDefaultScopes(DefaultAuthScopes()...), + internaloption.EnableNewAuthLibrary(), + } +} + +// 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 *regionSnapshotSettingsRESTClient) setGoogleClientInfo(keyval ...string) { + kv := append([]string{"gl-go", gax.GoVersion}, keyval...) + kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "rest", "UNKNOWN", "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 *regionSnapshotSettingsRESTClient) Close() error { + // Replace httpClient with nil to force cleanup. + c.httpClient = nil + if err := c.operationClient.Close(); err != nil { + return err + } + return nil +} + +// Connection returns a connection to the API service. +// +// Deprecated: This method always returns nil. +func (c *regionSnapshotSettingsRESTClient) Connection() *grpc.ClientConn { + return nil +} + +// Get get region snapshot settings. +func (c *regionSnapshotSettingsRESTClient) Get(ctx context.Context, req *computepb.GetRegionSnapshotSettingRequest, opts ...gax.CallOption) (*computepb.SnapshotSettings, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/snapshotSettings", req.GetProject(), req.GetRegion()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v", req.GetProject(), req.GetRegion())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionSnapshotSettings/Get") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/snapshotSettings") + } + opts = append((*c.CallOptions).Get[0:len((*c.CallOptions).Get):len((*c.CallOptions).Get)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.SnapshotSettings{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Get") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// Patch patch region snapshot settings. +func (c *regionSnapshotSettingsRESTClient) Patch(ctx context.Context, req *computepb.PatchRegionSnapshotSettingRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetSnapshotSettingsResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/snapshotSettings", req.GetProject(), req.GetRegion()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + if req != nil && req.UpdateMask != nil { + params.Add("updateMask", fmt.Sprintf("%v", req.GetUpdateMask())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v", req.GetProject(), req.GetRegion())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionSnapshotSettings/Patch") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/snapshotSettings") + } + opts = append((*c.CallOptions).Patch[0:len((*c.CallOptions).Patch):len((*c.CallOptions).Patch)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("PATCH", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "Patch") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} diff --git a/vendor/cloud.google.com/go/compute/apiv1/region_snapshots_client.go b/vendor/cloud.google.com/go/compute/apiv1/region_snapshots_client.go new file mode 100644 index 00000000..7d1e4ecc --- /dev/null +++ b/vendor/cloud.google.com/go/compute/apiv1/region_snapshots_client.go @@ -0,0 +1,967 @@ +// Copyright 2026 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 compute + +import ( + "bytes" + "context" + "fmt" + "log/slog" + "math" + "net/http" + "net/url" + "time" + + computepb "cloud.google.com/go/compute/apiv1/computepb" + gax "github.com/googleapis/gax-go/v2" + "github.com/googleapis/gax-go/v2/callctx" + "google.golang.org/api/iterator" + "google.golang.org/api/option" + "google.golang.org/api/option/internaloption" + httptransport "google.golang.org/api/transport/http" + "google.golang.org/grpc" + "google.golang.org/protobuf/encoding/protojson" + "google.golang.org/protobuf/proto" +) + +var newRegionSnapshotsClientHook clientHook + +// RegionSnapshotsCallOptions contains the retry settings for each method of RegionSnapshotsClient. +type RegionSnapshotsCallOptions struct { + Delete []gax.CallOption + Get []gax.CallOption + GetIamPolicy []gax.CallOption + Insert []gax.CallOption + List []gax.CallOption + SetIamPolicy []gax.CallOption + SetLabels []gax.CallOption + TestIamPermissions []gax.CallOption + UpdateKmsKey []gax.CallOption +} + +func defaultRegionSnapshotsRESTCallOptions() *RegionSnapshotsCallOptions { + return &RegionSnapshotsCallOptions{ + Delete: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + Get: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + GetIamPolicy: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + Insert: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + List: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + SetIamPolicy: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + SetLabels: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + TestIamPermissions: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + UpdateKmsKey: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + } +} + +// internalRegionSnapshotsClient is an interface that defines the methods available from Google Compute Engine API. +type internalRegionSnapshotsClient interface { + Close() error + setGoogleClientInfo(...string) + Connection() *grpc.ClientConn + Delete(context.Context, *computepb.DeleteRegionSnapshotRequest, ...gax.CallOption) (*Operation, error) + Get(context.Context, *computepb.GetRegionSnapshotRequest, ...gax.CallOption) (*computepb.Snapshot, error) + GetIamPolicy(context.Context, *computepb.GetIamPolicyRegionSnapshotRequest, ...gax.CallOption) (*computepb.Policy, error) + Insert(context.Context, *computepb.InsertRegionSnapshotRequest, ...gax.CallOption) (*Operation, error) + List(context.Context, *computepb.ListRegionSnapshotsRequest, ...gax.CallOption) *SnapshotIterator + SetIamPolicy(context.Context, *computepb.SetIamPolicyRegionSnapshotRequest, ...gax.CallOption) (*computepb.Policy, error) + SetLabels(context.Context, *computepb.SetLabelsRegionSnapshotRequest, ...gax.CallOption) (*Operation, error) + TestIamPermissions(context.Context, *computepb.TestIamPermissionsRegionSnapshotRequest, ...gax.CallOption) (*computepb.TestPermissionsResponse, error) + UpdateKmsKey(context.Context, *computepb.UpdateKmsKeyRegionSnapshotRequest, ...gax.CallOption) (*Operation, error) +} + +// RegionSnapshotsClient is a client for interacting with Google Compute Engine API. +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +// +// The RegionSnapshots API. +type RegionSnapshotsClient struct { + // The internal transport-dependent client. + internalClient internalRegionSnapshotsClient + + // The call options for this service. + CallOptions *RegionSnapshotsCallOptions +} + +// 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 *RegionSnapshotsClient) 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 *RegionSnapshotsClient) 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 *RegionSnapshotsClient) Connection() *grpc.ClientConn { + return c.internalClient.Connection() +} + +// Delete deletes the specified Snapshot resource. Keep in mind that deleting +// a single snapshot might not necessarily delete all the data on that +// snapshot. If any data on the snapshot that is marked for deletion is +// needed for subsequent snapshots, the data will be moved to the next +// corresponding snapshot. +// +// For more information, seeDeleting +// snapshots. +func (c *RegionSnapshotsClient) Delete(ctx context.Context, req *computepb.DeleteRegionSnapshotRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Delete(ctx, req, opts...) +} + +// Get returns the specified Snapshot resource. +func (c *RegionSnapshotsClient) Get(ctx context.Context, req *computepb.GetRegionSnapshotRequest, opts ...gax.CallOption) (*computepb.Snapshot, error) { + return c.internalClient.Get(ctx, req, opts...) +} + +// GetIamPolicy gets the access control policy for a resource. May be empty if no such +// policy or resource exists. +func (c *RegionSnapshotsClient) GetIamPolicy(ctx context.Context, req *computepb.GetIamPolicyRegionSnapshotRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + return c.internalClient.GetIamPolicy(ctx, req, opts...) +} + +// Insert creates a snapshot in the specified region using the data included +// in the request. +func (c *RegionSnapshotsClient) Insert(ctx context.Context, req *computepb.InsertRegionSnapshotRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Insert(ctx, req, opts...) +} + +// List retrieves the list of Snapshot resources contained within +// the specified region. +func (c *RegionSnapshotsClient) List(ctx context.Context, req *computepb.ListRegionSnapshotsRequest, opts ...gax.CallOption) *SnapshotIterator { + return c.internalClient.List(ctx, req, opts...) +} + +// SetIamPolicy sets the access control policy on the specified resource. +// Replaces any existing policy. +func (c *RegionSnapshotsClient) SetIamPolicy(ctx context.Context, req *computepb.SetIamPolicyRegionSnapshotRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + return c.internalClient.SetIamPolicy(ctx, req, opts...) +} + +// SetLabels sets the labels on a regional snapshot. To learn more about labels, read +// the Labeling Resources +// documentation. +func (c *RegionSnapshotsClient) SetLabels(ctx context.Context, req *computepb.SetLabelsRegionSnapshotRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.SetLabels(ctx, req, opts...) +} + +// TestIamPermissions returns permissions that a caller has on the specified resource. +func (c *RegionSnapshotsClient) TestIamPermissions(ctx context.Context, req *computepb.TestIamPermissionsRegionSnapshotRequest, opts ...gax.CallOption) (*computepb.TestPermissionsResponse, error) { + return c.internalClient.TestIamPermissions(ctx, req, opts...) +} + +// UpdateKmsKey rotates the customer-managed +// encryption key to the latest version for the specified snapshot. +func (c *RegionSnapshotsClient) UpdateKmsKey(ctx context.Context, req *computepb.UpdateKmsKeyRegionSnapshotRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.UpdateKmsKey(ctx, req, opts...) +} + +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +type regionSnapshotsRESTClient struct { + // The http endpoint to connect to. + endpoint string + + // The http client. + httpClient *http.Client + + // operationClient is used to call the operation-specific management service. + operationClient *RegionOperationsClient + + // The x-goog-* headers to be sent with each request. + xGoogHeaders []string + + // Points back to the CallOptions field of the containing RegionSnapshotsClient + CallOptions **RegionSnapshotsCallOptions + + logger *slog.Logger +} + +// NewRegionSnapshotsRESTClient creates a new region snapshots rest client. +// +// The RegionSnapshots API. +func NewRegionSnapshotsRESTClient(ctx context.Context, opts ...option.ClientOption) (*RegionSnapshotsClient, error) { + clientOpts := append(defaultRegionSnapshotsRESTClientOptions(), opts...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + clientOpts = append(clientOpts, internaloption.WithTelemetryAttributes(map[string]string{ + "gcp.client.service": "compute", + "gcp.client.version": getVersionClient(), + "gcp.client.repo": "googleapis/google-cloud-go", + "gcp.client.artifact": "cloud.google.com/go/compute/apiv1", + "gcp.client.language": "go", + "url.domain": "compute.googleapis.com", + })) + } + httpClient, endpoint, err := httptransport.NewClient(ctx, clientOpts...) + if err != nil { + return nil, err + } + + callOpts := defaultRegionSnapshotsRESTCallOptions() + c := ®ionSnapshotsRESTClient{ + endpoint: endpoint, + httpClient: httpClient, + CallOptions: &callOpts, + logger: internaloption.GetLogger(opts), + } + c.setGoogleClientInfo() + + if gax.IsFeatureEnabled("METRICS") { + metrics := gax.NewClientMetrics( + gax.WithTelemetryLogger(c.logger), + gax.WithTelemetryAttributes(map[string]string{ + gax.ClientService: "compute", + gax.ClientVersion: getVersionClient(), + gax.ClientArtifact: "cloud.google.com/go/compute/apiv1", + gax.RPCSystem: "http", + gax.URLDomain: "compute.googleapis.com", + }), + ) + + callOpts.Delete = append(callOpts.Delete, gax.WithClientMetrics(metrics)) + callOpts.Get = append(callOpts.Get, gax.WithClientMetrics(metrics)) + callOpts.GetIamPolicy = append(callOpts.GetIamPolicy, gax.WithClientMetrics(metrics)) + callOpts.Insert = append(callOpts.Insert, gax.WithClientMetrics(metrics)) + callOpts.List = append(callOpts.List, gax.WithClientMetrics(metrics)) + callOpts.SetIamPolicy = append(callOpts.SetIamPolicy, gax.WithClientMetrics(metrics)) + callOpts.SetLabels = append(callOpts.SetLabels, gax.WithClientMetrics(metrics)) + callOpts.TestIamPermissions = append(callOpts.TestIamPermissions, gax.WithClientMetrics(metrics)) + callOpts.UpdateKmsKey = append(callOpts.UpdateKmsKey, gax.WithClientMetrics(metrics)) + } + + o := []option.ClientOption{ + option.WithHTTPClient(httpClient), + option.WithEndpoint(endpoint), + } + opC, err := NewRegionOperationsRESTClient(ctx, o...) + if err != nil { + return nil, err + } + c.operationClient = opC + + return &RegionSnapshotsClient{internalClient: c, CallOptions: callOpts}, nil +} + +func defaultRegionSnapshotsRESTClientOptions() []option.ClientOption { + return []option.ClientOption{ + internaloption.WithDefaultEndpoint("https://compute.googleapis.com"), + internaloption.WithDefaultEndpointTemplate("https://compute.UNIVERSE_DOMAIN"), + internaloption.WithDefaultMTLSEndpoint("https://compute.mtls.googleapis.com"), + internaloption.WithDefaultUniverseDomain("googleapis.com"), + internaloption.WithDefaultAudience("https://compute.googleapis.com/"), + internaloption.WithDefaultScopes(DefaultAuthScopes()...), + internaloption.EnableNewAuthLibrary(), + } +} + +// 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 *regionSnapshotsRESTClient) setGoogleClientInfo(keyval ...string) { + kv := append([]string{"gl-go", gax.GoVersion}, keyval...) + kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "rest", "UNKNOWN", "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 *regionSnapshotsRESTClient) Close() error { + // Replace httpClient with nil to force cleanup. + c.httpClient = nil + if err := c.operationClient.Close(); err != nil { + return err + } + return nil +} + +// Connection returns a connection to the API service. +// +// Deprecated: This method always returns nil. +func (c *regionSnapshotsRESTClient) Connection() *grpc.ClientConn { + return nil +} + +// Delete deletes the specified Snapshot resource. Keep in mind that deleting +// a single snapshot might not necessarily delete all the data on that +// snapshot. If any data on the snapshot that is marked for deletion is +// needed for subsequent snapshots, the data will be moved to the next +// corresponding snapshot. +// +// For more information, seeDeleting +// snapshots. +func (c *regionSnapshotsRESTClient) Delete(ctx context.Context, req *computepb.DeleteRegionSnapshotRequest, opts ...gax.CallOption) (*Operation, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/snapshots/%v", req.GetProject(), req.GetRegion(), req.GetSnapshot()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "snapshot", url.QueryEscape(req.GetSnapshot()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/snapshots/%v", req.GetProject(), req.GetRegion(), req.GetSnapshot())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionSnapshots/Delete") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/snapshots/{snapshot}") + } + opts = append((*c.CallOptions).Delete[0:len((*c.CallOptions).Delete):len((*c.CallOptions).Delete)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("DELETE", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Delete") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} + +// Get returns the specified Snapshot resource. +func (c *regionSnapshotsRESTClient) Get(ctx context.Context, req *computepb.GetRegionSnapshotRequest, opts ...gax.CallOption) (*computepb.Snapshot, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/snapshots/%v", req.GetProject(), req.GetRegion(), req.GetSnapshot()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "snapshot", url.QueryEscape(req.GetSnapshot()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/snapshots/%v", req.GetProject(), req.GetRegion(), req.GetSnapshot())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionSnapshots/Get") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/snapshots/{snapshot}") + } + opts = append((*c.CallOptions).Get[0:len((*c.CallOptions).Get):len((*c.CallOptions).Get)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Snapshot{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Get") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// GetIamPolicy gets the access control policy for a resource. May be empty if no such +// policy or resource exists. +func (c *regionSnapshotsRESTClient) GetIamPolicy(ctx context.Context, req *computepb.GetIamPolicyRegionSnapshotRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/snapshots/%v/getIamPolicy", req.GetProject(), req.GetRegion(), req.GetResource()) + + params := url.Values{} + if req != nil && req.OptionsRequestedPolicyVersion != nil { + params.Add("optionsRequestedPolicyVersion", fmt.Sprintf("%v", req.GetOptionsRequestedPolicyVersion())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/snapshots/%v", req.GetProject(), req.GetRegion(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionSnapshots/GetIamPolicy") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/snapshots/{resource}/getIamPolicy") + } + opts = append((*c.CallOptions).GetIamPolicy[0:len((*c.CallOptions).GetIamPolicy):len((*c.CallOptions).GetIamPolicy)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Policy{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "GetIamPolicy") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// Insert creates a snapshot in the specified region using the data included +// in the request. +func (c *regionSnapshotsRESTClient) Insert(ctx context.Context, req *computepb.InsertRegionSnapshotRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetSnapshotResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/snapshots", req.GetProject(), req.GetRegion()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v", req.GetProject(), req.GetRegion())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionSnapshots/Insert") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/snapshots") + } + opts = append((*c.CallOptions).Insert[0:len((*c.CallOptions).Insert):len((*c.CallOptions).Insert)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "Insert") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} + +// List retrieves the list of Snapshot resources contained within +// the specified region. +func (c *regionSnapshotsRESTClient) List(ctx context.Context, req *computepb.ListRegionSnapshotsRequest, opts ...gax.CallOption) *SnapshotIterator { + it := &SnapshotIterator{} + req = proto.Clone(req).(*computepb.ListRegionSnapshotsRequest) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.Snapshot, string, error) { + resp := &computepb.SnapshotList{} + if pageToken != "" { + req.PageToken = proto.String(pageToken) + } + if pageSize > math.MaxInt32 { + req.MaxResults = proto.Uint32(uint32(math.MaxInt32)) + } else if pageSize != 0 { + req.MaxResults = proto.Uint32(uint32(pageSize)) + } + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, "", err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/snapshots", req.GetProject(), req.GetRegion()) + + params := url.Values{} + if req != nil && req.Filter != nil { + params.Add("filter", fmt.Sprintf("%v", req.GetFilter())) + } + if req != nil && req.MaxResults != nil { + params.Add("maxResults", fmt.Sprintf("%v", req.GetMaxResults())) + } + if req != nil && req.OrderBy != nil { + params.Add("orderBy", fmt.Sprintf("%v", req.GetOrderBy())) + } + if req != nil && req.PageToken != nil { + params.Add("pageToken", fmt.Sprintf("%v", req.GetPageToken())) + } + if req != nil && req.ReturnPartialSuccess != nil { + params.Add("returnPartialSuccess", fmt.Sprintf("%v", req.GetReturnPartialSuccess())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := append(c.xGoogHeaders, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "List") + if err != nil { + return err + } + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, "", e + } + it.Response = resp + return resp.GetItems(), resp.GetNextPageToken(), nil + } + + fetch := func(pageSize int, pageToken string) (string, error) { + items, nextPageToken, err := it.InternalFetch(pageSize, pageToken) + if err != nil { + return "", err + } + it.items = append(it.items, items...) + return nextPageToken, nil + } + + it.pageInfo, it.nextFunc = iterator.NewPageInfo(fetch, it.bufLen, it.takeBuf) + it.pageInfo.MaxSize = int(req.GetMaxResults()) + it.pageInfo.Token = req.GetPageToken() + + return it +} + +// SetIamPolicy sets the access control policy on the specified resource. +// Replaces any existing policy. +func (c *regionSnapshotsRESTClient) SetIamPolicy(ctx context.Context, req *computepb.SetIamPolicyRegionSnapshotRequest, opts ...gax.CallOption) (*computepb.Policy, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetRegionSetPolicyRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/snapshots/%v/setIamPolicy", req.GetProject(), req.GetRegion(), req.GetResource()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/snapshots/%v", req.GetProject(), req.GetRegion(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionSnapshots/SetIamPolicy") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/snapshots/{resource}/setIamPolicy") + } + opts = append((*c.CallOptions).SetIamPolicy[0:len((*c.CallOptions).SetIamPolicy):len((*c.CallOptions).SetIamPolicy)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Policy{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "SetIamPolicy") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// SetLabels sets the labels on a regional snapshot. To learn more about labels, read +// the Labeling Resources +// documentation. +func (c *regionSnapshotsRESTClient) SetLabels(ctx context.Context, req *computepb.SetLabelsRegionSnapshotRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetRegionSetLabelsRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/snapshots/%v/setLabels", req.GetProject(), req.GetRegion(), req.GetResource()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/snapshots/%v", req.GetProject(), req.GetRegion(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionSnapshots/SetLabels") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/snapshots/{resource}/setLabels") + } + opts = append((*c.CallOptions).SetLabels[0:len((*c.CallOptions).SetLabels):len((*c.CallOptions).SetLabels)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "SetLabels") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} + +// TestIamPermissions returns permissions that a caller has on the specified resource. +func (c *regionSnapshotsRESTClient) TestIamPermissions(ctx context.Context, req *computepb.TestIamPermissionsRegionSnapshotRequest, opts ...gax.CallOption) (*computepb.TestPermissionsResponse, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetTestPermissionsRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/snapshots/%v/testIamPermissions", req.GetProject(), req.GetRegion(), req.GetResource()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "resource", url.QueryEscape(req.GetResource()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/snapshots/%v", req.GetProject(), req.GetRegion(), req.GetResource())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionSnapshots/TestIamPermissions") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/snapshots/{resource}/testIamPermissions") + } + opts = append((*c.CallOptions).TestIamPermissions[0:len((*c.CallOptions).TestIamPermissions):len((*c.CallOptions).TestIamPermissions)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.TestPermissionsResponse{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "TestIamPermissions") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// UpdateKmsKey rotates the customer-managed +// encryption key to the latest version for the specified snapshot. +func (c *regionSnapshotsRESTClient) UpdateKmsKey(ctx context.Context, req *computepb.UpdateKmsKeyRegionSnapshotRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetRegionSnapshotUpdateKmsKeyRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/regions/%v/snapshots/%v/updateKmsKey", req.GetProject(), req.GetRegion(), req.GetSnapshot()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "region", url.QueryEscape(req.GetRegion()), "snapshot", url.QueryEscape(req.GetSnapshot()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/regions/%v/snapshots/%v", req.GetProject(), req.GetRegion(), req.GetSnapshot())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.RegionSnapshots/UpdateKmsKey") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/regions/{region}/snapshots/{snapshot}/updateKmsKey") + } + opts = append((*c.CallOptions).UpdateKmsKey[0:len((*c.CallOptions).UpdateKmsKey):len((*c.CallOptions).UpdateKmsKey)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "UpdateKmsKey") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + ®ionOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + region: req.GetRegion(), + }, + } + return op, nil +} diff --git a/vendor/cloud.google.com/go/compute/apiv1/snapshots_client.go b/vendor/cloud.google.com/go/compute/apiv1/snapshots_client.go index 16d14525..8e513923 100644 --- a/vendor/cloud.google.com/go/compute/apiv1/snapshots_client.go +++ b/vendor/cloud.google.com/go/compute/apiv1/snapshots_client.go @@ -50,6 +50,7 @@ type SnapshotsCallOptions struct { SetIamPolicy []gax.CallOption SetLabels []gax.CallOption TestIamPermissions []gax.CallOption + UpdateKmsKey []gax.CallOption } func defaultSnapshotsRESTCallOptions() *SnapshotsCallOptions { @@ -105,6 +106,9 @@ func defaultSnapshotsRESTCallOptions() *SnapshotsCallOptions { TestIamPermissions: []gax.CallOption{ gax.WithTimeout(600000 * time.Millisecond), }, + UpdateKmsKey: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, } } @@ -121,6 +125,7 @@ type internalSnapshotsClient interface { SetIamPolicy(context.Context, *computepb.SetIamPolicySnapshotRequest, ...gax.CallOption) (*computepb.Policy, error) SetLabels(context.Context, *computepb.SetLabelsSnapshotRequest, ...gax.CallOption) (*Operation, error) TestIamPermissions(context.Context, *computepb.TestIamPermissionsSnapshotRequest, ...gax.CallOption) (*computepb.TestPermissionsResponse, error) + UpdateKmsKey(context.Context, *computepb.UpdateKmsKeySnapshotRequest, ...gax.CallOption) (*Operation, error) } // SnapshotsClient is a client for interacting with Google Compute Engine API. @@ -213,6 +218,12 @@ func (c *SnapshotsClient) TestIamPermissions(ctx context.Context, req *computepb return c.internalClient.TestIamPermissions(ctx, req, opts...) } +// UpdateKmsKey rotates the customer-managed +// encryption key to the latest version for the specified snapshot. +func (c *SnapshotsClient) UpdateKmsKey(ctx context.Context, req *computepb.UpdateKmsKeySnapshotRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.UpdateKmsKey(ctx, req, opts...) +} + // Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. type snapshotsRESTClient struct { // The http endpoint to connect to. @@ -282,6 +293,7 @@ func NewSnapshotsRESTClient(ctx context.Context, opts ...option.ClientOption) (* callOpts.SetIamPolicy = append(callOpts.SetIamPolicy, gax.WithClientMetrics(metrics)) callOpts.SetLabels = append(callOpts.SetLabels, gax.WithClientMetrics(metrics)) callOpts.TestIamPermissions = append(callOpts.TestIamPermissions, gax.WithClientMetrics(metrics)) + callOpts.UpdateKmsKey = append(callOpts.UpdateKmsKey, gax.WithClientMetrics(metrics)) } o := []option.ClientOption{ @@ -872,3 +884,77 @@ func (c *snapshotsRESTClient) TestIamPermissions(ctx context.Context, req *compu } return resp, nil } + +// UpdateKmsKey rotates the customer-managed +// encryption key to the latest version for the specified snapshot. +func (c *snapshotsRESTClient) UpdateKmsKey(ctx context.Context, req *computepb.UpdateKmsKeySnapshotRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetSnapshotUpdateKmsKeyRequestResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/global/snapshots/%v/updateKmsKey", req.GetProject(), req.GetSnapshot()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "snapshot", url.QueryEscape(req.GetSnapshot()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/global/snapshots/%v", req.GetProject(), req.GetSnapshot())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.Snapshots/UpdateKmsKey") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/global/snapshots/{snapshot}/updateKmsKey") + } + opts = append((*c.CallOptions).UpdateKmsKey[0:len((*c.CallOptions).UpdateKmsKey):len((*c.CallOptions).UpdateKmsKey)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "UpdateKmsKey") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + &globalOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + }, + } + return op, nil +} diff --git a/vendor/cloud.google.com/go/compute/apiv1/zone_vm_extension_policies_client.go b/vendor/cloud.google.com/go/compute/apiv1/zone_vm_extension_policies_client.go new file mode 100644 index 00000000..e8413b7a --- /dev/null +++ b/vendor/cloud.google.com/go/compute/apiv1/zone_vm_extension_policies_client.go @@ -0,0 +1,635 @@ +// Copyright 2026 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 compute + +import ( + "bytes" + "context" + "fmt" + "log/slog" + "math" + "net/http" + "net/url" + "time" + + computepb "cloud.google.com/go/compute/apiv1/computepb" + gax "github.com/googleapis/gax-go/v2" + "github.com/googleapis/gax-go/v2/callctx" + "google.golang.org/api/iterator" + "google.golang.org/api/option" + "google.golang.org/api/option/internaloption" + httptransport "google.golang.org/api/transport/http" + "google.golang.org/grpc" + "google.golang.org/protobuf/encoding/protojson" + "google.golang.org/protobuf/proto" +) + +var newZoneVmExtensionPoliciesClientHook clientHook + +// ZoneVmExtensionPoliciesCallOptions contains the retry settings for each method of ZoneVmExtensionPoliciesClient. +type ZoneVmExtensionPoliciesCallOptions struct { + Delete []gax.CallOption + Get []gax.CallOption + Insert []gax.CallOption + List []gax.CallOption + Update []gax.CallOption +} + +func defaultZoneVmExtensionPoliciesRESTCallOptions() *ZoneVmExtensionPoliciesCallOptions { + return &ZoneVmExtensionPoliciesCallOptions{ + Delete: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + Get: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + Insert: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + List: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + gax.WithRetry(func() gax.Retryer { + return gax.OnHTTPCodes(gax.Backoff{ + Initial: 100 * time.Millisecond, + Max: 60000 * time.Millisecond, + Multiplier: 1.30, + }, + http.StatusGatewayTimeout, + http.StatusServiceUnavailable) + }), + }, + Update: []gax.CallOption{ + gax.WithTimeout(600000 * time.Millisecond), + }, + } +} + +// internalZoneVmExtensionPoliciesClient is an interface that defines the methods available from Google Compute Engine API. +type internalZoneVmExtensionPoliciesClient interface { + Close() error + setGoogleClientInfo(...string) + Connection() *grpc.ClientConn + Delete(context.Context, *computepb.DeleteZoneVmExtensionPolicyRequest, ...gax.CallOption) (*Operation, error) + Get(context.Context, *computepb.GetZoneVmExtensionPolicyRequest, ...gax.CallOption) (*computepb.VmExtensionPolicy, error) + Insert(context.Context, *computepb.InsertZoneVmExtensionPolicyRequest, ...gax.CallOption) (*Operation, error) + List(context.Context, *computepb.ListZoneVmExtensionPoliciesRequest, ...gax.CallOption) *VmExtensionPolicyIterator + Update(context.Context, *computepb.UpdateZoneVmExtensionPolicyRequest, ...gax.CallOption) (*Operation, error) +} + +// ZoneVmExtensionPoliciesClient is a client for interacting with Google Compute Engine API. +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +// +// The ZoneVmExtensionPolicies API. +type ZoneVmExtensionPoliciesClient struct { + // The internal transport-dependent client. + internalClient internalZoneVmExtensionPoliciesClient + + // The call options for this service. + CallOptions *ZoneVmExtensionPoliciesCallOptions +} + +// 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 *ZoneVmExtensionPoliciesClient) 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 *ZoneVmExtensionPoliciesClient) 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 *ZoneVmExtensionPoliciesClient) Connection() *grpc.ClientConn { + return c.internalClient.Connection() +} + +// Delete deletes a specified zone VM extension policy. +func (c *ZoneVmExtensionPoliciesClient) Delete(ctx context.Context, req *computepb.DeleteZoneVmExtensionPolicyRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Delete(ctx, req, opts...) +} + +// Get retrieves details of a specific zone VM extension policy. +func (c *ZoneVmExtensionPoliciesClient) Get(ctx context.Context, req *computepb.GetZoneVmExtensionPolicyRequest, opts ...gax.CallOption) (*computepb.VmExtensionPolicy, error) { + return c.internalClient.Get(ctx, req, opts...) +} + +// Insert creates a new zone-level VM extension policy within a project. +func (c *ZoneVmExtensionPoliciesClient) Insert(ctx context.Context, req *computepb.InsertZoneVmExtensionPolicyRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Insert(ctx, req, opts...) +} + +// List lists all VM extension policies within a specific zone for a project. +func (c *ZoneVmExtensionPoliciesClient) List(ctx context.Context, req *computepb.ListZoneVmExtensionPoliciesRequest, opts ...gax.CallOption) *VmExtensionPolicyIterator { + return c.internalClient.List(ctx, req, opts...) +} + +// Update modifies an existing zone VM extension policy. +func (c *ZoneVmExtensionPoliciesClient) Update(ctx context.Context, req *computepb.UpdateZoneVmExtensionPolicyRequest, opts ...gax.CallOption) (*Operation, error) { + return c.internalClient.Update(ctx, req, opts...) +} + +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +type zoneVmExtensionPoliciesRESTClient struct { + // The http endpoint to connect to. + endpoint string + + // The http client. + httpClient *http.Client + + // operationClient is used to call the operation-specific management service. + operationClient *ZoneOperationsClient + + // The x-goog-* headers to be sent with each request. + xGoogHeaders []string + + // Points back to the CallOptions field of the containing ZoneVmExtensionPoliciesClient + CallOptions **ZoneVmExtensionPoliciesCallOptions + + logger *slog.Logger +} + +// NewZoneVmExtensionPoliciesRESTClient creates a new zone vm extension policies rest client. +// +// The ZoneVmExtensionPolicies API. +func NewZoneVmExtensionPoliciesRESTClient(ctx context.Context, opts ...option.ClientOption) (*ZoneVmExtensionPoliciesClient, error) { + clientOpts := append(defaultZoneVmExtensionPoliciesRESTClientOptions(), opts...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + clientOpts = append(clientOpts, internaloption.WithTelemetryAttributes(map[string]string{ + "gcp.client.service": "compute", + "gcp.client.version": getVersionClient(), + "gcp.client.repo": "googleapis/google-cloud-go", + "gcp.client.artifact": "cloud.google.com/go/compute/apiv1", + "gcp.client.language": "go", + "url.domain": "compute.googleapis.com", + })) + } + httpClient, endpoint, err := httptransport.NewClient(ctx, clientOpts...) + if err != nil { + return nil, err + } + + callOpts := defaultZoneVmExtensionPoliciesRESTCallOptions() + c := &zoneVmExtensionPoliciesRESTClient{ + endpoint: endpoint, + httpClient: httpClient, + CallOptions: &callOpts, + logger: internaloption.GetLogger(opts), + } + c.setGoogleClientInfo() + + if gax.IsFeatureEnabled("METRICS") { + metrics := gax.NewClientMetrics( + gax.WithTelemetryLogger(c.logger), + gax.WithTelemetryAttributes(map[string]string{ + gax.ClientService: "compute", + gax.ClientVersion: getVersionClient(), + gax.ClientArtifact: "cloud.google.com/go/compute/apiv1", + gax.RPCSystem: "http", + gax.URLDomain: "compute.googleapis.com", + }), + ) + + callOpts.Delete = append(callOpts.Delete, gax.WithClientMetrics(metrics)) + callOpts.Get = append(callOpts.Get, gax.WithClientMetrics(metrics)) + callOpts.Insert = append(callOpts.Insert, gax.WithClientMetrics(metrics)) + callOpts.List = append(callOpts.List, gax.WithClientMetrics(metrics)) + callOpts.Update = append(callOpts.Update, gax.WithClientMetrics(metrics)) + } + + o := []option.ClientOption{ + option.WithHTTPClient(httpClient), + option.WithEndpoint(endpoint), + } + opC, err := NewZoneOperationsRESTClient(ctx, o...) + if err != nil { + return nil, err + } + c.operationClient = opC + + return &ZoneVmExtensionPoliciesClient{internalClient: c, CallOptions: callOpts}, nil +} + +func defaultZoneVmExtensionPoliciesRESTClientOptions() []option.ClientOption { + return []option.ClientOption{ + internaloption.WithDefaultEndpoint("https://compute.googleapis.com"), + internaloption.WithDefaultEndpointTemplate("https://compute.UNIVERSE_DOMAIN"), + internaloption.WithDefaultMTLSEndpoint("https://compute.mtls.googleapis.com"), + internaloption.WithDefaultUniverseDomain("googleapis.com"), + internaloption.WithDefaultAudience("https://compute.googleapis.com/"), + internaloption.WithDefaultScopes(DefaultAuthScopes()...), + internaloption.EnableNewAuthLibrary(), + } +} + +// 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 *zoneVmExtensionPoliciesRESTClient) setGoogleClientInfo(keyval ...string) { + kv := append([]string{"gl-go", gax.GoVersion}, keyval...) + kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "rest", "UNKNOWN", "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 *zoneVmExtensionPoliciesRESTClient) Close() error { + // Replace httpClient with nil to force cleanup. + c.httpClient = nil + if err := c.operationClient.Close(); err != nil { + return err + } + return nil +} + +// Connection returns a connection to the API service. +// +// Deprecated: This method always returns nil. +func (c *zoneVmExtensionPoliciesRESTClient) Connection() *grpc.ClientConn { + return nil +} + +// Delete deletes a specified zone VM extension policy. +func (c *zoneVmExtensionPoliciesRESTClient) Delete(ctx context.Context, req *computepb.DeleteZoneVmExtensionPolicyRequest, opts ...gax.CallOption) (*Operation, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/vmExtensionPolicies/%v", req.GetProject(), req.GetZone(), req.GetVmExtensionPolicy()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "zone", url.QueryEscape(req.GetZone()), "vm_extension_policy", url.QueryEscape(req.GetVmExtensionPolicy()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/zones/%v/vmExtensionPolicies/%v", req.GetProject(), req.GetZone(), req.GetVmExtensionPolicy())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.ZoneVmExtensionPolicies/Delete") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/zones/{zone}/vmExtensionPolicies/{vm_extension_policy}") + } + opts = append((*c.CallOptions).Delete[0:len((*c.CallOptions).Delete):len((*c.CallOptions).Delete)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("DELETE", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Delete") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + &zoneOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + zone: req.GetZone(), + }, + } + return op, nil +} + +// Get retrieves details of a specific zone VM extension policy. +func (c *zoneVmExtensionPoliciesRESTClient) Get(ctx context.Context, req *computepb.GetZoneVmExtensionPolicyRequest, opts ...gax.CallOption) (*computepb.VmExtensionPolicy, error) { + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/vmExtensionPolicies/%v", req.GetProject(), req.GetZone(), req.GetVmExtensionPolicy()) + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "zone", url.QueryEscape(req.GetZone()), "vm_extension_policy", url.QueryEscape(req.GetVmExtensionPolicy()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/zones/%v/vmExtensionPolicies/%v", req.GetProject(), req.GetZone(), req.GetVmExtensionPolicy())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.ZoneVmExtensionPolicies/Get") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/zones/{zone}/vmExtensionPolicies/{vm_extension_policy}") + } + opts = append((*c.CallOptions).Get[0:len((*c.CallOptions).Get):len((*c.CallOptions).Get)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.VmExtensionPolicy{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "Get") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + return resp, nil +} + +// Insert creates a new zone-level VM extension policy within a project. +func (c *zoneVmExtensionPoliciesRESTClient) Insert(ctx context.Context, req *computepb.InsertZoneVmExtensionPolicyRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetVmExtensionPolicyResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/vmExtensionPolicies", req.GetProject(), req.GetZone()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "zone", url.QueryEscape(req.GetZone()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/zones/%v", req.GetProject(), req.GetZone())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.ZoneVmExtensionPolicies/Insert") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/zones/{zone}/vmExtensionPolicies") + } + opts = append((*c.CallOptions).Insert[0:len((*c.CallOptions).Insert):len((*c.CallOptions).Insert)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("POST", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "Insert") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + &zoneOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + zone: req.GetZone(), + }, + } + return op, nil +} + +// List lists all VM extension policies within a specific zone for a project. +func (c *zoneVmExtensionPoliciesRESTClient) List(ctx context.Context, req *computepb.ListZoneVmExtensionPoliciesRequest, opts ...gax.CallOption) *VmExtensionPolicyIterator { + it := &VmExtensionPolicyIterator{} + req = proto.Clone(req).(*computepb.ListZoneVmExtensionPoliciesRequest) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + it.InternalFetch = func(pageSize int, pageToken string) ([]*computepb.VmExtensionPolicy, string, error) { + resp := &computepb.VmExtensionPolicyList{} + if pageToken != "" { + req.PageToken = proto.String(pageToken) + } + if pageSize > math.MaxInt32 { + req.MaxResults = proto.Uint32(uint32(math.MaxInt32)) + } else if pageSize != 0 { + req.MaxResults = proto.Uint32(uint32(pageSize)) + } + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, "", err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/vmExtensionPolicies", req.GetProject(), req.GetZone()) + + params := url.Values{} + if req != nil && req.Filter != nil { + params.Add("filter", fmt.Sprintf("%v", req.GetFilter())) + } + if req != nil && req.MaxResults != nil { + params.Add("maxResults", fmt.Sprintf("%v", req.GetMaxResults())) + } + if req != nil && req.OrderBy != nil { + params.Add("orderBy", fmt.Sprintf("%v", req.GetOrderBy())) + } + if req != nil && req.PageToken != nil { + params.Add("pageToken", fmt.Sprintf("%v", req.GetPageToken())) + } + if req != nil && req.ReturnPartialSuccess != nil { + params.Add("returnPartialSuccess", fmt.Sprintf("%v", req.GetReturnPartialSuccess())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := append(c.xGoogHeaders, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("GET", baseUrl.String(), nil) + if err != nil { + return err + } + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, nil, "List") + if err != nil { + return err + } + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, "", e + } + it.Response = resp + return resp.GetItems(), resp.GetNextPageToken(), nil + } + + fetch := func(pageSize int, pageToken string) (string, error) { + items, nextPageToken, err := it.InternalFetch(pageSize, pageToken) + if err != nil { + return "", err + } + it.items = append(it.items, items...) + return nextPageToken, nil + } + + it.pageInfo, it.nextFunc = iterator.NewPageInfo(fetch, it.bufLen, it.takeBuf) + it.pageInfo.MaxSize = int(req.GetMaxResults()) + it.pageInfo.Token = req.GetPageToken() + + return it +} + +// Update modifies an existing zone VM extension policy. +func (c *zoneVmExtensionPoliciesRESTClient) Update(ctx context.Context, req *computepb.UpdateZoneVmExtensionPolicyRequest, opts ...gax.CallOption) (*Operation, error) { + m := protojson.MarshalOptions{AllowPartial: true} + body := req.GetVmExtensionPolicyResource() + jsonReq, err := m.Marshal(body) + if err != nil { + return nil, err + } + + baseUrl, err := url.Parse(c.endpoint) + if err != nil { + return nil, err + } + baseUrl.Path += fmt.Sprintf("/compute/v1/projects/%v/zones/%v/vmExtensionPolicies/%v", req.GetProject(), req.GetZone(), req.GetVmExtensionPolicy()) + + params := url.Values{} + if req != nil && req.RequestId != nil { + params.Add("requestId", fmt.Sprintf("%v", req.GetRequestId())) + } + + baseUrl.RawQuery = params.Encode() + + // Build HTTP headers from client and context metadata. + hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v&%s=%v&%s=%v", "project", url.QueryEscape(req.GetProject()), "zone", url.QueryEscape(req.GetZone()), "vm_extension_policy", url.QueryEscape(req.GetVmExtensionPolicy()))} + + hds = append(c.xGoogHeaders, hds...) + hds = append(hds, "Content-Type", "application/json") + headers := gax.BuildHeaders(ctx, hds...) + if gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "resource_name", fmt.Sprintf("//compute.googleapis.com/projects/%v/zones/%v/vmExtensionPolicies/%v", req.GetProject(), req.GetZone(), req.GetVmExtensionPolicy())) + } + if gax.IsFeatureEnabled("METRICS") || gax.IsFeatureEnabled("TRACING") || gax.IsFeatureEnabled("LOGGING") { + ctx = callctx.WithTelemetryContext(ctx, "rpc_method", "google.cloud.compute.v1.ZoneVmExtensionPolicies/Update") + ctx = callctx.WithTelemetryContext(ctx, "url_template", "/compute/v1/projects/{project}/zones/{zone}/vmExtensionPolicies/{vm_extension_policy}") + } + opts = append((*c.CallOptions).Update[0:len((*c.CallOptions).Update):len((*c.CallOptions).Update)], opts...) + unm := protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true} + resp := &computepb.Operation{} + e := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + if settings.Path != "" { + baseUrl.Path = settings.Path + } + httpReq, err := http.NewRequest("PATCH", baseUrl.String(), bytes.NewReader(jsonReq)) + if err != nil { + return err + } + httpReq = httpReq.WithContext(ctx) + httpReq.Header = headers + + buf, err := executeHTTPRequest(ctx, c.httpClient, httpReq, c.logger, jsonReq, "Update") + if err != nil { + return err + } + + if err := unm.Unmarshal(buf, resp); err != nil { + return err + } + + return nil + }, opts...) + if e != nil { + return nil, e + } + op := &Operation{ + &zoneOperationsHandle{ + c: c.operationClient, + proto: resp, + project: req.GetProject(), + zone: req.GetZone(), + }, + } + return op, nil +} diff --git a/vendor/cloud.google.com/go/compute/internal/version.go b/vendor/cloud.google.com/go/compute/internal/version.go index 72853396..647daeda 100644 --- a/vendor/cloud.google.com/go/compute/internal/version.go +++ b/vendor/cloud.google.com/go/compute/internal/version.go @@ -17,4 +17,4 @@ package internal // Version is the current tagged release of the library. -const Version = "1.60.0" +const Version = "1.61.0" diff --git a/vendor/modules.txt b/vendor/modules.txt index e97d0e64..12f1f227 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -19,7 +19,7 @@ cloud.google.com/go/auth/internal/trustboundary # cloud.google.com/go/auth/oauth2adapt v0.2.8 ## explicit; go 1.23.0 cloud.google.com/go/auth/oauth2adapt -# cloud.google.com/go/compute v1.60.0 +# cloud.google.com/go/compute v1.61.0 ## explicit; go 1.25.0 cloud.google.com/go/compute/apiv1 cloud.google.com/go/compute/apiv1/computepb