google-apis-bigquery_v2 0.96.0 → 0.98.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '00149b7f47cf34b1b55d0f633431061c6923ca3222514efa86bceaa3ffcfcfe4'
|
|
4
|
+
data.tar.gz: 61ee7d403a4005b74945cdf9b7b445ff9664999fe62c8933c55fc6a093bd5793
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09e2eedf03f33712712c41ae8a5af237b4939475e52177a99ce151ada40a4d3a5b4ebc49453ded46ba1f592f381246bcbf7268ea00279fd6f13c1a5fe73d9cbd'
|
|
7
|
+
data.tar.gz: 4f43471b635c4cc7abfcf479fc92297849968a907ee3714b1423b3e59ba93beed77442ec0328dd7c3bc6160927a425896635acc06f5b42e7c7449109e9292793
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-bigquery_v2
|
|
2
2
|
|
|
3
|
+
### v0.98.0 (2026-01-25)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260118
|
|
6
|
+
|
|
7
|
+
### v0.97.0 (2026-01-11)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251130
|
|
10
|
+
|
|
3
11
|
### v0.96.0 (2025-10-26)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251012
|
|
@@ -765,8 +765,10 @@ module Google
|
|
|
765
765
|
# Optional. The encoding of the values when the type is not STRING. Acceptable
|
|
766
766
|
# encoding values are: TEXT - indicates values are alphanumeric text strings.
|
|
767
767
|
# BINARY - indicates values are encoded using HBase Bytes.toBytes family of
|
|
768
|
-
# functions.
|
|
769
|
-
#
|
|
768
|
+
# functions. PROTO_BINARY - indicates values are encoded using serialized proto
|
|
769
|
+
# messages. This can only be used in combination with JSON type. 'encoding' can
|
|
770
|
+
# also be set at the column family level. However, the setting at this level
|
|
771
|
+
# takes precedence if 'encoding' is set at both levels.
|
|
770
772
|
# Corresponds to the JSON property `encoding`
|
|
771
773
|
# @return [String]
|
|
772
774
|
attr_accessor :encoding
|
|
@@ -787,6 +789,11 @@ module Google
|
|
|
787
789
|
attr_accessor :only_read_latest
|
|
788
790
|
alias_method :only_read_latest?, :only_read_latest
|
|
789
791
|
|
|
792
|
+
# Information related to a Bigtable protobuf column.
|
|
793
|
+
# Corresponds to the JSON property `protoConfig`
|
|
794
|
+
# @return [Google::Apis::BigqueryV2::BigtableProtoConfig]
|
|
795
|
+
attr_accessor :proto_config
|
|
796
|
+
|
|
790
797
|
# [Required] Qualifier of the column. Columns in the parent column family that
|
|
791
798
|
# has this exact qualifier are exposed as `.` field. If the qualifier is valid
|
|
792
799
|
# UTF-8 string, it can be specified in the qualifier_string field. Otherwise, a
|
|
@@ -823,6 +830,7 @@ module Google
|
|
|
823
830
|
@encoding = args[:encoding] if args.key?(:encoding)
|
|
824
831
|
@field_name = args[:field_name] if args.key?(:field_name)
|
|
825
832
|
@only_read_latest = args[:only_read_latest] if args.key?(:only_read_latest)
|
|
833
|
+
@proto_config = args[:proto_config] if args.key?(:proto_config)
|
|
826
834
|
@qualifier_encoded = args[:qualifier_encoded] if args.key?(:qualifier_encoded)
|
|
827
835
|
@qualifier_string = args[:qualifier_string] if args.key?(:qualifier_string)
|
|
828
836
|
@type = args[:type] if args.key?(:type)
|
|
@@ -844,8 +852,10 @@ module Google
|
|
|
844
852
|
# Optional. The encoding of the values when the type is not STRING. Acceptable
|
|
845
853
|
# encoding values are: TEXT - indicates values are alphanumeric text strings.
|
|
846
854
|
# BINARY - indicates values are encoded using HBase Bytes.toBytes family of
|
|
847
|
-
# functions.
|
|
848
|
-
# in
|
|
855
|
+
# functions. PROTO_BINARY - indicates values are encoded using serialized proto
|
|
856
|
+
# messages. This can only be used in combination with JSON type. This can be
|
|
857
|
+
# overridden for a specific column by listing that column in 'columns' and
|
|
858
|
+
# specifying an encoding for it.
|
|
849
859
|
# Corresponds to the JSON property `encoding`
|
|
850
860
|
# @return [String]
|
|
851
861
|
attr_accessor :encoding
|
|
@@ -864,6 +874,11 @@ module Google
|
|
|
864
874
|
attr_accessor :only_read_latest
|
|
865
875
|
alias_method :only_read_latest?, :only_read_latest
|
|
866
876
|
|
|
877
|
+
# Information related to a Bigtable protobuf column.
|
|
878
|
+
# Corresponds to the JSON property `protoConfig`
|
|
879
|
+
# @return [Google::Apis::BigqueryV2::BigtableProtoConfig]
|
|
880
|
+
attr_accessor :proto_config
|
|
881
|
+
|
|
867
882
|
# Optional. The type to convert the value in cells of this column family. The
|
|
868
883
|
# values are expected to be encoded using HBase Bytes.toBytes function when
|
|
869
884
|
# using the BINARY encoding value. Following BigQuery types are allowed (case-
|
|
@@ -884,6 +899,7 @@ module Google
|
|
|
884
899
|
@encoding = args[:encoding] if args.key?(:encoding)
|
|
885
900
|
@family_id = args[:family_id] if args.key?(:family_id)
|
|
886
901
|
@only_read_latest = args[:only_read_latest] if args.key?(:only_read_latest)
|
|
902
|
+
@proto_config = args[:proto_config] if args.key?(:proto_config)
|
|
887
903
|
@type = args[:type] if args.key?(:type)
|
|
888
904
|
end
|
|
889
905
|
end
|
|
@@ -940,6 +956,36 @@ module Google
|
|
|
940
956
|
end
|
|
941
957
|
end
|
|
942
958
|
|
|
959
|
+
# Information related to a Bigtable protobuf column.
|
|
960
|
+
class BigtableProtoConfig
|
|
961
|
+
include Google::Apis::Core::Hashable
|
|
962
|
+
|
|
963
|
+
# Optional. The fully qualified proto message name of the protobuf. In the
|
|
964
|
+
# format of "foo.bar.Message".
|
|
965
|
+
# Corresponds to the JSON property `protoMessageName`
|
|
966
|
+
# @return [String]
|
|
967
|
+
attr_accessor :proto_message_name
|
|
968
|
+
|
|
969
|
+
# Optional. The ID of the Bigtable SchemaBundle resource associated with this
|
|
970
|
+
# protobuf. The ID should be referred to within the parent table, e.g., `foo`
|
|
971
|
+
# rather than `projects/`project`/instances/`instance`/tables/`table`/
|
|
972
|
+
# schemaBundles/foo`. See [more details on Bigtable SchemaBundles](https://docs.
|
|
973
|
+
# cloud.google.com/bigtable/docs/create-manage-protobuf-schemas).
|
|
974
|
+
# Corresponds to the JSON property `schemaBundleId`
|
|
975
|
+
# @return [String]
|
|
976
|
+
attr_accessor :schema_bundle_id
|
|
977
|
+
|
|
978
|
+
def initialize(**args)
|
|
979
|
+
update!(**args)
|
|
980
|
+
end
|
|
981
|
+
|
|
982
|
+
# Update properties of this object
|
|
983
|
+
def update!(**args)
|
|
984
|
+
@proto_message_name = args[:proto_message_name] if args.key?(:proto_message_name)
|
|
985
|
+
@schema_bundle_id = args[:schema_bundle_id] if args.key?(:schema_bundle_id)
|
|
986
|
+
end
|
|
987
|
+
end
|
|
988
|
+
|
|
943
989
|
# Evaluation metrics for binary classification/classifier models.
|
|
944
990
|
class BinaryClassificationMetrics
|
|
945
991
|
include Google::Apis::Core::Hashable
|
|
@@ -4197,19 +4243,21 @@ module Google
|
|
|
4197
4243
|
class IncrementalResultStats
|
|
4198
4244
|
include Google::Apis::Core::Hashable
|
|
4199
4245
|
|
|
4200
|
-
# Reason why incremental query results are/were not written by the
|
|
4246
|
+
# Output only. Reason why incremental query results are/were not written by the
|
|
4247
|
+
# query.
|
|
4201
4248
|
# Corresponds to the JSON property `disabledReason`
|
|
4202
4249
|
# @return [String]
|
|
4203
4250
|
attr_accessor :disabled_reason
|
|
4204
4251
|
|
|
4205
|
-
# The time at which the result table's contents were modified. May
|
|
4206
|
-
# no results have been written or the query has completed.
|
|
4252
|
+
# Output only. The time at which the result table's contents were modified. May
|
|
4253
|
+
# be absent if no results have been written or the query has completed.
|
|
4207
4254
|
# Corresponds to the JSON property `resultSetLastModifyTime`
|
|
4208
4255
|
# @return [String]
|
|
4209
4256
|
attr_accessor :result_set_last_modify_time
|
|
4210
4257
|
|
|
4211
|
-
# The time at which the result table's contents were completely
|
|
4212
|
-
# absent if no results have been written or the query has
|
|
4258
|
+
# Output only. The time at which the result table's contents were completely
|
|
4259
|
+
# replaced. May be absent if no results have been written or the query has
|
|
4260
|
+
# completed.
|
|
4213
4261
|
# Corresponds to the JSON property `resultSetLastReplaceTime`
|
|
4214
4262
|
# @return [String]
|
|
4215
4263
|
attr_accessor :result_set_last_replace_time
|
|
@@ -5415,8 +5463,8 @@ module Google
|
|
|
5415
5463
|
attr_accessor :time_partitioning
|
|
5416
5464
|
|
|
5417
5465
|
# Optional. Specifies whether to use BigQuery's legacy SQL dialect for this
|
|
5418
|
-
# query. The default value is true. If set to false, the query
|
|
5419
|
-
#
|
|
5466
|
+
# query. The default value is true. If set to false, the query uses BigQuery's [
|
|
5467
|
+
# GoogleSQL](https://docs.cloud.google.com/bigquery/docs/introduction-sql). When
|
|
5420
5468
|
# useLegacySql is set to false, the value of flattenResults is ignored; query
|
|
5421
5469
|
# will be run as if flattenResults is false.
|
|
5422
5470
|
# Corresponds to the JSON property `useLegacySql`
|
|
@@ -8116,10 +8164,10 @@ module Google
|
|
|
8116
8164
|
attr_accessor :timeout_ms
|
|
8117
8165
|
|
|
8118
8166
|
# Specifies whether to use BigQuery's legacy SQL dialect for this query. The
|
|
8119
|
-
# default value is true. If set to false, the query
|
|
8120
|
-
#
|
|
8121
|
-
# is set to false, the value of flattenResults is ignored; query
|
|
8122
|
-
# if flattenResults is false.
|
|
8167
|
+
# default value is true. If set to false, the query uses BigQuery's [GoogleSQL](
|
|
8168
|
+
# https://docs.cloud.google.com/bigquery/docs/introduction-sql). When
|
|
8169
|
+
# useLegacySql is set to false, the value of flattenResults is ignored; query
|
|
8170
|
+
# will be run as if flattenResults is false.
|
|
8123
8171
|
# Corresponds to the JSON property `useLegacySql`
|
|
8124
8172
|
# @return [Boolean]
|
|
8125
8173
|
attr_accessor :use_legacy_sql
|
|
@@ -12249,10 +12297,10 @@ module Google
|
|
|
12249
12297
|
alias_method :use_explicit_column_names?, :use_explicit_column_names
|
|
12250
12298
|
|
|
12251
12299
|
# Specifies whether to use BigQuery's legacy SQL for this view. The default
|
|
12252
|
-
# value is true. If set to false, the view
|
|
12253
|
-
#
|
|
12254
|
-
# this view must use the same flag value. A wrapper is used here
|
|
12255
|
-
# default value is True.
|
|
12300
|
+
# value is true. If set to false, the view uses BigQuery's [GoogleSQL](https://
|
|
12301
|
+
# docs.cloud.google.com/bigquery/docs/introduction-sql). Queries and views that
|
|
12302
|
+
# reference this view must use the same flag value. A wrapper is used here
|
|
12303
|
+
# because the default value is True.
|
|
12256
12304
|
# Corresponds to the JSON property `useLegacySql`
|
|
12257
12305
|
# @return [Boolean]
|
|
12258
12306
|
attr_accessor :use_legacy_sql
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.98.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260118"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -148,6 +148,12 @@ module Google
|
|
|
148
148
|
include Google::Apis::Core::JsonObjectSupport
|
|
149
149
|
end
|
|
150
150
|
|
|
151
|
+
class BigtableProtoConfig
|
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
153
|
+
|
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
155
|
+
end
|
|
156
|
+
|
|
151
157
|
class BinaryClassificationMetrics
|
|
152
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
153
159
|
|
|
@@ -1578,6 +1584,8 @@ module Google
|
|
|
1578
1584
|
property :encoding, as: 'encoding'
|
|
1579
1585
|
property :field_name, as: 'fieldName'
|
|
1580
1586
|
property :only_read_latest, as: 'onlyReadLatest'
|
|
1587
|
+
property :proto_config, as: 'protoConfig', class: Google::Apis::BigqueryV2::BigtableProtoConfig, decorator: Google::Apis::BigqueryV2::BigtableProtoConfig::Representation
|
|
1588
|
+
|
|
1581
1589
|
property :qualifier_encoded, :base64 => true, as: 'qualifierEncoded'
|
|
1582
1590
|
property :qualifier_string, as: 'qualifierString'
|
|
1583
1591
|
property :type, as: 'type'
|
|
@@ -1592,6 +1600,8 @@ module Google
|
|
|
1592
1600
|
property :encoding, as: 'encoding'
|
|
1593
1601
|
property :family_id, as: 'familyId'
|
|
1594
1602
|
property :only_read_latest, as: 'onlyReadLatest'
|
|
1603
|
+
property :proto_config, as: 'protoConfig', class: Google::Apis::BigqueryV2::BigtableProtoConfig, decorator: Google::Apis::BigqueryV2::BigtableProtoConfig::Representation
|
|
1604
|
+
|
|
1595
1605
|
property :type, as: 'type'
|
|
1596
1606
|
end
|
|
1597
1607
|
end
|
|
@@ -1607,6 +1617,14 @@ module Google
|
|
|
1607
1617
|
end
|
|
1608
1618
|
end
|
|
1609
1619
|
|
|
1620
|
+
class BigtableProtoConfig
|
|
1621
|
+
# @private
|
|
1622
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1623
|
+
property :proto_message_name, as: 'protoMessageName'
|
|
1624
|
+
property :schema_bundle_id, as: 'schemaBundleId'
|
|
1625
|
+
end
|
|
1626
|
+
end
|
|
1627
|
+
|
|
1610
1628
|
class BinaryClassificationMetrics
|
|
1611
1629
|
# @private
|
|
1612
1630
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-bigquery_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.98.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.98.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|