-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Regenerate clients for ManagedInstanceProxyOverride #5971
Conversation
src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj
Show resolved
Hide resolved
@jamestao Please link the REST spec PR |
specs PR: Azure/azure-rest-api-specs#5780 |
Can you in some way reference the enum class from unit tests so that build breaks if it's accidentally removed again? |
@@ -38,7 +38,7 @@ public void TestCreateUpdateGetDropManagedInstance() | |||
string location = "westcentralus"; | |||
|
|||
bool publicDataEndpointEnabled = true; | |||
string proxyOverride = "Proxy"; | |||
string proxyOverride = ManagedInstanceProxyOverride.Proxy; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should help us catch this next time.
@@ -38,7 +38,7 @@ public void TestCreateUpdateGetDropManagedInstance() | |||
string location = "westcentralus"; | |||
|
|||
bool publicDataEndpointEnabled = true; | |||
string proxyOverride = "Proxy"; | |||
string proxyOverride = ManagedInstanceProxyOverride.Proxy; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should help us catch this next time.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
* Regenerate clients for ManagedInstanceProxyOverride * Update test to reference enum
No description provided.