Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR Azure.ResourceManager.RecoveryServicesBackup] Rp soft delete #2467

Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -1698,6 +1698,7 @@ public partial class IaasVmRecoveryPoint : Azure.ResourceManager.RecoveryService
public IaasVmRecoveryPoint() { }
public bool? IsInstantIlrSessionActive { get { throw null; } set { } }
public bool? IsManagedVirtualMachine { get { throw null; } set { } }
public bool? IsPrivateAccessEnabledOnAnyDisk { get { throw null; } set { } }
public bool? IsSourceVmEncrypted { get { throw null; } set { } }
public Azure.ResourceManager.RecoveryServicesBackup.Models.KeyAndSecretDetails KeyAndSecret { get { throw null; } set { } }
public bool? OriginalStorageAccountOption { get { throw null; } set { } }
Expand All @@ -1709,6 +1710,7 @@ public IaasVmRecoveryPoint() { }
public Azure.ResourceManager.RecoveryServicesBackup.Models.RecoveryPointProperties RecoveryPointProperties { get { throw null; } set { } }
public System.Collections.Generic.IList<Azure.ResourceManager.RecoveryServicesBackup.Models.RecoveryPointTierInformationV2> RecoveryPointTierDetails { get { throw null; } }
public string RecoveryPointType { get { throw null; } set { } }
public string SecurityType { get { throw null; } set { } }
public string SourceVmStorageType { get { throw null; } set { } }
public string VirtualMachineSize { get { throw null; } set { } }
public System.Collections.Generic.IList<string> Zones { get { throw null; } }
Expand All @@ -1721,16 +1723,19 @@ public IaasVmRestoreContent() { }
public bool? DoesCreateNewCloudService { get { throw null; } set { } }
public bool? DoesRestoreWithManagedDisks { get { throw null; } set { } }
public Azure.ResourceManager.RecoveryServicesBackup.Models.VmEncryptionDetails EncryptionDetails { get { throw null; } set { } }
public Azure.ResourceManager.Resources.Models.ExtendedLocation ExtendedLocation { get { throw null; } set { } }
public Azure.ResourceManager.RecoveryServicesBackup.Models.IdentityBasedRestoreDetails IdentityBasedRestoreDetails { get { throw null; } set { } }
public Azure.ResourceManager.RecoveryServicesBackup.Models.BackupIdentityInfo IdentityInfo { get { throw null; } set { } }
public bool? OriginalStorageAccountOption { get { throw null; } set { } }
public string RecoveryPointId { get { throw null; } set { } }
public Azure.ResourceManager.RecoveryServicesBackup.Models.FileShareRecoveryType? RecoveryType { get { throw null; } set { } }
public Azure.Core.AzureLocation? Region { get { throw null; } set { } }
public System.Collections.Generic.IList<int> RestoreDiskLunList { get { throw null; } }
public string SecuredVmOSDiskEncryptionSetId { get { throw null; } set { } }
public Azure.Core.ResourceIdentifier SourceResourceId { get { throw null; } set { } }
public Azure.Core.ResourceIdentifier StorageAccountId { get { throw null; } set { } }
public Azure.Core.ResourceIdentifier SubnetId { get { throw null; } set { } }
public Azure.ResourceManager.RecoveryServicesBackup.Models.TargetDiskNetworkAccessSettings TargetDiskNetworkAccessSettings { get { throw null; } set { } }
public Azure.Core.ResourceIdentifier TargetDomainNameId { get { throw null; } set { } }
public Azure.Core.ResourceIdentifier TargetResourceGroupId { get { throw null; } set { } }
public Azure.Core.ResourceIdentifier TargetVirtualMachineId { get { throw null; } set { } }
Expand Down Expand Up @@ -2162,6 +2167,7 @@ public partial class RecoveryPointProperties
{
public RecoveryPointProperties() { }
public System.DateTimeOffset? ExpireOn { get { throw null; } set { } }
public bool? IsSoftDeleted { get { throw null; } set { } }
public string RuleName { get { throw null; } set { } }
}
public partial class RecoveryPointRehydrationInfo
Expand Down Expand Up @@ -2588,6 +2594,18 @@ public TargetAfsRestoreInfo() { }
public string Name { get { throw null; } set { } }
public Azure.Core.ResourceIdentifier TargetResourceId { get { throw null; } set { } }
}
public enum TargetDiskNetworkAccessOption
{
SameAsOnSourceDisks = 0,
EnablePrivateAccessForAllDisks = 1,
EnablePublicAccessForAllDisks = 2,
}
public partial class TargetDiskNetworkAccessSettings
{
public TargetDiskNetworkAccessSettings() { }
public string TargetDiskAccessId { get { throw null; } set { } }
public Azure.ResourceManager.RecoveryServicesBackup.Models.TargetDiskNetworkAccessOption? TargetDiskNetworkAccessOption { get { throw null; } set { } }
}
public partial class TargetRestoreInfo
{
public TargetRestoreInfo() { }
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading