Skip to content

Commit 5a3c721

Browse files
feat: Automated regeneration of bigtableadmin v2 client (#19551)
Auto-created at 2024-06-09 09:29:20 +0000 using the toys pull request generator.
1 parent ba39d77 commit 5a3c721

File tree

3 files changed

+58
-54
lines changed

3 files changed

+58
-54
lines changed

generated/google-apis-bigtableadmin_v2/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-bigtableadmin_v2
22

3+
### v0.56.0 (2024-06-09)
4+
5+
* Regenerated from discovery document revision 20240522
6+
37
### v0.55.0 (2024-05-19)
48

59
* Regenerated using generator version 0.15.0

generated/google-apis-bigtableadmin_v2/lib/google/apis/bigtableadmin_v2/classes.rb

+52-52
Original file line numberDiff line numberDiff line change
@@ -771,19 +771,19 @@ class ColumnFamily
771771
# Each link in the encoding chain also defines the following properties: *
772772
# Natural sort: Does the encoded value sort consistently with the original typed
773773
# value? Note that Bigtable will always sort data based on the raw encoded value,
774-
# *not* the decoded type. - Example: STRING values sort in the same order as
775-
# their UTF-8 encodings. - Counterexample: Encoding INT64 to a fixed-width
776-
# STRING does *not* preserve sort order when dealing with negative numbers.
777-
# INT64(1) > INT64(-1), but STRING("-00001") > STRING("00001). - The overall
778-
# encoding chain sorts naturally if *every* link does. * Self-delimiting: If we
779-
# concatenate two encoded values, can we always tell where the first one ends
780-
# and the second one begins? - Example: If we encode INT64s to fixed-width
781-
# STRINGs, the first value will always contain exactly N digits, possibly
782-
# preceded by a sign. - Counterexample: If we concatenate two UTF-8 encoded
783-
# STRINGs, we have no way to tell where the first one ends. - The overall
784-
# encoding chain is self-delimiting if *any* link is. * Compatibility: Which
785-
# other systems have matching encoding schemes? For example, does this encoding
786-
# have a GoogleSQL equivalent? HBase? Java?
774+
# *not* the decoded type. - Example: BYTES values sort in the same order as
775+
# their raw encodings. - Counterexample: Encoding INT64 to a fixed-width STRING
776+
# does *not* preserve sort order when dealing with negative numbers. INT64(1) >
777+
# INT64(-1), but STRING("-00001") > STRING("00001). - The overall encoding chain
778+
# has this property if *every* link does. * Self-delimiting: If we concatenate
779+
# two encoded values, can we always tell where the first one ends and the second
780+
# one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
781+
# value will always contain exactly N digits, possibly preceded by a sign. -
782+
# Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
783+
# tell where the first one ends. - The overall encoding chain has this property
784+
# if *any* link does. * Compatibility: Which other systems have matching
785+
# encoding schemes? For example, does this encoding have a GoogleSQL equivalent?
786+
# HBase? Java?
787787
# Corresponds to the JSON property `valueType`
788788
# @return [Google::Apis::BigtableadminV2::Type]
789789
attr_accessor :value_type
@@ -1607,19 +1607,19 @@ class GoogleBigtableAdminV2TypeAggregate
16071607
# Each link in the encoding chain also defines the following properties: *
16081608
# Natural sort: Does the encoded value sort consistently with the original typed
16091609
# value? Note that Bigtable will always sort data based on the raw encoded value,
1610-
# *not* the decoded type. - Example: STRING values sort in the same order as
1611-
# their UTF-8 encodings. - Counterexample: Encoding INT64 to a fixed-width
1612-
# STRING does *not* preserve sort order when dealing with negative numbers.
1613-
# INT64(1) > INT64(-1), but STRING("-00001") > STRING("00001). - The overall
1614-
# encoding chain sorts naturally if *every* link does. * Self-delimiting: If we
1615-
# concatenate two encoded values, can we always tell where the first one ends
1616-
# and the second one begins? - Example: If we encode INT64s to fixed-width
1617-
# STRINGs, the first value will always contain exactly N digits, possibly
1618-
# preceded by a sign. - Counterexample: If we concatenate two UTF-8 encoded
1619-
# STRINGs, we have no way to tell where the first one ends. - The overall
1620-
# encoding chain is self-delimiting if *any* link is. * Compatibility: Which
1621-
# other systems have matching encoding schemes? For example, does this encoding
1622-
# have a GoogleSQL equivalent? HBase? Java?
1610+
# *not* the decoded type. - Example: BYTES values sort in the same order as
1611+
# their raw encodings. - Counterexample: Encoding INT64 to a fixed-width STRING
1612+
# does *not* preserve sort order when dealing with negative numbers. INT64(1) >
1613+
# INT64(-1), but STRING("-00001") > STRING("00001). - The overall encoding chain
1614+
# has this property if *every* link does. * Self-delimiting: If we concatenate
1615+
# two encoded values, can we always tell where the first one ends and the second
1616+
# one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1617+
# value will always contain exactly N digits, possibly preceded by a sign. -
1618+
# Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
1619+
# tell where the first one ends. - The overall encoding chain has this property
1620+
# if *any* link does. * Compatibility: Which other systems have matching
1621+
# encoding schemes? For example, does this encoding have a GoogleSQL equivalent?
1622+
# HBase? Java?
16231623
# Corresponds to the JSON property `inputType`
16241624
# @return [Google::Apis::BigtableadminV2::Type]
16251625
attr_accessor :input_type
@@ -1635,19 +1635,19 @@ class GoogleBigtableAdminV2TypeAggregate
16351635
# Each link in the encoding chain also defines the following properties: *
16361636
# Natural sort: Does the encoded value sort consistently with the original typed
16371637
# value? Note that Bigtable will always sort data based on the raw encoded value,
1638-
# *not* the decoded type. - Example: STRING values sort in the same order as
1639-
# their UTF-8 encodings. - Counterexample: Encoding INT64 to a fixed-width
1640-
# STRING does *not* preserve sort order when dealing with negative numbers.
1641-
# INT64(1) > INT64(-1), but STRING("-00001") > STRING("00001). - The overall
1642-
# encoding chain sorts naturally if *every* link does. * Self-delimiting: If we
1643-
# concatenate two encoded values, can we always tell where the first one ends
1644-
# and the second one begins? - Example: If we encode INT64s to fixed-width
1645-
# STRINGs, the first value will always contain exactly N digits, possibly
1646-
# preceded by a sign. - Counterexample: If we concatenate two UTF-8 encoded
1647-
# STRINGs, we have no way to tell where the first one ends. - The overall
1648-
# encoding chain is self-delimiting if *any* link is. * Compatibility: Which
1649-
# other systems have matching encoding schemes? For example, does this encoding
1650-
# have a GoogleSQL equivalent? HBase? Java?
1638+
# *not* the decoded type. - Example: BYTES values sort in the same order as
1639+
# their raw encodings. - Counterexample: Encoding INT64 to a fixed-width STRING
1640+
# does *not* preserve sort order when dealing with negative numbers. INT64(1) >
1641+
# INT64(-1), but STRING("-00001") > STRING("00001). - The overall encoding chain
1642+
# has this property if *every* link does. * Self-delimiting: If we concatenate
1643+
# two encoded values, can we always tell where the first one ends and the second
1644+
# one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1645+
# value will always contain exactly N digits, possibly preceded by a sign. -
1646+
# Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
1647+
# tell where the first one ends. - The overall encoding chain has this property
1648+
# if *any* link does. * Compatibility: Which other systems have matching
1649+
# encoding schemes? For example, does this encoding have a GoogleSQL equivalent?
1650+
# HBase? Java?
16511651
# Corresponds to the JSON property `stateType`
16521652
# @return [Google::Apis::BigtableadminV2::Type]
16531653
attr_accessor :state_type
@@ -3170,19 +3170,19 @@ def update!(**args)
31703170
# Each link in the encoding chain also defines the following properties: *
31713171
# Natural sort: Does the encoded value sort consistently with the original typed
31723172
# value? Note that Bigtable will always sort data based on the raw encoded value,
3173-
# *not* the decoded type. - Example: STRING values sort in the same order as
3174-
# their UTF-8 encodings. - Counterexample: Encoding INT64 to a fixed-width
3175-
# STRING does *not* preserve sort order when dealing with negative numbers.
3176-
# INT64(1) > INT64(-1), but STRING("-00001") > STRING("00001). - The overall
3177-
# encoding chain sorts naturally if *every* link does. * Self-delimiting: If we
3178-
# concatenate two encoded values, can we always tell where the first one ends
3179-
# and the second one begins? - Example: If we encode INT64s to fixed-width
3180-
# STRINGs, the first value will always contain exactly N digits, possibly
3181-
# preceded by a sign. - Counterexample: If we concatenate two UTF-8 encoded
3182-
# STRINGs, we have no way to tell where the first one ends. - The overall
3183-
# encoding chain is self-delimiting if *any* link is. * Compatibility: Which
3184-
# other systems have matching encoding schemes? For example, does this encoding
3185-
# have a GoogleSQL equivalent? HBase? Java?
3173+
# *not* the decoded type. - Example: BYTES values sort in the same order as
3174+
# their raw encodings. - Counterexample: Encoding INT64 to a fixed-width STRING
3175+
# does *not* preserve sort order when dealing with negative numbers. INT64(1) >
3176+
# INT64(-1), but STRING("-00001") > STRING("00001). - The overall encoding chain
3177+
# has this property if *every* link does. * Self-delimiting: If we concatenate
3178+
# two encoded values, can we always tell where the first one ends and the second
3179+
# one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
3180+
# value will always contain exactly N digits, possibly preceded by a sign. -
3181+
# Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
3182+
# tell where the first one ends. - The overall encoding chain has this property
3183+
# if *any* link does. * Compatibility: Which other systems have matching
3184+
# encoding schemes? For example, does this encoding have a GoogleSQL equivalent?
3185+
# HBase? Java?
31863186
class Type
31873187
include Google::Apis::Core::Hashable
31883188

generated/google-apis-bigtableadmin_v2/lib/google/apis/bigtableadmin_v2/gem_version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module BigtableadminV2
1818
# Version of the google-apis-bigtableadmin_v2 gem
19-
GEM_VERSION = "0.55.0"
19+
GEM_VERSION = "0.56.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.15.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20240429"
25+
REVISION = "20240522"
2626
end
2727
end
2828
end

0 commit comments

Comments
 (0)