Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56025,6 +56025,7 @@
"/backupdr:v1/ComputeInstanceRestoreProperties/tags": tags
"/backupdr:v1/ComputeInstanceTargetEnvironment": compute_instance_target_environment
"/backupdr:v1/ComputeInstanceTargetEnvironment/project": project
"/backupdr:v1/ComputeInstanceTargetEnvironment/useProjectServiceAccount": use_project_service_account
"/backupdr:v1/ComputeInstanceTargetEnvironment/zone": zone
"/backupdr:v1/ConfidentialInstanceConfig": confidential_instance_config
"/backupdr:v1/ConfidentialInstanceConfig/enableConfidentialCompute": enable_confidential_compute
Expand Down Expand Up @@ -56142,6 +56143,7 @@
"/backupdr:v1/DiskRestoreProperties/type": type
"/backupdr:v1/DiskTargetEnvironment": disk_target_environment
"/backupdr:v1/DiskTargetEnvironment/project": project
"/backupdr:v1/DiskTargetEnvironment/useProjectServiceAccount": use_project_service_account
"/backupdr:v1/DiskTargetEnvironment/zone": zone
"/backupdr:v1/DisplayDevice": display_device
"/backupdr:v1/DisplayDevice/enableDisplay": enable_display
Expand Down Expand Up @@ -56440,6 +56442,7 @@
"/backupdr:v1/RegionDiskTargetEnvironment/region": region
"/backupdr:v1/RegionDiskTargetEnvironment/replicaZones": replica_zones
"/backupdr:v1/RegionDiskTargetEnvironment/replicaZones/replica_zone": replica_zone
"/backupdr:v1/RegionDiskTargetEnvironment/useProjectServiceAccount": use_project_service_account
"/backupdr:v1/RegionalMigDistributionPolicy": regional_mig_distribution_policy
"/backupdr:v1/RegionalMigDistributionPolicy/targetShape": target_shape
"/backupdr:v1/RegionalMigDistributionPolicy/zones": zones
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-backupdr_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-backupdr_v1

### v0.57.0 (2026-05-24)

* Regenerated from discovery document revision 20260517

### v0.56.0 (2026-05-17)

* Regenerated from discovery document revision 20260510
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2413,6 +2413,13 @@ class ComputeInstanceTargetEnvironment
# @return [String]
attr_accessor :project

# Optional. Whether to use the project service account for the Compute Engine
# instance.
# Corresponds to the JSON property `useProjectServiceAccount`
# @return [Boolean]
attr_accessor :use_project_service_account
alias_method :use_project_service_account?, :use_project_service_account

# Required. The zone of the Compute Engine instance.
# Corresponds to the JSON property `zone`
# @return [String]
Expand All @@ -2425,6 +2432,7 @@ def initialize(**args)
# Update properties of this object
def update!(**args)
@project = args[:project] if args.key?(:project)
@use_project_service_account = args[:use_project_service_account] if args.key?(:use_project_service_account)
@zone = args[:zone] if args.key?(:zone)
end
end
Expand Down Expand Up @@ -3185,6 +3193,12 @@ class DiskTargetEnvironment
# @return [String]
attr_accessor :project

# Optional. Whether to use the project service account for the disk.
# Corresponds to the JSON property `useProjectServiceAccount`
# @return [Boolean]
attr_accessor :use_project_service_account
alias_method :use_project_service_account?, :use_project_service_account

# Required. Target zone for the disk.
# Corresponds to the JSON property `zone`
# @return [String]
Expand All @@ -3197,6 +3211,7 @@ def initialize(**args)
# Update properties of this object
def update!(**args)
@project = args[:project] if args.key?(:project)
@use_project_service_account = args[:use_project_service_account] if args.key?(:use_project_service_account)
@zone = args[:zone] if args.key?(:zone)
end
end
Expand Down Expand Up @@ -5196,6 +5211,12 @@ class RegionDiskTargetEnvironment
# @return [Array<String>]
attr_accessor :replica_zones

# Optional. Whether to use the project service account for the disk.
# Corresponds to the JSON property `useProjectServiceAccount`
# @return [Boolean]
attr_accessor :use_project_service_account
alias_method :use_project_service_account?, :use_project_service_account

def initialize(**args)
update!(**args)
end
Expand All @@ -5205,6 +5226,7 @@ def update!(**args)
@project = args[:project] if args.key?(:project)
@region = args[:region] if args.key?(:region)
@replica_zones = args[:replica_zones] if args.key?(:replica_zones)
@use_project_service_account = args[:use_project_service_account] if args.key?(:use_project_service_account)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module BackupdrV1
# Version of the google-apis-backupdr_v1 gem
GEM_VERSION = "0.56.0"
GEM_VERSION = "0.57.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20260510"
REVISION = "20260517"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1407,6 +1407,7 @@ class ComputeInstanceTargetEnvironment
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :project, as: 'project'
property :use_project_service_account, as: 'useProjectServiceAccount'
property :zone, as: 'zone'
end
end
Expand Down Expand Up @@ -1592,6 +1593,7 @@ class DiskTargetEnvironment
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :project, as: 'project'
property :use_project_service_account, as: 'useProjectServiceAccount'
property :zone, as: 'zone'
end
end
Expand Down Expand Up @@ -2123,6 +2125,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :project, as: 'project'
property :region, as: 'region'
collection :replica_zones, as: 'replicaZones'
property :use_project_service_account, as: 'useProjectServiceAccount'
end
end

Expand Down
Loading