diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstance.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstance.cs
index 87955b8ac1dc..ca1c8c01ffb9 100644
--- a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstance.cs
+++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstance.cs
@@ -85,8 +85,9 @@ public ManagedInstance()
/// Specifies the point in time
/// (ISO8601 format) of the source database that will be restored to
/// create the new database.
- /// Proxy override of the managed
- /// instance.
+ /// Connection type used for connecting to
+ /// the instance. Possible values include: 'Proxy', 'Redirect',
+ /// 'Default'
/// Id of the timezone. Allowed values are
/// timezones supported by Windows.
/// Windows keeps details on supported timezones, including the id, in
@@ -255,7 +256,8 @@ public ManagedInstance()
public System.DateTime? RestorePointInTime { get; set; }
///
- /// Gets or sets proxy override of the managed instance.
+ /// Gets or sets connection type used for connecting to the instance.
+ /// Possible values include: 'Proxy', 'Redirect', 'Default'
///
[JsonProperty(PropertyName = "properties.proxyOverride")]
public string ProxyOverride { get; set; }
diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstanceProxyOverride.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstanceProxyOverride.cs
new file mode 100644
index 000000000000..dd6d2f660269
--- /dev/null
+++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstanceProxyOverride.cs
@@ -0,0 +1,23 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.Sql.Models
+{
+
+ ///
+ /// Defines values for ManagedInstanceProxyOverride.
+ ///
+ public static class ManagedInstanceProxyOverride
+ {
+ public const string Proxy = "Proxy";
+ public const string Redirect = "Redirect";
+ public const string Default = "Default";
+ }
+}
diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstanceUpdate.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstanceUpdate.cs
index 9d6850f66feb..3ebe413a21c0 100644
--- a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstanceUpdate.cs
+++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstanceUpdate.cs
@@ -77,8 +77,9 @@ public ManagedInstanceUpdate()
/// Specifies the point in time
/// (ISO8601 format) of the source database that will be restored to
/// create the new database.
- /// Proxy override of the managed
- /// instance.
+ /// Connection type used for connecting to
+ /// the instance. Possible values include: 'Proxy', 'Redirect',
+ /// 'Default'
/// Id of the timezone. Allowed values are
/// timezones supported by Windows.
/// Windows keeps details on supported timezones, including the id, in
@@ -239,7 +240,8 @@ public ManagedInstanceUpdate()
public System.DateTime? RestorePointInTime { get; set; }
///
- /// Gets or sets proxy override of the managed instance.
+ /// Gets or sets connection type used for connecting to the instance.
+ /// Possible values include: 'Proxy', 'Redirect', 'Default'
///
[JsonProperty(PropertyName = "properties.proxyOverride")]
public string ProxyOverride { get; set; }