google-apis-backupdr_v1 0.43.0 → 0.44.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: d8426bf0b48cd79eef345f8e8228ffaa9f2311e500b0d1c165439f02a4cec435
4
- data.tar.gz: f1bc604c4301f2adc5a02e6b1e6f6adc5c599598538ebd3a4406507163596d79
3
+ metadata.gz: e78f1eed723e1a6c6feaced1169c10ac74be985fdc5c5c87309914849d7f462d
4
+ data.tar.gz: 2e3f2d1d3d62aecafa775c3c02f81d09c6382ce32d8845c5866e61d6b7cc33a1
5
5
  SHA512:
6
- metadata.gz: d7ec690062c909df1fa3cf800a382f57e0000e7695362b58b66b16212e19af93007298428ce7784581d731c023409ad0988cb9ef6b720a5754005817494adf3d
7
- data.tar.gz: 4aed91418522c5137f38a509fef59a0c11a6a8050a7d03ee7c717b3aef06bf5b299399c562844e2fd5ee546dcab87e3360c477213f18e6cdaae5c74b73868ff8
6
+ metadata.gz: 3583849c278bea27bd67dbf2332d81d2a377131374e25b34ff147d9e2f90e738fd99c0ef0be77483b9bfd409216cb7dde11731fb5a40f6fa46f855b808d21061
7
+ data.tar.gz: 323e959c81ff497a2ba5fec5a5a407714b2d85645a7f07beddaadee421f2b41003741f507512c5a2c4370f92dfe5704dc38a3d9449d4e7fe282231e93b821e33
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-backupdr_v1
2
2
 
3
+ ### v0.44.0 (2025-11-02)
4
+
5
+ * Regenerated from discovery document revision 20251022
6
+
3
7
  ### v0.43.0 (2025-10-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20251015
@@ -1182,6 +1182,13 @@ module Google
1182
1182
  # @return [Fixnum]
1183
1183
  attr_accessor :log_retention_days
1184
1184
 
1185
+ # Optional. Optional field to configure the maximum number of days for which a
1186
+ # backup can be retained. This field is only applicable for on-demand backups
1187
+ # taken with custom retention value.
1188
+ # Corresponds to the JSON property `maxCustomOnDemandRetentionDays`
1189
+ # @return [Fixnum]
1190
+ attr_accessor :max_custom_on_demand_retention_days
1191
+
1185
1192
  # Output only. Identifier. The resource name of the `BackupPlan`. Format: `
1186
1193
  # projects/`project`/locations/`location`/backupPlans/`backup_plan``
1187
1194
  # Corresponds to the JSON property `name`
@@ -1237,6 +1244,7 @@ module Google
1237
1244
  @etag = args[:etag] if args.key?(:etag)
1238
1245
  @labels = args[:labels] if args.key?(:labels)
1239
1246
  @log_retention_days = args[:log_retention_days] if args.key?(:log_retention_days)
1247
+ @max_custom_on_demand_retention_days = args[:max_custom_on_demand_retention_days] if args.key?(:max_custom_on_demand_retention_days)
1240
1248
  @name = args[:name] if args.key?(:name)
1241
1249
  @resource_type = args[:resource_type] if args.key?(:resource_type)
1242
1250
  @revision_id = args[:revision_id] if args.key?(:revision_id)
@@ -5464,6 +5472,13 @@ module Google
5464
5472
  class TriggerBackupRequest
5465
5473
  include Google::Apis::Core::Hashable
5466
5474
 
5475
+ # Optional. The duration for which backup data will be kept, while taking an on-
5476
+ # demand backup with custom retention. It is defined in "days". It is mutually
5477
+ # exclusive with rule_id. This field is required if rule_id is not provided.
5478
+ # Corresponds to the JSON property `customRetentionDays`
5479
+ # @return [Fixnum]
5480
+ attr_accessor :custom_retention_days
5481
+
5467
5482
  # Optional. An optional request ID to identify requests. Specify a unique
5468
5483
  # request ID so that if you must retry your request, the server will know to
5469
5484
  # ignore the request if it has already been completed. The server will guarantee
@@ -5490,6 +5505,7 @@ module Google
5490
5505
 
5491
5506
  # Update properties of this object
5492
5507
  def update!(**args)
5508
+ @custom_retention_days = args[:custom_retention_days] if args.key?(:custom_retention_days)
5493
5509
  @request_id = args[:request_id] if args.key?(:request_id)
5494
5510
  @rule_id = args[:rule_id] if args.key?(:rule_id)
5495
5511
  end
@@ -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.43.0"
19
+ GEM_VERSION = "0.44.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 = "20251015"
25
+ REVISION = "20251022"
26
26
  end
27
27
  end
28
28
  end
@@ -1048,6 +1048,7 @@ module Google
1048
1048
  property :etag, as: 'etag'
1049
1049
  hash :labels, as: 'labels'
1050
1050
  property :log_retention_days, :numeric_string => true, as: 'logRetentionDays'
1051
+ property :max_custom_on_demand_retention_days, as: 'maxCustomOnDemandRetentionDays'
1051
1052
  property :name, as: 'name'
1052
1053
  property :resource_type, as: 'resourceType'
1053
1054
  property :revision_id, as: 'revisionId'
@@ -2110,6 +2111,7 @@ module Google
2110
2111
  class TriggerBackupRequest
2111
2112
  # @private
2112
2113
  class Representation < Google::Apis::Core::JsonRepresentation
2114
+ property :custom_retention_days, as: 'customRetentionDays'
2113
2115
  property :request_id, as: 'requestId'
2114
2116
  property :rule_id, as: 'ruleId'
2115
2117
  end
@@ -117,8 +117,8 @@ module Google
117
117
  # @param [String] name
118
118
  # The resource that owns the locations collection, if applicable.
119
119
  # @param [Array<String>, String] extra_location_types
120
- # Optional. Unless explicitly documented otherwise, don't use this unsupported
121
- # field which is primarily intended for internal usage.
120
+ # Optional. Do not use this field. It is unsupported and is ignored unless
121
+ # explicitly documented otherwise. This is primarily for internal usage.
122
122
  # @param [String] filter
123
123
  # A filter to narrow down results to a preferred subset. The filtering language
124
124
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
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.43.0
4
+ version: 0.44.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.43.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.44.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: