google-apis-backupdr_v1 0.23.0 → 0.25.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: 6962aab514748f9aceacf43f1810ce2029559004b88d9791a4f4975dda918356
4
- data.tar.gz: 4398da4e63a8425e4c2a008bbe19a4e44536dc68cdc38f5b77979ca500232a8d
3
+ metadata.gz: db2323a783da69a3cb963465466b6a9f08975ca33a8502185efc2c409d1a7297
4
+ data.tar.gz: 5a8846f2d495e3240bea74c7ae7e3980b7c403cac7675d7c9bc66b362f5c848b
5
5
  SHA512:
6
- metadata.gz: 176cce93f614ffae4b3ba1aa0781b98b73aacb52d884f73ea44bef66b0978c544db4c4f158137ec3d17469c4d7b529f6fcb6ee5aaac6203c91b62e458bd801e5
7
- data.tar.gz: 589ea07735a804fd04812636f62b15d919d325a0b0cc17c7a92190879237ea0ea96d2dc6cd8574a820229c65a38d22755b848d1f6b641ac00a384b30fad54152
6
+ metadata.gz: cdb173c8290a8af7265c2520a9b7ca098f4d2b045ee86cd4265e2bd4f5c8796870f7f7599a962a82a1a0ddc4ab45c250009a042f8975204c679633588c5dce41
7
+ data.tar.gz: fef64e455e843fdf096b3106637ebfd608e225005b7ebc296206ef24b55b25f9c8be80246c015a9c60dcaa002dea7c532d4bd3ba33f8f2df13811d2c2c9e95bc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-backupdr_v1
2
2
 
3
+ ### v0.25.0 (2025-03-23)
4
+
5
+ * Regenerated from discovery document revision 20250317
6
+
7
+ ### v0.24.0 (2025-02-26)
8
+
9
+ * Regenerated from discovery document revision 20250205
10
+ * Regenerated using generator version 0.16.0
11
+
3
12
  ### v0.23.0 (2024-12-15)
4
13
 
5
14
  * Regenerated from discovery document revision 20241204
@@ -727,6 +727,98 @@ module Google
727
727
  end
728
728
  end
729
729
 
730
+ # BackupConfigDetails has information about how the resource is configured for
731
+ # backups and about the most recent backup taken for this configuration.
732
+ class BackupConfigDetails
733
+ include Google::Apis::Core::Hashable
734
+
735
+ # Output only. The [full resource name](https://cloud.google.com/asset-inventory/
736
+ # docs/resource-name-format) of the resource that is applicable for the backup
737
+ # configuration. Example: "//compute.googleapis.com/projects/`project`/zones/`
738
+ # zone`/instances/`instance`"
739
+ # Corresponds to the JSON property `applicableResource`
740
+ # @return [String]
741
+ attr_accessor :applicable_resource
742
+
743
+ # Output only. The full resource name of the backup config source resource. For
744
+ # example, "//backupdr.googleapis.com/v1/projects/`project`/locations/`region`/
745
+ # backupPlans/`backupplanId`" or "//compute.googleapis.com/projects/`project`/
746
+ # locations/`region`/resourcePolicies/`resourcePolicyId`".
747
+ # Corresponds to the JSON property `backupConfigSource`
748
+ # @return [String]
749
+ attr_accessor :backup_config_source
750
+
751
+ # Output only. The display name of the backup config source resource.
752
+ # Corresponds to the JSON property `backupConfigSourceDisplayName`
753
+ # @return [String]
754
+ attr_accessor :backup_config_source_display_name
755
+
756
+ # BackupDrPlanConfig has additional information about Backup and DR's Plan
757
+ # backup configuration.
758
+ # Corresponds to the JSON property `backupDrPlanConfig`
759
+ # @return [Google::Apis::BackupdrV1::BackupDrPlanConfig]
760
+ attr_accessor :backup_dr_plan_config
761
+
762
+ # BackupDrTemplateConfig has additional information about Backup and DR's
763
+ # Template backup configuration.
764
+ # Corresponds to the JSON property `backupDrTemplateConfig`
765
+ # @return [Google::Apis::BackupdrV1::BackupDrTemplateConfig]
766
+ attr_accessor :backup_dr_template_config
767
+
768
+ # The locations where the backups are to be stored.
769
+ # Corresponds to the JSON property `backupLocations`
770
+ # @return [Array<Google::Apis::BackupdrV1::BackupLocation>]
771
+ attr_accessor :backup_locations
772
+
773
+ # Output only. The [full resource name](https://cloud.google.com/asset-inventory/
774
+ # docs/resource-name-format) of the backup vault that will store the backups
775
+ # generated through this backup configuration. Example: "//backupdr.googleapis.
776
+ # com/v1/projects/`project`/locations/`region`/backupVaults/`backupvaultId`"
777
+ # Corresponds to the JSON property `backupVault`
778
+ # @return [String]
779
+ attr_accessor :backup_vault
780
+
781
+ # Output only. Timestamp of the latest successful backup created via this backup
782
+ # configuration.
783
+ # Corresponds to the JSON property `latestSuccessfulBackupTime`
784
+ # @return [String]
785
+ attr_accessor :latest_successful_backup_time
786
+
787
+ # Point in time recovery settings of the backup configuration resource.
788
+ # Corresponds to the JSON property `pitrSettings`
789
+ # @return [Google::Apis::BackupdrV1::PitrSettings]
790
+ attr_accessor :pitr_settings
791
+
792
+ # Output only. The state of the backup config resource.
793
+ # Corresponds to the JSON property `state`
794
+ # @return [String]
795
+ attr_accessor :state
796
+
797
+ # Output only. The type of the backup config resource.
798
+ # Corresponds to the JSON property `type`
799
+ # @return [String]
800
+ attr_accessor :type
801
+
802
+ def initialize(**args)
803
+ update!(**args)
804
+ end
805
+
806
+ # Update properties of this object
807
+ def update!(**args)
808
+ @applicable_resource = args[:applicable_resource] if args.key?(:applicable_resource)
809
+ @backup_config_source = args[:backup_config_source] if args.key?(:backup_config_source)
810
+ @backup_config_source_display_name = args[:backup_config_source_display_name] if args.key?(:backup_config_source_display_name)
811
+ @backup_dr_plan_config = args[:backup_dr_plan_config] if args.key?(:backup_dr_plan_config)
812
+ @backup_dr_template_config = args[:backup_dr_template_config] if args.key?(:backup_dr_template_config)
813
+ @backup_locations = args[:backup_locations] if args.key?(:backup_locations)
814
+ @backup_vault = args[:backup_vault] if args.key?(:backup_vault)
815
+ @latest_successful_backup_time = args[:latest_successful_backup_time] if args.key?(:latest_successful_backup_time)
816
+ @pitr_settings = args[:pitr_settings] if args.key?(:pitr_settings)
817
+ @state = args[:state] if args.key?(:state)
818
+ @type = args[:type] if args.key?(:type)
819
+ end
820
+ end
821
+
730
822
  # BackupConfigInfo has information about how the resource is configured for
731
823
  # Backup and about the most recent backup to this vault.
732
824
  class BackupConfigInfo
@@ -766,6 +858,12 @@ module Google
766
858
  # @return [String]
767
859
  attr_accessor :last_successful_backup_consistency_time
768
860
 
861
+ # Output only. If the last log backup were successful, this field has the
862
+ # consistency date.
863
+ # Corresponds to the JSON property `lastSuccessfulLogBackupConsistencyTime`
864
+ # @return [String]
865
+ attr_accessor :last_successful_log_backup_consistency_time
866
+
769
867
  def initialize(**args)
770
868
  update!(**args)
771
869
  end
@@ -777,6 +875,106 @@ module Google
777
875
  @last_backup_error = args[:last_backup_error] if args.key?(:last_backup_error)
778
876
  @last_backup_state = args[:last_backup_state] if args.key?(:last_backup_state)
779
877
  @last_successful_backup_consistency_time = args[:last_successful_backup_consistency_time] if args.key?(:last_successful_backup_consistency_time)
878
+ @last_successful_log_backup_consistency_time = args[:last_successful_log_backup_consistency_time] if args.key?(:last_successful_log_backup_consistency_time)
879
+ end
880
+ end
881
+
882
+ # BackupDrPlanConfig has additional information about Backup and DR's Plan
883
+ # backup configuration.
884
+ class BackupDrPlanConfig
885
+ include Google::Apis::Core::Hashable
886
+
887
+ # Backup rules of the backup plan resource.
888
+ # Corresponds to the JSON property `backupDrPlanRules`
889
+ # @return [Array<Google::Apis::BackupdrV1::BackupDrPlanRule>]
890
+ attr_accessor :backup_dr_plan_rules
891
+
892
+ def initialize(**args)
893
+ update!(**args)
894
+ end
895
+
896
+ # Update properties of this object
897
+ def update!(**args)
898
+ @backup_dr_plan_rules = args[:backup_dr_plan_rules] if args.key?(:backup_dr_plan_rules)
899
+ end
900
+ end
901
+
902
+ # BackupDrPlanRule has rule specific information of the backup plan resource.
903
+ class BackupDrPlanRule
904
+ include Google::Apis::Core::Hashable
905
+
906
+ # Output only. Timestamp of the latest successful backup created via this backup
907
+ # rule.
908
+ # Corresponds to the JSON property `lastSuccessfulBackupTime`
909
+ # @return [String]
910
+ attr_accessor :last_successful_backup_time
911
+
912
+ # Output only. Unique Id of the backup rule.
913
+ # Corresponds to the JSON property `ruleId`
914
+ # @return [String]
915
+ attr_accessor :rule_id
916
+
917
+ def initialize(**args)
918
+ update!(**args)
919
+ end
920
+
921
+ # Update properties of this object
922
+ def update!(**args)
923
+ @last_successful_backup_time = args[:last_successful_backup_time] if args.key?(:last_successful_backup_time)
924
+ @rule_id = args[:rule_id] if args.key?(:rule_id)
925
+ end
926
+ end
927
+
928
+ # BackupDrTemplateConfig has additional information about Backup and DR's
929
+ # Template backup configuration.
930
+ class BackupDrTemplateConfig
931
+ include Google::Apis::Core::Hashable
932
+
933
+ # Output only. The URI of the BackupDr template resource for the first party
934
+ # identity users.
935
+ # Corresponds to the JSON property `firstPartyManagementUri`
936
+ # @return [String]
937
+ attr_accessor :first_party_management_uri
938
+
939
+ # Output only. The URI of the BackupDr template resource for the third party
940
+ # identity users.
941
+ # Corresponds to the JSON property `thirdPartyManagementUri`
942
+ # @return [String]
943
+ attr_accessor :third_party_management_uri
944
+
945
+ def initialize(**args)
946
+ update!(**args)
947
+ end
948
+
949
+ # Update properties of this object
950
+ def update!(**args)
951
+ @first_party_management_uri = args[:first_party_management_uri] if args.key?(:first_party_management_uri)
952
+ @third_party_management_uri = args[:third_party_management_uri] if args.key?(:third_party_management_uri)
953
+ end
954
+ end
955
+
956
+ # BackupLocation represents a cloud location where a backup can be stored.
957
+ class BackupLocation
958
+ include Google::Apis::Core::Hashable
959
+
960
+ # Output only. The id of the cloud location. Example: "us-central1"
961
+ # Corresponds to the JSON property `locationId`
962
+ # @return [String]
963
+ attr_accessor :location_id
964
+
965
+ # Output only. The type of the location.
966
+ # Corresponds to the JSON property `type`
967
+ # @return [String]
968
+ attr_accessor :type
969
+
970
+ def initialize(**args)
971
+ update!(**args)
972
+ end
973
+
974
+ # Update properties of this object
975
+ def update!(**args)
976
+ @location_id = args[:location_id] if args.key?(:location_id)
977
+ @type = args[:type] if args.key?(:type)
780
978
  end
781
979
  end
782
980
 
@@ -874,9 +1072,7 @@ module Google
874
1072
  # @return [String]
875
1073
  attr_accessor :name
876
1074
 
877
- # Required. The resource type to which the `BackupPlan` will be applied.
878
- # Examples include, "compute.googleapis.com/Instance", "sqladmin.googleapis.com/
879
- # Instance", or "alloydb.googleapis.com/Cluster".
1075
+ # Required.
880
1076
  # Corresponds to the JSON property `resourceType`
881
1077
  # @return [String]
882
1078
  attr_accessor :resource_type
@@ -946,7 +1142,7 @@ module Google
946
1142
  # @return [String]
947
1143
  attr_accessor :resource
948
1144
 
949
- # Required. Immutable. Resource type of workload on which backupplan is applied
1145
+ # Required. Immutable.
950
1146
  # Corresponds to the JSON property `resourceType`
951
1147
  # @return [String]
952
1148
  attr_accessor :resource_type
@@ -2720,6 +2916,31 @@ module Google
2720
2916
  end
2721
2917
  end
2722
2918
 
2919
+ # Response for ListResourceBackupConfigs.
2920
+ class ListResourceBackupConfigsResponse
2921
+ include Google::Apis::Core::Hashable
2922
+
2923
+ # A token identifying a page of results the server should return.
2924
+ # Corresponds to the JSON property `nextPageToken`
2925
+ # @return [String]
2926
+ attr_accessor :next_page_token
2927
+
2928
+ # The list of ResourceBackupConfigs for the specified scope.
2929
+ # Corresponds to the JSON property `resourceBackupConfigs`
2930
+ # @return [Array<Google::Apis::BackupdrV1::ResourceBackupConfig>]
2931
+ attr_accessor :resource_backup_configs
2932
+
2933
+ def initialize(**args)
2934
+ update!(**args)
2935
+ end
2936
+
2937
+ # Update properties of this object
2938
+ def update!(**args)
2939
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2940
+ @resource_backup_configs = args[:resource_backup_configs] if args.key?(:resource_backup_configs)
2941
+ end
2942
+ end
2943
+
2723
2944
  # A resource that represents a Google Cloud location.
2724
2945
  class Location
2725
2946
  include Google::Apis::Core::Hashable
@@ -3255,6 +3476,25 @@ module Google
3255
3476
  end
3256
3477
  end
3257
3478
 
3479
+ # Point in time recovery settings of the backup configuration resource.
3480
+ class PitrSettings
3481
+ include Google::Apis::Core::Hashable
3482
+
3483
+ # Output only. Number of days to retain the backup.
3484
+ # Corresponds to the JSON property `retentionDays`
3485
+ # @return [Fixnum]
3486
+ attr_accessor :retention_days
3487
+
3488
+ def initialize(**args)
3489
+ update!(**args)
3490
+ end
3491
+
3492
+ # Update properties of this object
3493
+ def update!(**args)
3494
+ @retention_days = args[:retention_days] if args.key?(:retention_days)
3495
+ end
3496
+ end
3497
+
3258
3498
  # An Identity and Access Management (IAM) policy, which specifies access
3259
3499
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
3260
3500
  # A `binding` binds one or more `members`, or principals, to a single `role`.
@@ -3378,6 +3618,86 @@ module Google
3378
3618
  end
3379
3619
  end
3380
3620
 
3621
+ # ResourceBackupConfig represents a resource along with its backup
3622
+ # configurations.
3623
+ class ResourceBackupConfig
3624
+ include Google::Apis::Core::Hashable
3625
+
3626
+ # Backup configurations applying to the target resource, including those
3627
+ # targeting its related/child resources. For example, backup configuration
3628
+ # applicable to Compute Engine disks will be populated in this field for a
3629
+ # Compute Engine VM which has the disk associated.
3630
+ # Corresponds to the JSON property `backupConfigsDetails`
3631
+ # @return [Array<Google::Apis::BackupdrV1::BackupConfigDetails>]
3632
+ attr_accessor :backup_configs_details
3633
+
3634
+ # Output only. Whether the target resource is configured for backup. This is
3635
+ # true if the backup_configs_details is not empty.
3636
+ # Corresponds to the JSON property `backupConfigured`
3637
+ # @return [Boolean]
3638
+ attr_accessor :backup_configured
3639
+ alias_method :backup_configured?, :backup_configured
3640
+
3641
+ # Identifier. The resource name of the ResourceBackupConfig. Format: projects/`
3642
+ # project`/locations/`location`/resourceBackupConfigs/`uid`
3643
+ # Corresponds to the JSON property `name`
3644
+ # @return [String]
3645
+ attr_accessor :name
3646
+
3647
+ # Output only. The [full resource name](https://cloud.google.com/asset-inventory/
3648
+ # docs/resource-name-format) of the cloud resource that this configuration
3649
+ # applies to. Supported resource types are ResourceBackupConfig.ResourceType.
3650
+ # Corresponds to the JSON property `targetResource`
3651
+ # @return [String]
3652
+ attr_accessor :target_resource
3653
+
3654
+ # Output only. The human friendly name of the target resource.
3655
+ # Corresponds to the JSON property `targetResourceDisplayName`
3656
+ # @return [String]
3657
+ attr_accessor :target_resource_display_name
3658
+
3659
+ # Labels associated with the target resource.
3660
+ # Corresponds to the JSON property `targetResourceLabels`
3661
+ # @return [Hash<String,String>]
3662
+ attr_accessor :target_resource_labels
3663
+
3664
+ # Output only. The type of the target resource.
3665
+ # Corresponds to the JSON property `targetResourceType`
3666
+ # @return [String]
3667
+ attr_accessor :target_resource_type
3668
+
3669
+ # Output only. The unique identifier of the resource backup config.
3670
+ # Corresponds to the JSON property `uid`
3671
+ # @return [String]
3672
+ attr_accessor :uid
3673
+
3674
+ # Output only. Whether the target resource is protected by a backup vault. This
3675
+ # is true if the backup_configs_details is not empty and any of the
3676
+ # ResourceBackupConfig.backup_configs_details has a backup configuration with
3677
+ # BackupConfigDetails.backup_vault set. set.
3678
+ # Corresponds to the JSON property `vaulted`
3679
+ # @return [Boolean]
3680
+ attr_accessor :vaulted
3681
+ alias_method :vaulted?, :vaulted
3682
+
3683
+ def initialize(**args)
3684
+ update!(**args)
3685
+ end
3686
+
3687
+ # Update properties of this object
3688
+ def update!(**args)
3689
+ @backup_configs_details = args[:backup_configs_details] if args.key?(:backup_configs_details)
3690
+ @backup_configured = args[:backup_configured] if args.key?(:backup_configured)
3691
+ @name = args[:name] if args.key?(:name)
3692
+ @target_resource = args[:target_resource] if args.key?(:target_resource)
3693
+ @target_resource_display_name = args[:target_resource_display_name] if args.key?(:target_resource_display_name)
3694
+ @target_resource_labels = args[:target_resource_labels] if args.key?(:target_resource_labels)
3695
+ @target_resource_type = args[:target_resource_type] if args.key?(:target_resource_type)
3696
+ @uid = args[:uid] if args.key?(:uid)
3697
+ @vaulted = args[:vaulted] if args.key?(:vaulted)
3698
+ end
3699
+ end
3700
+
3381
3701
  # Request message for restoring from a Backup.
3382
3702
  class RestoreBackupRequest
3383
3703
  include Google::Apis::Core::Hashable
@@ -3762,7 +4082,7 @@ module Google
3762
4082
  # means jobs will run every 2 hours from start time till end time defined. This
3763
4083
  # is required for `recurrence_type`, `HOURLY` and is not applicable otherwise. A
3764
4084
  # validation error will occur if a value is supplied and `recurrence_type` is
3765
- # not `HOURLY`. Value of hourly frequency should be between 6 and 23. Reason for
4085
+ # not `HOURLY`. Value of hourly frequency should be between 4 and 23. Reason for
3766
4086
  # limit : We found that there is bandwidth limitation of 3GB/S for GMI while
3767
4087
  # taking a backup and 5GB/S while doing a restore. Given the amount of parallel
3768
4088
  # backups and restore we are targeting, this will potentially take the backup
@@ -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.23.0"
19
+ GEM_VERSION = "0.25.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241204"
25
+ REVISION = "20250317"
26
26
  end
27
27
  end
28
28
  end
@@ -100,12 +100,42 @@ module Google
100
100
  include Google::Apis::Core::JsonObjectSupport
101
101
  end
102
102
 
103
+ class BackupConfigDetails
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
103
109
  class BackupConfigInfo
104
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
111
 
106
112
  include Google::Apis::Core::JsonObjectSupport
107
113
  end
108
114
 
115
+ class BackupDrPlanConfig
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
121
+ class BackupDrPlanRule
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
127
+ class BackupDrTemplateConfig
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
133
+ class BackupLocation
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
109
139
  class BackupLock
110
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
141
 
@@ -358,6 +388,12 @@ module Google
358
388
  include Google::Apis::Core::JsonObjectSupport
359
389
  end
360
390
 
391
+ class ListResourceBackupConfigsResponse
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
361
397
  class Location
362
398
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
399
 
@@ -418,6 +454,12 @@ module Google
418
454
  include Google::Apis::Core::JsonObjectSupport
419
455
  end
420
456
 
457
+ class PitrSettings
458
+ class Representation < Google::Apis::Core::JsonRepresentation; end
459
+
460
+ include Google::Apis::Core::JsonObjectSupport
461
+ end
462
+
421
463
  class Policy
422
464
  class Representation < Google::Apis::Core::JsonRepresentation; end
423
465
 
@@ -430,6 +472,12 @@ module Google
430
472
  include Google::Apis::Core::JsonObjectSupport
431
473
  end
432
474
 
475
+ class ResourceBackupConfig
476
+ class Representation < Google::Apis::Core::JsonRepresentation; end
477
+
478
+ include Google::Apis::Core::JsonObjectSupport
479
+ end
480
+
433
481
  class RestoreBackupRequest
434
482
  class Representation < Google::Apis::Core::JsonRepresentation; end
435
483
 
@@ -714,6 +762,27 @@ module Google
714
762
  end
715
763
  end
716
764
 
765
+ class BackupConfigDetails
766
+ # @private
767
+ class Representation < Google::Apis::Core::JsonRepresentation
768
+ property :applicable_resource, as: 'applicableResource'
769
+ property :backup_config_source, as: 'backupConfigSource'
770
+ property :backup_config_source_display_name, as: 'backupConfigSourceDisplayName'
771
+ property :backup_dr_plan_config, as: 'backupDrPlanConfig', class: Google::Apis::BackupdrV1::BackupDrPlanConfig, decorator: Google::Apis::BackupdrV1::BackupDrPlanConfig::Representation
772
+
773
+ property :backup_dr_template_config, as: 'backupDrTemplateConfig', class: Google::Apis::BackupdrV1::BackupDrTemplateConfig, decorator: Google::Apis::BackupdrV1::BackupDrTemplateConfig::Representation
774
+
775
+ collection :backup_locations, as: 'backupLocations', class: Google::Apis::BackupdrV1::BackupLocation, decorator: Google::Apis::BackupdrV1::BackupLocation::Representation
776
+
777
+ property :backup_vault, as: 'backupVault'
778
+ property :latest_successful_backup_time, as: 'latestSuccessfulBackupTime'
779
+ property :pitr_settings, as: 'pitrSettings', class: Google::Apis::BackupdrV1::PitrSettings, decorator: Google::Apis::BackupdrV1::PitrSettings::Representation
780
+
781
+ property :state, as: 'state'
782
+ property :type, as: 'type'
783
+ end
784
+ end
785
+
717
786
  class BackupConfigInfo
718
787
  # @private
719
788
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -725,6 +794,39 @@ module Google
725
794
 
726
795
  property :last_backup_state, as: 'lastBackupState'
727
796
  property :last_successful_backup_consistency_time, as: 'lastSuccessfulBackupConsistencyTime'
797
+ property :last_successful_log_backup_consistency_time, as: 'lastSuccessfulLogBackupConsistencyTime'
798
+ end
799
+ end
800
+
801
+ class BackupDrPlanConfig
802
+ # @private
803
+ class Representation < Google::Apis::Core::JsonRepresentation
804
+ collection :backup_dr_plan_rules, as: 'backupDrPlanRules', class: Google::Apis::BackupdrV1::BackupDrPlanRule, decorator: Google::Apis::BackupdrV1::BackupDrPlanRule::Representation
805
+
806
+ end
807
+ end
808
+
809
+ class BackupDrPlanRule
810
+ # @private
811
+ class Representation < Google::Apis::Core::JsonRepresentation
812
+ property :last_successful_backup_time, as: 'lastSuccessfulBackupTime'
813
+ property :rule_id, as: 'ruleId'
814
+ end
815
+ end
816
+
817
+ class BackupDrTemplateConfig
818
+ # @private
819
+ class Representation < Google::Apis::Core::JsonRepresentation
820
+ property :first_party_management_uri, as: 'firstPartyManagementUri'
821
+ property :third_party_management_uri, as: 'thirdPartyManagementUri'
822
+ end
823
+ end
824
+
825
+ class BackupLocation
826
+ # @private
827
+ class Representation < Google::Apis::Core::JsonRepresentation
828
+ property :location_id, as: 'locationId'
829
+ property :type, as: 'type'
728
830
  end
729
831
  end
730
832
 
@@ -1205,6 +1307,15 @@ module Google
1205
1307
  end
1206
1308
  end
1207
1309
 
1310
+ class ListResourceBackupConfigsResponse
1311
+ # @private
1312
+ class Representation < Google::Apis::Core::JsonRepresentation
1313
+ property :next_page_token, as: 'nextPageToken'
1314
+ collection :resource_backup_configs, as: 'resourceBackupConfigs', class: Google::Apis::BackupdrV1::ResourceBackupConfig, decorator: Google::Apis::BackupdrV1::ResourceBackupConfig::Representation
1315
+
1316
+ end
1317
+ end
1318
+
1208
1319
  class Location
1209
1320
  # @private
1210
1321
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1331,6 +1442,13 @@ module Google
1331
1442
  end
1332
1443
  end
1333
1444
 
1445
+ class PitrSettings
1446
+ # @private
1447
+ class Representation < Google::Apis::Core::JsonRepresentation
1448
+ property :retention_days, as: 'retentionDays'
1449
+ end
1450
+ end
1451
+
1334
1452
  class Policy
1335
1453
  # @private
1336
1454
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1350,6 +1468,22 @@ module Google
1350
1468
  end
1351
1469
  end
1352
1470
 
1471
+ class ResourceBackupConfig
1472
+ # @private
1473
+ class Representation < Google::Apis::Core::JsonRepresentation
1474
+ collection :backup_configs_details, as: 'backupConfigsDetails', class: Google::Apis::BackupdrV1::BackupConfigDetails, decorator: Google::Apis::BackupdrV1::BackupConfigDetails::Representation
1475
+
1476
+ property :backup_configured, as: 'backupConfigured'
1477
+ property :name, as: 'name'
1478
+ property :target_resource, as: 'targetResource'
1479
+ property :target_resource_display_name, as: 'targetResourceDisplayName'
1480
+ hash :target_resource_labels, as: 'targetResourceLabels'
1481
+ property :target_resource_type, as: 'targetResourceType'
1482
+ property :uid, as: 'uid'
1483
+ property :vaulted, as: 'vaulted'
1484
+ end
1485
+ end
1486
+
1353
1487
  class RestoreBackupRequest
1354
1488
  # @private
1355
1489
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1855,6 +1855,52 @@ module Google
1855
1855
  execute_or_queue_command(command, &block)
1856
1856
  end
1857
1857
 
1858
+ # Lists ResourceBackupConfigs.
1859
+ # @param [String] parent
1860
+ # Required. The project and location for which to retrieve resource backup
1861
+ # configs. Format: 'projects/`project_id`/locations/`location`'. In Cloud Backup
1862
+ # and DR, locations map to Google Cloud regions, for example **us-central1**.
1863
+ # @param [String] filter
1864
+ # Optional. Filtering results.
1865
+ # @param [String] order_by
1866
+ # Optional. Hint for how to order the results.
1867
+ # @param [Fixnum] page_size
1868
+ # Optional. Requested page size. Server may return fewer items than requested.
1869
+ # If unspecified, server will use 100 as default. Maximum value is 500 and
1870
+ # values above 500 will be coerced to 500.
1871
+ # @param [String] page_token
1872
+ # Optional. A token identifying a page of results the server should return.
1873
+ # @param [String] fields
1874
+ # Selector specifying which fields to include in a partial response.
1875
+ # @param [String] quota_user
1876
+ # Available to use for quota purposes for server-side applications. Can be any
1877
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1878
+ # @param [Google::Apis::RequestOptions] options
1879
+ # Request-specific options
1880
+ #
1881
+ # @yield [result, err] Result & error if block supplied
1882
+ # @yieldparam result [Google::Apis::BackupdrV1::ListResourceBackupConfigsResponse] parsed result object
1883
+ # @yieldparam err [StandardError] error object if request failed
1884
+ #
1885
+ # @return [Google::Apis::BackupdrV1::ListResourceBackupConfigsResponse]
1886
+ #
1887
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1888
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1889
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1890
+ def list_project_location_resource_backup_configs(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1891
+ command = make_simple_command(:get, 'v1/{+parent}/resourceBackupConfigs', options)
1892
+ command.response_representation = Google::Apis::BackupdrV1::ListResourceBackupConfigsResponse::Representation
1893
+ command.response_class = Google::Apis::BackupdrV1::ListResourceBackupConfigsResponse
1894
+ command.params['parent'] = parent unless parent.nil?
1895
+ command.query['filter'] = filter unless filter.nil?
1896
+ command.query['orderBy'] = order_by unless order_by.nil?
1897
+ command.query['pageSize'] = page_size unless page_size.nil?
1898
+ command.query['pageToken'] = page_token unless page_token.nil?
1899
+ command.query['fields'] = fields unless fields.nil?
1900
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1901
+ execute_or_queue_command(command, &block)
1902
+ end
1903
+
1858
1904
  # Initializes the service related config for a project.
1859
1905
  # @param [String] name
1860
1906
  # Required. The resource name of the serviceConfig used to initialize the
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-backupdr_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
10
+ date: 2025-03-30 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  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.23.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.25.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-backupdr_v1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.5
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Backup and DR Service API V1
82
79
  test_files: []