google-apis-backupdr_v1 0.62.0 → 0.63.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: 0c6fc6273ce276394b70dee1480f446cec1a115c6e28c3f82bbfe547d1d8fe90
4
- data.tar.gz: c974b1ca93ab31e6eb0c4b3e0471ce4d24a133f0872f2f139759f34bc031510b
3
+ metadata.gz: 420da8b9026c32870a2a2b101c222f91eb054c2b49ce4ca6beef79be07f9b249
4
+ data.tar.gz: 856b5b06cafe38a1f5474c25d9add735cd615bc2c5ab05ee9fe5965497a73163
5
5
  SHA512:
6
- metadata.gz: 76da01cf20169c076e2ed32be14aae5798488cef1dad5b19c6ed8eb4a4f39652aa8ab7ff01319b356df43648573e5da80d42ca075192c40948a282f251975dac
7
- data.tar.gz: 4dc3883514800e1e3cbbbd9391b27b2694af6291c0aedf710ba14dc96e86531870028728d12c4bd6ee1d9536fda22c2711e1fe1d86e10dd5ec42789ffc113056
6
+ metadata.gz: 7a9c6212dd039a6a908e2082c74e0b7985e3d23a476783cd8622a5f0c5a37f1a09bbc77c139e0561302fb1651f44266f6cc7f1c99135ff525e1bd6113e1c0f4c
7
+ data.tar.gz: db9bb66e5b8049b2d9dc3aa3de2425977163f3736b4c26e42460fa8330d7c4cdf8ebcae912c2a1e5c85739be32ebbb7b508d13fa5e3d5ff0b611c8b2867a1e8e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-backupdr_v1
2
2
 
3
+ ### v0.63.0 (2026-08-23)
4
+
5
+ * Regenerated from discovery document revision 20260812
6
+
3
7
  ### v0.62.0 (2026-08-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20260805
@@ -3140,6 +3140,11 @@ module Google
3140
3140
  # @return [Array<Google::Apis::BackupdrV1::GuestOsFeature>]
3141
3141
  attr_accessor :guest_os_feature
3142
3142
 
3143
+ # Options for creating a disk from a source Compute Instance backup.
3144
+ # Corresponds to the JSON property `instanceBackupSource`
3145
+ # @return [Google::Apis::BackupdrV1::RestoreDiskFromInstanceOptions]
3146
+ attr_accessor :instance_backup_source
3147
+
3143
3148
  # Optional. Labels to apply to this disk. These can be modified later using
3144
3149
  # setLabels method. Label values can be empty.
3145
3150
  # Corresponds to the JSON property `labels`
@@ -3215,6 +3220,7 @@ module Google
3215
3220
  @disk_encryption_key = args[:disk_encryption_key] if args.key?(:disk_encryption_key)
3216
3221
  @enable_confidential_compute = args[:enable_confidential_compute] if args.key?(:enable_confidential_compute)
3217
3222
  @guest_os_feature = args[:guest_os_feature] if args.key?(:guest_os_feature)
3223
+ @instance_backup_source = args[:instance_backup_source] if args.key?(:instance_backup_source)
3218
3224
  @labels = args[:labels] if args.key?(:labels)
3219
3225
  @licenses = args[:licenses] if args.key?(:licenses)
3220
3226
  @name = args[:name] if args.key?(:name)
@@ -5506,6 +5512,33 @@ module Google
5506
5512
  end
5507
5513
  end
5508
5514
 
5515
+ # Options for creating a disk from a source Compute Instance backup.
5516
+ class RestoreDiskFromInstanceOptions
5517
+ include Google::Apis::Core::Hashable
5518
+
5519
+ # Specifies that the boot disk should be restored from the instance backup. This
5520
+ # field should only be set to `true` if selected.
5521
+ # Corresponds to the JSON property `bootDisk`
5522
+ # @return [Boolean]
5523
+ attr_accessor :boot_disk
5524
+ alias_method :boot_disk?, :boot_disk
5525
+
5526
+ # The device name of the disk to restore from the VM backup.
5527
+ # Corresponds to the JSON property `sourceDeviceName`
5528
+ # @return [String]
5529
+ attr_accessor :source_device_name
5530
+
5531
+ def initialize(**args)
5532
+ update!(**args)
5533
+ end
5534
+
5535
+ # Update properties of this object
5536
+ def update!(**args)
5537
+ @boot_disk = args[:boot_disk] if args.key?(:boot_disk)
5538
+ @source_device_name = args[:source_device_name] if args.key?(:source_device_name)
5539
+ end
5540
+ end
5541
+
5509
5542
  # Message for rules config info.
5510
5543
  class RuleConfigInfo
5511
5544
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BackupdrV1
18
18
  # Version of the google-apis-backupdr_v1 gem
19
- GEM_VERSION = "0.62.0"
19
+ GEM_VERSION = "0.63.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260805"
25
+ REVISION = "20260812"
26
26
  end
27
27
  end
28
28
  end
@@ -730,6 +730,12 @@ module Google
730
730
  include Google::Apis::Core::JsonObjectSupport
731
731
  end
732
732
 
733
+ class RestoreDiskFromInstanceOptions
734
+ class Representation < Google::Apis::Core::JsonRepresentation; end
735
+
736
+ include Google::Apis::Core::JsonObjectSupport
737
+ end
738
+
733
739
  class RuleConfigInfo
734
740
  class Representation < Google::Apis::Core::JsonRepresentation; end
735
741
 
@@ -1600,6 +1606,8 @@ module Google
1600
1606
  property :enable_confidential_compute, as: 'enableConfidentialCompute'
1601
1607
  collection :guest_os_feature, as: 'guestOsFeature', class: Google::Apis::BackupdrV1::GuestOsFeature, decorator: Google::Apis::BackupdrV1::GuestOsFeature::Representation
1602
1608
 
1609
+ property :instance_backup_source, as: 'instanceBackupSource', class: Google::Apis::BackupdrV1::RestoreDiskFromInstanceOptions, decorator: Google::Apis::BackupdrV1::RestoreDiskFromInstanceOptions::Representation
1610
+
1603
1611
  hash :labels, as: 'labels'
1604
1612
  collection :licenses, as: 'licenses'
1605
1613
  property :name, as: 'name'
@@ -2211,6 +2219,14 @@ module Google
2211
2219
  end
2212
2220
  end
2213
2221
 
2222
+ class RestoreDiskFromInstanceOptions
2223
+ # @private
2224
+ class Representation < Google::Apis::Core::JsonRepresentation
2225
+ property :boot_disk, as: 'bootDisk'
2226
+ property :source_device_name, as: 'sourceDeviceName'
2227
+ end
2228
+ end
2229
+
2214
2230
  class RuleConfigInfo
2215
2231
  # @private
2216
2232
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-backupdr_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.62.0
4
+ version: 0.63.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-backupdr_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.62.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.63.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-backupdr_v1
62
62
  rdoc_options: []
63
63
  require_paths: