google-apis-bigtableadmin_v2 0.59.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: 9dae557d01a00c4b6572f9dc26dc879506eb29081f2063d8611c08680b3d8f82
4
- data.tar.gz: fb0feaf650a94b0cc695302276d67c915e277be32b8cf224c1ba6314dbac2960
3
+ metadata.gz: b4c09dbeabfa6dd4788312f0890abc9043789450f72a5bbe6c7281849cbe7794
4
+ data.tar.gz: 996f1b7fc35dad56769238b00dac195dce2059e88076831d904966a9bc71ae28
5
5
  SHA512:
6
- metadata.gz: 810a6d2860281ddb54096dfa4c91d3d8ec4509c05634688fc200df130912f26e928cc849ad8226a77f62d22a444c65f78e68f544d6b5f1456bcf35cc327e9be3
7
- data.tar.gz: d5fc805e5b288866899d7890ca9f0f8506c7151d96c84f2b4869a815d7b08b33c1016ecef50d40143d7231012390639c198ae668a29dd785f3f78ff9263edc7d
6
+ metadata.gz: 59dd4890043ca97d899e051ff7f53876dedbc9e615d919e1c2e0bce1cfbb4a87ec44e86d25c62b0a6e940ce9bd0cc95aa812af3f4e505345932f55987c5cc602
7
+ data.tar.gz: 34130cefed8ce7773d8d4f7e43db22c7c35fcbf9a9e9f52ada5b63224cc7e1d2f13f2112b8601c30bbe5c1d20b0d15ff519047f264c307f86170824de2ddb54d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.59.0 (2024-08-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20240720
@@ -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)
@@ -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.59.0"
19
+ GEM_VERSION = "0.60.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 = "20240720"
25
+ REVISION = "20240806"
26
26
  end
27
27
  end
28
28
  end
@@ -779,10 +779,12 @@ module Google
779
779
  class Backup
780
780
  # @private
781
781
  class Representation < Google::Apis::Core::JsonRepresentation
782
+ property :backup_type, as: 'backupType'
782
783
  property :encryption_info, as: 'encryptionInfo', class: Google::Apis::BigtableadminV2::EncryptionInfo, decorator: Google::Apis::BigtableadminV2::EncryptionInfo::Representation
783
784
 
784
785
  property :end_time, as: 'endTime'
785
786
  property :expire_time, as: 'expireTime'
787
+ property :hot_to_standard_time, as: 'hotToStandardTime'
786
788
  property :name, as: 'name'
787
789
  property :size_bytes, :numeric_string => true, as: 'sizeBytes'
788
790
  property :source_backup, as: 'sourceBackup'
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.59.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-08-04 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.59.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: []