google-apis-bigtableadmin_v2 0.63.0 → 0.64.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b7f56da6a6fd562a762cd0122926a2d16b100adb8f82d8ac163d20910f534d9
4
- data.tar.gz: cacbb3ad35d494902e65069e386f7ac27e97112f8e2a27af2911acecad2b829e
3
+ metadata.gz: 1eb4773fe8c3471003afc43179f3153fd17556573908c28b2fb59b782ca791fc
4
+ data.tar.gz: 01137ca9e7548637463ad0d5ac77ea9f80d48573102c0628babf3574e962c99d
5
5
  SHA512:
6
- metadata.gz: a3d8073295e35875f8c1b87171c1edf56a512c5aabec488d9fe158d04992b80b6e01fdfd26e64a036f6e286f7cdc85d9068d52f06d4d077be3b32545b1c93cf2
7
- data.tar.gz: ff89ecf7dd0949bc68aa8349506292d578542bc09c21be5f7054fcbe22ae714f401f302639ea41c27a29d370e03fbdd4e64eb839db3d6427e6e3b982b4e25dd7
6
+ metadata.gz: c1064f1325e504246bdefd065f716dd029bcf7518c862d429e96079c1dc5f388909459d413714e8c4e579f1d97ac5211dcf8b9e312fd4aa953cb5e7d12deef33
7
+ data.tar.gz: 715fd48250a1e7155f5e0ab46a6b58c35d34f186c5e60eedfbd37ad19acc0a891aa2909dc6afa4230830b772d347b002ce983f9fe120a2114923ba6e70502f48
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigtableadmin_v2
2
2
 
3
+ ### v0.64.0 (2024-10-20)
4
+
5
+ * Regenerated from discovery document revision 20241008
6
+
3
7
  ### v0.63.0 (2024-09-29)
4
8
 
5
9
  * Regenerated from discovery document revision 20240918
@@ -218,8 +218,8 @@ module Google
218
218
  class AutomatedBackupPolicy
219
219
  include Google::Apis::Core::Hashable
220
220
 
221
- # Required. How frequently automated backups should occur. The only supported
222
- # value at this time is 24 hours.
221
+ # How frequently automated backups should occur. The only supported value at
222
+ # this time is 24 hours. An undefined frequency is treated as 24 hours.
223
223
  # Corresponds to the JSON property `frequency`
224
224
  # @return [String]
225
225
  attr_accessor :frequency
@@ -787,21 +787,18 @@ module Google
787
787
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
788
788
  # familiarity and consistency across products and features. For compatibility
789
789
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
790
- # which describes how to convert to/from the underlying data. Each encoding also
791
- # defines the following properties: * Order-preserving: Does the encoded value
792
- # sort consistently with the original typed value? Note that Bigtable will
793
- # always sort data based on the raw encoded value, *not* the decoded type. -
794
- # Example: BYTES values sort in the same order as their raw encodings. -
795
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
796
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
797
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
798
- # two encoded values, can we always tell where the first one ends and the second
799
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
800
- # value will always contain exactly N digits, possibly preceded by a sign. -
801
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
802
- # tell where the first one ends. * Compatibility: Which other systems have
803
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
804
- # equivalent? HBase? Java?
790
+ # which describes how to convert to or from the underlying data. Each encoding
791
+ # can operate in one of two modes: - Sorted: In this mode, Bigtable guarantees
792
+ # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
793
+ # sort order is important, for example when encoding keys. - Distinct: In this
794
+ # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
795
+ # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
796
+ # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
797
+ # value. The API clearly documents which mode is used wherever an encoding can
798
+ # be configured. Each encoding also documents which values are supported in
799
+ # which modes. For example, when encoding INT64 as a numeric STRING, negative
800
+ # numbers cannot be encoded in sorted mode. This is because `INT64(1) > INT64(-1)
801
+ # `, but `STRING("-00001") > STRING("00001")`.
805
802
  # Corresponds to the JSON property `valueType`
806
803
  # @return [Google::Apis::BigtableadminV2::Type]
807
804
  attr_accessor :value_type
@@ -1608,9 +1605,8 @@ module Google
1608
1605
  end
1609
1606
 
1610
1607
  # A value that combines incremental updates into a summarized value. Data is
1611
- # never directly written or read using type `Aggregate`. Writes will provide
1612
- # either the `input_type` or `state_type`, and reads will always return the `
1613
- # state_type` .
1608
+ # never directly written or read using type `Aggregate`. Writes provide either
1609
+ # the `input_type` or `state_type`, and reads always return the `state_type` .
1614
1610
  class GoogleBigtableAdminV2TypeAggregate
1615
1611
  include Google::Apis::Core::Hashable
1616
1612
 
@@ -1627,21 +1623,18 @@ module Google
1627
1623
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
1628
1624
  # familiarity and consistency across products and features. For compatibility
1629
1625
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
1630
- # which describes how to convert to/from the underlying data. Each encoding also
1631
- # defines the following properties: * Order-preserving: Does the encoded value
1632
- # sort consistently with the original typed value? Note that Bigtable will
1633
- # always sort data based on the raw encoded value, *not* the decoded type. -
1634
- # Example: BYTES values sort in the same order as their raw encodings. -
1635
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
1636
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
1637
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1638
- # two encoded values, can we always tell where the first one ends and the second
1639
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1640
- # value will always contain exactly N digits, possibly preceded by a sign. -
1641
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
1642
- # tell where the first one ends. * Compatibility: Which other systems have
1643
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
1644
- # equivalent? HBase? Java?
1626
+ # which describes how to convert to or from the underlying data. Each encoding
1627
+ # can operate in one of two modes: - Sorted: In this mode, Bigtable guarantees
1628
+ # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
1629
+ # sort order is important, for example when encoding keys. - Distinct: In this
1630
+ # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
1631
+ # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
1632
+ # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
1633
+ # value. The API clearly documents which mode is used wherever an encoding can
1634
+ # be configured. Each encoding also documents which values are supported in
1635
+ # which modes. For example, when encoding INT64 as a numeric STRING, negative
1636
+ # numbers cannot be encoded in sorted mode. This is because `INT64(1) > INT64(-1)
1637
+ # `, but `STRING("-00001") > STRING("00001")`.
1645
1638
  # Corresponds to the JSON property `inputType`
1646
1639
  # @return [Google::Apis::BigtableadminV2::Type]
1647
1640
  attr_accessor :input_type
@@ -1662,21 +1655,18 @@ module Google
1662
1655
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
1663
1656
  # familiarity and consistency across products and features. For compatibility
1664
1657
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
1665
- # which describes how to convert to/from the underlying data. Each encoding also
1666
- # defines the following properties: * Order-preserving: Does the encoded value
1667
- # sort consistently with the original typed value? Note that Bigtable will
1668
- # always sort data based on the raw encoded value, *not* the decoded type. -
1669
- # Example: BYTES values sort in the same order as their raw encodings. -
1670
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
1671
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
1672
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1673
- # two encoded values, can we always tell where the first one ends and the second
1674
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1675
- # value will always contain exactly N digits, possibly preceded by a sign. -
1676
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
1677
- # tell where the first one ends. * Compatibility: Which other systems have
1678
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
1679
- # equivalent? HBase? Java?
1658
+ # which describes how to convert to or from the underlying data. Each encoding
1659
+ # can operate in one of two modes: - Sorted: In this mode, Bigtable guarantees
1660
+ # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
1661
+ # sort order is important, for example when encoding keys. - Distinct: In this
1662
+ # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
1663
+ # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
1664
+ # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
1665
+ # value. The API clearly documents which mode is used wherever an encoding can
1666
+ # be configured. Each encoding also documents which values are supported in
1667
+ # which modes. For example, when encoding INT64 as a numeric STRING, negative
1668
+ # numbers cannot be encoded in sorted mode. This is because `INT64(1) > INT64(-1)
1669
+ # `, but `STRING("-00001") > STRING("00001")`.
1680
1670
  # Corresponds to the JSON property `stateType`
1681
1671
  # @return [Google::Apis::BigtableadminV2::Type]
1682
1672
  attr_accessor :state_type
@@ -1770,21 +1760,18 @@ module Google
1770
1760
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
1771
1761
  # familiarity and consistency across products and features. For compatibility
1772
1762
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
1773
- # which describes how to convert to/from the underlying data. Each encoding also
1774
- # defines the following properties: * Order-preserving: Does the encoded value
1775
- # sort consistently with the original typed value? Note that Bigtable will
1776
- # always sort data based on the raw encoded value, *not* the decoded type. -
1777
- # Example: BYTES values sort in the same order as their raw encodings. -
1778
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
1779
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
1780
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1781
- # two encoded values, can we always tell where the first one ends and the second
1782
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1783
- # value will always contain exactly N digits, possibly preceded by a sign. -
1784
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
1785
- # tell where the first one ends. * Compatibility: Which other systems have
1786
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
1787
- # equivalent? HBase? Java?
1763
+ # which describes how to convert to or from the underlying data. Each encoding
1764
+ # can operate in one of two modes: - Sorted: In this mode, Bigtable guarantees
1765
+ # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
1766
+ # sort order is important, for example when encoding keys. - Distinct: In this
1767
+ # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
1768
+ # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
1769
+ # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
1770
+ # value. The API clearly documents which mode is used wherever an encoding can
1771
+ # be configured. Each encoding also documents which values are supported in
1772
+ # which modes. For example, when encoding INT64 as a numeric STRING, negative
1773
+ # numbers cannot be encoded in sorted mode. This is because `INT64(1) > INT64(-1)
1774
+ # `, but `STRING("-00001") > STRING("00001")`.
1788
1775
  # Corresponds to the JSON property `elementType`
1789
1776
  # @return [Google::Apis::BigtableadminV2::Type]
1790
1777
  attr_accessor :element_type
@@ -1816,7 +1803,7 @@ module Google
1816
1803
  class GoogleBigtableAdminV2TypeBytes
1817
1804
  include Google::Apis::Core::Hashable
1818
1805
 
1819
- # Rules used to convert to/from lower level types.
1806
+ # Rules used to convert to or from lower level types.
1820
1807
  # Corresponds to the JSON property `encoding`
1821
1808
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeBytesEncoding]
1822
1809
  attr_accessor :encoding
@@ -1831,12 +1818,12 @@ module Google
1831
1818
  end
1832
1819
  end
1833
1820
 
1834
- # Rules used to convert to/from lower level types.
1821
+ # Rules used to convert to or from lower level types.
1835
1822
  class GoogleBigtableAdminV2TypeBytesEncoding
1836
1823
  include Google::Apis::Core::Hashable
1837
1824
 
1838
- # Leaves the value "as-is" * Order-preserving? Yes * Self-delimiting? No *
1839
- # Compatibility? N/A
1825
+ # Leaves the value as-is. Sorted mode: all values are supported. Distinct mode:
1826
+ # all values are supported.
1840
1827
  # Corresponds to the JSON property `raw`
1841
1828
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeBytesEncodingRaw]
1842
1829
  attr_accessor :raw
@@ -1851,8 +1838,8 @@ module Google
1851
1838
  end
1852
1839
  end
1853
1840
 
1854
- # Leaves the value "as-is" * Order-preserving? Yes * Self-delimiting? No *
1855
- # Compatibility? N/A
1841
+ # Leaves the value as-is. Sorted mode: all values are supported. Distinct mode:
1842
+ # all values are supported.
1856
1843
  class GoogleBigtableAdminV2TypeBytesEncodingRaw
1857
1844
  include Google::Apis::Core::Hashable
1858
1845
 
@@ -1908,7 +1895,7 @@ module Google
1908
1895
  class GoogleBigtableAdminV2TypeInt64
1909
1896
  include Google::Apis::Core::Hashable
1910
1897
 
1911
- # Rules used to convert to/from lower level types.
1898
+ # Rules used to convert to or from lower level types.
1912
1899
  # Corresponds to the JSON property `encoding`
1913
1900
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64Encoding]
1914
1901
  attr_accessor :encoding
@@ -1923,14 +1910,14 @@ module Google
1923
1910
  end
1924
1911
  end
1925
1912
 
1926
- # Rules used to convert to/from lower level types.
1913
+ # Rules used to convert to or from lower level types.
1927
1914
  class GoogleBigtableAdminV2TypeInt64Encoding
1928
1915
  include Google::Apis::Core::Hashable
1929
1916
 
1930
- # Encodes the value as an 8-byte big endian twos complement `Bytes` value. *
1931
- # Order-preserving? No (positive values only) * Self-delimiting? Yes *
1932
- # Compatibility? - BigQuery Federation `BINARY` encoding - HBase `Bytes.toBytes`
1933
- # - Java `ByteBuffer.putLong()` with `ByteOrder.BIG_ENDIAN`
1917
+ # Encodes the value as an 8-byte big-endian two's complement value. Sorted mode:
1918
+ # non-negative values are supported. Distinct mode: all values are supported.
1919
+ # Compatible with: - BigQuery `BINARY` encoding - HBase `Bytes.toBytes` - Java `
1920
+ # ByteBuffer.putLong()` with `ByteOrder.BIG_ENDIAN`
1934
1921
  # Corresponds to the JSON property `bigEndianBytes`
1935
1922
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64EncodingBigEndianBytes]
1936
1923
  attr_accessor :big_endian_bytes
@@ -1945,10 +1932,10 @@ module Google
1945
1932
  end
1946
1933
  end
1947
1934
 
1948
- # Encodes the value as an 8-byte big endian twos complement `Bytes` value. *
1949
- # Order-preserving? No (positive values only) * Self-delimiting? Yes *
1950
- # Compatibility? - BigQuery Federation `BINARY` encoding - HBase `Bytes.toBytes`
1951
- # - Java `ByteBuffer.putLong()` with `ByteOrder.BIG_ENDIAN`
1935
+ # Encodes the value as an 8-byte big-endian two's complement value. Sorted mode:
1936
+ # non-negative values are supported. Distinct mode: all values are supported.
1937
+ # Compatible with: - BigQuery `BINARY` encoding - HBase `Bytes.toBytes` - Java `
1938
+ # ByteBuffer.putLong()` with `ByteOrder.BIG_ENDIAN`
1952
1939
  class GoogleBigtableAdminV2TypeInt64EncodingBigEndianBytes
1953
1940
  include Google::Apis::Core::Hashable
1954
1941
 
@@ -1980,21 +1967,18 @@ module Google
1980
1967
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
1981
1968
  # familiarity and consistency across products and features. For compatibility
1982
1969
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
1983
- # which describes how to convert to/from the underlying data. Each encoding also
1984
- # defines the following properties: * Order-preserving: Does the encoded value
1985
- # sort consistently with the original typed value? Note that Bigtable will
1986
- # always sort data based on the raw encoded value, *not* the decoded type. -
1987
- # Example: BYTES values sort in the same order as their raw encodings. -
1988
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
1989
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
1990
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1991
- # two encoded values, can we always tell where the first one ends and the second
1992
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1993
- # value will always contain exactly N digits, possibly preceded by a sign. -
1994
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
1995
- # tell where the first one ends. * Compatibility: Which other systems have
1996
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
1997
- # equivalent? HBase? Java?
1970
+ # which describes how to convert to or from the underlying data. Each encoding
1971
+ # can operate in one of two modes: - Sorted: In this mode, Bigtable guarantees
1972
+ # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
1973
+ # sort order is important, for example when encoding keys. - Distinct: In this
1974
+ # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
1975
+ # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
1976
+ # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
1977
+ # value. The API clearly documents which mode is used wherever an encoding can
1978
+ # be configured. Each encoding also documents which values are supported in
1979
+ # which modes. For example, when encoding INT64 as a numeric STRING, negative
1980
+ # numbers cannot be encoded in sorted mode. This is because `INT64(1) > INT64(-1)
1981
+ # `, but `STRING("-00001") > STRING("00001")`.
1998
1982
  # Corresponds to the JSON property `keyType`
1999
1983
  # @return [Google::Apis::BigtableadminV2::Type]
2000
1984
  attr_accessor :key_type
@@ -2003,21 +1987,18 @@ module Google
2003
1987
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
2004
1988
  # familiarity and consistency across products and features. For compatibility
2005
1989
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
2006
- # which describes how to convert to/from the underlying data. Each encoding also
2007
- # defines the following properties: * Order-preserving: Does the encoded value
2008
- # sort consistently with the original typed value? Note that Bigtable will
2009
- # always sort data based on the raw encoded value, *not* the decoded type. -
2010
- # Example: BYTES values sort in the same order as their raw encodings. -
2011
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
2012
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
2013
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
2014
- # two encoded values, can we always tell where the first one ends and the second
2015
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
2016
- # value will always contain exactly N digits, possibly preceded by a sign. -
2017
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
2018
- # tell where the first one ends. * Compatibility: Which other systems have
2019
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
2020
- # equivalent? HBase? Java?
1990
+ # which describes how to convert to or from the underlying data. Each encoding
1991
+ # can operate in one of two modes: - Sorted: In this mode, Bigtable guarantees
1992
+ # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
1993
+ # sort order is important, for example when encoding keys. - Distinct: In this
1994
+ # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
1995
+ # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
1996
+ # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
1997
+ # value. The API clearly documents which mode is used wherever an encoding can
1998
+ # be configured. Each encoding also documents which values are supported in
1999
+ # which modes. For example, when encoding INT64 as a numeric STRING, negative
2000
+ # numbers cannot be encoded in sorted mode. This is because `INT64(1) > INT64(-1)
2001
+ # `, but `STRING("-00001") > STRING("00001")`.
2021
2002
  # Corresponds to the JSON property `valueType`
2022
2003
  # @return [Google::Apis::BigtableadminV2::Type]
2023
2004
  attr_accessor :value_type
@@ -2037,7 +2018,7 @@ module Google
2037
2018
  class GoogleBigtableAdminV2TypeString
2038
2019
  include Google::Apis::Core::Hashable
2039
2020
 
2040
- # Rules used to convert to/from lower level types.
2021
+ # Rules used to convert to or from lower level types.
2041
2022
  # Corresponds to the JSON property `encoding`
2042
2023
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncoding]
2043
2024
  attr_accessor :encoding
@@ -2052,13 +2033,14 @@ module Google
2052
2033
  end
2053
2034
  end
2054
2035
 
2055
- # Rules used to convert to/from lower level types.
2036
+ # Rules used to convert to or from lower level types.
2056
2037
  class GoogleBigtableAdminV2TypeStringEncoding
2057
2038
  include Google::Apis::Core::Hashable
2058
2039
 
2059
- # UTF-8 encoding * Order-preserving? Yes (code point order) * Self-delimiting?
2060
- # No * Compatibility? - BigQuery Federation `TEXT` encoding - HBase `Bytes.
2061
- # toBytes` - Java `String#getBytes(StandardCharsets.UTF_8)`
2040
+ # UTF-8 encoding. Sorted mode: - All values are supported. - Code point order is
2041
+ # preserved. Distinct mode: all values are supported. Compatible with: -
2042
+ # BigQuery `TEXT` encoding - HBase `Bytes.toBytes` - Java `String#getBytes(
2043
+ # StandardCharsets.UTF_8)`
2062
2044
  # Corresponds to the JSON property `utf8Bytes`
2063
2045
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes]
2064
2046
  attr_accessor :utf8_bytes
@@ -2079,9 +2061,10 @@ module Google
2079
2061
  end
2080
2062
  end
2081
2063
 
2082
- # UTF-8 encoding * Order-preserving? Yes (code point order) * Self-delimiting?
2083
- # No * Compatibility? - BigQuery Federation `TEXT` encoding - HBase `Bytes.
2084
- # toBytes` - Java `String#getBytes(StandardCharsets.UTF_8)`
2064
+ # UTF-8 encoding. Sorted mode: - All values are supported. - Code point order is
2065
+ # preserved. Distinct mode: all values are supported. Compatible with: -
2066
+ # BigQuery `TEXT` encoding - HBase `Bytes.toBytes` - Java `String#getBytes(
2067
+ # StandardCharsets.UTF_8)`
2085
2068
  class GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes
2086
2069
  include Google::Apis::Core::Hashable
2087
2070
 
@@ -2142,21 +2125,18 @@ module Google
2142
2125
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
2143
2126
  # familiarity and consistency across products and features. For compatibility
2144
2127
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
2145
- # which describes how to convert to/from the underlying data. Each encoding also
2146
- # defines the following properties: * Order-preserving: Does the encoded value
2147
- # sort consistently with the original typed value? Note that Bigtable will
2148
- # always sort data based on the raw encoded value, *not* the decoded type. -
2149
- # Example: BYTES values sort in the same order as their raw encodings. -
2150
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
2151
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
2152
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
2153
- # two encoded values, can we always tell where the first one ends and the second
2154
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
2155
- # value will always contain exactly N digits, possibly preceded by a sign. -
2156
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
2157
- # tell where the first one ends. * Compatibility: Which other systems have
2158
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
2159
- # equivalent? HBase? Java?
2128
+ # which describes how to convert to or from the underlying data. Each encoding
2129
+ # can operate in one of two modes: - Sorted: In this mode, Bigtable guarantees
2130
+ # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
2131
+ # sort order is important, for example when encoding keys. - Distinct: In this
2132
+ # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
2133
+ # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
2134
+ # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
2135
+ # value. The API clearly documents which mode is used wherever an encoding can
2136
+ # be configured. Each encoding also documents which values are supported in
2137
+ # which modes. For example, when encoding INT64 as a numeric STRING, negative
2138
+ # numbers cannot be encoded in sorted mode. This is because `INT64(1) > INT64(-1)
2139
+ # `, but `STRING("-00001") > STRING("00001")`.
2160
2140
  # Corresponds to the JSON property `type`
2161
2141
  # @return [Google::Apis::BigtableadminV2::Type]
2162
2142
  attr_accessor :type
@@ -3583,28 +3563,24 @@ module Google
3583
3563
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
3584
3564
  # familiarity and consistency across products and features. For compatibility
3585
3565
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
3586
- # which describes how to convert to/from the underlying data. Each encoding also
3587
- # defines the following properties: * Order-preserving: Does the encoded value
3588
- # sort consistently with the original typed value? Note that Bigtable will
3589
- # always sort data based on the raw encoded value, *not* the decoded type. -
3590
- # Example: BYTES values sort in the same order as their raw encodings. -
3591
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
3592
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
3593
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
3594
- # two encoded values, can we always tell where the first one ends and the second
3595
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
3596
- # value will always contain exactly N digits, possibly preceded by a sign. -
3597
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
3598
- # tell where the first one ends. * Compatibility: Which other systems have
3599
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
3600
- # equivalent? HBase? Java?
3566
+ # which describes how to convert to or from the underlying data. Each encoding
3567
+ # can operate in one of two modes: - Sorted: In this mode, Bigtable guarantees
3568
+ # that `Encode(X) <= Encode(Y)` if and only if `X <= Y`. This is useful anywhere
3569
+ # sort order is important, for example when encoding keys. - Distinct: In this
3570
+ # mode, Bigtable guarantees that if `X != Y` then `Encode(X) != Encode(Y)`.
3571
+ # However, the converse is not guaranteed. For example, both "`'foo': '1', 'bar':
3572
+ # '2'`" and "`'bar': '2', 'foo': '1'`" are valid encodings of the same JSON
3573
+ # value. The API clearly documents which mode is used wherever an encoding can
3574
+ # be configured. Each encoding also documents which values are supported in
3575
+ # which modes. For example, when encoding INT64 as a numeric STRING, negative
3576
+ # numbers cannot be encoded in sorted mode. This is because `INT64(1) > INT64(-1)
3577
+ # `, but `STRING("-00001") > STRING("00001")`.
3601
3578
  class Type
3602
3579
  include Google::Apis::Core::Hashable
3603
3580
 
3604
3581
  # A value that combines incremental updates into a summarized value. Data is
3605
- # never directly written or read using type `Aggregate`. Writes will provide
3606
- # either the `input_type` or `state_type`, and reads will always return the `
3607
- # state_type` .
3582
+ # never directly written or read using type `Aggregate`. Writes provide either
3583
+ # the `input_type` or `state_type`, and reads always return the `state_type` .
3608
3584
  # Corresponds to the JSON property `aggregateType`
3609
3585
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregate]
3610
3586
  attr_accessor :aggregate_type
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BigtableadminV2
18
18
  # Version of the google-apis-bigtableadmin_v2 gem
19
- GEM_VERSION = "0.63.0"
19
+ GEM_VERSION = "0.64.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240918"
25
+ REVISION = "20241008"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigtableadmin_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.63.0
4
+ version: 0.64.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: 2024-09-29 00:00:00.000000000 Z
11
+ date: 2024-10-27 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-bigtableadmin_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.63.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.64.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigtableadmin_v2
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.21
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Bigtable Admin API V2