google-apis-bigquery_v2 0.60.0 → 0.61.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4b617a99890fcee57c60cc923e5bec380a6afdc7a223c319f231f66dcffd0acd
4
- data.tar.gz: 7203c3a5e52f9879edb44c00d643bc6ddfdd917c6c01c503bbaf737ce6673205
3
+ metadata.gz: 749374b0e8eaf56745d43881ae520dc98592abc2a6b8e1cbff572c8c7d1f0cdc
4
+ data.tar.gz: 7b653ecdd31efa37c795460450683bf13e86e5f89743c94bec5631149d464993
5
5
  SHA512:
6
- metadata.gz: a659c4f9e8c3132000e89bced5e9f4906db0c35210a5b2619b45abcf195318eb706b952cd9c4022a1b00ffbc49ca563ffee0f58efe80f4686efa1e193b28a50b
7
- data.tar.gz: fd36ae672a4d010e400bdd1ad6eb819b2f3f68c30393890d5bfcec5a7f1e98582b5665c49f277cf5315476b3afaaa828f1703aa2a4edb537211d8b167ceeeb1b
6
+ metadata.gz: 0e499ac1dd31e182d5fb918eb2b01169232168049bc625a717af31af75026ae993b244e86acb9e11da398204d47328b2d853f50e0bd15b709362ebe986a415b2
7
+ data.tar.gz: 6650001e338ab0c54914a8227ba9ba2f6cd4644ccd59b00b6a220ac3da0b16fbd9939e039fec4bca357eee2b071115de6b2d4036cfb3f704a64fba69db774eae
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.61.0 (2023-11-19)
4
+
5
+ * Regenerated from discovery document revision 20231111
6
+
3
7
  ### v0.60.0 (2023-10-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20231008
@@ -6796,6 +6796,17 @@ module Google
6796
6796
  # @return [String]
6797
6797
  attr_accessor :remote_service_type
6798
6798
 
6799
+ # Output only. The name of the speech recognizer to use for speech recognition.
6800
+ # The expected format is `projects/`project`/locations/`location`/recognizers/`
6801
+ # recognizer``. Customers can specify this field at model creation. If not
6802
+ # specified, a default recognizer `projects/`model project`/locations/global/
6803
+ # recognizers/_` will be used. See more details at [recognizers](https://cloud.
6804
+ # google.com/speech-to-text/v2/docs/reference/rest/v2/projects.locations.
6805
+ # recognizers)
6806
+ # Corresponds to the JSON property `speechRecognizer`
6807
+ # @return [String]
6808
+ attr_accessor :speech_recognizer
6809
+
6799
6810
  def initialize(**args)
6800
6811
  update!(**args)
6801
6812
  end
@@ -6807,6 +6818,7 @@ module Google
6807
6818
  @max_batching_rows = args[:max_batching_rows] if args.key?(:max_batching_rows)
6808
6819
  @remote_model_version = args[:remote_model_version] if args.key?(:remote_model_version)
6809
6820
  @remote_service_type = args[:remote_service_type] if args.key?(:remote_service_type)
6821
+ @speech_recognizer = args[:speech_recognizer] if args.key?(:speech_recognizer)
6810
6822
  end
6811
6823
  end
6812
6824
 
@@ -9569,6 +9581,33 @@ module Google
9569
9581
  end
9570
9582
  end
9571
9583
 
9584
+ # Statistics for a vector search query. Populated as part of JobStatistics2.
9585
+ class VectorSearchStatistics
9586
+ include Google::Apis::Core::Hashable
9587
+
9588
+ # When `indexUsageMode` is `UNUSED` or `PARTIALLY_USED`, this field explains why
9589
+ # indexes were not used in all or part of the vector search query. If `
9590
+ # indexUsageMode` is `FULLY_USED`, this field is not populated.
9591
+ # Corresponds to the JSON property `indexUnusedReasons`
9592
+ # @return [Array<Google::Apis::BigqueryV2::IndexUnusedReason>]
9593
+ attr_accessor :index_unused_reasons
9594
+
9595
+ # Specifies the index usage mode for the query.
9596
+ # Corresponds to the JSON property `indexUsageMode`
9597
+ # @return [String]
9598
+ attr_accessor :index_usage_mode
9599
+
9600
+ def initialize(**args)
9601
+ update!(**args)
9602
+ end
9603
+
9604
+ # Update properties of this object
9605
+ def update!(**args)
9606
+ @index_unused_reasons = args[:index_unused_reasons] if args.key?(:index_unused_reasons)
9607
+ @index_usage_mode = args[:index_usage_mode] if args.key?(:index_usage_mode)
9608
+ end
9609
+ end
9610
+
9572
9611
  #
9573
9612
  class ViewDefinition
9574
9613
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BigqueryV2
18
18
  # Version of the google-apis-bigquery_v2 gem
19
- GEM_VERSION = "0.60.0"
19
+ GEM_VERSION = "0.61.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231008"
25
+ REVISION = "20231111"
26
26
  end
27
27
  end
28
28
  end
@@ -1102,6 +1102,12 @@ module Google
1102
1102
  include Google::Apis::Core::JsonObjectSupport
1103
1103
  end
1104
1104
 
1105
+ class VectorSearchStatistics
1106
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1107
+
1108
+ include Google::Apis::Core::JsonObjectSupport
1109
+ end
1110
+
1105
1111
  class ViewDefinition
1106
1112
  class Representation < Google::Apis::Core::JsonRepresentation; end
1107
1113
 
@@ -2766,6 +2772,7 @@ module Google
2766
2772
  property :max_batching_rows, :numeric_string => true, as: 'maxBatchingRows'
2767
2773
  property :remote_model_version, as: 'remoteModelVersion'
2768
2774
  property :remote_service_type, as: 'remoteServiceType'
2775
+ property :speech_recognizer, as: 'speechRecognizer'
2769
2776
  end
2770
2777
  end
2771
2778
 
@@ -3434,6 +3441,15 @@ module Google
3434
3441
  end
3435
3442
  end
3436
3443
 
3444
+ class VectorSearchStatistics
3445
+ # @private
3446
+ class Representation < Google::Apis::Core::JsonRepresentation
3447
+ collection :index_unused_reasons, as: 'indexUnusedReasons', class: Google::Apis::BigqueryV2::IndexUnusedReason, decorator: Google::Apis::BigqueryV2::IndexUnusedReason::Representation
3448
+
3449
+ property :index_usage_mode, as: 'indexUsageMode'
3450
+ end
3451
+ end
3452
+
3437
3453
  class ViewDefinition
3438
3454
  # @private
3439
3455
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigquery_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.60.0
4
+ version: 0.61.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-15 00:00:00.000000000 Z
11
+ date: 2023-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.60.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.61.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2
63
63
  post_install_message:
64
64
  rdoc_options: []