google-apis-backupdr_v1 0.51.0 → 0.52.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: 2e56bae4a27120f7c4a72d80a2c3d3c732715b082e9e205590eb224eb12cc2a0
4
- data.tar.gz: 3d99484d2e98759ada81bbf56be5acc166449966e29aaa48b042dc67a0360daa
3
+ metadata.gz: c989d0eb15631e6bdeb895c6bd4e72059233e051ef37aadfdf89103d37b02f45
4
+ data.tar.gz: 53f7e7e3b9ec0c0c8bf5924868f1f38ab42d599c065de300c723ed98ceb6059c
5
5
  SHA512:
6
- metadata.gz: e4a3dcd17cdd8f64be9fad1fc859226866fbc4b716bb2dfc204616f7fdaf94be374887fbe45c808b5d73bf920819f5778fd3872de7a7bab657965a408015d049
7
- data.tar.gz: 11dd42257186b36dbf5573440ab5a85badd79996cc00f646d5f2435925ab5138fa53d1531026c9735897a9e42814a18458761e45c1f80e4fef1154e5895b4c91
6
+ metadata.gz: 3e262d09051f4f27a45f4a5050b25490dac8946b432a0c22fd20e42288e8c8b39c843062d47cb01fa43d5173c721c0ec9f3c7060ea9b1b621cfd489d29acec83
7
+ data.tar.gz: cab4cb8580eb4afd33722e119eef4e6096afdf91ef9508e3b5aaed49660b2a5294d89b89b5831b43e9f4352df2d1cde6ce63cf8793a7f604fb493338f0a4ebf8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-backupdr_v1
2
2
 
3
+ ### v0.52.0 (2026-03-08)
4
+
5
+ * Regenerated from discovery document revision 20260227
6
+
3
7
  ### v0.51.0 (2026-02-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20260128
@@ -3692,6 +3692,72 @@ module Google
3692
3692
  end
3693
3693
  end
3694
3694
 
3695
+ # Represents the metadata of the long-running operation.
3696
+ class GoogleCloudBackupdrV1OperationMetadata
3697
+ include Google::Apis::Core::Hashable
3698
+
3699
+ # Output only. AdditionalInfo contains additional Info related to backup plan
3700
+ # association resource.
3701
+ # Corresponds to the JSON property `additionalInfo`
3702
+ # @return [Hash<String,String>]
3703
+ attr_accessor :additional_info
3704
+
3705
+ # Output only. API version used to start the operation.
3706
+ # Corresponds to the JSON property `apiVersion`
3707
+ # @return [String]
3708
+ attr_accessor :api_version
3709
+
3710
+ # Output only. The time the operation was created.
3711
+ # Corresponds to the JSON property `createTime`
3712
+ # @return [String]
3713
+ attr_accessor :create_time
3714
+
3715
+ # Output only. The time the operation finished running.
3716
+ # Corresponds to the JSON property `endTime`
3717
+ # @return [String]
3718
+ attr_accessor :end_time
3719
+
3720
+ # Output only. Identifies whether the user has requested cancellation of the
3721
+ # operation. Operations that have successfully been cancelled have google.
3722
+ # longrunning.Operation.error value with a google.rpc.Status.code of 1,
3723
+ # corresponding to 'Code.CANCELLED'.
3724
+ # Corresponds to the JSON property `requestedCancellation`
3725
+ # @return [Boolean]
3726
+ attr_accessor :requested_cancellation
3727
+ alias_method :requested_cancellation?, :requested_cancellation
3728
+
3729
+ # Output only. Human-readable status of the operation, if any.
3730
+ # Corresponds to the JSON property `statusMessage`
3731
+ # @return [String]
3732
+ attr_accessor :status_message
3733
+
3734
+ # Output only. Server-defined resource path for the target of the operation.
3735
+ # Corresponds to the JSON property `target`
3736
+ # @return [String]
3737
+ attr_accessor :target
3738
+
3739
+ # Output only. Name of the verb executed by the operation.
3740
+ # Corresponds to the JSON property `verb`
3741
+ # @return [String]
3742
+ attr_accessor :verb
3743
+
3744
+ def initialize(**args)
3745
+ update!(**args)
3746
+ end
3747
+
3748
+ # Update properties of this object
3749
+ def update!(**args)
3750
+ @additional_info = args[:additional_info] if args.key?(:additional_info)
3751
+ @api_version = args[:api_version] if args.key?(:api_version)
3752
+ @create_time = args[:create_time] if args.key?(:create_time)
3753
+ @end_time = args[:end_time] if args.key?(:end_time)
3754
+ @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
3755
+ @status_message = args[:status_message] if args.key?(:status_message)
3756
+ @target = args[:target] if args.key?(:target)
3757
+ @verb = args[:verb] if args.key?(:verb)
3758
+ end
3759
+ end
3760
+
3695
3761
  # Feature type of the Guest OS.
3696
3762
  class GuestOsFeature
3697
3763
  include Google::Apis::Core::Hashable
@@ -3742,6 +3808,16 @@ module Google
3742
3808
  class InitializeServiceRequest
3743
3809
  include Google::Apis::Core::Hashable
3744
3810
 
3811
+ # Optional. The location where the BackupPlan will be created. This field is
3812
+ # required for multi-region BackupVaults and is optional for regional
3813
+ # BackupVaults. It is useful when creating a Backup Vault in a multi-region,
3814
+ # allowing the BackupPlan to reside in a specific region within that multi-
3815
+ # region. If this field is not provided, the BackupPlan will be created in the
3816
+ # same location as specified in the `name` field.
3817
+ # Corresponds to the JSON property `backupPlanLocation`
3818
+ # @return [String]
3819
+ attr_accessor :backup_plan_location
3820
+
3745
3821
  # CloudSqlInstanceInitializationConfig contains the configuration for
3746
3822
  # initializing a Cloud SQL instance.
3747
3823
  # Corresponds to the JSON property `cloudSqlInstanceInitializationConfig`
@@ -3775,6 +3851,7 @@ module Google
3775
3851
 
3776
3852
  # Update properties of this object
3777
3853
  def update!(**args)
3854
+ @backup_plan_location = args[:backup_plan_location] if args.key?(:backup_plan_location)
3778
3855
  @cloud_sql_instance_initialization_config = args[:cloud_sql_instance_initialization_config] if args.key?(:cloud_sql_instance_initialization_config)
3779
3856
  @request_id = args[:request_id] if args.key?(:request_id)
3780
3857
  @resource_type = args[:resource_type] if args.key?(:resource_type)
@@ -4720,72 +4797,6 @@ module Google
4720
4797
  end
4721
4798
  end
4722
4799
 
4723
- # Represents the metadata of the long-running operation.
4724
- class OperationMetadata
4725
- include Google::Apis::Core::Hashable
4726
-
4727
- # Output only. AdditionalInfo contains additional Info related to backup plan
4728
- # association resource.
4729
- # Corresponds to the JSON property `additionalInfo`
4730
- # @return [Hash<String,String>]
4731
- attr_accessor :additional_info
4732
-
4733
- # Output only. API version used to start the operation.
4734
- # Corresponds to the JSON property `apiVersion`
4735
- # @return [String]
4736
- attr_accessor :api_version
4737
-
4738
- # Output only. The time the operation was created.
4739
- # Corresponds to the JSON property `createTime`
4740
- # @return [String]
4741
- attr_accessor :create_time
4742
-
4743
- # Output only. The time the operation finished running.
4744
- # Corresponds to the JSON property `endTime`
4745
- # @return [String]
4746
- attr_accessor :end_time
4747
-
4748
- # Output only. Identifies whether the user has requested cancellation of the
4749
- # operation. Operations that have successfully been cancelled have google.
4750
- # longrunning.Operation.error value with a google.rpc.Status.code of 1,
4751
- # corresponding to 'Code.CANCELLED'.
4752
- # Corresponds to the JSON property `requestedCancellation`
4753
- # @return [Boolean]
4754
- attr_accessor :requested_cancellation
4755
- alias_method :requested_cancellation?, :requested_cancellation
4756
-
4757
- # Output only. Human-readable status of the operation, if any.
4758
- # Corresponds to the JSON property `statusMessage`
4759
- # @return [String]
4760
- attr_accessor :status_message
4761
-
4762
- # Output only. Server-defined resource path for the target of the operation.
4763
- # Corresponds to the JSON property `target`
4764
- # @return [String]
4765
- attr_accessor :target
4766
-
4767
- # Output only. Name of the verb executed by the operation.
4768
- # Corresponds to the JSON property `verb`
4769
- # @return [String]
4770
- attr_accessor :verb
4771
-
4772
- def initialize(**args)
4773
- update!(**args)
4774
- end
4775
-
4776
- # Update properties of this object
4777
- def update!(**args)
4778
- @additional_info = args[:additional_info] if args.key?(:additional_info)
4779
- @api_version = args[:api_version] if args.key?(:api_version)
4780
- @create_time = args[:create_time] if args.key?(:create_time)
4781
- @end_time = args[:end_time] if args.key?(:end_time)
4782
- @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
4783
- @status_message = args[:status_message] if args.key?(:status_message)
4784
- @target = args[:target] if args.key?(:target)
4785
- @verb = args[:verb] if args.key?(:verb)
4786
- end
4787
- end
4788
-
4789
4800
  # Point in time recovery settings of the backup configuration resource.
4790
4801
  class PitrSettings
4791
4802
  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.51.0"
19
+ GEM_VERSION = "0.52.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 = "20260128"
25
+ REVISION = "20260227"
26
26
  end
27
27
  end
28
28
  end
@@ -466,6 +466,12 @@ module Google
466
466
  include Google::Apis::Core::JsonObjectSupport
467
467
  end
468
468
 
469
+ class GoogleCloudBackupdrV1OperationMetadata
470
+ class Representation < Google::Apis::Core::JsonRepresentation; end
471
+
472
+ include Google::Apis::Core::JsonObjectSupport
473
+ end
474
+
469
475
  class GuestOsFeature
470
476
  class Representation < Google::Apis::Core::JsonRepresentation; end
471
477
 
@@ -628,12 +634,6 @@ module Google
628
634
  include Google::Apis::Core::JsonObjectSupport
629
635
  end
630
636
 
631
- class OperationMetadata
632
- class Representation < Google::Apis::Core::JsonRepresentation; end
633
-
634
- include Google::Apis::Core::JsonObjectSupport
635
- end
636
-
637
637
  class PitrSettings
638
638
  class Representation < Google::Apis::Core::JsonRepresentation; end
639
639
 
@@ -1692,6 +1692,20 @@ module Google
1692
1692
  end
1693
1693
  end
1694
1694
 
1695
+ class GoogleCloudBackupdrV1OperationMetadata
1696
+ # @private
1697
+ class Representation < Google::Apis::Core::JsonRepresentation
1698
+ hash :additional_info, as: 'additionalInfo'
1699
+ property :api_version, as: 'apiVersion'
1700
+ property :create_time, as: 'createTime'
1701
+ property :end_time, as: 'endTime'
1702
+ property :requested_cancellation, as: 'requestedCancellation'
1703
+ property :status_message, as: 'statusMessage'
1704
+ property :target, as: 'target'
1705
+ property :verb, as: 'verb'
1706
+ end
1707
+ end
1708
+
1695
1709
  class GuestOsFeature
1696
1710
  # @private
1697
1711
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1710,6 +1724,7 @@ module Google
1710
1724
  class InitializeServiceRequest
1711
1725
  # @private
1712
1726
  class Representation < Google::Apis::Core::JsonRepresentation
1727
+ property :backup_plan_location, as: 'backupPlanLocation'
1713
1728
  property :cloud_sql_instance_initialization_config, as: 'cloudSqlInstanceInitializationConfig', class: Google::Apis::BackupdrV1::CloudSqlInstanceInitializationConfig, decorator: Google::Apis::BackupdrV1::CloudSqlInstanceInitializationConfig::Representation
1714
1729
 
1715
1730
  property :request_id, as: 'requestId'
@@ -1968,20 +1983,6 @@ module Google
1968
1983
  end
1969
1984
  end
1970
1985
 
1971
- class OperationMetadata
1972
- # @private
1973
- class Representation < Google::Apis::Core::JsonRepresentation
1974
- hash :additional_info, as: 'additionalInfo'
1975
- property :api_version, as: 'apiVersion'
1976
- property :create_time, as: 'createTime'
1977
- property :end_time, as: 'endTime'
1978
- property :requested_cancellation, as: 'requestedCancellation'
1979
- property :status_message, as: 'statusMessage'
1980
- property :target, as: 'target'
1981
- property :verb, as: 'verb'
1982
- end
1983
- end
1984
-
1985
1986
  class PitrSettings
1986
1987
  # @private
1987
1988
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2455,7 +2455,8 @@ module Google
2455
2455
  # Initializes the service related config for a project.
2456
2456
  # @param [String] name
2457
2457
  # Required. The resource name of the serviceConfig used to initialize the
2458
- # service. Format: `projects/`project_id`/locations/`location`/serviceConfig`.
2458
+ # service. The location must be the location of the BackupVault. Format: `
2459
+ # projects/`project_id`/locations/`location`/serviceConfig`.
2459
2460
  # @param [Google::Apis::BackupdrV1::InitializeServiceRequest] initialize_service_request_object
2460
2461
  # @param [String] fields
2461
2462
  # Selector specifying which fields to include in a partial response.
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.51.0
4
+ version: 0.52.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.51.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-backupdr_v1/v0.52.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: