-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Swagger changes for setting minimalTlsVersion for workspace sql server post workspace creation #17476
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
Merged
Merged
Swagger changes for setting minimalTlsVersion for workspace sql server post workspace creation #17476
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
61ce3f5
Checking in the swagger related changes to dedicated sql minial tls s…
naresh-polu 667cdea
Updated the ms-examples related to minimal tls settings in both previ…
naresh-polu 1d32e68
Fixing the swagger validation errors
naresh-polu 0c14e8b
Fixing the swagger model validation errors
naresh-polu 6e49241
Updated ms-examples and swagger files after review
naresh-polu f65d4b7
Updated swagger files to include additional property
naresh-polu 7bbc8dd
Fixing the swagger prettier check
naresh-polu affed9f
Fixing the swagger model validation errors
naresh-polu 05dde68
Updated the ms-examples related to patch and changes in swagger files
naresh-polu 6f158a2
Updated the swagger files for fixing few of the code review comments
naresh-polu eef0340
Updated the swagger files for fixing few of the code review comments
naresh-polu 8798faf
Updated the swagger files for fixing few of the code review comments
naresh-polu 343c729
Updated the swagger files and ms-examples for fixing code review comm…
naresh-polu eb40586
Updated the swagger files for fixing code review comments
naresh-polu 171e14c
Updated the swagger files for fixing code review comments
naresh-polu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...21-06-01-preview/examples/GetWorkspaceManagedSqlServerDedicatedSQLminimalTlsSettings.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "workspace-6852", | ||
"workspaceName": "workspace-2080", | ||
"dedicatedSQLminimalTlsSettingsName": "default", | ||
"api-version": "2021-06-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-6852/providers/Microsoft.Synapse/workspaces/workspace-2080/dedicatedSQLminimalTlsSettings/default", | ||
"name": "default", | ||
"type": "Microsoft.Synapse/workspaces/dedicatedSQLminimalTlsSettings", | ||
"location": "eastus", | ||
"properties": { | ||
"minimalTlsVersion": "1.1" | ||
} | ||
} | ||
} | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
...1-06-01-preview/examples/ListWorkspaceManagedSqlServerDedicatedSQLminimalTlsSettings.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "workspace-6852", | ||
"workspaceName": "workspace-2080", | ||
"api-version": "2021-06-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-6852/providers/Microsoft.Synapse/workspaces/workspace-2080/dedicatedSQLminimalTlsSettings/default", | ||
"name": "default", | ||
"type": "Microsoft.Synapse/workspaces/dedicatedSQLminimalTlsSettings", | ||
"location": "eastus", | ||
"properties": { | ||
"minimalTlsVersion": "1.1" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-6852/providers/Microsoft.Synapse/workspaces/workspace-2080/dedicatedSQLminimalTlsSettings/default", | ||
"name": "default", | ||
"type": "Microsoft.Synapse/workspaces/dedicatedSQLminimalTlsSettings", | ||
"location": "eastus", | ||
"properties": { | ||
"minimalTlsVersion": "1.1" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
...06-01-preview/examples/UpdateWorkspaceManagedSqlServerDedicatedSQLminimalTlsSettings.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "workspace-6852", | ||
"workspaceName": "workspace-2080", | ||
"dedicatedSQLminimalTlsSettingsName": "default", | ||
"api-version": "2021-06-01-preview", | ||
"parameters": { | ||
"properties": { | ||
"minimalTlsVersion": "1.1" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-6852/providers/Microsoft.Synapse/workspaces/workspace-2080/dedicatedSQLminimalTlsSettings/default", | ||
"name": "default", | ||
"type": "Microsoft.Synapse/workspaces/dedicatedSQLminimalTlsSettings", | ||
"properties": { | ||
"minimalTlsVersion": "1.1" | ||
} | ||
} | ||
}, | ||
"202": {} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...table/2021-06-01/examples/GetWorkspaceManagedSqlServerDedicatedSQLminimalTlsSettings.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "workspace-6852", | ||
"workspaceName": "workspace-2080", | ||
"dedicatedSQLminimalTlsSettingsName": "default", | ||
"api-version": "2021-06-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-6852/providers/Microsoft.Synapse/workspaces/workspace-2080/dedicatedSQLminimalTlsSettings/default", | ||
"name": "default", | ||
"type": "Microsoft.Synapse/workspaces/dedicatedSQLminimalTlsSettings", | ||
"location": "eastus", | ||
"properties": { | ||
"minimalTlsVersion": "1.1" | ||
} | ||
} | ||
} | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
...able/2021-06-01/examples/ListWorkspaceManagedSqlServerDedicatedSQLminimalTlsSettings.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
"resourceGroupName": "workspace-6852", | ||
"workspaceName": "workspace-2080", | ||
"api-version": "2021-06-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-6852/providers/Microsoft.Synapse/workspaces/workspace-2080/dedicatedSQLminimalTlsSettings/default", | ||
"name": "default", | ||
"type": "Microsoft.Synapse/workspaces/dedicatedSQLminimalTlsSettings", | ||
"location": "eastus", | ||
"properties": { | ||
"minimalTlsVersion": "1.1" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-6852/providers/Microsoft.Synapse/workspaces/workspace-2080/dedicatedSQLminimalTlsSettings/default", | ||
"name": "default", | ||
"type": "Microsoft.Synapse/workspaces/dedicatedSQLminimalTlsSettings", | ||
"location": "eastus", | ||
"properties": { | ||
"minimalTlsVersion": "1.1" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.