-
Notifications
You must be signed in to change notification settings - Fork 5.2k
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
Updated managed instance swagger and examples #5138
Changes from 3 commits
45f508a
397e372
ac5b71c
080eff4
88c55ad
fcaf617
9f61378
72acebf
a2649b9
320e26d
743faf3
f77f93b
5f400db
00ccb04
c614033
b79620d
8b90edd
b7c9ded
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,9 @@ | |
"storageSizeInGB": 1024, | ||
"licenseType": "Full", | ||
"collation": "SQL_Latin1_General_CP1_CI_AS", | ||
"dnsZonePartner": "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance" | ||
"dnsZonePartner": "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testinstance", | ||
"publicDataEndpointEnabled" : "false", | ||
"proxyOverride" : "Redirect" | ||
} | ||
} | ||
}, | ||
|
@@ -48,7 +50,8 @@ | |
"subnetId" : "/subscriptions/20D7082A-0FC7-4468-82BD-542694D5042B/resourceGroups/testrg/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1", | ||
"state": "Ready", | ||
"collation": "SQL_Latin1_General_CP1_CI_AS", | ||
"dnsZone": "1b4e2caff2530" | ||
"dnsZone": "1b4e2caff2530", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is publicDataEndpointEnabled intentionally not there in the response? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, it's by design. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I talked with Mladen who was implementing this feature. He actually forgot to include it here. It should be in response. I'll update it and he'll make sure to update his part. |
||
"proxyOverride" : "Redirect" | ||
} | ||
} | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,9 @@ | |
"storageSizeInGB": 1024, | ||
"licenseType": "Full", | ||
"collation": "SQL_Latin1_General_CP1_CI_AS", | ||
"dnsZone": "1b4e2caff2530" | ||
"dnsZone": "1b4e2caff2530", | ||
"publicDataEndpointEnabled" : "false", | ||
"proxyOverride" : "Redirect" | ||
} | ||
}, { | ||
"location" : "onebox", | ||
|
@@ -47,7 +49,8 @@ | |
"storageSizeInGB": 1024, | ||
"licenseType": "Full", | ||
"collation": "SQL_Latin1_General_CP1_CI_AS", | ||
"dnsZone": "1b4e2caff2530" | ||
"dnsZone": "1b4e2caff2530", | ||
"publicDataEndpointEnabled" : "false" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is proxyOverride intentionally missing? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated. It should be empty string because this instance is created before this property is introduced and the value for this property is null as I have already explained. |
||
} | ||
} | ||
] | ||
|
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.
Don't think the boolean value should be quoted
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.
Thanks. I fixed it.