diff --git a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtContainerMappingInput.cs b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtContainerMappingInput.cs index 63cff0b93c54..50eeab52a5e7 100644 --- a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtContainerMappingInput.cs +++ b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtContainerMappingInput.cs @@ -33,15 +33,15 @@ public VMwareCbtContainerMappingInput() /// Initializes a new instance of the VMwareCbtContainerMappingInput /// class. /// + /// The storage account ARM Id. + /// The target location. /// The target key vault ARM Id. /// The target key vault URL. - /// The storage account ARM Id. /// The secret name of the /// storage account. /// The secret name /// of the service bus connection string. - /// The target location. - public VMwareCbtContainerMappingInput(string keyVaultId, string keyVaultUri, string storageAccountId, string storageAccountSasSecretName, string serviceBusConnectionStringSecretName, string targetLocation) + public VMwareCbtContainerMappingInput(string storageAccountId, string targetLocation, string keyVaultId = default(string), string keyVaultUri = default(string), string storageAccountSasSecretName = default(string), string serviceBusConnectionStringSecretName = default(string)) { KeyVaultId = keyVaultId; KeyVaultUri = keyVaultUri; @@ -101,26 +101,10 @@ public VMwareCbtContainerMappingInput(string keyVaultId, string keyVaultUri, str /// public virtual void Validate() { - if (KeyVaultId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "KeyVaultId"); - } - if (KeyVaultUri == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "KeyVaultUri"); - } if (StorageAccountId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "StorageAccountId"); } - if (StorageAccountSasSecretName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "StorageAccountSasSecretName"); - } - if (ServiceBusConnectionStringSecretName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "ServiceBusConnectionStringSecretName"); - } if (TargetLocation == null) { throw new ValidationException(ValidationRules.CannotBeNull, "TargetLocation"); diff --git a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtEnableMigrationInput.cs b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtEnableMigrationInput.cs index 9d907c910ef0..acdf7ace5fc1 100644 --- a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtEnableMigrationInput.cs +++ b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtEnableMigrationInput.cs @@ -52,7 +52,10 @@ public VMwareCbtEnableMigrationInput() /// 'AHUB' /// The target VM name. /// The target VM size. + /// The selected test network ARM + /// Id. /// The target subnet name. + /// The selected test subnet name. /// The target availability set /// ARM Id. /// The target availability @@ -67,7 +70,7 @@ public VMwareCbtEnableMigrationInput() /// The tags for the seed disks. /// The tags for the target disks. /// The tags for the target NICs. - public VMwareCbtEnableMigrationInput(string vmwareMachineId, IList disksToInclude, string dataMoverRunAsAccountId, string snapshotRunAsAccountId, string targetResourceGroupId, string targetNetworkId, string licenseType = default(string), string sqlServerLicenseType = default(string), string targetVmName = default(string), string targetVmSize = default(string), string targetSubnetName = default(string), string targetAvailabilitySetId = default(string), string targetAvailabilityZone = default(string), string targetProximityPlacementGroupId = default(string), string targetBootDiagnosticsStorageAccountId = default(string), string performAutoResync = default(string), IDictionary targetVmTags = default(IDictionary), IDictionary seedDiskTags = default(IDictionary), IDictionary targetDiskTags = default(IDictionary), IDictionary targetNicTags = default(IDictionary)) + public VMwareCbtEnableMigrationInput(string vmwareMachineId, IList disksToInclude, string dataMoverRunAsAccountId, string snapshotRunAsAccountId, string targetResourceGroupId, string targetNetworkId, string licenseType = default(string), string sqlServerLicenseType = default(string), string targetVmName = default(string), string targetVmSize = default(string), string testNetworkId = default(string), string targetSubnetName = default(string), string testSubnetName = default(string), string targetAvailabilitySetId = default(string), string targetAvailabilityZone = default(string), string targetProximityPlacementGroupId = default(string), string targetBootDiagnosticsStorageAccountId = default(string), string performAutoResync = default(string), IDictionary targetVmTags = default(IDictionary), IDictionary seedDiskTags = default(IDictionary), IDictionary targetDiskTags = default(IDictionary), IDictionary targetNicTags = default(IDictionary)) { VmwareMachineId = vmwareMachineId; DisksToInclude = disksToInclude; @@ -79,7 +82,9 @@ public VMwareCbtEnableMigrationInput() TargetVmSize = targetVmSize; TargetResourceGroupId = targetResourceGroupId; TargetNetworkId = targetNetworkId; + TestNetworkId = testNetworkId; TargetSubnetName = targetSubnetName; + TestSubnetName = testSubnetName; TargetAvailabilitySetId = targetAvailabilitySetId; TargetAvailabilityZone = targetAvailabilityZone; TargetProximityPlacementGroupId = targetProximityPlacementGroupId; @@ -159,12 +164,24 @@ public VMwareCbtEnableMigrationInput() [JsonProperty(PropertyName = "targetNetworkId")] public string TargetNetworkId { get; set; } + /// + /// Gets or sets the selected test network ARM Id. + /// + [JsonProperty(PropertyName = "testNetworkId")] + public string TestNetworkId { get; set; } + /// /// Gets or sets the target subnet name. /// [JsonProperty(PropertyName = "targetSubnetName")] public string TargetSubnetName { get; set; } + /// + /// Gets or sets the selected test subnet name. + /// + [JsonProperty(PropertyName = "testSubnetName")] + public string TestSubnetName { get; set; } + /// /// Gets or sets the target availability set ARM Id. /// diff --git a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtNicDetails.cs b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtNicDetails.cs index bef342154e0d..9cc5b1f23d8f 100644 --- a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtNicDetails.cs +++ b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtNicDetails.cs @@ -40,10 +40,15 @@ public VMwareCbtNicDetails() /// The target IP address type. /// Possible values include: 'Dynamic', 'Static' /// Target subnet name. + /// Source network Id. + /// Test subnet name. + /// The test IP address. + /// The test IP address type. Possible + /// values include: 'Dynamic', 'Static' /// Target NIC name. /// A value indicating whether /// this NIC is selected for migration. - public VMwareCbtNicDetails(string nicId = default(string), string isPrimaryNic = default(string), string sourceIPAddress = default(string), string sourceIPAddressType = default(string), string sourceNetworkId = default(string), string targetIPAddress = default(string), string targetIPAddressType = default(string), string targetSubnetName = default(string), string targetNicName = default(string), string isSelectedForMigration = default(string)) + public VMwareCbtNicDetails(string nicId = default(string), string isPrimaryNic = default(string), string sourceIPAddress = default(string), string sourceIPAddressType = default(string), string sourceNetworkId = default(string), string targetIPAddress = default(string), string targetIPAddressType = default(string), string targetSubnetName = default(string), string testNetworkId = default(string), string testSubnetName = default(string), string testIPAddress = default(string), string testIPAddressType = default(string), string targetNicName = default(string), string isSelectedForMigration = default(string)) { NicId = nicId; IsPrimaryNic = isPrimaryNic; @@ -53,6 +58,10 @@ public VMwareCbtNicDetails() TargetIPAddress = targetIPAddress; TargetIPAddressType = targetIPAddressType; TargetSubnetName = targetSubnetName; + TestNetworkId = testNetworkId; + TestSubnetName = testSubnetName; + TestIPAddress = testIPAddress; + TestIPAddressType = testIPAddressType; TargetNicName = targetNicName; IsSelectedForMigration = isSelectedForMigration; CustomInit(); @@ -113,6 +122,31 @@ public VMwareCbtNicDetails() [JsonProperty(PropertyName = "targetSubnetName")] public string TargetSubnetName { get; set; } + /// + /// Gets or sets source network Id. + /// + [JsonProperty(PropertyName = "testNetworkId")] + public string TestNetworkId { get; set; } + + /// + /// Gets or sets test subnet name. + /// + [JsonProperty(PropertyName = "testSubnetName")] + public string TestSubnetName { get; set; } + + /// + /// Gets or sets the test IP address. + /// + [JsonProperty(PropertyName = "testIPAddress")] + public string TestIPAddress { get; set; } + + /// + /// Gets or sets the test IP address type. Possible values include: + /// 'Dynamic', 'Static' + /// + [JsonProperty(PropertyName = "testIPAddressType")] + public string TestIPAddressType { get; set; } + /// /// Gets or sets target NIC name. /// diff --git a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtNicInput.cs b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtNicInput.cs index 449c682d6f8b..6cd8b10cdcb8 100644 --- a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtNicInput.cs +++ b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtNicInput.cs @@ -38,7 +38,10 @@ public VMwareCbtNicInput() /// A value indicating whether /// this NIC is selected for migration. /// Target NIC name. - public VMwareCbtNicInput(string nicId, string isPrimaryNic, string targetSubnetName = default(string), string targetStaticIPAddress = default(string), string isSelectedForMigration = default(string), string targetNicName = default(string)) + /// The test subnet name. + /// The test static IP + /// address. + public VMwareCbtNicInput(string nicId, string isPrimaryNic, string targetSubnetName = default(string), string targetStaticIPAddress = default(string), string isSelectedForMigration = default(string), string targetNicName = default(string), string testSubnetName = default(string), string testStaticIPAddress = default(string)) { NicId = nicId; IsPrimaryNic = isPrimaryNic; @@ -46,6 +49,8 @@ public VMwareCbtNicInput() TargetStaticIPAddress = targetStaticIPAddress; IsSelectedForMigration = isSelectedForMigration; TargetNicName = targetNicName; + TestSubnetName = testSubnetName; + TestStaticIPAddress = testStaticIPAddress; CustomInit(); } @@ -91,6 +96,18 @@ public VMwareCbtNicInput() [JsonProperty(PropertyName = "targetNicName")] public string TargetNicName { get; set; } + /// + /// Gets or sets the test subnet name. + /// + [JsonProperty(PropertyName = "testSubnetName")] + public string TestSubnetName { get; set; } + + /// + /// Gets or sets the test static IP address. + /// + [JsonProperty(PropertyName = "testStaticIPAddress")] + public string TestStaticIPAddress { get; set; } + /// /// Validate the object. /// diff --git a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtTestMigrateInput.cs b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtTestMigrateInput.cs index 671b16d525c1..518911c93520 100644 --- a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtTestMigrateInput.cs +++ b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtTestMigrateInput.cs @@ -12,6 +12,8 @@ namespace Microsoft.Azure.Management.RecoveryServices.SiteRecovery.Models { using Microsoft.Rest; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -33,10 +35,12 @@ public VMwareCbtTestMigrateInput() /// /// The recovery point Id. /// The test network Id. - public VMwareCbtTestMigrateInput(string recoveryPointId, string networkId) + /// The list of NIC details. + public VMwareCbtTestMigrateInput(string recoveryPointId, string networkId, IList vmNics = default(IList)) { RecoveryPointId = recoveryPointId; NetworkId = networkId; + VmNics = vmNics; CustomInit(); } @@ -57,6 +61,12 @@ public VMwareCbtTestMigrateInput(string recoveryPointId, string networkId) [JsonProperty(PropertyName = "networkId")] public string NetworkId { get; set; } + /// + /// Gets or sets the list of NIC details. + /// + [JsonProperty(PropertyName = "vmNics")] + public IList VmNics { get; set; } + /// /// Validate the object. /// @@ -73,6 +83,16 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "NetworkId"); } + if (VmNics != null) + { + foreach (var element in VmNics) + { + if (element != null) + { + element.Validate(); + } + } + } } } } diff --git a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtUpdateDiskInput.cs b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtUpdateDiskInput.cs index 95e6bc91cd48..ee7f5feda094 100644 --- a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtUpdateDiskInput.cs +++ b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtUpdateDiskInput.cs @@ -32,10 +32,13 @@ public VMwareCbtUpdateDiskInput() /// /// The disk Id. /// The target disk name. - public VMwareCbtUpdateDiskInput(string diskId, string targetDiskName = default(string)) + /// A value indicating whether the disk is the + /// OS disk. + public VMwareCbtUpdateDiskInput(string diskId, string targetDiskName = default(string), string isOSDisk = default(string)) { DiskId = diskId; TargetDiskName = targetDiskName; + IsOSDisk = isOSDisk; CustomInit(); } @@ -56,6 +59,12 @@ public VMwareCbtUpdateDiskInput() [JsonProperty(PropertyName = "targetDiskName")] public string TargetDiskName { get; set; } + /// + /// Gets or sets a value indicating whether the disk is the OS disk. + /// + [JsonProperty(PropertyName = "isOSDisk")] + public string IsOSDisk { get; set; } + /// /// Validate the object. /// diff --git a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtUpdateMigrationItemInput.cs b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtUpdateMigrationItemInput.cs index 49d9ceeb008d..36fa71d4511e 100644 --- a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtUpdateMigrationItemInput.cs +++ b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/Models/VMwareCbtUpdateMigrationItemInput.cs @@ -47,6 +47,7 @@ public VMwareCbtUpdateMigrationItemInput() /// The target boot /// diagnostics storage account ARM Id. /// The target network ARM Id. + /// The test network ARM Id. /// The list of NIC details. /// The list of disk update properties. /// The license type. Possible values @@ -59,7 +60,7 @@ public VMwareCbtUpdateMigrationItemInput() /// The target VM tags. /// The tags for the target disks. /// The tags for the target NICs. - public VMwareCbtUpdateMigrationItemInput(string targetVmName = default(string), string targetVmSize = default(string), string targetResourceGroupId = default(string), string targetAvailabilitySetId = default(string), string targetAvailabilityZone = default(string), string targetProximityPlacementGroupId = default(string), string targetBootDiagnosticsStorageAccountId = default(string), string targetNetworkId = default(string), IList vmNics = default(IList), IList vmDisks = default(IList), string licenseType = default(string), string sqlServerLicenseType = default(string), string performAutoResync = default(string), IDictionary targetVmTags = default(IDictionary), IDictionary targetDiskTags = default(IDictionary), IDictionary targetNicTags = default(IDictionary)) + public VMwareCbtUpdateMigrationItemInput(string targetVmName = default(string), string targetVmSize = default(string), string targetResourceGroupId = default(string), string targetAvailabilitySetId = default(string), string targetAvailabilityZone = default(string), string targetProximityPlacementGroupId = default(string), string targetBootDiagnosticsStorageAccountId = default(string), string targetNetworkId = default(string), string testNetworkId = default(string), IList vmNics = default(IList), IList vmDisks = default(IList), string licenseType = default(string), string sqlServerLicenseType = default(string), string performAutoResync = default(string), IDictionary targetVmTags = default(IDictionary), IDictionary targetDiskTags = default(IDictionary), IDictionary targetNicTags = default(IDictionary)) { TargetVmName = targetVmName; TargetVmSize = targetVmSize; @@ -69,6 +70,7 @@ public VMwareCbtUpdateMigrationItemInput() TargetProximityPlacementGroupId = targetProximityPlacementGroupId; TargetBootDiagnosticsStorageAccountId = targetBootDiagnosticsStorageAccountId; TargetNetworkId = targetNetworkId; + TestNetworkId = testNetworkId; VmNics = vmNics; VmDisks = vmDisks; LicenseType = licenseType; @@ -133,6 +135,12 @@ public VMwareCbtUpdateMigrationItemInput() [JsonProperty(PropertyName = "targetNetworkId")] public string TargetNetworkId { get; set; } + /// + /// Gets or sets the test network ARM Id. + /// + [JsonProperty(PropertyName = "testNetworkId")] + public string TestNetworkId { get; set; } + /// /// Gets or sets the list of NIC details. /// diff --git a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/SdkInfo_SiteRecoveryManagementClient.cs b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/SdkInfo_SiteRecoveryManagementClient.cs index 4cfe28967e14..9785d582f987 100644 --- a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/SdkInfo_SiteRecoveryManagementClient.cs +++ b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/SdkInfo_SiteRecoveryManagementClient.cs @@ -19,36 +19,36 @@ public static IEnumerable> ApiInfo_SiteRecoveryMan { return new Tuple[] { - new Tuple("Compute", "ReplicationEligibilityResults", "2021-11-01"), - new Tuple("RecoveryServices", "MigrationRecoveryPoints", "2021-11-01"), - new Tuple("RecoveryServices", "Operations", "2021-11-01"), - new Tuple("RecoveryServices", "RecoveryPoints", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationAlertSettings", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationEvents", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationFabrics", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationJobs", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationLogicalNetworks", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationMigrationItems", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationNetworkMappings", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationNetworks", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationPolicies", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationProtectableItems", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationProtectedItems", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationProtectionContainerMappings", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationProtectionContainers", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationProtectionIntents", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationRecoveryPlans", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationRecoveryServicesProviders", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationStorageClassificationMappings", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationStorageClassifications", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationVaultHealth", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationVaultSetting", "2021-11-01"), - new Tuple("RecoveryServices", "ReplicationvCenters", "2021-11-01"), - new Tuple("RecoveryServices", "SupportedOperatingSystems", "2021-11-01"), - new Tuple("RecoveryServices", "TargetComputeSizes", "2021-11-01"), + new Tuple("Compute", "ReplicationEligibilityResults", "2022-02-01"), + new Tuple("RecoveryServices", "MigrationRecoveryPoints", "2022-02-01"), + new Tuple("RecoveryServices", "Operations", "2022-02-01"), + new Tuple("RecoveryServices", "RecoveryPoints", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationAlertSettings", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationAppliances", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationEvents", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationFabrics", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationJobs", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationLogicalNetworks", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationMigrationItems", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationNetworkMappings", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationNetworks", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationPolicies", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationProtectableItems", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationProtectedItems", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationProtectionContainerMappings", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationProtectionContainers", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationProtectionIntents", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationRecoveryPlans", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationRecoveryServicesProviders", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationStorageClassificationMappings", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationStorageClassifications", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationVaultHealth", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationVaultSetting", "2022-02-01"), + new Tuple("RecoveryServices", "ReplicationvCenters", "2022-02-01"), + new Tuple("RecoveryServices", "SupportedOperatingSystems", "2022-02-01"), + new Tuple("RecoveryServices", "TargetComputeSizes", "2022-02-01"), }.AsEnumerable(); } } } } - diff --git a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/SiteRecoveryManagementClient.cs b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/SiteRecoveryManagementClient.cs index 58740cb738f3..19a73fcb69a5 100644 --- a/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/SiteRecoveryManagementClient.cs +++ b/sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery/src/Generated/SiteRecoveryManagementClient.cs @@ -492,7 +492,7 @@ private void Initialize() ReplicationVaultHealth = new ReplicationVaultHealthOperations(this); ReplicationVaultSetting = new ReplicationVaultSettingOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2021-11-01"; + ApiVersion = "2022-02-01"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true;