Skip to content

Commit

Permalink
CodeGen from PR 22260 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Rp soft delete (Azure#22260)

* Adds base for updating Microsoft.RecoveryServices from version stable/2023-01-01 to version 2023-02-01

* Updates readme

* Updates API version in new specs and examples

* Adds RP Soft delete related API changes

* added ExtendedLocation to IaasVMRestoreRequest (Azure#22468)

* fixed lint error (Azure#22483)

* - adding changes for private endpoint support in get, list Rp and trigger restore.

* -fixing data type

* fixing validation errors

* Added changed for Secured VM details and Security Type (Azure#22848)

---------

Co-authored-by: shesamian <107954668+shesamian@users.noreply.github.com>
Co-authored-by: Arpit Jain <46751982+arpja@users.noreply.github.com>
Co-authored-by: Saksham Arora <125243942+sakshamarora9575@users.noreply.github.com>
  • Loading branch information
4 people committed Mar 7, 2023
1 parent 49292bb commit 28e87b2
Show file tree
Hide file tree
Showing 48 changed files with 464 additions and 41 deletions.
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

0 comments on commit 28e87b2

Please sign in to comment.