diff --git a/go.mod b/go.mod index 5ada41bd..91b78c30 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/KohlsTechnology/prometheus_bigquery_remote_storage_adapter go 1.24 require ( - cloud.google.com/go/bigquery v1.68.0 + cloud.google.com/go/bigquery v1.69.0 github.com/gogo/protobuf v1.3.2 github.com/golang/snappy v1.0.0 github.com/pkg/errors v0.9.1 diff --git a/go.sum b/go.sum index 4be840a5..ef475772 100644 --- a/go.sum +++ b/go.sum @@ -8,8 +8,8 @@ cloud.google.com/go/auth v0.16.1 h1:XrXauHMd30LhQYVRHLGvJiYeczweKQXZxsTbV9TiguU= cloud.google.com/go/auth v0.16.1/go.mod h1:1howDHJ5IETh/LwYs3ZxvlkXF48aSqqJUM+5o02dNOI= 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/bigquery v1.68.0 h1:F+CPqdcMxZGUDBACzGtOJ1E6E0MWSYcKeFthxnhpYIU= -cloud.google.com/go/bigquery v1.68.0/go.mod h1:1UAksG8IFXJomQV38xUsRB+2m2c1H9U0etvoGHgyhDk= +cloud.google.com/go/bigquery v1.69.0 h1:rZvHnjSUs5sHK3F9awiuFk2PeOaB8suqNuim21GbaTc= +cloud.google.com/go/bigquery v1.69.0/go.mod h1:TdGLquA3h/mGg+McX+GsqG9afAzTAcldMjqhdjHTLew= cloud.google.com/go/compute/metadata v0.7.0 h1:PBWF+iiAerVNe8UCHxdOt6eHLVc3ydFeOCw78U8ytSU= cloud.google.com/go/compute/metadata v0.7.0/go.mod h1:j5MvL9PprKL39t166CoB1uVHfQMs4tFQZZcKwksXUjo= cloud.google.com/go/datacatalog v1.26.0 h1:eFgygb3DTufTWWUB8ARk+dSuXz+aefNJXTlkWlQcWwE= diff --git a/vendor/cloud.google.com/go/bigquery/CHANGES.md b/vendor/cloud.google.com/go/bigquery/CHANGES.md index 4bfc89cb..4a5386f7 100644 --- a/vendor/cloud.google.com/go/bigquery/CHANGES.md +++ b/vendor/cloud.google.com/go/bigquery/CHANGES.md @@ -3,6 +3,20 @@ +## [1.69.0](https://github.com/googleapis/google-cloud-go/compare/bigquery/v1.68.0...bigquery/v1.69.0) (2025-05-27) + + +### Features + +* **bigquery/analyticshub:** Add support for Analytics Hub & Marketplace Integration ([2aaada3](https://github.com/googleapis/google-cloud-go/commit/2aaada3fb7a9d3eaacec3351019e225c4038646b)) +* **bigquery/analyticshub:** Adding allow_only_metadata_sharing to Listing resource ([2aaada3](https://github.com/googleapis/google-cloud-go/commit/2aaada3fb7a9d3eaacec3351019e225c4038646b)) +* **bigquery/analyticshub:** Adding CommercialInfo message to the Listing and Subscription resources ([2aaada3](https://github.com/googleapis/google-cloud-go/commit/2aaada3fb7a9d3eaacec3351019e225c4038646b)) +* **bigquery/analyticshub:** Adding delete_commercial and revoke_commercial to DeleteListingRequest and RevokeSubscriptionRequest ([2aaada3](https://github.com/googleapis/google-cloud-go/commit/2aaada3fb7a9d3eaacec3351019e225c4038646b)) +* **bigquery/analyticshub:** Adding DestinationDataset to the Subscription resource ([2aaada3](https://github.com/googleapis/google-cloud-go/commit/2aaada3fb7a9d3eaacec3351019e225c4038646b)) +* **bigquery/analyticshub:** Adding routine field to the SharedResource message ([2aaada3](https://github.com/googleapis/google-cloud-go/commit/2aaada3fb7a9d3eaacec3351019e225c4038646b)) +* **bigquery:** Add support for dataset view and update modes ([#12290](https://github.com/googleapis/google-cloud-go/issues/12290)) ([7c1f961](https://github.com/googleapis/google-cloud-go/commit/7c1f9616b7ea95436582eb3c40c94e6bd9b48610)) +* **bigquery:** Job creation mode GA ([#12225](https://github.com/googleapis/google-cloud-go/issues/12225)) ([1d8990d](https://github.com/googleapis/google-cloud-go/commit/1d8990dbf2563a5fbc96769ac9c6ea4ed06b239e)) + ## [1.68.0](https://github.com/googleapis/google-cloud-go/compare/bigquery/v1.67.0...bigquery/v1.68.0) (2025-05-12) diff --git a/vendor/cloud.google.com/go/bigquery/bigquery.go b/vendor/cloud.google.com/go/bigquery/bigquery.go index 8c1683d0..937dcf05 100644 --- a/vendor/cloud.google.com/go/bigquery/bigquery.go +++ b/vendor/cloud.google.com/go/bigquery/bigquery.go @@ -21,7 +21,6 @@ import ( "io" "net/http" "net/url" - "os" "strings" "time" @@ -61,8 +60,8 @@ type Client struct { bqs *bq.Service rc *readClient - // governs use of preview query features. - enableQueryPreview bool + // container for custom client options + customConfig *customClientConfig } // DetectProjectID is a sentinel value that instructs [NewClient] to detect the @@ -79,12 +78,6 @@ const DetectProjectID = "*detect-project-id*" // // If the project ID is set to [DetectProjectID], NewClient will attempt to detect // the project ID from credentials. -// -// This client supports enabling query-related preview features via environmental -// variables. By setting the environment variable QUERY_PREVIEW_ENABLED to the string -// "TRUE", the client will enable preview features, though behavior may still be -// controlled via the bigquery service as well. Currently, the feature(s) in scope -// include: short mode queries (query execution without corresponding job metadata). func NewClient(ctx context.Context, projectID string, opts ...option.ClientOption) (*Client, error) { o := []option.ClientOption{ option.WithScopes(Scope), @@ -102,17 +95,13 @@ func NewClient(ctx context.Context, projectID string, opts ...option.ClientOptio return nil, err } - var preview bool - if v, ok := os.LookupEnv("QUERY_PREVIEW_ENABLED"); ok { - if strings.ToUpper(v) == "TRUE" { - preview = true - } - } + // gather any custom client options + custom := newCustomClientConfig(opts...) c := &Client{ - projectID: projectID, - bqs: bqs, - enableQueryPreview: preview, + projectID: projectID, + bqs: bqs, + customConfig: custom, } return c, nil } diff --git a/vendor/cloud.google.com/go/bigquery/dataset.go b/vendor/cloud.google.com/go/bigquery/dataset.go index 73c723b9..b0032a74 100644 --- a/vendor/cloud.google.com/go/bigquery/dataset.go +++ b/vendor/cloud.google.com/go/bigquery/dataset.go @@ -338,6 +338,10 @@ func (d *Dataset) MetadataWithOptions(ctx context.Context, opts ...DatasetOption if cOpt.accessPolicyVersion != nil { call.AccessPolicyVersion(int64(optional.ToInt(cOpt.accessPolicyVersion))) } + if cOpt.datasetView != nil { + call.DatasetView(optional.ToString(cOpt.datasetView)) + } + var ds *bq.Dataset if err := runWithRetry(ctx, func() (err error) { sCtx := trace.StartSpan(ctx, "bigquery.datasets.get") @@ -353,6 +357,8 @@ func (d *Dataset) MetadataWithOptions(ctx context.Context, opts ...DatasetOption // dsCallOption provides a general option holder for dataset RPCs type dsCallOption struct { accessPolicyVersion optional.Int + datasetView optional.String + updateMode optional.String } // DatasetOption provides an option type for customizing requests against the Dataset @@ -380,6 +386,62 @@ func WithAccessPolicyVersion(apv int) DatasetOption { } } +// DatasetView specifies which details about a dataset are desired. +type DatasetView string + +const ( + // DatasetMetadataView populates metadata information for the dataset, + // such as friendlyName, description, labels, etc. + DatasetMetadataView DatasetView = "METADATA" + + // DatasetACLView populates information for the dataset, which defines + // dataset access for one or more entities. + DatasetACLView DatasetView = "ACL" + + // DatasetFullView populates both dataset metadata and ACL information. + DatasetFullView DatasetView = "FULL" + + // UnspecifiedDatasetView is the default value, which will be treated as DatasetFullView + UnspecifiedDatasetView DatasetView = "DATASET_VIEW_UNSPECIFIED" +) + +// WithDatasetView specifies the view that determines which dataset information +// is returned. By default, metadata and ACL information are returned. +func WithDatasetView(view DatasetView) DatasetOption { + return func(o *dsCallOption) { + o.datasetView = string(view) + } +} + +// DatasetUpdateMode specifies which fields of a dataset are going to be affected +// by update/patch operations. +type DatasetUpdateMode string + +const ( + // DatasetMetadataUpdateMode targets metadata information for the dataset, + // such as friendlyName, description, labels, etc. + DatasetMetadataUpdateMode DatasetUpdateMode = "UPDATE_METADATA" + + // DatasetACLUpdateMode targets ACL information for the dataset, + // which defines dataset access for one or more entities. + DatasetACLUpdateMode DatasetUpdateMode = "UPDATE_ACL" + + // DatasetFullUpdateMode targets both dataset metadata and ACL + // information on update operations. + DatasetFullUpdateMode DatasetUpdateMode = "UPDATE_FULL" + + // UnspecifiedDatasetUpdateMode is the default value, which will be treated as DatasetFullUpdateMode + UnspecifiedDatasetUpdateMode DatasetUpdateMode = "UPDATE_MODE_UNSPECIFIED" +) + +// WithUpdateMode specifies the fields of dataset that the update/patch +// operation is targeting. By default, both metadata and ACL fields are updated. +func WithUpdateMode(mode DatasetUpdateMode) DatasetOption { + return func(o *dsCallOption) { + o.updateMode = string(mode) + } +} + func bqToDatasetMetadata(d *bq.Dataset, c *Client) (*DatasetMetadata, error) { dm := &DatasetMetadata{ CreationTime: unixMillisToTime(d.CreationTime), @@ -450,6 +512,10 @@ func (d *Dataset) UpdateWithOptions(ctx context.Context, dm DatasetMetadataToUpd if cOpt.accessPolicyVersion != nil { call.AccessPolicyVersion(int64(optional.ToInt(cOpt.accessPolicyVersion))) } + if cOpt.updateMode != nil { + call.UpdateMode(optional.ToString(cOpt.updateMode)) + } + var ds2 *bq.Dataset if err := runWithRetry(ctx, func() (err error) { sCtx := trace.StartSpan(ctx, "bigquery.datasets.patch") diff --git a/vendor/cloud.google.com/go/bigquery/internal/version.go b/vendor/cloud.google.com/go/bigquery/internal/version.go index aa8d8ca7..c0c34190 100644 --- a/vendor/cloud.google.com/go/bigquery/internal/version.go +++ b/vendor/cloud.google.com/go/bigquery/internal/version.go @@ -16,4 +16,4 @@ package internal // Version is the current tagged release of the library. -const Version = "1.68.0" +const Version = "1.69.0" diff --git a/vendor/cloud.google.com/go/bigquery/options.go b/vendor/cloud.google.com/go/bigquery/options.go new file mode 100644 index 00000000..c8d992b0 --- /dev/null +++ b/vendor/cloud.google.com/go/bigquery/options.go @@ -0,0 +1,73 @@ +// Copyright 2025 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package bigquery + +import ( + "google.golang.org/api/option" + "google.golang.org/api/option/internaloption" +) + +// type for collecting custom ClientOption values. +type customClientConfig struct { + jobCreationMode JobCreationMode +} + +type customClientOption interface { + option.ClientOption + ApplyCustomClientOpt(*customClientConfig) +} + +func newCustomClientConfig(opts ...option.ClientOption) *customClientConfig { + conf := &customClientConfig{} + for _, opt := range opts { + if cOpt, ok := opt.(customClientOption); ok { + cOpt.ApplyCustomClientOpt(conf) + } + } + return conf +} + +// JobCreationMode controls how job creation is handled. Some queries may +// be run without creating a job to expedite fetching results. +type JobCreationMode string + +var ( + // JobCreationModeUnspecified is the default (unspecified) option. + JobCreationModeUnspecified JobCreationMode = "JOB_CREATION_MODE_UNSPECIFIED" + // JobCreationModeRequired indicates job creation is required. + JobCreationModeRequired JobCreationMode = "JOB_CREATION_REQUIRED" + // JobCreationModeOptional indicates job creation is optional, and returning + // results immediately is prioritized. The conditions under which BigQuery + // can choose to avoid job creation are internal and subject to change. + JobCreationModeOptional JobCreationMode = "JOB_CREATION_OPTIONAL" +) + +// WithDefaultJobCreationMode is a ClientOption that governs the job creation +// mode used when executing queries that can be accelerated via the jobs.Query +// API. Users may experience performance improvements by leveraging the +// JobCreationModeOptional mode. +func WithDefaultJobCreationMode(mode JobCreationMode) option.ClientOption { + return &applierJobCreationMode{mode: mode} +} + +// applier for propagating the custom client option to the config object +type applierJobCreationMode struct { + internaloption.EmbeddableAdapter + mode JobCreationMode +} + +func (s *applierJobCreationMode) ApplyCustomClientOpt(c *customClientConfig) { + c.jobCreationMode = s.mode +} diff --git a/vendor/cloud.google.com/go/bigquery/query.go b/vendor/cloud.google.com/go/bigquery/query.go index 4dba3374..91fe4416 100644 --- a/vendor/cloud.google.com/go/bigquery/query.go +++ b/vendor/cloud.google.com/go/bigquery/query.go @@ -502,8 +502,11 @@ func (q *Query) probeFastPath() (*bq.QueryRequest, error) { DatasetId: q.QueryConfig.DefaultDatasetID, } } - if q.client.enableQueryPreview { - qRequest.JobCreationMode = "JOB_CREATION_OPTIONAL" + + if custCfg := q.client.customConfig; custCfg != nil { + if custCfg.jobCreationMode != "" { + qRequest.JobCreationMode = string(custCfg.jobCreationMode) + } } return qRequest, nil } diff --git a/vendor/cloud.google.com/go/bigquery/storage/apiv1/big_query_read_client.go b/vendor/cloud.google.com/go/bigquery/storage/apiv1/big_query_read_client.go index 5db463a1..633a7d13 100644 --- a/vendor/cloud.google.com/go/bigquery/storage/apiv1/big_query_read_client.go +++ b/vendor/cloud.google.com/go/bigquery/storage/apiv1/big_query_read_client.go @@ -263,7 +263,7 @@ func (c *bigQueryReadGRPCClient) Connection() *grpc.ClientConn { // use by Google-written clients. func (c *bigQueryReadGRPCClient) setGoogleClientInfo(keyval ...string) { kv := append([]string{"gl-go", gax.GoVersion}, keyval...) - kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version) + kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version, "pb", protoVersion) c.xGoogHeaders = []string{ "x-goog-api-client", gax.XGoogHeader(kv...), } diff --git a/vendor/cloud.google.com/go/bigquery/storage/apiv1/big_query_write_client.go b/vendor/cloud.google.com/go/bigquery/storage/apiv1/big_query_write_client.go index d14a281b..11cc371e 100644 --- a/vendor/cloud.google.com/go/bigquery/storage/apiv1/big_query_write_client.go +++ b/vendor/cloud.google.com/go/bigquery/storage/apiv1/big_query_write_client.go @@ -347,7 +347,7 @@ func (c *bigQueryWriteGRPCClient) Connection() *grpc.ClientConn { // use by Google-written clients. func (c *bigQueryWriteGRPCClient) setGoogleClientInfo(keyval ...string) { kv := append([]string{"gl-go", gax.GoVersion}, keyval...) - kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version) + kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version, "pb", protoVersion) c.xGoogHeaders = []string{ "x-goog-api-client", gax.XGoogHeader(kv...), } diff --git a/vendor/cloud.google.com/go/bigquery/storage/apiv1/helpers.go b/vendor/cloud.google.com/go/bigquery/storage/apiv1/helpers.go index b9a068f5..850d5339 100644 --- a/vendor/cloud.google.com/go/bigquery/storage/apiv1/helpers.go +++ b/vendor/cloud.google.com/go/bigquery/storage/apiv1/helpers.go @@ -18,16 +18,20 @@ package storage import ( "context" + "fmt" "log/slog" "github.com/googleapis/gax-go/v2/internallog/grpclog" "google.golang.org/api/option" "google.golang.org/grpc" "google.golang.org/protobuf/proto" + "google.golang.org/protobuf/runtime/protoimpl" ) const serviceName = "bigquerystorage.googleapis.com" +var protoVersion = fmt.Sprintf("1.%d", protoimpl.MaxVersion) + // For more information on implementing a client constructor hook, see // https://github.com/googleapis/google-cloud-go/wiki/Customizing-constructors. type clientHookParams struct{} diff --git a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/annotations.pb.go b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/annotations.pb.go index 3861428b..2787a587 100644 --- a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/annotations.pb.go +++ b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/annotations.pb.go @@ -1,17 +1,16 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.35.2 -// protoc v4.25.3 +// protoc v4.25.7 // source: google/cloud/bigquery/storage/v1/annotations.proto package storagepb import ( - reflect "reflect" - protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" descriptorpb "google.golang.org/protobuf/types/descriptorpb" + reflect "reflect" ) const ( diff --git a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/arrow.pb.go b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/arrow.pb.go index cfa6450c..2b9c24b3 100644 --- a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/arrow.pb.go +++ b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/arrow.pb.go @@ -15,17 +15,16 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.35.2 -// protoc v4.25.3 +// protoc v4.25.7 // source: google/cloud/bigquery/storage/v1/arrow.proto package storagepb import ( - reflect "reflect" - sync "sync" - protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" ) const ( diff --git a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/avro.pb.go b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/avro.pb.go index ad39588c..3a6730ce 100644 --- a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/avro.pb.go +++ b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/avro.pb.go @@ -15,17 +15,16 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.35.2 -// protoc v4.25.3 +// protoc v4.25.7 // source: google/cloud/bigquery/storage/v1/avro.proto package storagepb import ( - reflect "reflect" - sync "sync" - protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" ) const ( diff --git a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/protobuf.pb.go b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/protobuf.pb.go index 80e1a7a3..e981e562 100644 --- a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/protobuf.pb.go +++ b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/protobuf.pb.go @@ -15,18 +15,17 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.35.2 -// protoc v4.25.3 +// protoc v4.25.7 // source: google/cloud/bigquery/storage/v1/protobuf.proto package storagepb import ( - reflect "reflect" - sync "sync" - protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" descriptorpb "google.golang.org/protobuf/types/descriptorpb" + reflect "reflect" + sync "sync" ) const ( diff --git a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/storage.pb.go b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/storage.pb.go index 591b6e9d..c2d90408 100644 --- a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/storage.pb.go +++ b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/storage.pb.go @@ -15,16 +15,13 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.35.2 -// protoc v4.25.3 +// protoc v4.25.7 // source: google/cloud/bigquery/storage/v1/storage.proto package storagepb import ( context "context" - reflect "reflect" - sync "sync" - _ "google.golang.org/genproto/googleapis/api/annotations" status "google.golang.org/genproto/googleapis/rpc/status" grpc "google.golang.org/grpc" @@ -34,6 +31,8 @@ import ( protoimpl "google.golang.org/protobuf/runtime/protoimpl" timestamppb "google.golang.org/protobuf/types/known/timestamppb" wrapperspb "google.golang.org/protobuf/types/known/wrapperspb" + reflect "reflect" + sync "sync" ) const ( diff --git a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/stream.pb.go b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/stream.pb.go index 4fffb0e1..08c1bbb1 100644 --- a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/stream.pb.go +++ b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/stream.pb.go @@ -15,19 +15,18 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.35.2 -// protoc v4.25.3 +// protoc v4.25.7 // source: google/cloud/bigquery/storage/v1/stream.proto package storagepb import ( - reflect "reflect" - sync "sync" - _ "google.golang.org/genproto/googleapis/api/annotations" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" timestamppb "google.golang.org/protobuf/types/known/timestamppb" + reflect "reflect" + sync "sync" ) const ( diff --git a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/table.pb.go b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/table.pb.go index 34f32e52..b068ae1c 100644 --- a/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/table.pb.go +++ b/vendor/cloud.google.com/go/bigquery/storage/apiv1/storagepb/table.pb.go @@ -15,18 +15,17 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.35.2 -// protoc v4.25.3 +// protoc v4.25.7 // source: google/cloud/bigquery/storage/v1/table.proto package storagepb import ( - reflect "reflect" - sync "sync" - _ "google.golang.org/genproto/googleapis/api/annotations" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" ) const ( diff --git a/vendor/modules.txt b/vendor/modules.txt index 8646af47..a1f05959 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -28,7 +28,7 @@ cloud.google.com/go/auth/internal/transport/cert # cloud.google.com/go/auth/oauth2adapt v0.2.8 ## explicit; go 1.23.0 cloud.google.com/go/auth/oauth2adapt -# cloud.google.com/go/bigquery v1.68.0 +# cloud.google.com/go/bigquery v1.69.0 ## explicit; go 1.23.0 cloud.google.com/go/bigquery cloud.google.com/go/bigquery/internal