google-apis-bigquery_v2 0.96.0 → 0.97.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: da3cfe9e7cf108660c33a5143f41fd4143f65e356a8aad4da73f2f9839e01ab2
|
|
4
|
+
data.tar.gz: 41ef5c77ef2cab85d9926008862d66509088dc9f8d5d2a1c546f76d0a3c3b2bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5791e2d9eb7e690804fe3c9cf067c909b339860b80d6fb8269caa7a1ce959c8d2a294d68c4810424c2d5f0aaa4c0c10f8fbde5c0a6b06a86c0083cb43ce9287
|
|
7
|
+
data.tar.gz: 62ba4970c91221877ffcf1317706608f34c6d4436753d15d54cee9c16b859d73268f0a6dad48d13f26c94a6a66fab86e3fea3c9ebd7a4a41a3112efba96d82ad
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
@@ -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.97.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 = "20251130"
|
|
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.97.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.97.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:
|