google-apis-backupdr_v1 0.43.0 → 0.45.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: cedc1a328c753791425fbde38a54ae064f6d5635e69041006c8b964df3f1ad33
4
+ data.tar.gz: 0c5e56c67dcabbd795c18996785565c80cd572a2d75acb3007c2bc0f8bbc9cbf
5
5
  SHA512:
6
- metadata.gz: d7ec690062c909df1fa3cf800a382f57e0000e7695362b58b66b16212e19af93007298428ce7784581d731c023409ad0988cb9ef6b720a5754005817494adf3d
7
- data.tar.gz: 4aed91418522c5137f38a509fef59a0c11a6a8050a7d03ee7c717b3aef06bf5b299399c562844e2fd5ee546dcab87e3360c477213f18e6cdaae5c74b73868ff8
6
+ metadata.gz: 99046882fcb7b94485e04a74d0d5daa9da7635b97f494764252c92648080cf5217ba220546e1824e93f697fcfef234b65b7b6f88846d9eef34e9fb50020decb7
7
+ data.tar.gz: aa6772cba08f4fa13c79b8d21daf056b255fc8c54ace85c056e5821d48331dc6b1a7b3afdf67ce93214415cfd474920a7c227a7628b6f1e6a08c951648629737
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-backupdr_v1
2
2
 
3
+ ### v0.45.0 (2025-11-09)
4
+
5
+ * Regenerated from discovery document revision 20251029
6
+
7
+ ### v0.44.0 (2025-11-02)
8
+
9
+ * Regenerated from discovery document revision 20251022
10
+
3
11
  ### v0.43.0 (2025-10-26)
4
12
 
5
13
  * 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)
@@ -3858,6 +3866,11 @@ module Google
3858
3866
  # @return [String]
3859
3867
  attr_accessor :next_page_token
3860
3868
 
3869
+ # Locations that could not be reached.
3870
+ # Corresponds to the JSON property `unreachable`
3871
+ # @return [Array<String>]
3872
+ attr_accessor :unreachable
3873
+
3861
3874
  def initialize(**args)
3862
3875
  update!(**args)
3863
3876
  end
@@ -3866,6 +3879,7 @@ module Google
3866
3879
  def update!(**args)
3867
3880
  @data_source_references = args[:data_source_references] if args.key?(:data_source_references)
3868
3881
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3882
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
3869
3883
  end
3870
3884
  end
3871
3885
 
@@ -5464,6 +5478,13 @@ module Google
5464
5478
  class TriggerBackupRequest
5465
5479
  include Google::Apis::Core::Hashable
5466
5480
 
5481
+ # Optional. The duration for which backup data will be kept, while taking an on-
5482
+ # demand backup with custom retention. It is defined in "days". It is mutually
5483
+ # exclusive with rule_id. This field is required if rule_id is not provided.
5484
+ # Corresponds to the JSON property `customRetentionDays`
5485
+ # @return [Fixnum]
5486
+ attr_accessor :custom_retention_days
5487
+
5467
5488
  # Optional. An optional request ID to identify requests. Specify a unique
5468
5489
  # request ID so that if you must retry your request, the server will know to
5469
5490
  # ignore the request if it has already been completed. The server will guarantee
@@ -5490,6 +5511,7 @@ module Google
5490
5511
 
5491
5512
  # Update properties of this object
5492
5513
  def update!(**args)
5514
+ @custom_retention_days = args[:custom_retention_days] if args.key?(:custom_retention_days)
5493
5515
  @request_id = args[:request_id] if args.key?(:request_id)
5494
5516
  @rule_id = args[:rule_id] if args.key?(:rule_id)
5495
5517
  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.45.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 = "20251029"
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'
@@ -1702,6 +1703,7 @@ module Google
1702
1703
  collection :data_source_references, as: 'dataSourceReferences', class: Google::Apis::BackupdrV1::DataSourceReference, decorator: Google::Apis::BackupdrV1::DataSourceReference::Representation
1703
1704
 
1704
1705
  property :next_page_token, as: 'nextPageToken'
1706
+ collection :unreachable, as: 'unreachable'
1705
1707
  end
1706
1708
  end
1707
1709
 
@@ -2110,6 +2112,7 @@ module Google
2110
2112
  class TriggerBackupRequest
2111
2113
  # @private
2112
2114
  class Representation < Google::Apis::Core::JsonRepresentation
2115
+ property :custom_retention_days, as: 'customRetentionDays'
2113
2116
  property :request_id, as: 'requestId'
2114
2117
  property :rule_id, as: 'ruleId'
2115
2118
  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.45.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.45.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: