-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Workspace Managed Sql Server Proxy Apis. #907750 #923781 #11105
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
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
872ff67
Workspace Managed Sql Server Proxy Apis. #907750 #923781
kashyap-kunal d155ca3
Spelling mistakes fix
kashyap-kunal fba5ab1
Lint issue fix
kashyap-kunal c9c8c9d
Fixing lint warnings
kashyap-kunal 60a1d9c
Fixing Lint issue
kashyap-kunal bbd46a2
resolving review comment
kashyap-kunal 29136f2
Merge branch 'master' into master
kashyap-kunal b34094f
Resolvong comment and detangling merge conflicts
kashyap-kunal 8212b1e
Update custom-words.txt
kashyap-kunal 8fc2643
Merge branch 'master' into master
kashyap-kunal a363bdd
removing server key spec
kashyap-kunal 72cd6e7
Update sqlServer.json
kashyap-kunal 2d3e4af
Merge branch 'master' into master
kashyap-kunal 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1999,4 +1999,5 @@ unarchive | |
| unarchiving | ||
| ssoadfs | ||
| Idempotence | ||
| Sqlpools | ||
| privatelinkhub | ||
53 changes: 53 additions & 0 deletions
53
...review/examples/CreateWorkspaceManagedSqlServerBlobAuditingSettingsWithAllParameters.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,53 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
| "resourceGroupName": "wsg-7398", | ||
| "workspaceName": "testWorkspace", | ||
| "blobAuditingPolicyName": "default", | ||
| "api-version": "2019-06-01-preview", | ||
| "parameters": { | ||
| "properties": { | ||
| "state": "Enabled", | ||
| "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", | ||
| "storageEndpoint": "https://mystorage.blob.core.windows.net", | ||
| "retentionDays": 6, | ||
| "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", | ||
| "isStorageSecondaryKeyInUse": false, | ||
| "queueDelayMs": 4000, | ||
| "auditActionsAndGroups": [ | ||
| "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", | ||
| "FAILED_DATABASE_AUTHENTICATION_GROUP", | ||
| "BATCH_COMPLETED_GROUP" | ||
| ], | ||
| "isAzureMonitorTargetEnabled": true | ||
| } | ||
| } | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/wsg-7398/providers/Microsoft.Synapse/workspaces/testWorkspace/auditingSettings/default", | ||
| "name": "default", | ||
| "type": "Microsoft.Synapse/workspaces/auditingSettings", | ||
| "properties": { | ||
| "state": "Enabled", | ||
| "storageEndpoint": "https://mystorage.blob.core.windows.net", | ||
| "retentionDays": 6, | ||
| "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", | ||
| "isStorageSecondaryKeyInUse": false, | ||
| "queueDelayMs": 4000, | ||
| "auditActionsAndGroups": [ | ||
| "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", | ||
| "FAILED_DATABASE_AUTHENTICATION_GROUP", | ||
| "BATCH_COMPLETED_GROUP" | ||
| ], | ||
| "isAzureMonitorTargetEnabled": true | ||
| } | ||
| } | ||
| }, | ||
| "202": { | ||
| "startTime": "2017-11-22T09:34:54.72Z", | ||
| "operation": "UpsertServerEngineAuditingPolicy" | ||
| } | ||
| } | ||
| } |
41 changes: 41 additions & 0 deletions
41
...review/examples/CreateWorkspaceManagedSqlServerBlobAuditingSettingsWithMinParameters.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,41 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
| "resourceGroupName": "wsg-7398", | ||
| "workspaceName": "testWorkspace", | ||
| "blobAuditingPolicyName": "default", | ||
| "api-version": "2019-06-01-preview", | ||
| "parameters": { | ||
| "properties": { | ||
| "state": "Enabled", | ||
| "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", | ||
| "storageEndpoint": "https://mystorage.blob.core.windows.net" | ||
| } | ||
| } | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/wsg-7398/providers/Microsoft.Synapse/workspaces/testWorkspace/auditingSettings/default", | ||
| "name": "default", | ||
| "type": "Microsoft.Synapse/workspaces/auditingSettings", | ||
| "properties": { | ||
| "state": "Enabled", | ||
| "storageEndpoint": "https://mystorage.blob.core.windows.net", | ||
| "retentionDays": 6, | ||
| "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", | ||
| "isStorageSecondaryKeyInUse": false, | ||
| "auditActionsAndGroups": [ | ||
| "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", | ||
| "FAILED_DATABASE_AUTHENTICATION_GROUP", | ||
| "BATCH_COMPLETED_GROUP" | ||
| ] | ||
| } | ||
| } | ||
| }, | ||
| "202": { | ||
| "startTime": "2017-11-22T09:34:54.72Z", | ||
| "operation": "UpsertServerEngineAuditingPolicy" | ||
| } | ||
| } | ||
| } |
42 changes: 42 additions & 0 deletions
42
...amples/CreateWorkspaceManagedSqlServerExetendedBlobAuditingSettingsWithMinParameters.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,42 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
| "resourceGroupName": "wsg-7398", | ||
| "workspaceName": "testWorkspace", | ||
| "blobAuditingPolicyName": "default", | ||
| "api-version": "2019-06-01-preview", | ||
| "parameters": { | ||
| "properties": { | ||
| "state": "Enabled", | ||
| "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", | ||
| "storageEndpoint": "https://mystorage.blob.core.windows.net" | ||
| } | ||
| } | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/wsg-7398/providers/Microsoft.Synapse/workspaces/testWorkspace/extendedAuditingSettings/default", | ||
| "name": "default", | ||
| "type": "Microsoft.Synapse/workspaces/extendedAuditingSettings", | ||
| "properties": { | ||
| "state": "Enabled", | ||
| "storageEndpoint": "https://mystorage.blob.core.windows.net", | ||
| "retentionDays": 6, | ||
| "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", | ||
| "isStorageSecondaryKeyInUse": false, | ||
| "auditActionsAndGroups": [ | ||
| "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", | ||
| "FAILED_DATABASE_AUTHENTICATION_GROUP", | ||
| "BATCH_COMPLETED_GROUP" | ||
| ], | ||
| "isAzureMonitorTargetEnabled": false | ||
| } | ||
| } | ||
| }, | ||
| "202": { | ||
| "startTime": "2017-11-22T09:34:54.72Z", | ||
| "operation": "UpsertServerEngineAuditingPolicy" | ||
| } | ||
| } | ||
| } |
53 changes: 53 additions & 0 deletions
53
...xamples/CreateWorkspaceManagedSqlServerExtendedBlobAuditingSettingsWithAllParameters.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,53 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
| "resourceGroupName": "wsg-7398", | ||
| "workspaceName": "testWorkspace", | ||
| "blobAuditingPolicyName": "default", | ||
| "api-version": "2019-06-01-preview", | ||
| "parameters": { | ||
| "properties": { | ||
| "state": "Enabled", | ||
| "storageAccountAccessKey": "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", | ||
| "storageEndpoint": "https://mystorage.blob.core.windows.net", | ||
| "retentionDays": 6, | ||
| "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", | ||
| "isStorageSecondaryKeyInUse": false, | ||
| "auditActionsAndGroups": [ | ||
| "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", | ||
| "FAILED_DATABASE_AUTHENTICATION_GROUP", | ||
| "BATCH_COMPLETED_GROUP" | ||
| ], | ||
| "predicateExpression": "object_name = 'SensitiveData'", | ||
| "isAzureMonitorTargetEnabled": true | ||
| } | ||
| } | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/wsg-7398/providers/Microsoft.Synapse/workspaces/testWorkspace/extendedAuditingSettings/default", | ||
| "name": "default", | ||
| "type": "Microsoft.Synapse/workspaces/extendedAuditingSettings", | ||
| "properties": { | ||
| "state": "Enabled", | ||
| "storageEndpoint": "https://mystorage.blob.core.windows.net", | ||
| "retentionDays": 6, | ||
| "storageAccountSubscriptionId": "00000000-1234-0000-5678-000000000000", | ||
| "isStorageSecondaryKeyInUse": false, | ||
| "auditActionsAndGroups": [ | ||
| "SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP", | ||
| "FAILED_DATABASE_AUTHENTICATION_GROUP", | ||
| "BATCH_COMPLETED_GROUP" | ||
| ], | ||
| "predicateExpression": "object_name = 'SensitiveData'", | ||
| "isAzureMonitorTargetEnabled": true | ||
| } | ||
| } | ||
| }, | ||
| "202": { | ||
| "startTime": "2017-11-22T09:34:54.72Z", | ||
| "operation": "UpsertServerEngineAuditingPolicy" | ||
| } | ||
| } | ||
| } |
13 changes: 13 additions & 0 deletions
13
...w/2019-06-01-preview/examples/DeleteWorkspaceManagedSqlServerVulnerabilityAssessment.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,13 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
| "resourceGroupName": "wsg-7398", | ||
| "workspaceName": "testWorkspace", | ||
| "vulnerabilityAssessmentName": "default", | ||
| "api-version": "2019-06-01-preview" | ||
| }, | ||
| "responses": { | ||
| "200": {}, | ||
| "204": {} | ||
| } | ||
| } |
28 changes: 28 additions & 0 deletions
28
...2019-06-01-preview/examples/GetWorkspaceManagedSqlExtendedServerBlobAuditingSettings.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,28 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
| "resourceGroupName": "wsg-7398", | ||
| "workspaceName": "testWorkspace", | ||
| "blobAuditingPolicyName": "default", | ||
| "api-version": "2019-06-01-preview" | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/wsg-7398/providers/Microsoft.Synapse/workspaces/testWorkspace/extendedAuditingSettings/default", | ||
| "name": "default", | ||
| "type": "Microsoft.Synapse/workspaces/extendedAuditingSettings", | ||
| "properties": { | ||
| "state": "Disabled", | ||
| "storageEndpoint": "", | ||
| "retentionDays": 0, | ||
| "auditActionsAndGroups": [], | ||
| "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", | ||
| "isStorageSecondaryKeyInUse": false, | ||
| "predicateExpression": "object_name = 'SensitiveData'", | ||
| "isAzureMonitorTargetEnabled": false | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
27 changes: 27 additions & 0 deletions
27
...preview/2019-06-01-preview/examples/GetWorkspaceManagedSqlServerBlobAuditingSettings.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": "wsg-7398", | ||
| "workspaceName": "testWorkspace", | ||
| "blobAuditingPolicyName": "default", | ||
| "api-version": "2019-06-01-preview" | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/wsg-7398/providers/Microsoft.Synapse/workspaces/testWorkspace/auditingSettings/default", | ||
| "name": "default", | ||
| "type": "Microsoft.Synapse/workspaces/auditingSettings", | ||
| "properties": { | ||
| "state": "Disabled", | ||
| "storageEndpoint": "", | ||
| "retentionDays": 0, | ||
| "auditActionsAndGroups": [], | ||
| "storageAccountSubscriptionId": "00000000-0000-0000-0000-000000000000", | ||
| "isStorageSecondaryKeyInUse": false, | ||
| "isAzureMonitorTargetEnabled": false | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
25 changes: 25 additions & 0 deletions
25
.../preview/2019-06-01-preview/examples/GetWorkspaceManagedSqlServerEncryptionProtector.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,25 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
| "resourceGroupName": "wsg-7398", | ||
| "workspaceName": "testWorkspace", | ||
| "encryptionProtectorName": "current", | ||
| "api-version": "2019-06-01-preview" | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/wsg-7398/providers/Microsoft.Synapse/workspaces/testWorkspace/encryptionProtector/current", | ||
| "name": "current", | ||
| "type": "Microsoft.Synapse/workspaces/encryptionProtector", | ||
| "location": "Japan East", | ||
| "kind": "azurekeyvault", | ||
| "properties": { | ||
| "serverKeyName": "someVault_someKey_01234567890123456789012345678901", | ||
| "serverKeyType": "AzureKeyVault", | ||
| "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
28 changes: 28 additions & 0 deletions
28
...view/2019-06-01-preview/examples/GetWorkspaceManagedSqlServerEncryptionProtectorList.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,28 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
| "resourceGroupName": "wsg-7398", | ||
| "workspaceName": "testWorkspace", | ||
| "api-version": "2019-06-01-preview" | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "value": [ | ||
| { | ||
| "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/wsg-7398/providers/Microsoft.Synapse/workspaces/testWorkspace/encryptionProtector/current", | ||
| "name": "current", | ||
| "type": "Microsoft.Synapse/workspaces/encryptionProtector", | ||
| "location": "Japan East", | ||
| "kind": "azurekeyvault", | ||
| "properties": { | ||
| "serverKeyName": "someVault_someKey_01234567890123456789012345678901", | ||
| "serverKeyType": "AzureKeyVault", | ||
| "uri": "https://someVault.vault.azure.net/keys/someKey/01234567890123456789012345678901" | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| } | ||
| } |
24 changes: 24 additions & 0 deletions
24
...e/preview/2019-06-01-preview/examples/GetWorkspaceManagedSqlServerRecoverableSqlPool.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,24 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
| "resourceGroupName": "wsg-7398", | ||
| "workspaceName": "testWorkspace", | ||
| "sqlComputeName": "recoverableSqlpools-1235", | ||
| "api-version": "2019-06-01-preview" | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/wsg-7398/providers/Microsoft.Synapse/workspaces/testWorkspace/recoverableSqlpools/recoverableSqlpools-1235", | ||
| "name": "recoverableSqlpools-1235", | ||
| "type": "Microsoft.Synapse/workspaces/recoverableSqlpools", | ||
| "properties": { | ||
| "edition": "Standard", | ||
| "serviceLevelObjective": "S0", | ||
| "lastAvailableBackupDate": "2017-05-26T01:06:29.78Z", | ||
| "elasticPoolName": null | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } |
32 changes: 32 additions & 0 deletions
32
.../preview/2019-06-01-preview/examples/GetWorkspaceManagedSqlServerSecurityAlertPolicy.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,32 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "00000000-1111-2222-3333-444444444444", | ||
| "resourceGroupName": "wsg-7398", | ||
| "workspaceName": "testWorkspace", | ||
| "securityAlertPolicyName": "Default", | ||
| "api-version": "2019-06-01-preview" | ||
| }, | ||
| "responses": { | ||
| "200": { | ||
| "body": { | ||
| "id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/wsg-7398/providers/Microsoft.Synapse/workspaces/testWorkspace/securityAlertPolicies/Default", | ||
| "name": "Default", | ||
| "type": "Microsoft.Synapse/workspaces/securityAlertPolicies", | ||
| "properties": { | ||
| "state": "Disabled", | ||
| "emailAccountAdmins": true, | ||
| "emailAddresses": [ | ||
| "test@microsoft.com;user@microsoft.com" | ||
| ], | ||
| "disabledAlerts": [ | ||
| "Access_Anomaly" | ||
| ], | ||
| "creationTime": "2020-10-23T04:52:49.52Z", | ||
| "retentionDays": 0, | ||
| "storageAccountAccessKey": "", | ||
| "storageEndpoint": "https://mystorage.blob.core.windows.net" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
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.