google-apis-backupdr_v1 0.61.0 → 0.62.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: cc78f9422ea2fa31e82fa205418da8cd485ed8e500b24652d4281fc10de149eb
4
- data.tar.gz: e36705131e2b3ecb056596769b6f5aeab87a406637430db0c87dc837413f94a9
3
+ metadata.gz: 0c6fc6273ce276394b70dee1480f446cec1a115c6e28c3f82bbfe547d1d8fe90
4
+ data.tar.gz: c974b1ca93ab31e6eb0c4b3e0471ce4d24a133f0872f2f139759f34bc031510b
5
5
  SHA512:
6
- metadata.gz: ccb0feff57505376d8bafe8e38dc6625ff20d7b052c5b175d85542ffddc06b6742c148448a2676c2665c352b2da7ed14b9adfb999de79469b069f11e699e3c74
7
- data.tar.gz: 50b88c9cd4d02c15c3f6a7f3755305b0773113ff5e8fe85b549b7da067c1737720e0c74d2cbc188fab4ad40bacbe557e7d514b2bf71d4329d8a7dcdfe755ddf8
6
+ metadata.gz: 76da01cf20169c076e2ed32be14aae5798488cef1dad5b19c6ed8eb4a4f39652aa8ab7ff01319b356df43648573e5da80d42ca075192c40948a282f251975dac
7
+ data.tar.gz: 4dc3883514800e1e3cbbbd9391b27b2694af6291c0aedf710ba14dc96e86531870028728d12c4bd6ee1d9536fda22c2711e1fe1d86e10dd5ec42789ffc113056
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-backupdr_v1
2
2
 
3
+ ### v0.62.0 (2026-08-16)
4
+
5
+ * Regenerated from discovery document revision 20260805
6
+
3
7
  ### v0.61.0 (2026-07-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20260715
@@ -2033,6 +2033,17 @@ module Google
2033
2033
  class ComputeInstanceBackupPlanProperties
2034
2034
  include Google::Apis::Core::Hashable
2035
2035
 
2036
+ # Optional. If true, only the boot disk will be backed up.
2037
+ # Corresponds to the JSON property `bootDiskOnly`
2038
+ # @return [Boolean]
2039
+ attr_accessor :boot_disk_only
2040
+ alias_method :boot_disk_only?, :boot_disk_only
2041
+
2042
+ # Message for selective disk backup exclusion labels.
2043
+ # Corresponds to the JSON property `diskExclusionLabels`
2044
+ # @return [Google::Apis::BackupdrV1::DiskExclusionLabels]
2045
+ attr_accessor :disk_exclusion_labels
2046
+
2036
2047
  # Optional. Indicates whether to perform a guest flush operation before taking a
2037
2048
  # compute backup. When set to false, the system will create crash-consistent
2038
2049
  # backups. Default value is false.
@@ -2047,6 +2058,8 @@ module Google
2047
2058
 
2048
2059
  # Update properties of this object
2049
2060
  def update!(**args)
2061
+ @boot_disk_only = args[:boot_disk_only] if args.key?(:boot_disk_only)
2062
+ @disk_exclusion_labels = args[:disk_exclusion_labels] if args.key?(:disk_exclusion_labels)
2050
2063
  @guest_flush = args[:guest_flush] if args.key?(:guest_flush)
2051
2064
  end
2052
2065
  end
@@ -2079,6 +2092,11 @@ module Google
2079
2092
  # @return [Array<Google::Apis::BackupdrV1::AttachedDisk>]
2080
2093
  attr_accessor :disk
2081
2094
 
2095
+ # Optional. List of disks excluded from the backup.
2096
+ # Corresponds to the JSON property `excludedDisks`
2097
+ # @return [Array<String>]
2098
+ attr_accessor :excluded_disks
2099
+
2082
2100
  # A list of guest accelerator cards' type and count to use for instances created
2083
2101
  # from these properties.
2084
2102
  # Corresponds to the JSON property `guestAccelerator`
@@ -2093,6 +2111,11 @@ module Google
2093
2111
  attr_accessor :guest_flush
2094
2112
  alias_method :guest_flush?, :guest_flush
2095
2113
 
2114
+ # Optional. List of disks included in the backup.
2115
+ # Corresponds to the JSON property `includedDisks`
2116
+ # @return [Array<String>]
2117
+ attr_accessor :included_disks
2118
+
2096
2119
  # KeyRevocationActionType of the instance. Supported options are "STOP" and "
2097
2120
  # NONE". The default value is "NONE" if it is not specified.
2098
2121
  # Corresponds to the JSON property `keyRevocationActionType`
@@ -2163,8 +2186,10 @@ module Google
2163
2186
  @can_ip_forward = args[:can_ip_forward] if args.key?(:can_ip_forward)
2164
2187
  @description = args[:description] if args.key?(:description)
2165
2188
  @disk = args[:disk] if args.key?(:disk)
2189
+ @excluded_disks = args[:excluded_disks] if args.key?(:excluded_disks)
2166
2190
  @guest_accelerator = args[:guest_accelerator] if args.key?(:guest_accelerator)
2167
2191
  @guest_flush = args[:guest_flush] if args.key?(:guest_flush)
2192
+ @included_disks = args[:included_disks] if args.key?(:included_disks)
2168
2193
  @key_revocation_action_type = args[:key_revocation_action_type] if args.key?(:key_revocation_action_type)
2169
2194
  @labels = args[:labels] if args.key?(:labels)
2170
2195
  @machine_type = args[:machine_type] if args.key?(:machine_type)
@@ -3056,6 +3081,26 @@ module Google
3056
3081
  end
3057
3082
  end
3058
3083
 
3084
+ # Message for selective disk backup exclusion labels.
3085
+ class DiskExclusionLabels
3086
+ include Google::Apis::Core::Hashable
3087
+
3088
+ # Optional. Labels used to identify disks for exclusion from the backup. If a
3089
+ # disk carries any of these labels, it will be excluded (OR logic).
3090
+ # Corresponds to the JSON property `labels`
3091
+ # @return [Array<Google::Apis::BackupdrV1::LabelKeyValPair>]
3092
+ attr_accessor :labels
3093
+
3094
+ def initialize(**args)
3095
+ update!(**args)
3096
+ end
3097
+
3098
+ # Update properties of this object
3099
+ def update!(**args)
3100
+ @labels = args[:labels] if args.key?(:labels)
3101
+ end
3102
+ end
3103
+
3059
3104
  # DiskRestoreProperties represents the properties of a Disk restore.
3060
3105
  class DiskRestoreProperties
3061
3106
  include Google::Apis::Core::Hashable
@@ -4157,6 +4202,38 @@ module Google
4157
4202
  end
4158
4203
  end
4159
4204
 
4205
+ # Message for a label key-value pair.
4206
+ class LabelKeyValPair
4207
+ include Google::Apis::Core::Hashable
4208
+
4209
+ # Key of the label. The key must follow the format: `\\p`Ll`\\p`Lo``0,62``. This
4210
+ # means the key must start with a lowercase letter or a lowercase international
4211
+ # character, followed by zero or more lowercase letters, lowercase international
4212
+ # characters, numbers, underscores, or dashes. The key must be at most 63
4213
+ # characters long. International characters are allowed.
4214
+ # Corresponds to the JSON property `key`
4215
+ # @return [String]
4216
+ attr_accessor :key
4217
+
4218
+ # Value of the label. The value must follow the format: `[\\p`Ll`\\p`Lo`\\p`N`_-]
4219
+ # `1,63``. This means the value must be one or more lowercase letters, lowercase
4220
+ # international characters, numbers, underscores, or dashes. The value must be
4221
+ # at most 63 characters long. International characters are allowed.
4222
+ # Corresponds to the JSON property `value`
4223
+ # @return [String]
4224
+ attr_accessor :value
4225
+
4226
+ def initialize(**args)
4227
+ update!(**args)
4228
+ end
4229
+
4230
+ # Update properties of this object
4231
+ def update!(**args)
4232
+ @key = args[:key] if args.key?(:key)
4233
+ @value = args[:value] if args.key?(:value)
4234
+ end
4235
+ end
4236
+
4160
4237
  # Response message for List BackupPlanAssociation
4161
4238
  class ListBackupPlanAssociationsResponse
4162
4239
  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.61.0"
19
+ GEM_VERSION = "0.62.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 = "20260715"
25
+ REVISION = "20260805"
26
26
  end
27
27
  end
28
28
  end
@@ -352,6 +352,12 @@ module Google
352
352
  include Google::Apis::Core::JsonObjectSupport
353
353
  end
354
354
 
355
+ class DiskExclusionLabels
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
355
361
  class DiskRestoreProperties
356
362
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
363
 
@@ -544,6 +550,12 @@ module Google
544
550
  include Google::Apis::Core::JsonObjectSupport
545
551
  end
546
552
 
553
+ class LabelKeyValPair
554
+ class Representation < Google::Apis::Core::JsonRepresentation; end
555
+
556
+ include Google::Apis::Core::JsonObjectSupport
557
+ end
558
+
547
559
  class ListBackupPlanAssociationsResponse
548
560
  class Representation < Google::Apis::Core::JsonRepresentation; end
549
561
 
@@ -1315,6 +1327,9 @@ module Google
1315
1327
  class ComputeInstanceBackupPlanProperties
1316
1328
  # @private
1317
1329
  class Representation < Google::Apis::Core::JsonRepresentation
1330
+ property :boot_disk_only, as: 'bootDiskOnly'
1331
+ property :disk_exclusion_labels, as: 'diskExclusionLabels', class: Google::Apis::BackupdrV1::DiskExclusionLabels, decorator: Google::Apis::BackupdrV1::DiskExclusionLabels::Representation
1332
+
1318
1333
  property :guest_flush, as: 'guestFlush'
1319
1334
  end
1320
1335
  end
@@ -1326,9 +1341,11 @@ module Google
1326
1341
  property :description, as: 'description'
1327
1342
  collection :disk, as: 'disk', class: Google::Apis::BackupdrV1::AttachedDisk, decorator: Google::Apis::BackupdrV1::AttachedDisk::Representation
1328
1343
 
1344
+ collection :excluded_disks, as: 'excludedDisks'
1329
1345
  collection :guest_accelerator, as: 'guestAccelerator', class: Google::Apis::BackupdrV1::AcceleratorConfig, decorator: Google::Apis::BackupdrV1::AcceleratorConfig::Representation
1330
1346
 
1331
1347
  property :guest_flush, as: 'guestFlush'
1348
+ collection :included_disks, as: 'includedDisks'
1332
1349
  property :key_revocation_action_type, as: 'keyRevocationActionType'
1333
1350
  hash :labels, as: 'labels'
1334
1351
  property :machine_type, as: 'machineType'
@@ -1564,6 +1581,14 @@ module Google
1564
1581
  end
1565
1582
  end
1566
1583
 
1584
+ class DiskExclusionLabels
1585
+ # @private
1586
+ class Representation < Google::Apis::Core::JsonRepresentation
1587
+ collection :labels, as: 'labels', class: Google::Apis::BackupdrV1::LabelKeyValPair, decorator: Google::Apis::BackupdrV1::LabelKeyValPair::Representation
1588
+
1589
+ end
1590
+ end
1591
+
1567
1592
  class DiskRestoreProperties
1568
1593
  # @private
1569
1594
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1859,6 +1884,14 @@ module Google
1859
1884
  end
1860
1885
  end
1861
1886
 
1887
+ class LabelKeyValPair
1888
+ # @private
1889
+ class Representation < Google::Apis::Core::JsonRepresentation
1890
+ property :key, as: 'key'
1891
+ property :value, as: 'value'
1892
+ end
1893
+ end
1894
+
1862
1895
  class ListBackupPlanAssociationsResponse
1863
1896
  # @private
1864
1897
  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.61.0
4
+ version: 0.62.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.61.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.62.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: