google-apis-bigtableadmin_v2 0.62.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 12f7a2319362549383453c87ab4c5f498267ec362b6467f8f01d75fa87f0285d
4
- data.tar.gz: fc0782e2a9290b03eb68d831e102308127ed26e2150a9e77f2f87ca98759e67e
3
+ metadata.gz: 1eb4773fe8c3471003afc43179f3153fd17556573908c28b2fb59b782ca791fc
4
+ data.tar.gz: 01137ca9e7548637463ad0d5ac77ea9f80d48573102c0628babf3574e962c99d
5
5
  SHA512:
6
- metadata.gz: 2b978f8a0d49c651a9e47de8b0672e9b104f508406e573166a3276fcfa6e6cfe80a58fc7e294288bada0e2e32fb0ebb08891d949d15a22d37a965a980eb87b43
7
- data.tar.gz: 9c140647d0182144fe88e7ae4a1f532bb58612e644f905b49b7bec335dfdddb3085f0ccd1cda829b7d05c3db0f298b1df4d2edd9804a8b7bdb877bb9f1a9a116
6
+ metadata.gz: c1064f1325e504246bdefd065f716dd029bcf7518c862d429e96079c1dc5f388909459d413714e8c4e579f1d97ac5211dcf8b9e312fd4aa953cb5e7d12deef33
7
+ data.tar.gz: 715fd48250a1e7155f5e0ab46a6b58c35d34f186c5e60eedfbd37ad19acc0a891aa2909dc6afa4230830b772d347b002ce983f9fe120a2114923ba6e70502f48
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.63.0 (2024-09-29)
8
+
9
+ * Regenerated from discovery document revision 20240918
10
+
3
11
  ### v0.62.0 (2024-09-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20240904
@@ -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
@@ -659,6 +659,11 @@ module Google
659
659
  # @return [String]
660
660
  attr_accessor :name
661
661
 
662
+ # Immutable. The node scaling factor of this cluster.
663
+ # Corresponds to the JSON property `nodeScalingFactor`
664
+ # @return [String]
665
+ attr_accessor :node_scaling_factor
666
+
662
667
  # The number of nodes in the cluster. If no value is set, Cloud Bigtable
663
668
  # automatically allocates nodes based on your data footprint and optimized for
664
669
  # 50% storage utilization.
@@ -682,6 +687,7 @@ module Google
682
687
  @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
683
688
  @location = args[:location] if args.key?(:location)
684
689
  @name = args[:name] if args.key?(:name)
690
+ @node_scaling_factor = args[:node_scaling_factor] if args.key?(:node_scaling_factor)
685
691
  @serve_nodes = args[:serve_nodes] if args.key?(:serve_nodes)
686
692
  @state = args[:state] if args.key?(:state)
687
693
  end
@@ -781,21 +787,18 @@ module Google
781
787
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
782
788
  # familiarity and consistency across products and features. For compatibility
783
789
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
784
- # which describes how to convert to/from the underlying data. Each encoding also
785
- # defines the following properties: * Order-preserving: Does the encoded value
786
- # sort consistently with the original typed value? Note that Bigtable will
787
- # always sort data based on the raw encoded value, *not* the decoded type. -
788
- # Example: BYTES values sort in the same order as their raw encodings. -
789
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
790
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
791
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
792
- # two encoded values, can we always tell where the first one ends and the second
793
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
794
- # value will always contain exactly N digits, possibly preceded by a sign. -
795
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
796
- # tell where the first one ends. * Compatibility: Which other systems have
797
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
798
- # 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")`.
799
802
  # Corresponds to the JSON property `valueType`
800
803
  # @return [Google::Apis::BigtableadminV2::Type]
801
804
  attr_accessor :value_type
@@ -1602,9 +1605,8 @@ module Google
1602
1605
  end
1603
1606
 
1604
1607
  # A value that combines incremental updates into a summarized value. Data is
1605
- # never directly written or read using type `Aggregate`. Writes will provide
1606
- # either the `input_type` or `state_type`, and reads will always return the `
1607
- # 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` .
1608
1610
  class GoogleBigtableAdminV2TypeAggregate
1609
1611
  include Google::Apis::Core::Hashable
1610
1612
 
@@ -1621,21 +1623,18 @@ module Google
1621
1623
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
1622
1624
  # familiarity and consistency across products and features. For compatibility
1623
1625
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
1624
- # which describes how to convert to/from the underlying data. Each encoding also
1625
- # defines the following properties: * Order-preserving: Does the encoded value
1626
- # sort consistently with the original typed value? Note that Bigtable will
1627
- # always sort data based on the raw encoded value, *not* the decoded type. -
1628
- # Example: BYTES values sort in the same order as their raw encodings. -
1629
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
1630
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
1631
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1632
- # two encoded values, can we always tell where the first one ends and the second
1633
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1634
- # value will always contain exactly N digits, possibly preceded by a sign. -
1635
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
1636
- # tell where the first one ends. * Compatibility: Which other systems have
1637
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
1638
- # 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")`.
1639
1638
  # Corresponds to the JSON property `inputType`
1640
1639
  # @return [Google::Apis::BigtableadminV2::Type]
1641
1640
  attr_accessor :input_type
@@ -1656,21 +1655,18 @@ module Google
1656
1655
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
1657
1656
  # familiarity and consistency across products and features. For compatibility
1658
1657
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
1659
- # which describes how to convert to/from the underlying data. Each encoding also
1660
- # defines the following properties: * Order-preserving: Does the encoded value
1661
- # sort consistently with the original typed value? Note that Bigtable will
1662
- # always sort data based on the raw encoded value, *not* the decoded type. -
1663
- # Example: BYTES values sort in the same order as their raw encodings. -
1664
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
1665
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
1666
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1667
- # two encoded values, can we always tell where the first one ends and the second
1668
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1669
- # value will always contain exactly N digits, possibly preceded by a sign. -
1670
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
1671
- # tell where the first one ends. * Compatibility: Which other systems have
1672
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
1673
- # 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")`.
1674
1670
  # Corresponds to the JSON property `stateType`
1675
1671
  # @return [Google::Apis::BigtableadminV2::Type]
1676
1672
  attr_accessor :state_type
@@ -1764,21 +1760,18 @@ module Google
1764
1760
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
1765
1761
  # familiarity and consistency across products and features. For compatibility
1766
1762
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
1767
- # which describes how to convert to/from the underlying data. Each encoding also
1768
- # defines the following properties: * Order-preserving: Does the encoded value
1769
- # sort consistently with the original typed value? Note that Bigtable will
1770
- # always sort data based on the raw encoded value, *not* the decoded type. -
1771
- # Example: BYTES values sort in the same order as their raw encodings. -
1772
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
1773
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
1774
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1775
- # two encoded values, can we always tell where the first one ends and the second
1776
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1777
- # value will always contain exactly N digits, possibly preceded by a sign. -
1778
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
1779
- # tell where the first one ends. * Compatibility: Which other systems have
1780
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
1781
- # 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")`.
1782
1775
  # Corresponds to the JSON property `elementType`
1783
1776
  # @return [Google::Apis::BigtableadminV2::Type]
1784
1777
  attr_accessor :element_type
@@ -1810,7 +1803,7 @@ module Google
1810
1803
  class GoogleBigtableAdminV2TypeBytes
1811
1804
  include Google::Apis::Core::Hashable
1812
1805
 
1813
- # Rules used to convert to/from lower level types.
1806
+ # Rules used to convert to or from lower level types.
1814
1807
  # Corresponds to the JSON property `encoding`
1815
1808
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeBytesEncoding]
1816
1809
  attr_accessor :encoding
@@ -1825,12 +1818,12 @@ module Google
1825
1818
  end
1826
1819
  end
1827
1820
 
1828
- # Rules used to convert to/from lower level types.
1821
+ # Rules used to convert to or from lower level types.
1829
1822
  class GoogleBigtableAdminV2TypeBytesEncoding
1830
1823
  include Google::Apis::Core::Hashable
1831
1824
 
1832
- # Leaves the value "as-is" * Order-preserving? Yes * Self-delimiting? No *
1833
- # Compatibility? N/A
1825
+ # Leaves the value as-is. Sorted mode: all values are supported. Distinct mode:
1826
+ # all values are supported.
1834
1827
  # Corresponds to the JSON property `raw`
1835
1828
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeBytesEncodingRaw]
1836
1829
  attr_accessor :raw
@@ -1845,8 +1838,8 @@ module Google
1845
1838
  end
1846
1839
  end
1847
1840
 
1848
- # Leaves the value "as-is" * Order-preserving? Yes * Self-delimiting? No *
1849
- # Compatibility? N/A
1841
+ # Leaves the value as-is. Sorted mode: all values are supported. Distinct mode:
1842
+ # all values are supported.
1850
1843
  class GoogleBigtableAdminV2TypeBytesEncodingRaw
1851
1844
  include Google::Apis::Core::Hashable
1852
1845
 
@@ -1902,7 +1895,7 @@ module Google
1902
1895
  class GoogleBigtableAdminV2TypeInt64
1903
1896
  include Google::Apis::Core::Hashable
1904
1897
 
1905
- # Rules used to convert to/from lower level types.
1898
+ # Rules used to convert to or from lower level types.
1906
1899
  # Corresponds to the JSON property `encoding`
1907
1900
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64Encoding]
1908
1901
  attr_accessor :encoding
@@ -1917,14 +1910,14 @@ module Google
1917
1910
  end
1918
1911
  end
1919
1912
 
1920
- # Rules used to convert to/from lower level types.
1913
+ # Rules used to convert to or from lower level types.
1921
1914
  class GoogleBigtableAdminV2TypeInt64Encoding
1922
1915
  include Google::Apis::Core::Hashable
1923
1916
 
1924
- # Encodes the value as an 8-byte big endian twos complement `Bytes` value. *
1925
- # Order-preserving? No (positive values only) * Self-delimiting? Yes *
1926
- # Compatibility? - BigQuery Federation `BINARY` encoding - HBase `Bytes.toBytes`
1927
- # - 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`
1928
1921
  # Corresponds to the JSON property `bigEndianBytes`
1929
1922
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64EncodingBigEndianBytes]
1930
1923
  attr_accessor :big_endian_bytes
@@ -1939,10 +1932,10 @@ module Google
1939
1932
  end
1940
1933
  end
1941
1934
 
1942
- # Encodes the value as an 8-byte big endian twos complement `Bytes` value. *
1943
- # Order-preserving? No (positive values only) * Self-delimiting? Yes *
1944
- # Compatibility? - BigQuery Federation `BINARY` encoding - HBase `Bytes.toBytes`
1945
- # - 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`
1946
1939
  class GoogleBigtableAdminV2TypeInt64EncodingBigEndianBytes
1947
1940
  include Google::Apis::Core::Hashable
1948
1941
 
@@ -1974,21 +1967,18 @@ module Google
1974
1967
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
1975
1968
  # familiarity and consistency across products and features. For compatibility
1976
1969
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
1977
- # which describes how to convert to/from the underlying data. Each encoding also
1978
- # defines the following properties: * Order-preserving: Does the encoded value
1979
- # sort consistently with the original typed value? Note that Bigtable will
1980
- # always sort data based on the raw encoded value, *not* the decoded type. -
1981
- # Example: BYTES values sort in the same order as their raw encodings. -
1982
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
1983
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
1984
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1985
- # two encoded values, can we always tell where the first one ends and the second
1986
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1987
- # value will always contain exactly N digits, possibly preceded by a sign. -
1988
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
1989
- # tell where the first one ends. * Compatibility: Which other systems have
1990
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
1991
- # 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")`.
1992
1982
  # Corresponds to the JSON property `keyType`
1993
1983
  # @return [Google::Apis::BigtableadminV2::Type]
1994
1984
  attr_accessor :key_type
@@ -1997,21 +1987,18 @@ module Google
1997
1987
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
1998
1988
  # familiarity and consistency across products and features. For compatibility
1999
1989
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
2000
- # which describes how to convert to/from the underlying data. Each encoding also
2001
- # defines the following properties: * Order-preserving: Does the encoded value
2002
- # sort consistently with the original typed value? Note that Bigtable will
2003
- # always sort data based on the raw encoded value, *not* the decoded type. -
2004
- # Example: BYTES values sort in the same order as their raw encodings. -
2005
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
2006
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
2007
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
2008
- # two encoded values, can we always tell where the first one ends and the second
2009
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
2010
- # value will always contain exactly N digits, possibly preceded by a sign. -
2011
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
2012
- # tell where the first one ends. * Compatibility: Which other systems have
2013
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
2014
- # 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")`.
2015
2002
  # Corresponds to the JSON property `valueType`
2016
2003
  # @return [Google::Apis::BigtableadminV2::Type]
2017
2004
  attr_accessor :value_type
@@ -2031,7 +2018,7 @@ module Google
2031
2018
  class GoogleBigtableAdminV2TypeString
2032
2019
  include Google::Apis::Core::Hashable
2033
2020
 
2034
- # Rules used to convert to/from lower level types.
2021
+ # Rules used to convert to or from lower level types.
2035
2022
  # Corresponds to the JSON property `encoding`
2036
2023
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncoding]
2037
2024
  attr_accessor :encoding
@@ -2046,13 +2033,14 @@ module Google
2046
2033
  end
2047
2034
  end
2048
2035
 
2049
- # Rules used to convert to/from lower level types.
2036
+ # Rules used to convert to or from lower level types.
2050
2037
  class GoogleBigtableAdminV2TypeStringEncoding
2051
2038
  include Google::Apis::Core::Hashable
2052
2039
 
2053
- # UTF-8 encoding * Order-preserving? Yes (code point order) * Self-delimiting?
2054
- # No * Compatibility? - BigQuery Federation `TEXT` encoding - HBase `Bytes.
2055
- # 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)`
2056
2044
  # Corresponds to the JSON property `utf8Bytes`
2057
2045
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes]
2058
2046
  attr_accessor :utf8_bytes
@@ -2073,9 +2061,10 @@ module Google
2073
2061
  end
2074
2062
  end
2075
2063
 
2076
- # UTF-8 encoding * Order-preserving? Yes (code point order) * Self-delimiting?
2077
- # No * Compatibility? - BigQuery Federation `TEXT` encoding - HBase `Bytes.
2078
- # 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)`
2079
2068
  class GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes
2080
2069
  include Google::Apis::Core::Hashable
2081
2070
 
@@ -2136,21 +2125,18 @@ module Google
2136
2125
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
2137
2126
  # familiarity and consistency across products and features. For compatibility
2138
2127
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
2139
- # which describes how to convert to/from the underlying data. Each encoding also
2140
- # defines the following properties: * Order-preserving: Does the encoded value
2141
- # sort consistently with the original typed value? Note that Bigtable will
2142
- # always sort data based on the raw encoded value, *not* the decoded type. -
2143
- # Example: BYTES values sort in the same order as their raw encodings. -
2144
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
2145
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
2146
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
2147
- # two encoded values, can we always tell where the first one ends and the second
2148
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
2149
- # value will always contain exactly N digits, possibly preceded by a sign. -
2150
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
2151
- # tell where the first one ends. * Compatibility: Which other systems have
2152
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
2153
- # 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")`.
2154
2140
  # Corresponds to the JSON property `type`
2155
2141
  # @return [Google::Apis::BigtableadminV2::Type]
2156
2142
  attr_accessor :type
@@ -2736,11 +2722,15 @@ module Google
2736
2722
  # @return [Array<String>]
2737
2723
  attr_accessor :cluster_ids
2738
2724
 
2739
- # If enabled, the AFE will route the request based on the row key of the request,
2740
- # rather than randomly. Instead, each row key will be assigned to a cluster,
2741
- # and will stick to that cluster. If clusters are added or removed, then this
2742
- # may affect which row keys stick to which clusters. To avoid this, users can
2743
- # specify a group cluster.
2725
+ # If enabled, Bigtable will route the request based on the row key of the
2726
+ # request, rather than randomly. Instead, each row key will be assigned to a
2727
+ # cluster, and will stick to that cluster. If clusters are added or removed,
2728
+ # then this may affect which row keys stick to which clusters. To avoid this,
2729
+ # users can use a cluster group to specify which clusters are to be used. In
2730
+ # this case, new clusters that are not a part of the cluster group will not be
2731
+ # routed to, and routing will be unaffected by the new cluster. Moreover,
2732
+ # clusters specified in the cluster group cannot be deleted unless removed from
2733
+ # the cluster group.
2744
2734
  # Corresponds to the JSON property `rowAffinity`
2745
2735
  # @return [Google::Apis::BigtableadminV2::RowAffinity]
2746
2736
  attr_accessor :row_affinity
@@ -3162,11 +3152,15 @@ module Google
3162
3152
  end
3163
3153
  end
3164
3154
 
3165
- # If enabled, the AFE will route the request based on the row key of the request,
3166
- # rather than randomly. Instead, each row key will be assigned to a cluster,
3167
- # and will stick to that cluster. If clusters are added or removed, then this
3168
- # may affect which row keys stick to which clusters. To avoid this, users can
3169
- # specify a group cluster.
3155
+ # If enabled, Bigtable will route the request based on the row key of the
3156
+ # request, rather than randomly. Instead, each row key will be assigned to a
3157
+ # cluster, and will stick to that cluster. If clusters are added or removed,
3158
+ # then this may affect which row keys stick to which clusters. To avoid this,
3159
+ # users can use a cluster group to specify which clusters are to be used. In
3160
+ # this case, new clusters that are not a part of the cluster group will not be
3161
+ # routed to, and routing will be unaffected by the new cluster. Moreover,
3162
+ # clusters specified in the cluster group cannot be deleted unless removed from
3163
+ # the cluster group.
3170
3164
  class RowAffinity
3171
3165
  include Google::Apis::Core::Hashable
3172
3166
 
@@ -3569,28 +3563,24 @@ module Google
3569
3563
  # Bigtable. It is heavily based on the GoogleSQL standard to help maintain
3570
3564
  # familiarity and consistency across products and features. For compatibility
3571
3565
  # with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
3572
- # which describes how to convert to/from the underlying data. Each encoding also
3573
- # defines the following properties: * Order-preserving: Does the encoded value
3574
- # sort consistently with the original typed value? Note that Bigtable will
3575
- # always sort data based on the raw encoded value, *not* the decoded type. -
3576
- # Example: BYTES values sort in the same order as their raw encodings. -
3577
- # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
3578
- # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
3579
- # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
3580
- # two encoded values, can we always tell where the first one ends and the second
3581
- # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
3582
- # value will always contain exactly N digits, possibly preceded by a sign. -
3583
- # Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
3584
- # tell where the first one ends. * Compatibility: Which other systems have
3585
- # matching encoding schemes? For example, does this encoding have a GoogleSQL
3586
- # 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")`.
3587
3578
  class Type
3588
3579
  include Google::Apis::Core::Hashable
3589
3580
 
3590
3581
  # A value that combines incremental updates into a summarized value. Data is
3591
- # never directly written or read using type `Aggregate`. Writes will provide
3592
- # either the `input_type` or `state_type`, and reads will always return the `
3593
- # 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` .
3594
3584
  # Corresponds to the JSON property `aggregateType`
3595
3585
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregate]
3596
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.62.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 = "20240904"
25
+ REVISION = "20241008"
26
26
  end
27
27
  end
28
28
  end
@@ -856,6 +856,7 @@ module Google
856
856
 
857
857
  property :location, as: 'location'
858
858
  property :name, as: 'name'
859
+ property :node_scaling_factor, as: 'nodeScalingFactor'
859
860
  property :serve_nodes, as: 'serveNodes'
860
861
  property :state, as: 'state'
861
862
  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.62.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-15 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.62.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