google-apis-bigtableadmin_v2 0.58.0 → 0.60.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: 9be357010d76ff45a0e26d20cb9791ef387d2e629cfded0ef129116bec48f773
4
- data.tar.gz: fa6111b2fc3fedbe0dddfbce94029e6fc455b9116999c91ab6c6a1b9f63c5e65
3
+ metadata.gz: b4c09dbeabfa6dd4788312f0890abc9043789450f72a5bbe6c7281849cbe7794
4
+ data.tar.gz: 996f1b7fc35dad56769238b00dac195dce2059e88076831d904966a9bc71ae28
5
5
  SHA512:
6
- metadata.gz: 97b22b1bf94543f2100add67066e09d845b72c9b15e53353652c88dd2da6f7c26e6796cb088400b0e95fdb6ce11aab35eb8c93791a3f926469f540ec1a9331b2
7
- data.tar.gz: 4e35a2a4424bdc0e5fb5995212c93f2e032c85311f45cb26822d4d02686db2165d6df2c8df466baaa46850099581ad4683a1883325ccc2f8cf8905bbb8a5f4d2
6
+ metadata.gz: 59dd4890043ca97d899e051ff7f53876dedbc9e615d919e1c2e0bce1cfbb4a87ec44e86d25c62b0a6e940ce9bd0cc95aa812af3f4e505345932f55987c5cc602
7
+ data.tar.gz: 34130cefed8ce7773d8d4f7e43db22c7c35fcbf9a9e9f52ada5b63224cc7e1d2f13f2112b8601c30bbe5c1d20b0d15ff519047f264c307f86170824de2ddb54d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-bigtableadmin_v2
2
2
 
3
+ ### v0.60.0 (2024-08-18)
4
+
5
+ * Regenerated from discovery document revision 20240806
6
+
7
+ ### v0.59.0 (2024-08-04)
8
+
9
+ * Regenerated from discovery document revision 20240720
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.58.0 (2024-07-25)
4
13
 
5
14
  * Regenerated from discovery document revision 20240703
@@ -301,6 +301,11 @@ module Google
301
301
  class Backup
302
302
  include Google::Apis::Core::Hashable
303
303
 
304
+ # Indicates the backup type of the backup.
305
+ # Corresponds to the JSON property `backupType`
306
+ # @return [String]
307
+ attr_accessor :backup_type
308
+
304
309
  # Encryption information for a given resource. If this resource is protected
305
310
  # with customer managed encryption, the in-use Cloud Key Management Service (
306
311
  # Cloud KMS) key version is specified along with its status.
@@ -315,13 +320,23 @@ module Google
315
320
  attr_accessor :end_time
316
321
 
317
322
  # Required. The expiration time of the backup. When creating a backup or
318
- # updating its `expire_time`, the new value must: - Be at most 90 days in the
319
- # future - Be at least 6 hours in the future Once the `expire_time` has passed,
320
- # Cloud Bigtable will delete the backup.
323
+ # updating its `expire_time`, the value must be greater than the backup creation
324
+ # time by: - At least 6 hours - At most 90 days Once the `expire_time` has
325
+ # passed, Cloud Bigtable will delete the backup.
321
326
  # Corresponds to the JSON property `expireTime`
322
327
  # @return [String]
323
328
  attr_accessor :expire_time
324
329
 
330
+ # The time at which the hot backup will be converted to a standard backup. Once
331
+ # the `hot_to_standard_time` has passed, Cloud Bigtable will convert the hot
332
+ # backup to a standard backup. This value must be greater than the backup
333
+ # creation time by: - At least 24 hours This field only applies for hot backups.
334
+ # When creating or updating a standard backup, attempting to set this field will
335
+ # fail the request.
336
+ # Corresponds to the JSON property `hotToStandardTime`
337
+ # @return [String]
338
+ attr_accessor :hot_to_standard_time
339
+
325
340
  # A globally unique identifier for the backup which cannot be changed. Values
326
341
  # are of the form `projects/`project`/instances/`instance`/clusters/`cluster`/
327
342
  # backups/_a-zA-Z0-9*` The final segment of the name must be between 1 and 50
@@ -369,9 +384,11 @@ module Google
369
384
 
370
385
  # Update properties of this object
371
386
  def update!(**args)
387
+ @backup_type = args[:backup_type] if args.key?(:backup_type)
372
388
  @encryption_info = args[:encryption_info] if args.key?(:encryption_info)
373
389
  @end_time = args[:end_time] if args.key?(:end_time)
374
390
  @expire_time = args[:expire_time] if args.key?(:expire_time)
391
+ @hot_to_standard_time = args[:hot_to_standard_time] if args.key?(:hot_to_standard_time)
375
392
  @name = args[:name] if args.key?(:name)
376
393
  @size_bytes = args[:size_bytes] if args.key?(:size_bytes)
377
394
  @source_backup = args[:source_backup] if args.key?(:source_backup)
@@ -770,8 +787,8 @@ module Google
770
787
  # always sort data based on the raw encoded value, *not* the decoded type. -
771
788
  # Example: BYTES values sort in the same order as their raw encodings. -
772
789
  # 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
790
+ # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
791
+ # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
775
792
  # two encoded values, can we always tell where the first one ends and the second
776
793
  # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
777
794
  # value will always contain exactly N digits, possibly preceded by a sign. -
@@ -1610,8 +1627,8 @@ module Google
1610
1627
  # always sort data based on the raw encoded value, *not* the decoded type. -
1611
1628
  # Example: BYTES values sort in the same order as their raw encodings. -
1612
1629
  # 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
1630
+ # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
1631
+ # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1615
1632
  # two encoded values, can we always tell where the first one ends and the second
1616
1633
  # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1617
1634
  # value will always contain exactly N digits, possibly preceded by a sign. -
@@ -1645,8 +1662,8 @@ module Google
1645
1662
  # always sort data based on the raw encoded value, *not* the decoded type. -
1646
1663
  # Example: BYTES values sort in the same order as their raw encodings. -
1647
1664
  # 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
1665
+ # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
1666
+ # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1650
1667
  # two encoded values, can we always tell where the first one ends and the second
1651
1668
  # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1652
1669
  # value will always contain exactly N digits, possibly preceded by a sign. -
@@ -1753,8 +1770,8 @@ module Google
1753
1770
  # always sort data based on the raw encoded value, *not* the decoded type. -
1754
1771
  # Example: BYTES values sort in the same order as their raw encodings. -
1755
1772
  # 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
1773
+ # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
1774
+ # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1758
1775
  # two encoded values, can we always tell where the first one ends and the second
1759
1776
  # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1760
1777
  # value will always contain exactly N digits, possibly preceded by a sign. -
@@ -1963,8 +1980,8 @@ module Google
1963
1980
  # always sort data based on the raw encoded value, *not* the decoded type. -
1964
1981
  # Example: BYTES values sort in the same order as their raw encodings. -
1965
1982
  # 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
1983
+ # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
1984
+ # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1968
1985
  # two encoded values, can we always tell where the first one ends and the second
1969
1986
  # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1970
1987
  # value will always contain exactly N digits, possibly preceded by a sign. -
@@ -1986,8 +2003,8 @@ module Google
1986
2003
  # always sort data based on the raw encoded value, *not* the decoded type. -
1987
2004
  # Example: BYTES values sort in the same order as their raw encodings. -
1988
2005
  # 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
2006
+ # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
2007
+ # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
1991
2008
  # two encoded values, can we always tell where the first one ends and the second
1992
2009
  # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
1993
2010
  # value will always contain exactly N digits, possibly preceded by a sign. -
@@ -2040,6 +2057,11 @@ module Google
2040
2057
  # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes]
2041
2058
  attr_accessor :utf8_bytes
2042
2059
 
2060
+ # Deprecated: prefer the equivalent `Utf8Bytes`.
2061
+ # Corresponds to the JSON property `utf8Raw`
2062
+ # @return [Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Raw]
2063
+ attr_accessor :utf8_raw
2064
+
2043
2065
  def initialize(**args)
2044
2066
  update!(**args)
2045
2067
  end
@@ -2047,6 +2069,7 @@ module Google
2047
2069
  # Update properties of this object
2048
2070
  def update!(**args)
2049
2071
  @utf8_bytes = args[:utf8_bytes] if args.key?(:utf8_bytes)
2072
+ @utf8_raw = args[:utf8_raw] if args.key?(:utf8_raw)
2050
2073
  end
2051
2074
  end
2052
2075
 
@@ -2065,6 +2088,19 @@ module Google
2065
2088
  end
2066
2089
  end
2067
2090
 
2091
+ # Deprecated: prefer the equivalent `Utf8Bytes`.
2092
+ class GoogleBigtableAdminV2TypeStringEncodingUtf8Raw
2093
+ include Google::Apis::Core::Hashable
2094
+
2095
+ def initialize(**args)
2096
+ update!(**args)
2097
+ end
2098
+
2099
+ # Update properties of this object
2100
+ def update!(**args)
2101
+ end
2102
+ end
2103
+
2068
2104
  # A structured data value, consisting of fields which map to dynamically typed
2069
2105
  # values. Values of type `Struct` are stored in `Value.array_value` where
2070
2106
  # entries are in the same order and number as `field_types`.
@@ -2106,8 +2142,8 @@ module Google
2106
2142
  # always sort data based on the raw encoded value, *not* the decoded type. -
2107
2143
  # Example: BYTES values sort in the same order as their raw encodings. -
2108
2144
  # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
2109
- # preserve sort order when dealing with negative numbers. INT64(1) > INT64(-1),
2110
- # but STRING("-00001") > STRING("00001). * Self-delimiting: If we concatenate
2145
+ # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
2146
+ # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
2111
2147
  # two encoded values, can we always tell where the first one ends and the second
2112
2148
  # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
2113
2149
  # value will always contain exactly N digits, possibly preceded by a sign. -
@@ -3512,8 +3548,8 @@ module Google
3512
3548
  # always sort data based on the raw encoded value, *not* the decoded type. -
3513
3549
  # Example: BYTES values sort in the same order as their raw encodings. -
3514
3550
  # Counterexample: Encoding INT64 as a fixed-width decimal string does *not*
3515
- # preserve sort order when dealing with negative numbers. INT64(1) > INT64(-1),
3516
- # but STRING("-00001") > STRING("00001). * Self-delimiting: If we concatenate
3551
+ # preserve sort order when dealing with negative numbers. `INT64(1) > INT64(-1)`,
3552
+ # but `STRING("-00001") > STRING("00001)`. * Self-delimiting: If we concatenate
3517
3553
  # two encoded values, can we always tell where the first one ends and the second
3518
3554
  # one begins? - Example: If we encode INT64s to fixed-width STRINGs, the first
3519
3555
  # value will always contain exactly N digits, possibly preceded by a sign. -
@@ -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.58.0"
19
+ GEM_VERSION = "0.60.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240703"
25
+ REVISION = "20240806"
26
26
  end
27
27
  end
28
28
  end
@@ -400,6 +400,12 @@ module Google
400
400
  include Google::Apis::Core::JsonObjectSupport
401
401
  end
402
402
 
403
+ class GoogleBigtableAdminV2TypeStringEncodingUtf8Raw
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
403
409
  class GoogleBigtableAdminV2TypeStruct
404
410
  class Representation < Google::Apis::Core::JsonRepresentation; end
405
411
 
@@ -773,10 +779,12 @@ module Google
773
779
  class Backup
774
780
  # @private
775
781
  class Representation < Google::Apis::Core::JsonRepresentation
782
+ property :backup_type, as: 'backupType'
776
783
  property :encryption_info, as: 'encryptionInfo', class: Google::Apis::BigtableadminV2::EncryptionInfo, decorator: Google::Apis::BigtableadminV2::EncryptionInfo::Representation
777
784
 
778
785
  property :end_time, as: 'endTime'
779
786
  property :expire_time, as: 'expireTime'
787
+ property :hot_to_standard_time, as: 'hotToStandardTime'
780
788
  property :name, as: 'name'
781
789
  property :size_bytes, :numeric_string => true, as: 'sizeBytes'
782
790
  property :source_backup, as: 'sourceBackup'
@@ -1254,6 +1262,8 @@ module Google
1254
1262
  class Representation < Google::Apis::Core::JsonRepresentation
1255
1263
  property :utf8_bytes, as: 'utf8Bytes', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Bytes::Representation
1256
1264
 
1265
+ property :utf8_raw, as: 'utf8Raw', class: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Raw, decorator: Google::Apis::BigtableadminV2::GoogleBigtableAdminV2TypeStringEncodingUtf8Raw::Representation
1266
+
1257
1267
  end
1258
1268
  end
1259
1269
 
@@ -1263,6 +1273,12 @@ module Google
1263
1273
  end
1264
1274
  end
1265
1275
 
1276
+ class GoogleBigtableAdminV2TypeStringEncodingUtf8Raw
1277
+ # @private
1278
+ class Representation < Google::Apis::Core::JsonRepresentation
1279
+ end
1280
+ end
1281
+
1266
1282
  class GoogleBigtableAdminV2TypeStruct
1267
1283
  # @private
1268
1284
  class Representation < Google::Apis::Core::JsonRepresentation
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.58.0
4
+ version: 0.60.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-07-25 00:00:00.000000000 Z
11
+ date: 2024-08-18 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.58.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.60.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: []