google-apis-backupdr_v1 0.18.0 → 0.19.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: d9850d84bf82433a9f22b0fe24d341017401dd71e2bcd483c6d8926991be4157
4
- data.tar.gz: b099641c033a631bf211b197ec1dd954b814af64126d2c2cc00fecff2f09a1da
3
+ metadata.gz: 3ff414f9e63737ef7f4c7fd7f7b26b9943791a3e3320e7e39066f74a6c8f897c
4
+ data.tar.gz: 76e1e504a1cb4cdd070af8d2a8bc6f63c64c348d46d20521d9fb82d6a7dfb456
5
5
  SHA512:
6
- metadata.gz: dff48928000cee59d57a0f505601a4de50a882234734f3a11d4b985ce58a59d34858c275b0bbe59947824c9901faaa45a4e4c34b3607bd8ea6a3b6a03192de5f
7
- data.tar.gz: 0eae5cc7d018af6a16ebbb64841aa71659bb924c41d863a56f949fd08537bcc89206faba6ce5bd5e0331ec54cb02959681af4ec1436da4a179065bce4abaaec3
6
+ metadata.gz: 6fe0b56483f3305f58241826fbf815f8ed707b507391131a9727237c32e990c4957f77382576f8a37e5dbcd1f59079784b0a561b00024224bdd5be22a6211dbe
7
+ data.tar.gz: 93142d1c0761acd93c2b8fbb985e176f4a81bb4c409359f72951caed5eba253183aa01a036b5be98eb313245e54a8daf4f2c0c9be183fb74e9ecc1e232f8705e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-backupdr_v1
2
2
 
3
+ ### v0.19.0 (2024-10-06)
4
+
5
+ * Regenerated from discovery document revision 20240920
6
+
3
7
  ### v0.18.0 (2024-09-29)
4
8
 
5
9
  * Regenerated from discovery document revision 20240918
@@ -2392,6 +2392,38 @@ module Google
2392
2392
  end
2393
2393
  end
2394
2394
 
2395
+ # Minimum details to identify a Google Cloud resource
2396
+ class GcpResource
2397
+ include Google::Apis::Core::Hashable
2398
+
2399
+ # Name of the Google Cloud resource.
2400
+ # Corresponds to the JSON property `gcpResourcename`
2401
+ # @return [String]
2402
+ attr_accessor :gcp_resourcename
2403
+
2404
+ # Location of the resource: //"global"/"unspecified".
2405
+ # Corresponds to the JSON property `location`
2406
+ # @return [String]
2407
+ attr_accessor :location
2408
+
2409
+ # Type of the resource. Use the Unified Resource Type, eg. compute.googleapis.
2410
+ # com/Instance.
2411
+ # Corresponds to the JSON property `type`
2412
+ # @return [String]
2413
+ attr_accessor :type
2414
+
2415
+ def initialize(**args)
2416
+ update!(**args)
2417
+ end
2418
+
2419
+ # Update properties of this object
2420
+ def update!(**args)
2421
+ @gcp_resourcename = args[:gcp_resourcename] if args.key?(:gcp_resourcename)
2422
+ @location = args[:location] if args.key?(:location)
2423
+ @type = args[:type] if args.key?(:type)
2424
+ end
2425
+ end
2426
+
2395
2427
  # Feature type of the Guest OS.
2396
2428
  class GuestOsFeature
2397
2429
  include Google::Apis::Core::Hashable
@@ -3698,6 +3730,25 @@ module Google
3698
3730
  end
3699
3731
  end
3700
3732
 
3733
+ # Response message for restoring from a Backup.
3734
+ class RestoreBackupResponse
3735
+ include Google::Apis::Core::Hashable
3736
+
3737
+ # Details of the target resource created/modified as part of restore.
3738
+ # Corresponds to the JSON property `targetResource`
3739
+ # @return [Google::Apis::BackupdrV1::TargetResource]
3740
+ attr_accessor :target_resource
3741
+
3742
+ def initialize(**args)
3743
+ update!(**args)
3744
+ end
3745
+
3746
+ # Update properties of this object
3747
+ def update!(**args)
3748
+ @target_resource = args[:target_resource] if args.key?(:target_resource)
3749
+ end
3750
+ end
3751
+
3701
3752
  # Message for rules config info.
3702
3753
  class RuleConfigInfo
3703
3754
  include Google::Apis::Core::Hashable
@@ -3978,6 +4029,19 @@ module Google
3978
4029
  end
3979
4030
  end
3980
4031
 
4032
+ # Response message from SetStatusInternal method.
4033
+ class SetInternalStatusResponse
4034
+ include Google::Apis::Core::Hashable
4035
+
4036
+ def initialize(**args)
4037
+ update!(**args)
4038
+ end
4039
+
4040
+ # Update properties of this object
4041
+ def update!(**args)
4042
+ end
4043
+ end
4044
+
3981
4045
  #
3982
4046
  class SpannerLocation
3983
4047
  include Google::Apis::Core::Hashable
@@ -4146,6 +4210,25 @@ module Google
4146
4210
  end
4147
4211
  end
4148
4212
 
4213
+ # Details of the target resource created/modified as part of restore.
4214
+ class TargetResource
4215
+ include Google::Apis::Core::Hashable
4216
+
4217
+ # Minimum details to identify a Google Cloud resource
4218
+ # Corresponds to the JSON property `gcpResource`
4219
+ # @return [Google::Apis::BackupdrV1::GcpResource]
4220
+ attr_accessor :gcp_resource
4221
+
4222
+ def initialize(**args)
4223
+ update!(**args)
4224
+ end
4225
+
4226
+ # Update properties of this object
4227
+ def update!(**args)
4228
+ @gcp_resource = args[:gcp_resource] if args.key?(:gcp_resource)
4229
+ end
4230
+ end
4231
+
4149
4232
  #
4150
4233
  class TenantProjectProxy
4151
4234
  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.18.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240918"
25
+ REVISION = "20240920"
26
26
  end
27
27
  end
28
28
  end
@@ -304,6 +304,12 @@ module Google
304
304
  include Google::Apis::Core::JsonObjectSupport
305
305
  end
306
306
 
307
+ class GcpResource
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
307
313
  class GuestOsFeature
308
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
315
 
@@ -496,6 +502,12 @@ module Google
496
502
  include Google::Apis::Core::JsonObjectSupport
497
503
  end
498
504
 
505
+ class RestoreBackupResponse
506
+ class Representation < Google::Apis::Core::JsonRepresentation; end
507
+
508
+ include Google::Apis::Core::JsonObjectSupport
509
+ end
510
+
499
511
  class RuleConfigInfo
500
512
  class Representation < Google::Apis::Core::JsonRepresentation; end
501
513
 
@@ -538,6 +550,12 @@ module Google
538
550
  include Google::Apis::Core::JsonObjectSupport
539
551
  end
540
552
 
553
+ class SetInternalStatusResponse
554
+ class Representation < Google::Apis::Core::JsonRepresentation; end
555
+
556
+ include Google::Apis::Core::JsonObjectSupport
557
+ end
558
+
541
559
  class SpannerLocation
542
560
  class Representation < Google::Apis::Core::JsonRepresentation; end
543
561
 
@@ -562,6 +580,12 @@ module Google
562
580
  include Google::Apis::Core::JsonObjectSupport
563
581
  end
564
582
 
583
+ class TargetResource
584
+ class Representation < Google::Apis::Core::JsonRepresentation; end
585
+
586
+ include Google::Apis::Core::JsonObjectSupport
587
+ end
588
+
565
589
  class TenantProjectProxy
566
590
  class Representation < Google::Apis::Core::JsonRepresentation; end
567
591
 
@@ -1183,6 +1207,15 @@ module Google
1183
1207
  end
1184
1208
  end
1185
1209
 
1210
+ class GcpResource
1211
+ # @private
1212
+ class Representation < Google::Apis::Core::JsonRepresentation
1213
+ property :gcp_resourcename, as: 'gcpResourcename'
1214
+ property :location, as: 'location'
1215
+ property :type, as: 'type'
1216
+ end
1217
+ end
1218
+
1186
1219
  class GuestOsFeature
1187
1220
  # @private
1188
1221
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1521,6 +1554,14 @@ module Google
1521
1554
  end
1522
1555
  end
1523
1556
 
1557
+ class RestoreBackupResponse
1558
+ # @private
1559
+ class Representation < Google::Apis::Core::JsonRepresentation
1560
+ property :target_resource, as: 'targetResource', class: Google::Apis::BackupdrV1::TargetResource, decorator: Google::Apis::BackupdrV1::TargetResource::Representation
1561
+
1562
+ end
1563
+ end
1564
+
1524
1565
  class RuleConfigInfo
1525
1566
  # @private
1526
1567
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1589,6 +1630,12 @@ module Google
1589
1630
  end
1590
1631
  end
1591
1632
 
1633
+ class SetInternalStatusResponse
1634
+ # @private
1635
+ class Representation < Google::Apis::Core::JsonRepresentation
1636
+ end
1637
+ end
1638
+
1592
1639
  class SpannerLocation
1593
1640
  # @private
1594
1641
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1629,6 +1676,14 @@ module Google
1629
1676
  end
1630
1677
  end
1631
1678
 
1679
+ class TargetResource
1680
+ # @private
1681
+ class Representation < Google::Apis::Core::JsonRepresentation
1682
+ property :gcp_resource, as: 'gcpResource', class: Google::Apis::BackupdrV1::GcpResource, decorator: Google::Apis::BackupdrV1::GcpResource::Representation
1683
+
1684
+ end
1685
+ end
1686
+
1632
1687
  class TenantProjectProxy
1633
1688
  # @private
1634
1689
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-backupdr_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-29 00:00:00.000000000 Z
11
+ date: 2024-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-backupdr_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.19.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-backupdr_v1
63
63
  post_install_message:
64
64
  rdoc_options: []