google-apis-bigtableadmin_v2 0.63.0 → 0.64.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/bigtableadmin_v2/classes.rb +128 -152
- data/lib/google/apis/bigtableadmin_v2/gem_version.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1eb4773fe8c3471003afc43179f3153fd17556573908c28b2fb59b782ca791fc
|
4
|
+
data.tar.gz: 01137ca9e7548637463ad0d5ac77ea9f80d48573102c0628babf3574e962c99d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1064f1325e504246bdefd065f716dd029bcf7518c862d429e96079c1dc5f388909459d413714e8c4e579f1d97ac5211dcf8b9e312fd4aa953cb5e7d12deef33
|
7
|
+
data.tar.gz: 715fd48250a1e7155f5e0ab46a6b58c35d34f186c5e60eedfbd37ad19acc0a891aa2909dc6afa4230830b772d347b002ce983f9fe120a2114923ba6e70502f48
|
data/CHANGELOG.md
CHANGED
@@ -218,8 +218,8 @@ module Google
|
|
218
218
|
class AutomatedBackupPolicy
|
219
219
|
include Google::Apis::Core::Hashable
|
220
220
|
|
221
|
-
#
|
222
|
-
#
|
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
|
791
|
-
#
|
792
|
-
#
|
793
|
-
#
|
794
|
-
#
|
795
|
-
#
|
796
|
-
#
|
797
|
-
#
|
798
|
-
#
|
799
|
-
#
|
800
|
-
#
|
801
|
-
#
|
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
|
1612
|
-
#
|
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
|
1631
|
-
#
|
1632
|
-
#
|
1633
|
-
#
|
1634
|
-
#
|
1635
|
-
#
|
1636
|
-
#
|
1637
|
-
#
|
1638
|
-
#
|
1639
|
-
#
|
1640
|
-
#
|
1641
|
-
#
|
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
|
1666
|
-
#
|
1667
|
-
#
|
1668
|
-
#
|
1669
|
-
#
|
1670
|
-
#
|
1671
|
-
#
|
1672
|
-
#
|
1673
|
-
#
|
1674
|
-
#
|
1675
|
-
#
|
1676
|
-
#
|
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
|
1774
|
-
#
|
1775
|
-
#
|
1776
|
-
#
|
1777
|
-
#
|
1778
|
-
#
|
1779
|
-
#
|
1780
|
-
#
|
1781
|
-
#
|
1782
|
-
#
|
1783
|
-
#
|
1784
|
-
#
|
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
|
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
|
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
|
1839
|
-
#
|
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
|
1855
|
-
#
|
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
|
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
|
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
|
1931
|
-
#
|
1932
|
-
#
|
1933
|
-
#
|
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
|
1949
|
-
#
|
1950
|
-
#
|
1951
|
-
#
|
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
|
1984
|
-
#
|
1985
|
-
#
|
1986
|
-
#
|
1987
|
-
#
|
1988
|
-
#
|
1989
|
-
#
|
1990
|
-
#
|
1991
|
-
#
|
1992
|
-
#
|
1993
|
-
#
|
1994
|
-
#
|
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
|
2007
|
-
#
|
2008
|
-
#
|
2009
|
-
#
|
2010
|
-
#
|
2011
|
-
#
|
2012
|
-
#
|
2013
|
-
#
|
2014
|
-
#
|
2015
|
-
#
|
2016
|
-
#
|
2017
|
-
#
|
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
|
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
|
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
|
2060
|
-
#
|
2061
|
-
# toBytes` - Java `String#getBytes(
|
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
|
2083
|
-
#
|
2084
|
-
# toBytes` - Java `String#getBytes(
|
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
|
2146
|
-
#
|
2147
|
-
#
|
2148
|
-
#
|
2149
|
-
#
|
2150
|
-
#
|
2151
|
-
#
|
2152
|
-
#
|
2153
|
-
#
|
2154
|
-
#
|
2155
|
-
#
|
2156
|
-
#
|
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
|
3587
|
-
#
|
3588
|
-
#
|
3589
|
-
#
|
3590
|
-
#
|
3591
|
-
#
|
3592
|
-
#
|
3593
|
-
#
|
3594
|
-
#
|
3595
|
-
#
|
3596
|
-
#
|
3597
|
-
#
|
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
|
3606
|
-
#
|
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.
|
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 = "
|
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.
|
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-
|
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.
|
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.
|
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
|