google-apis-backupdr_v1 0.52.0 → 0.53.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: c989d0eb15631e6bdeb895c6bd4e72059233e051ef37aadfdf89103d37b02f45
4
- data.tar.gz: 53f7e7e3b9ec0c0c8bf5924868f1f38ab42d599c065de300c723ed98ceb6059c
3
+ metadata.gz: fdf571920e1dcc1fb2231c1a189702576d45d2c403d9f2493ca8b3f05ceb202a
4
+ data.tar.gz: 4dadc77aa8ee1035b9a5f9d19b653813b8af13fdc0115c3cf6429d4ea79ca091
5
5
  SHA512:
6
- metadata.gz: 3e262d09051f4f27a45f4a5050b25490dac8946b432a0c22fd20e42288e8c8b39c843062d47cb01fa43d5173c721c0ec9f3c7060ea9b1b621cfd489d29acec83
7
- data.tar.gz: cab4cb8580eb4afd33722e119eef4e6096afdf91ef9508e3b5aaed49660b2a5294d89b89b5831b43e9f4352df2d1cde6ce63cf8793a7f604fb493338f0a4ebf8
6
+ metadata.gz: f0550b11c052c2ded710b1fa75fe9115efa270535b85cbd6d7913d7d0b0917b9699b46aa6df3bcfbb1af036da89973ef49f07a5a3e058a8b3923032308ba19c3
7
+ data.tar.gz: '0170842b8242d16337cdd8b1a162c555ba2158ed14f7ef926408c38880396a076ff07df25a6b5a696fde5a15b8f78700a5868b12a3e94ff4c3e21afccb84cb11'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-backupdr_v1
2
2
 
3
+ ### v0.53.0 (2026-03-15)
4
+
5
+ * Regenerated from discovery document revision 20260309
6
+
3
7
  ### v0.52.0 (2026-03-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20260227
@@ -1261,6 +1261,11 @@ module Google
1261
1261
  # @return [String]
1262
1262
  attr_accessor :description
1263
1263
 
1264
+ # --- DiskBackupPlanProperties Message ---
1265
+ # Corresponds to the JSON property `diskBackupPlanProperties`
1266
+ # @return [Google::Apis::BackupdrV1::DiskBackupPlanProperties]
1267
+ attr_accessor :disk_backup_plan_properties
1268
+
1264
1269
  # Optional. `etag` is returned from the service in the response. As a user of
1265
1270
  # the service, you may provide an etag value in this field to prevent stale
1266
1271
  # resources.
@@ -1340,6 +1345,7 @@ module Google
1340
1345
  @backup_vault_service_account = args[:backup_vault_service_account] if args.key?(:backup_vault_service_account)
1341
1346
  @create_time = args[:create_time] if args.key?(:create_time)
1342
1347
  @description = args[:description] if args.key?(:description)
1348
+ @disk_backup_plan_properties = args[:disk_backup_plan_properties] if args.key?(:disk_backup_plan_properties)
1343
1349
  @etag = args[:etag] if args.key?(:etag)
1344
1350
  @labels = args[:labels] if args.key?(:labels)
1345
1351
  @log_retention_days = args[:log_retention_days] if args.key?(:log_retention_days)
@@ -2798,6 +2804,28 @@ module Google
2798
2804
  end
2799
2805
  end
2800
2806
 
2807
+ # --- DiskBackupPlanProperties Message ---
2808
+ class DiskBackupPlanProperties
2809
+ include Google::Apis::Core::Hashable
2810
+
2811
+ # Optional. Indicates whether to perform a guest flush operation before taking a
2812
+ # disk backup. When set to false, the system will create crash-consistent
2813
+ # backups. Default value is false.
2814
+ # Corresponds to the JSON property `guestFlush`
2815
+ # @return [Boolean]
2816
+ attr_accessor :guest_flush
2817
+ alias_method :guest_flush?, :guest_flush
2818
+
2819
+ def initialize(**args)
2820
+ update!(**args)
2821
+ end
2822
+
2823
+ # Update properties of this object
2824
+ def update!(**args)
2825
+ @guest_flush = args[:guest_flush] if args.key?(:guest_flush)
2826
+ end
2827
+ end
2828
+
2801
2829
  # DiskBackupProperties represents the properties of a Disk backup.
