google-apis-bigtableadmin_v2 0.57.0 → 0.59.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9dae557d01a00c4b6572f9dc26dc879506eb29081f2063d8611c08680b3d8f82
|
4
|
+
data.tar.gz: fb0feaf650a94b0cc695302276d67c915e277be32b8cf224c1ba6314dbac2960
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 810a6d2860281ddb54096dfa4c91d3d8ec4509c05634688fc200df130912f26e928cc849ad8226a77f62d22a444c65f78e68f544d6b5f1456bcf35cc327e9be3
|
7
|
+
data.tar.gz: d5fc805e5b288866899d7890ca9f0f8506c7151d96c84f2b4869a815d7b08b33c1016ecef50d40143d7231012390639c198ae668a29dd785f3f78ff9263edc7d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-bigtableadmin_v2
|
2
2
|
|
3
|
+
### v0.59.0 (2024-08-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240720
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.58.0 (2024-07-25)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240703
|
11
|
+
|
3
12
|
### v0.57.0 (2024-06-16)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240604
|
@@ -764,26 +764,21 @@ module Google
|
|
764
764
|
# Bigtable. It is heavily based on the GoogleSQL standard to help maintain
|
765
765
|
# familiarity and consistency across products and features. For compatibility
|
766
766
|
# with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
|
767
|
-
# which describes how to convert to/from the underlying data.
|
768
|
-
#
|
769
|
-
#
|
770
|
-
#
|
771
|
-
#
|
772
|
-
#
|
773
|
-
#
|
774
|
-
#
|
775
|
-
# their raw encodings. - Counterexample: Encoding INT64 to a fixed-width STRING
|
776
|
-
# does *not* preserve sort order when dealing with negative numbers. INT64(1) >
|
777
|
-
# INT64(-1), but STRING("-00001") > STRING("00001). - The overall encoding chain
|
778
|
-
# has this property if *every* link does. * Self-delimiting: If we concatenate
|
767
|
+
# which describes how to convert to/from the underlying data. Each encoding also
|
768
|
+
# defines the following properties: * Order-preserving: Does the encoded value
|
769
|
+
# sort consistently with the original typed value? Note that Bigtable will
|
770
|
+
# always sort data based on the raw encoded value, *not* the decoded type. -
|
771
|
+
# Example: BYTES values sort in the same order as their raw encodings. -
|
772
|
+
# Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
|
773
|
+
# preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
|
774
|
+
# but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
|
779
775
|
# two encoded values, can we always tell where the first one ends and the second
|
780
776
|
# one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
|
781
777
|
# value will always contain exactly N digits, possibly preceded by a sign. -
|
782
778
|
# Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
|
783
|
-
# tell where the first one ends.
|
784
|
-
#
|
785
|
-
#
|
786
|
-
# HBase? Java?
|
779
|
+
# tell where the first one ends. * Compatibility: Which other systems have
|
780
|
+
# matching encoding schemes? For example, does this encoding have a GoogleSQL
|
781
|
+
# equivalent? HBase? Java?
|
787
782
|
# Corresponds to the JSON property `valueType`
|
788
783
|
# @return [Google::Apis::BigtableadminV2::Type]
|
789
784
|
attr_accessor :value_type
|
@@ -1596,58 +1591,69 @@ module Google
|
|
1596
1591
|
class GoogleBigtableAdminV2TypeAggregate
|
1597
1592
|
include Google::Apis::Core::Hashable
|
1598
1593
|
|
1594
|
+
# Computes an approximate unique count over the input values. When using raw
|
1595
|
+
# data as input, be careful to use a consistent encoding. Otherwise the same
|
1596
|
+
# value encoded differently could count more than once, or two distinct values
|
1597
|
+
# could count as identical. Input: Any, or omit for Raw State: TBD Special state
|
1598
|
+
# conversions: `Int64` (the unique count estimate)
|
1599
|
+
# Corresponds to the JSON property `hllppUniqueCount`
|
1600
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregateHyperLogLogPlusPlusUniqueCount]
|
1601
|
+
attr_accessor :hllpp_unique_count
|
1602
|
+
|
1599
1603
|
# `Type` represents the type of data that is written to, read from, or stored in
|
1600
1604
|
# Bigtable. It is heavily based on the GoogleSQL standard to help maintain
|
1601
1605
|
# familiarity and consistency across products and features. For compatibility
|
1602
1606
|
# with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
|
1603
|
-
# which describes how to convert to/from the underlying data.
|
1604
|
-
#
|
1605
|
-
#
|
1606
|
-
#
|
1607
|
-
#
|
1608
|
-
#
|
1609
|
-
#
|
1610
|
-
#
|
1611
|
-
# their raw encodings. - Counterexample: Encoding INT64 to a fixed-width STRING
|
1612
|
-
# does *not* preserve sort order when dealing with negative numbers. INT64(1) >
|
1613
|
-
# INT64(-1), but STRING("-00001") > STRING("00001). - The overall encoding chain
|
1614
|
-
# has this property if *every* link does. * Self-delimiting: If we concatenate
|
1607
|
+
# which describes how to convert to/from the underlying data. Each encoding also
|
1608
|
+
# defines the following properties: * Order-preserving: Does the encoded value
|
1609
|
+
# sort consistently with the original typed value? Note that Bigtable will
|
1610
|
+
# always sort data based on the raw encoded value, *not* the decoded type. -
|
1611
|
+
# Example: BYTES values sort in the same order as their raw encodings. -
|
1612
|
+
# Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
|
1613
|
+
# preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
|
1614
|
+
# but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
|
1615
1615
|
# two encoded values, can we always tell where the first one ends and the second
|
1616
1616
|
# one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
|
1617
1617
|
# value will always contain exactly N digits, possibly preceded by a sign. -
|
1618
1618
|
# Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
|
1619
|
-
# tell where the first one ends.
|
1620
|
-
#
|
1621
|
-
#
|
1622
|
-
# HBase? Java?
|
1619
|
+
# tell where the first one ends. * Compatibility: Which other systems have
|
1620
|
+
# matching encoding schemes? For example, does this encoding have a GoogleSQL
|
1621
|
+
# equivalent? HBase? Java?
|
1623
1622
|
# Corresponds to the JSON property `inputType`
|
1624
1623
|
# @return [Google::Apis::BigtableadminV2::Type]
|
1625
1624
|
attr_accessor :input_type
|
1626
1625
|
|
1626
|
+
# Computes the max of the input values. Allowed input: `Int64` State: same as
|
1627
|
+
# input
|
1628
|
+
# Corresponds to the JSON property `max`
|
1629
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregateMax]
|
1630
|
+
attr_accessor :max
|
1631
|
+
|
1632
|
+
# Computes the min of the input values. Allowed input: `Int64` State: same as
|
1633
|
+
# input
|
1634
|
+
# Corresponds to the JSON property `min`
|
1635
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregateMin]
|
1636
|
+
attr_accessor :min
|
1637
|
+
|
1627
1638
|
# `Type` represents the type of data that is written to, read from, or stored in
|
1628
1639
|
# Bigtable. It is heavily based on the GoogleSQL standard to help maintain
|
1629
1640
|
# familiarity and consistency across products and features. For compatibility
|
1630
1641
|
# with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
|
1631
|
-
# which describes how to convert to/from the underlying data.
|
1632
|
-
#
|
1633
|
-
#
|
1634
|
-
#
|
1635
|
-
#
|
1636
|
-
#
|
1637
|
-
#
|
1638
|
-
#
|
1639
|
-
# their raw encodings. - Counterexample: Encoding INT64 to a fixed-width STRING
|
1640
|
-
# does *not* preserve sort order when dealing with negative numbers. INT64(1) >
|
1641
|
-
# INT64(-1), but STRING("-00001") > STRING("00001). - The overall encoding chain
|
1642
|
-
# has this property if *every* link does. * Self-delimiting: If we concatenate
|
1642
|
+
# which describes how to convert to/from the underlying data. Each encoding also
|
1643
|
+
# defines the following properties: * Order-preserving: Does the encoded value
|
1644
|
+
# sort consistently with the original typed value? Note that Bigtable will
|
1645
|
+
# always sort data based on the raw encoded value, *not* the decoded type. -
|
1646
|
+
# Example: BYTES values sort in the same order as their raw encodings. -
|
1647
|
+
# Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
|
1648
|
+
# preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
|
1649
|
+
# but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
|
1643
1650
|
# two encoded values, can we always tell where the first one ends and the second
|
1644
1651
|
# one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
|
1645
1652
|
# value will always contain exactly N digits, possibly preceded by a sign. -
|
1646
1653
|
# Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
|
1647
|
-
# tell where the first one ends.
|
1648
|
-
#
|
1649
|
-
#
|
1650
|
-
# HBase? Java?
|
1654
|
+
# tell where the first one ends. * Compatibility: Which other systems have
|
1655
|
+
# matching encoding schemes? For example, does this encoding have a GoogleSQL
|
1656
|
+
# equivalent? HBase? Java?
|
1651
1657
|
# Corresponds to the JSON property `stateType`
|
1652
1658
|
# @return [Google::Apis::BigtableadminV2::Type]
|
1653
1659
|
attr_accessor :state_type
|
@@ -1664,12 +1670,60 @@ module Google
|
|
1664
1670
|
|
1665
1671
|
# Update properties of this object
|
1666
1672
|
def update!(**args)
|
1673
|
+
@hllpp_unique_count = args[:hllpp_unique_count] if args.key?(:hllpp_unique_count)
|
1667
1674
|
@input_type = args[:input_type] if args.key?(:input_type)
|
1675
|
+
@max = args[:max] if args.key?(:max)
|
1676
|
+
@min = args[:min] if args.key?(:min)
|
1668
1677
|
@state_type = args[:state_type] if args.key?(:state_type)
|
1669
1678
|
@sum = args[:sum] if args.key?(:sum)
|
1670
1679
|
end
|
1671
1680
|
end
|
1672
1681
|
|
1682
|
+
# Computes an approximate unique count over the input values. When using raw
|
1683
|
+
# data as input, be careful to use a consistent encoding. Otherwise the same
|
1684
|
+
# value encoded differently could count more than once, or two distinct values
|
1685
|
+
# could count as identical. Input: Any, or omit for Raw State: TBD Special state
|
1686
|
+
# conversions: `Int64` (the unique count estimate)
|
1687
|
+
class GoogleBigtableAdminV2TypeAggregateHyperLogLogPlusPlusUniqueCount
|
1688
|
+
include Google::Apis::Core::Hashable
|
1689
|
+
|
1690
|
+
def initialize(**args)
|
1691
|
+
update!(**args)
|
1692
|
+
end
|
1693
|
+
|
1694
|
+
# Update properties of this object
|
1695
|
+
def update!(**args)
|
1696
|
+
end
|
1697
|
+
end
|
1698
|
+
|
1699
|
+
# Computes the max of the input values. Allowed input: `Int64` State: same as
|
1700
|
+
# input
|
1701
|
+
class GoogleBigtableAdminV2TypeAggregateMax
|
1702
|
+
include Google::Apis::Core::Hashable
|
1703
|
+
|
1704
|
+
def initialize(**args)
|
1705
|
+
update!(**args)
|
1706
|
+
end
|
1707
|
+
|
1708
|
+
# Update properties of this object
|
1709
|
+
def update!(**args)
|
1710
|
+
end
|
1711
|
+
end
|
1712
|
+
|
1713
|
+
# Computes the min of the input values. Allowed input: `Int64` State: same as
|
1714
|
+
# input
|
1715
|
+
class GoogleBigtableAdminV2TypeAggregateMin
|
1716
|
+
include Google::Apis::Core::Hashable
|
1717
|
+
|
1718
|
+
def initialize(**args)
|
1719
|
+
update!(**args)
|
1720
|
+
end
|
1721
|
+
|
1722
|
+
# Update properties of this object
|
1723
|
+
def update!(**args)
|
1724
|
+
end
|
1725
|
+
end
|
1726
|
+
|
1673
1727
|
# Computes the sum of the input values. Allowed input: `Int64` State: same as
|
1674
1728
|
# input
|
1675
1729
|
class GoogleBigtableAdminV2TypeAggregateSum
|
@@ -1684,6 +1738,57 @@ module Google
|
|
1684
1738
|
end
|
1685
1739
|
end
|
1686
1740
|
|
1741
|
+
# An ordered list of elements of a given type. Values of type `Array` are stored
|
1742
|
+
# in `Value.array_value`.
|
1743
|
+
class GoogleBigtableAdminV2TypeArray
|
1744
|
+
include Google::Apis::Core::Hashable
|
1745
|
+
|
1746
|
+
# `Type` represents the type of data that is written to, read from, or stored in
|
1747
|
+
# Bigtable. It is heavily based on the GoogleSQL standard to help maintain
|
1748
|
+
# familiarity and consistency across products and features. For compatibility
|
1749
|
+
# with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
|
1750
|
+
# which describes how to convert to/from the underlying data. Each encoding also
|
1751
|
+
# defines the following properties: * Order-preserving: Does the encoded value
|
1752
|
+
# sort consistently with the original typed value? Note that Bigtable will
|
1753
|
+
# always sort data based on the raw encoded value, *not* the decoded type. -
|
1754
|
+
# Example: BYTES values sort in the same order as their raw encodings. -
|
1755
|
+
# Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
|
1756
|
+
# preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
|
1757
|
+
# but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
|
1758
|
+
# two encoded values, can we always tell where the first one ends and the second
|
1759
|
+
# one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
|
1760
|
+
# value will always contain exactly N digits, possibly preceded by a sign. -
|
1761
|
+
# Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
|
1762
|
+
# tell where the first one ends. * Compatibility: Which other systems have
|
1763
|
+
# matching encoding schemes? For example, does this encoding have a GoogleSQL
|
1764
|
+
# equivalent? HBase? Java?
|
1765
|
+
# Corresponds to the JSON property `elementType`
|
1766
|
+
# @return [Google::Apis::BigtableadminV2::Type]
|
1767
|
+
attr_accessor :element_type
|
1768
|
+
|
1769
|
+
def initialize(**args)
|
1770
|
+
update!(**args)
|
1771
|
+
end
|
1772
|
+
|
1773
|
+
# Update properties of this object
|
1774
|
+
def update!(**args)
|
1775
|
+
@element_type = args[:element_type] if args.key?(:element_type)
|
1776
|
+
end
|
1777
|
+
end
|
1778
|
+
|
1779
|
+
# bool Values of type `Bool` are stored in `Value.bool_value`.
|
1780
|
+
class GoogleBigtableAdminV2TypeBool
|
1781
|
+
include Google::Apis::Core::Hashable
|
1782
|
+
|
1783
|
+
def initialize(**args)
|
1784
|
+
update!(**args)
|
1785
|
+
end
|
1786
|
+
|
1787
|
+
# Update properties of this object
|
1788
|
+
def update!(**args)
|
1789
|
+
end
|
1790
|
+
end
|
1791
|
+
|
1687
1792
|
# Bytes Values of type `Bytes` are stored in `Value.bytes_value`.
|
1688
1793
|
class GoogleBigtableAdminV2TypeBytes
|
1689
1794
|
include Google::Apis::Core::Hashable
|
@@ -1707,7 +1812,7 @@ module Google
|
|
1707
1812
|
class GoogleBigtableAdminV2TypeBytesEncoding
|
1708
1813
|
include Google::Apis::Core::Hashable
|
1709
1814
|
|
1710
|
-
# Leaves the value "as-is" *
|
1815
|
+
# Leaves the value "as-is" * Order-preserving? Yes * Self-delimiting? No *
|
1711
1816
|
# Compatibility? N/A
|
1712
1817
|
# Corresponds to the JSON property `raw`
|
1713
1818
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeBytesEncodingRaw]
|
@@ -1723,7 +1828,7 @@ module Google
|
|
1723
1828
|
end
|
1724
1829
|
end
|
1725
1830
|
|
1726
|
-
# Leaves the value "as-is" *
|
1831
|
+
# Leaves the value "as-is" * Order-preserving? Yes * Self-delimiting? No *
|
1727
1832
|
# Compatibility? N/A
|
1728
1833
|
class GoogleBigtableAdminV2TypeBytesEncodingRaw
|
1729
1834
|
include Google::Apis::Core::Hashable
|
@@ -1737,6 +1842,45 @@ module Google
|
|
1737
1842
|
end
|
1738
1843
|
end
|
1739
1844
|
|
1845
|
+
# Date Values of type `Date` are stored in `Value.date_value`.
|
1846
|
+
class GoogleBigtableAdminV2TypeDate
|
1847
|
+
include Google::Apis::Core::Hashable
|
1848
|
+
|
1849
|
+
def initialize(**args)
|
1850
|
+
update!(**args)
|
1851
|
+
end
|
1852
|
+
|
1853
|
+
# Update properties of this object
|
1854
|
+
def update!(**args)
|
1855
|
+
end
|
1856
|
+
end
|
1857
|
+
|
1858
|
+
# Float32 Values of type `Float32` are stored in `Value.float_value`.
|
1859
|
+
class GoogleBigtableAdminV2TypeFloat32
|
1860
|
+
include Google::Apis::Core::Hashable
|
1861
|
+
|
1862
|
+
def initialize(**args)
|
1863
|
+
update!(**args)
|
1864
|
+
end
|
1865
|
+
|
1866
|
+
# Update properties of this object
|
1867
|
+
def update!(**args)
|
1868
|
+
end
|
1869
|
+
end
|
1870
|
+
|
1871
|
+
# Float64 Values of type `Float64` are stored in `Value.float_value`.
|
1872
|
+
class GoogleBigtableAdminV2TypeFloat64
|
1873
|
+
include Google::Apis::Core::Hashable
|
1874
|
+
|
1875
|
+
def initialize(**args)
|
1876
|
+
update!(**args)
|
1877
|
+
end
|
1878
|
+
|
1879
|
+
# Update properties of this object
|
1880
|
+
def update!(**args)
|
1881
|
+
end
|
1882
|
+
end
|
1883
|
+
|
1740
1884
|
# Int64 Values of type `Int64` are stored in `Value.int_value`.
|
1741
1885
|
class GoogleBigtableAdminV2TypeInt64
|
1742
1886
|
include Google::Apis::Core::Hashable
|
@@ -1761,9 +1905,9 @@ module Google
|
|
1761
1905
|
include Google::Apis::Core::Hashable
|
1762
1906
|
|
1763
1907
|
# Encodes the value as an 8-byte big endian twos complement `Bytes` value. *
|
1764
|
-
#
|
1765
|
-
# - BigQuery Federation `BINARY` encoding - HBase `Bytes.toBytes`
|
1766
|
-
# ByteBuffer.putLong()` with `ByteOrder.BIG_ENDIAN`
|
1908
|
+
# Order-preserving? No (positive values only) * Self-delimiting? Yes *
|
1909
|
+
# Compatibility? - BigQuery Federation `BINARY` encoding - HBase `Bytes.toBytes`
|
1910
|
+
# - Java `ByteBuffer.putLong()` with `ByteOrder.BIG_ENDIAN`
|
1767
1911
|
# Corresponds to the JSON property `bigEndianBytes`
|
1768
1912
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64EncodingBigEndianBytes]
|
1769
1913
|
attr_accessor :big_endian_bytes
|
@@ -1779,9 +1923,9 @@ module Google
|
|
1779
1923
|
end
|
1780
1924
|
|
1781
1925
|
# Encodes the value as an 8-byte big endian twos complement `Bytes` value. *
|
1782
|
-
#
|
1783
|
-
# - BigQuery Federation `BINARY` encoding - HBase `Bytes.toBytes`
|
1784
|
-
# ByteBuffer.putLong()` with `ByteOrder.BIG_ENDIAN`
|
1926
|
+
# Order-preserving? No (positive values only) * Self-delimiting? Yes *
|
1927
|
+
# Compatibility? - BigQuery Federation `BINARY` encoding - HBase `Bytes.toBytes`
|
1928
|
+
# - Java `ByteBuffer.putLong()` with `ByteOrder.BIG_ENDIAN`
|
1785
1929
|
class GoogleBigtableAdminV2TypeInt64EncodingBigEndianBytes
|
1786
1930
|
include Google::Apis::Core::Hashable
|
1787
1931
|
|
@@ -1800,6 +1944,224 @@ module Google
|
|
1800
1944
|
end
|
1801
1945
|
end
|
1802
1946
|
|
1947
|
+
# A mapping of keys to values of a given type. Values of type `Map` are stored
|
1948
|
+
# in a `Value.array_value` where each entry is another `Value.array_value` with
|
1949
|
+
# two elements (the key and the value, in that order). Normally encoded Map
|
1950
|
+
# values won't have repeated keys, however, clients are expected to handle the
|
1951
|
+
# case in which they do. If the same key appears multiple times, the _last_
|
1952
|
+
# value takes precedence.
|
1953
|
+
class GoogleBigtableAdminV2TypeMap
|
1954
|
+
include Google::Apis::Core::Hashable
|
1955
|
+
|
1956
|
+
# `Type` represents the type of data that is written to, read from, or stored in
|
1957
|
+
# Bigtable. It is heavily based on the GoogleSQL standard to help maintain
|
1958
|
+
# familiarity and consistency across products and features. For compatibility
|
1959
|
+
# with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
|
1960
|
+
# which describes how to convert to/from the underlying data. Each encoding also
|
1961
|
+
# defines the following properties: * Order-preserving: Does the encoded value
|
1962
|
+
# sort consistently with the original typed value? Note that Bigtable will
|
1963
|
+
# always sort data based on the raw encoded value, *not* the decoded type. -
|
1964
|
+
# Example: BYTES values sort in the same order as their raw encodings. -
|
1965
|
+
# Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
|
1966
|
+
# preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
|
1967
|
+
# but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
|
1968
|
+
# two encoded values, can we always tell where the first one ends and the second
|
1969
|
+
# one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
|
1970
|
+
# value will always contain exactly N digits, possibly preceded by a sign. -
|
1971
|
+
# Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
|
1972
|
+
# tell where the first one ends. * Compatibility: Which other systems have
|
1973
|
+
# matching encoding schemes? For example, does this encoding have a GoogleSQL
|
1974
|
+
# equivalent? HBase? Java?
|
1975
|
+
# Corresponds to the JSON property `keyType`
|
1976
|
+
# @return [Google::Apis::BigtableadminV2::Type]
|
1977
|
+
attr_accessor :key_type
|
1978
|
+
|
1979
|
+
# `Type` represents the type of data that is written to, read from, or stored in
|
1980
|
+
# Bigtable. It is heavily based on the GoogleSQL standard to help maintain
|
1981
|
+
# familiarity and consistency across products and features. For compatibility
|
1982
|
+
# 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?
|
1998
|
+
# Corresponds to the JSON property `valueType`
|
1999
|
+
# @return [Google::Apis::BigtableadminV2::Type]
|
2000
|
+
attr_accessor :value_type
|
2001
|
+
|
2002
|
+
def initialize(**args)
|
2003
|
+
update!(**args)
|
2004
|
+
end
|
2005
|
+
|
2006
|
+
# Update properties of this object
|
2007
|
+
def update!(**args)
|
2008
|
+
@key_type = args[:key_type] if args.key?(:key_type)
|
2009
|
+
@value_type = args[:value_type] if args.key?(:value_type)
|
2010
|
+
end
|
2011
|
+
end
|
2012
|
+
|
2013
|
+
# String Values of type `String` are stored in `Value.string_value`.
|
2014
|
+
class GoogleBigtableAdminV2TypeString
|
2015
|
+
include Google::Apis::Core::Hashable
|
2016
|
+
|
2017
|
+
# Rules used to convert to/from lower level types.
|
2018
|
+
# Corresponds to the JSON property `encoding`
|
2019
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncoding]
|
2020
|
+
attr_accessor :encoding
|
2021
|
+
|
2022
|
+
def initialize(**args)
|
2023
|
+
update!(**args)
|
2024
|
+
end
|
2025
|
+
|
2026
|
+
# Update properties of this object
|
2027
|
+
def update!(**args)
|
2028
|
+
@encoding = args[:encoding] if args.key?(:encoding)
|
2029
|
+
end
|
2030
|
+
end
|
2031
|
+
|
2032
|
+
# Rules used to convert to/from lower level types.
|
2033
|
+
class GoogleBigtableAdminV2TypeStringEncoding
|
2034
|
+
include Google::Apis::Core::Hashable
|
2035
|
+
|
2036
|
+
# UTF-8 encoding * Order-preserving? Yes (code point order) * Self-delimiting?
|
2037
|
+
# No * Compatibility? - BigQuery Federation `TEXT` encoding - HBase `Bytes.
|
2038
|
+
# toBytes` - Java `String#getBytes(StandardCharsets.UTF_8)`
|
2039
|
+
# Corresponds to the JSON property `utf8Bytes`
|
2040
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes]
|
2041
|
+
attr_accessor :utf8_bytes
|
2042
|
+
|
2043
|
+
# Deprecated: prefer the equivalent `Utf8Bytes`.
|
2044
|
+
# Corresponds to the JSON property `utf8Raw`
|
2045
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Raw]
|
2046
|
+
attr_accessor :utf8_raw
|
2047
|
+
|
2048
|
+
def initialize(**args)
|
2049
|
+
update!(**args)
|
2050
|
+
end
|
2051
|
+
|
2052
|
+
# Update properties of this object
|
2053
|
+
def update!(**args)
|
2054
|
+
@utf8_bytes = args[:utf8_bytes] if args.key?(:utf8_bytes)
|
2055
|
+
@utf8_raw = args[:utf8_raw] if args.key?(:utf8_raw)
|
2056
|
+
end
|
2057
|
+
end
|
2058
|
+
|
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)`
|
2062
|
+
class GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes
|
2063
|
+
include Google::Apis::Core::Hashable
|
2064
|
+
|
2065
|
+
def initialize(**args)
|
2066
|
+
update!(**args)
|
2067
|
+
end
|
2068
|
+
|
2069
|
+
# Update properties of this object
|
2070
|
+
def update!(**args)
|
2071
|
+
end
|
2072
|
+
end
|
2073
|
+
|
2074
|
+
# Deprecated: prefer the equivalent `Utf8Bytes`.
|
2075
|
+
class GoogleBigtableAdminV2TypeStringEncodingUtf8Raw
|
2076
|
+
include Google::Apis::Core::Hashable
|
2077
|
+
|
2078
|
+
def initialize(**args)
|
2079
|
+
update!(**args)
|
2080
|
+
end
|
2081
|
+
|
2082
|
+
# Update properties of this object
|
2083
|
+
def update!(**args)
|
2084
|
+
end
|
2085
|
+
end
|
2086
|
+
|
2087
|
+
# A structured data value, consisting of fields which map to dynamically typed
|
2088
|
+
# values. Values of type `Struct` are stored in `Value.array_value` where
|
2089
|
+
# entries are in the same order and number as `field_types`.
|
2090
|
+
class GoogleBigtableAdminV2TypeStruct
|
2091
|
+
include Google::Apis::Core::Hashable
|
2092
|
+
|
2093
|
+
# The names and types of the fields in this struct.
|
2094
|
+
# Corresponds to the JSON property `fields`
|
2095
|
+
# @return [Array<Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructField>]
|
2096
|
+
attr_accessor :fields
|
2097
|
+
|
2098
|
+
def initialize(**args)
|
2099
|
+
update!(**args)
|
2100
|
+
end
|
2101
|
+
|
2102
|
+
# Update properties of this object
|
2103
|
+
def update!(**args)
|
2104
|
+
@fields = args[:fields] if args.key?(:fields)
|
2105
|
+
end
|
2106
|
+
end
|
2107
|
+
|
2108
|
+
# A struct field and its type.
|
2109
|
+
class GoogleBigtableAdminV2TypeStructField
|
2110
|
+
include Google::Apis::Core::Hashable
|
2111
|
+
|
2112
|
+
# The field name (optional). Fields without a `field_name` are considered
|
2113
|
+
# anonymous and cannot be referenced by name.
|
2114
|
+
# Corresponds to the JSON property `fieldName`
|
2115
|
+
# @return [String]
|
2116
|
+
attr_accessor :field_name
|
2117
|
+
|
2118
|
+
# `Type` represents the type of data that is written to, read from, or stored in
|
2119
|
+
# Bigtable. It is heavily based on the GoogleSQL standard to help maintain
|
2120
|
+
# familiarity and consistency across products and features. For compatibility
|
2121
|
+
# with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
|
2122
|
+
# which describes how to convert to/from the underlying data. Each encoding also
|
2123
|
+
# defines the following properties: * Order-preserving: Does the encoded value
|
2124
|
+
# sort consistently with the original typed value? Note that Bigtable will
|
2125
|
+
# always sort data based on the raw encoded value, *not* the decoded type. -
|
2126
|
+
# Example: BYTES values sort in the same order as their raw encodings. -
|
2127
|
+
# Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
|
2128
|
+
# preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
|
2129
|
+
# but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
|
2130
|
+
# two encoded values, can we always tell where the first one ends and the second
|
2131
|
+
# one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
|
2132
|
+
# value will always contain exactly N digits, possibly preceded by a sign. -
|
2133
|
+
# Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
|
2134
|
+
# tell where the first one ends. * Compatibility: Which other systems have
|
2135
|
+
# matching encoding schemes? For example, does this encoding have a GoogleSQL
|
2136
|
+
# equivalent? HBase? Java?
|
2137
|
+
# Corresponds to the JSON property `type`
|
2138
|
+
# @return [Google::Apis::BigtableadminV2::Type]
|
2139
|
+
attr_accessor :type
|
2140
|
+
|
2141
|
+
def initialize(**args)
|
2142
|
+
update!(**args)
|
2143
|
+
end
|
2144
|
+
|
2145
|
+
# Update properties of this object
|
2146
|
+
def update!(**args)
|
2147
|
+
@field_name = args[:field_name] if args.key?(:field_name)
|
2148
|
+
@type = args[:type] if args.key?(:type)
|
2149
|
+
end
|
2150
|
+
end
|
2151
|
+
|
2152
|
+
# Timestamp Values of type `Timestamp` are stored in `Value.timestamp_value`.
|
2153
|
+
class GoogleBigtableAdminV2TypeTimestamp
|
2154
|
+
include Google::Apis::Core::Hashable
|
2155
|
+
|
2156
|
+
def initialize(**args)
|
2157
|
+
update!(**args)
|
2158
|
+
end
|
2159
|
+
|
2160
|
+
# Update properties of this object
|
2161
|
+
def update!(**args)
|
2162
|
+
end
|
2163
|
+
end
|
2164
|
+
|
1803
2165
|
# A tablet is a defined by a start and end key and is explained in https://cloud.
|
1804
2166
|
# google.com/bigtable/docs/overview#architecture and https://cloud.google.com/
|
1805
2167
|
# bigtable/docs/performance#optimization. A Hot tablet is a tablet that exhibits
|
@@ -3163,26 +3525,21 @@ module Google
|
|
3163
3525
|
# Bigtable. It is heavily based on the GoogleSQL standard to help maintain
|
3164
3526
|
# familiarity and consistency across products and features. For compatibility
|
3165
3527
|
# with Bigtable's existing untyped APIs, each `Type` includes an `Encoding`
|
3166
|
-
# which describes how to convert to/from the underlying data.
|
3167
|
-
#
|
3168
|
-
#
|
3169
|
-
#
|
3170
|
-
#
|
3171
|
-
#
|
3172
|
-
#
|
3173
|
-
#
|
3174
|
-
# their raw encodings. - Counterexample: Encoding INT64 to a fixed-width STRING
|
3175
|
-
# does *not* preserve sort order when dealing with negative numbers. INT64(1) >
|
3176
|
-
# INT64(-1), but STRING("-00001") > STRING("00001). - The overall encoding chain
|
3177
|
-
# has this property if *every* link does. * Self-delimiting: If we concatenate
|
3528
|
+
# which describes how to convert to/from the underlying data. Each encoding also
|
3529
|
+
# defines the following properties: * Order-preserving: Does the encoded value
|
3530
|
+
# sort consistently with the original typed value? Note that Bigtable will
|
3531
|
+
# always sort data based on the raw encoded value, *not* the decoded type. -
|
3532
|
+
# Example: BYTES values sort in the same order as their raw encodings. -
|
3533
|
+
# Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
|
3534
|
+
# preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
|
3535
|
+
# but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
|
3178
3536
|
# two encoded values, can we always tell where the first one ends and the second
|
3179
3537
|
# one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
|
3180
3538
|
# value will always contain exactly N digits, possibly preceded by a sign. -
|
3181
3539
|
# Counterexample: If we concatenate two UTF-8 encoded STRINGs, we have no way to
|
3182
|
-
# tell where the first one ends.
|
3183
|
-
#
|
3184
|
-
#
|
3185
|
-
# HBase? Java?
|
3540
|
+
# tell where the first one ends. * Compatibility: Which other systems have
|
3541
|
+
# matching encoding schemes? For example, does this encoding have a GoogleSQL
|
3542
|
+
# equivalent? HBase? Java?
|
3186
3543
|
class Type
|
3187
3544
|
include Google::Apis::Core::Hashable
|
3188
3545
|
|
@@ -3194,16 +3551,69 @@ module Google
|
|
3194
3551
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregate]
|
3195
3552
|
attr_accessor :aggregate_type
|
3196
3553
|
|
3554
|
+
# An ordered list of elements of a given type. Values of type `Array` are stored
|
3555
|
+
# in `Value.array_value`.
|
3556
|
+
# Corresponds to the JSON property `arrayType`
|
3557
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeArray]
|
3558
|
+
attr_accessor :array_type
|
3559
|
+
|
3560
|
+
# bool Values of type `Bool` are stored in `Value.bool_value`.
|
3561
|
+
# Corresponds to the JSON property `boolType`
|
3562
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeBool]
|
3563
|
+
attr_accessor :bool_type
|
3564
|
+
|
3197
3565
|
# Bytes Values of type `Bytes` are stored in `Value.bytes_value`.
|
3198
3566
|
# Corresponds to the JSON property `bytesType`
|
3199
3567
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeBytes]
|
3200
3568
|
attr_accessor :bytes_type
|
3201
3569
|
|
3570
|
+
# Date Values of type `Date` are stored in `Value.date_value`.
|
3571
|
+
# Corresponds to the JSON property `dateType`
|
3572
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeDate]
|
3573
|
+
attr_accessor :date_type
|
3574
|
+
|
3575
|
+
# Float32 Values of type `Float32` are stored in `Value.float_value`.
|
3576
|
+
# Corresponds to the JSON property `float32Type`
|
3577
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat32]
|
3578
|
+
attr_accessor :float32_type
|
3579
|
+
|
3580
|
+
# Float64 Values of type `Float64` are stored in `Value.float_value`.
|
3581
|
+
# Corresponds to the JSON property `float64Type`
|
3582
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat64]
|
3583
|
+
attr_accessor :float64_type
|
3584
|
+
|
3202
3585
|
# Int64 Values of type `Int64` are stored in `Value.int_value`.
|
3203
3586
|
# Corresponds to the JSON property `int64Type`
|
3204
3587
|
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64]
|
3205
3588
|
attr_accessor :int64_type
|
3206
3589
|
|
3590
|
+
# A mapping of keys to values of a given type. Values of type `Map` are stored
|
3591
|
+
# in a `Value.array_value` where each entry is another `Value.array_value` with
|
3592
|
+
# two elements (the key and the value, in that order). Normally encoded Map
|
3593
|
+
# values won't have repeated keys, however, clients are expected to handle the
|
3594
|
+
# case in which they do. If the same key appears multiple times, the _last_
|
3595
|
+
# value takes precedence.
|
3596
|
+
# Corresponds to the JSON property `mapType`
|
3597
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeMap]
|
3598
|
+
attr_accessor :map_type
|
3599
|
+
|
3600
|
+
# String Values of type `String` are stored in `Value.string_value`.
|
3601
|
+
# Corresponds to the JSON property `stringType`
|
3602
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeString]
|
3603
|
+
attr_accessor :string_type
|
3604
|
+
|
3605
|
+
# A structured data value, consisting of fields which map to dynamically typed
|
3606
|
+
# values. Values of type `Struct` are stored in `Value.array_value` where
|
3607
|
+
# entries are in the same order and number as `field_types`.
|
3608
|
+
# Corresponds to the JSON property `structType`
|
3609
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStruct]
|
3610
|
+
attr_accessor :struct_type
|
3611
|
+
|
3612
|
+
# Timestamp Values of type `Timestamp` are stored in `Value.timestamp_value`.
|
3613
|
+
# Corresponds to the JSON property `timestampType`
|
3614
|
+
# @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeTimestamp]
|
3615
|
+
attr_accessor :timestamp_type
|
3616
|
+
|
3207
3617
|
def initialize(**args)
|
3208
3618
|
update!(**args)
|
3209
3619
|
end
|
@@ -3211,8 +3621,17 @@ module Google
|
|
3211
3621
|
# Update properties of this object
|
3212
3622
|
def update!(**args)
|
3213
3623
|
@aggregate_type = args[:aggregate_type] if args.key?(:aggregate_type)
|
3624
|
+
@array_type = args[:array_type] if args.key?(:array_type)
|
3625
|
+
@bool_type = args[:bool_type] if args.key?(:bool_type)
|
3214
3626
|
@bytes_type = args[:bytes_type] if args.key?(:bytes_type)
|
3627
|
+
@date_type = args[:date_type] if args.key?(:date_type)
|
3628
|
+
@float32_type = args[:float32_type] if args.key?(:float32_type)
|
3629
|
+
@float64_type = args[:float64_type] if args.key?(:float64_type)
|
3215
3630
|
@int64_type = args[:int64_type] if args.key?(:int64_type)
|
3631
|
+
@map_type = args[:map_type] if args.key?(:map_type)
|
3632
|
+
@string_type = args[:string_type] if args.key?(:string_type)
|
3633
|
+
@struct_type = args[:struct_type] if args.key?(:struct_type)
|
3634
|
+
@timestamp_type = args[:timestamp_type] if args.key?(:timestamp_type)
|
3216
3635
|
end
|
3217
3636
|
end
|
3218
3637
|
|
@@ -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.59.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240720"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -286,12 +286,42 @@ module Google
|
|
286
286
|
include Google::Apis::Core::JsonObjectSupport
|
287
287
|
end
|
288
288
|
|
289
|
+
class GoogleBigtableAdminV2TypeAggregateHyperLogLogPlusPlusUniqueCount
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
295
|
+
class GoogleBigtableAdminV2TypeAggregateMax
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
301
|
+
class GoogleBigtableAdminV2TypeAggregateMin
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
+
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
305
|
+
end
|
306
|
+
|
289
307
|
class GoogleBigtableAdminV2TypeAggregateSum
|
290
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
309
|
|
292
310
|
include Google::Apis::Core::JsonObjectSupport
|
293
311
|
end
|
294
312
|
|
313
|
+
class GoogleBigtableAdminV2TypeArray
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
319
|
+
class GoogleBigtableAdminV2TypeBool
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
295
325
|
class GoogleBigtableAdminV2TypeBytes
|
296
326
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
327
|
|
@@ -310,6 +340,24 @@ module Google
|
|
310
340
|
include Google::Apis::Core::JsonObjectSupport
|
311
341
|
end
|
312
342
|
|
343
|
+
class GoogleBigtableAdminV2TypeDate
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
+
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
347
|
+
end
|
348
|
+
|
349
|
+
class GoogleBigtableAdminV2TypeFloat32
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
355
|
+
class GoogleBigtableAdminV2TypeFloat64
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
|
+
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
359
|
+
end
|
360
|
+
|
313
361
|
class GoogleBigtableAdminV2TypeInt64
|
314
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
363
|
|
@@ -328,6 +376,54 @@ module Google
|
|
328
376
|
include Google::Apis::Core::JsonObjectSupport
|
329
377
|
end
|
330
378
|
|
379
|
+
class GoogleBigtableAdminV2TypeMap
|
380
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
|
+
|
382
|
+
include Google::Apis::Core::JsonObjectSupport
|
383
|
+
end
|
384
|
+
|
385
|
+
class GoogleBigtableAdminV2TypeString
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
391
|
+
class GoogleBigtableAdminV2TypeStringEncoding
|
392
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
|
+
|
394
|
+
include Google::Apis::Core::JsonObjectSupport
|
395
|
+
end
|
396
|
+
|
397
|
+
class GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
|
+
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
401
|
+
end
|
402
|
+
|
403
|
+
class GoogleBigtableAdminV2TypeStringEncodingUtf8Raw
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
|
+
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
407
|
+
end
|
408
|
+
|
409
|
+
class GoogleBigtableAdminV2TypeStruct
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
+
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
413
|
+
end
|
414
|
+
|
415
|
+
class GoogleBigtableAdminV2TypeStructField
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
421
|
+
class GoogleBigtableAdminV2TypeTimestamp
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
331
427
|
class HotTablet
|
332
428
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
429
|
|
@@ -1024,8 +1120,14 @@ module Google
|
|
1024
1120
|
class GoogleBigtableAdminV2TypeAggregate
|
1025
1121
|
# @private
|
1026
1122
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1123
|
+
property :hllpp_unique_count, as: 'hllppUniqueCount', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregateHyperLogLogPlusPlusUniqueCount, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregateHyperLogLogPlusPlusUniqueCount::Representation
|
1124
|
+
|
1027
1125
|
property :input_type, as: 'inputType', class: Google::Apis::BigtableadminV2::Type, decorator: Google::Apis::BigtableadminV2::Type::Representation
|
1028
1126
|
|
1127
|
+
property :max, as: 'max', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregateMax, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregateMax::Representation
|
1128
|
+
|
1129
|
+
property :min, as: 'min', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregateMin, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregateMin::Representation
|
1130
|
+
|
1029
1131
|
property :state_type, as: 'stateType', class: Google::Apis::BigtableadminV2::Type, decorator: Google::Apis::BigtableadminV2::Type::Representation
|
1030
1132
|
|
1031
1133
|
property :sum, as: 'sum', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregateSum, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregateSum::Representation
|
@@ -1033,12 +1135,44 @@ module Google
|
|
1033
1135
|
end
|
1034
1136
|
end
|
1035
1137
|
|
1138
|
+
class GoogleBigtableAdminV2TypeAggregateHyperLogLogPlusPlusUniqueCount
|
1139
|
+
# @private
|
1140
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1141
|
+
end
|
1142
|
+
end
|
1143
|
+
|
1144
|
+
class GoogleBigtableAdminV2TypeAggregateMax
|
1145
|
+
# @private
|
1146
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1147
|
+
end
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
class GoogleBigtableAdminV2TypeAggregateMin
|
1151
|
+
# @private
|
1152
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1153
|
+
end
|
1154
|
+
end
|
1155
|
+
|
1036
1156
|
class GoogleBigtableAdminV2TypeAggregateSum
|
1037
1157
|
# @private
|
1038
1158
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1039
1159
|
end
|
1040
1160
|
end
|
1041
1161
|
|
1162
|
+
class GoogleBigtableAdminV2TypeArray
|
1163
|
+
# @private
|
1164
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1165
|
+
property :element_type, as: 'elementType', class: Google::Apis::BigtableadminV2::Type, decorator: Google::Apis::BigtableadminV2::Type::Representation
|
1166
|
+
|
1167
|
+
end
|
1168
|
+
end
|
1169
|
+
|
1170
|
+
class GoogleBigtableAdminV2TypeBool
|
1171
|
+
# @private
|
1172
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1173
|
+
end
|
1174
|
+
end
|
1175
|
+
|
1042
1176
|
class GoogleBigtableAdminV2TypeBytes
|
1043
1177
|
# @private
|
1044
1178
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1061,6 +1195,24 @@ module Google
|
|
1061
1195
|
end
|
1062
1196
|
end
|
1063
1197
|
|
1198
|
+
class GoogleBigtableAdminV2TypeDate
|
1199
|
+
# @private
|
1200
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1201
|
+
end
|
1202
|
+
end
|
1203
|
+
|
1204
|
+
class GoogleBigtableAdminV2TypeFloat32
|
1205
|
+
# @private
|
1206
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1207
|
+
end
|
1208
|
+
end
|
1209
|
+
|
1210
|
+
class GoogleBigtableAdminV2TypeFloat64
|
1211
|
+
# @private
|
1212
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1213
|
+
end
|
1214
|
+
end
|
1215
|
+
|
1064
1216
|
class GoogleBigtableAdminV2TypeInt64
|
1065
1217
|
# @private
|
1066
1218
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1085,6 +1237,69 @@ module Google
|
|
1085
1237
|
end
|
1086
1238
|
end
|
1087
1239
|
|
1240
|
+
class GoogleBigtableAdminV2TypeMap
|
1241
|
+
# @private
|
1242
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1243
|
+
property :key_type, as: 'keyType', class: Google::Apis::BigtableadminV2::Type, decorator: Google::Apis::BigtableadminV2::Type::Representation
|
1244
|
+
|
1245
|
+
property :value_type, as: 'valueType', class: Google::Apis::BigtableadminV2::Type, decorator: Google::Apis::BigtableadminV2::Type::Representation
|
1246
|
+
|
1247
|
+
end
|
1248
|
+
end
|
1249
|
+
|
1250
|
+
class GoogleBigtableAdminV2TypeString
|
1251
|
+
# @private
|
1252
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1253
|
+
property :encoding, as: 'encoding', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncoding, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncoding::Representation
|
1254
|
+
|
1255
|
+
end
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
class GoogleBigtableAdminV2TypeStringEncoding
|
1259
|
+
# @private
|
1260
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1261
|
+
property :utf8_bytes, as: 'utf8Bytes', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes::Representation
|
1262
|
+
|
1263
|
+
property :utf8_raw, as: 'utf8Raw', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Raw, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Raw::Representation
|
1264
|
+
|
1265
|
+
end
|
1266
|
+
end
|
1267
|
+
|
1268
|
+
class GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes
|
1269
|
+
# @private
|
1270
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1271
|
+
end
|
1272
|
+
end
|
1273
|
+
|
1274
|
+
class GoogleBigtableAdminV2TypeStringEncodingUtf8Raw
|
1275
|
+
# @private
|
1276
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1277
|
+
end
|
1278
|
+
end
|
1279
|
+
|
1280
|
+
class GoogleBigtableAdminV2TypeStruct
|
1281
|
+
# @private
|
1282
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1283
|
+
collection :fields, as: 'fields', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructField, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStructField::Representation
|
1284
|
+
|
1285
|
+
end
|
1286
|
+
end
|
1287
|
+
|
1288
|
+
class GoogleBigtableAdminV2TypeStructField
|
1289
|
+
# @private
|
1290
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1291
|
+
property :field_name, as: 'fieldName'
|
1292
|
+
property :type, as: 'type', class: Google::Apis::BigtableadminV2::Type, decorator: Google::Apis::BigtableadminV2::Type::Representation
|
1293
|
+
|
1294
|
+
end
|
1295
|
+
end
|
1296
|
+
|
1297
|
+
class GoogleBigtableAdminV2TypeTimestamp
|
1298
|
+
# @private
|
1299
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1300
|
+
end
|
1301
|
+
end
|
1302
|
+
|
1088
1303
|
class HotTablet
|
1089
1304
|
# @private
|
1090
1305
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1449,10 +1664,28 @@ module Google
|
|
1449
1664
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1450
1665
|
property :aggregate_type, as: 'aggregateType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregate, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeAggregate::Representation
|
1451
1666
|
|
1667
|
+
property :array_type, as: 'arrayType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeArray, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeArray::Representation
|
1668
|
+
|
1669
|
+
property :bool_type, as: 'boolType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeBool, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeBool::Representation
|
1670
|
+
|
1452
1671
|
property :bytes_type, as: 'bytesType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeBytes, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeBytes::Representation
|
1453
1672
|
|
1673
|
+
property :date_type, as: 'dateType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeDate, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeDate::Representation
|
1674
|
+
|
1675
|
+
property :float32_type, as: 'float32Type', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat32, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat32::Representation
|
1676
|
+
|
1677
|
+
property :float64_type, as: 'float64Type', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat64, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeFloat64::Representation
|
1678
|
+
|
1454
1679
|
property :int64_type, as: 'int64Type', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeInt64::Representation
|
1455
1680
|
|
1681
|
+
property :map_type, as: 'mapType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeMap, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeMap::Representation
|
1682
|
+
|
1683
|
+
property :string_type, as: 'stringType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeString, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeString::Representation
|
1684
|
+
|
1685
|
+
property :struct_type, as: 'structType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStruct, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStruct::Representation
|
1686
|
+
|
1687
|
+
property :timestamp_type, as: 'timestampType', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeTimestamp, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeTimestamp::Representation
|
1688
|
+
|
1456
1689
|
end
|
1457
1690
|
end
|
1458
1691
|
|
@@ -856,7 +856,7 @@ module Google
|
|
856
856
|
# located in the destination instance and project.
|
857
857
|
# @param [String] parent
|
858
858
|
# Required. The name of the destination cluster that will contain the backup
|
859
|
-
# copy. The cluster must already
|
859
|
+
# copy. The cluster must already exist. Values are of the form: `projects/`
|
860
860
|
# project`/instances/`instance`/clusters/`cluster``.
|
861
861
|
# @param [Google::Apis::BigtableadminV2::CopyBackupRequest] copy_backup_request_object
|
862
862
|
# @param [String] fields
|
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.59.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-08-04 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.59.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: []
|