Skip to content
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 @@ -85,8 +85,9 @@ public ManagedInstance()
/// <param name="restorePointInTime">Specifies the point in time
/// (ISO8601 format) of the source database that will be restored to
/// create the new database.</param>
/// <param name="proxyOverride">Proxy override of the managed
/// instance.</param>
/// <param name="proxyOverride">Connection type used for connecting to
/// the instance. Possible values include: 'Proxy', 'Redirect',
/// 'Default'</param>
/// <param name="timezoneId">Id of the timezone. Allowed values are
/// timezones supported by Windows.
/// Windows keeps details on supported timezones, including the id, in
Expand Down Expand Up @@ -255,7 +256,8 @@ public ManagedInstance()
public System.DateTime? RestorePointInTime { get; set; }

/// <summary>
/// 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'
/// </summary>
[JsonProperty(PropertyName = "properties.proxyOverride")]
public string ProxyOverride { get; set; }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// <auto-generated>
// 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.
// </auto-generated>

namespace Microsoft.Azure.Management.Sql.Models
{

/// <summary>
/// Defines values for ManagedInstanceProxyOverride.
/// </summary>
public static class ManagedInstanceProxyOverride
{
public const string Proxy = "Proxy";
public const string Redirect = "Redirect";
public const string Default = "Default";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@ public ManagedInstanceUpdate()
/// <param name="restorePointInTime">Specifies the point in time
/// (ISO8601 format) of the source database that will be restored to
/// create the new database.</param>
/// <param name="proxyOverride">Proxy override of the managed
/// instance.</param>
/// <param name="proxyOverride">Connection type used for connecting to
/// the instance. Possible values include: 'Proxy', 'Redirect',
/// 'Default'</param>
/// <param name="timezoneId">Id of the timezone. Allowed values are
/// timezones supported by Windows.
/// Windows keeps details on supported timezones, including the id, in
Expand Down Expand Up @@ -239,7 +240,8 @@ public ManagedInstanceUpdate()
public System.DateTime? RestorePointInTime { get; set; }

/// <summary>
/// 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'
/// </summary>
[JsonProperty(PropertyName = "properties.proxyOverride")]
public string ProxyOverride { get; set; }
Expand Down