2802
2830
  class DiskBackupProperties
2803
2831
  include Google::Apis::Core::Hashable
@@ -2823,6 +2851,13 @@ module Google
2823
2851
  attr_accessor :enable_confidential_compute
2824
2852
  alias_method :enable_confidential_compute?, :enable_confidential_compute
2825
2853
 
2854
+ # Optional. Defines if the guest flush is enabled for the source disk. Default
2855
+ # value is false.
2856
+ # Corresponds to the JSON property `guestFlush`
2857
+ # @return [Boolean]
2858
+ attr_accessor :guest_flush
2859
+ alias_method :guest_flush?, :guest_flush
2860
+
2826
2861
  # A list of guest OS features that are applicable to this backup.
2827
2862
  # Corresponds to the JSON property `guestOsFeature`
2828
2863
  # @return [Array<Google::Apis::BackupdrV1::GuestOsFeature>]
@@ -2900,6 +2935,7 @@ module Google
2900
2935
  @architecture = args[:architecture] if args.key?(:architecture)
2901
2936
  @description = args[:description] if args.key?(:description)
2902
2937
  @enable_confidential_compute = args[:enable_confidential_compute] if args.key?(:enable_confidential_compute)
2938
+ @guest_flush = args[:guest_flush] if args.key?(:guest_flush)
2903
2939
  @guest_os_feature = args[:guest_os_feature] if args.key?(:guest_os_feature)
2904
2940
  @labels = args[:labels] if args.key?(:labels)
2905
2941
  @licenses = args[:licenses] if args.key?(:licenses)
@@ -4360,7 +4396,7 @@ module Google
4360
4396
  class LocationMetadata
4361
4397
  include Google::Apis::Core::Hashable
4362
4398
 
4363
- #
4399
+ # List of features that are not supported in the location.
4364
4400
  # Corresponds to the JSON property `unsupportedFeatures`
4365
4401
  # @return [Array<String>]
4366
4402
  attr_accessor :unsupported_features
@@ -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.52.0"
19
+ GEM_VERSION = "0.53.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260227"
25
+ REVISION = "20260309"
26
26
  end
27
27
  end
28
28
  end
@@ -328,6 +328,12 @@ module Google
328
328
  include Google::Apis::Core::JsonObjectSupport
329
329
  end
330
330
 
331
+ class DiskBackupPlanProperties
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
331
337
  class DiskBackupProperties
332
338
  class Representation < Google::Apis::Core::JsonRepresentation; end
333
339
 
@@ -1109,6 +1115,8 @@ module Google
1109
1115
  property :backup_vault_service_account, as: 'backupVaultServiceAccount'
1110
1116
  property :create_time, as: 'createTime'
1111
1117
  property :description, as: 'description'
1118
+ property :disk_backup_plan_properties, as: 'diskBackupPlanProperties', class: Google::Apis::BackupdrV1::DiskBackupPlanProperties, decorator: Google::Apis::BackupdrV1::DiskBackupPlanProperties::Representation
1119
+
1112
1120
  property :etag, as: 'etag'
1113
1121
  hash :labels, as: 'labels'
1114
1122
  property :log_retention_days, :numeric_string => true, as: 'logRetentionDays'
@@ -1461,6 +1469,13 @@ module Google
1461
1469
  end
1462
1470
  end
1463
1471
 
1472
+ class DiskBackupPlanProperties
1473
+ # @private
1474
+ class Representation < Google::Apis::Core::JsonRepresentation
1475
+ property :guest_flush, as: 'guestFlush'
1476
+ end
1477
+ end
1478
+
1464
1479
  class DiskBackupProperties
1465
1480
  # @private
1466
1481
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1468,6 +1483,7 @@ module Google
1468
1483
  property :architecture, as: 'architecture'
1469
1484
  property :description, as: 'description'
1470
1485
  property :enable_confidential_compute, as: 'enableConfidentialCompute'
1486
+ property :guest_flush, as: 'guestFlush'
1471
1487
  collection :guest_os_feature, as: 'guestOsFeature', class: Google::Apis::BackupdrV1::GuestOsFeature, decorator: Google::Apis::BackupdrV1::GuestOsFeature::Representation
1472
1488
 
1473
1489
  hash :labels, as: 'labels'
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.52.0
4
+ version: 0.53.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.52.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.53.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: