Skip to content

Commit f83e15a

Browse files
authored
Merge pull request #84567 from elamalani/update-zumo-docs
Remove Easy Tables and Easy APIs from docs
2 parents be95127 + af67a9b commit f83e15a

9 files changed

+6
-55
lines changed

articles/app-service-mobile/app-service-mobile-ios-how-to-use-client-library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ At minimum, the `id` attribute must be set when making deletes.
445445

446446
## <a name="customapi"></a>How to: Call Custom API
447447

448-
With a custom API, you can expose any backend functionality. It doesn't have to map to a table operation. Not only do you gain more control over messaging, you can even read/set headers and change the response body format. To learn how to create a custom API on the backend, read [Custom APIs](app-service-mobile-node-backend-how-to-use-server-sdk.md#work-easy-apis)
448+
With a custom API, you can expose any backend functionality. It doesn't have to map to a table operation. Not only do you gain more control over messaging, you can even read/set headers and change the response body format.
449449

450450
To call a custom API, call `MSClient.invokeAPI`. The request and response content are treated as JSON. To use
451451
other media types, [use the other overload of `invokeAPI`][5]. To make a `GET` request instead of a `POST`

articles/app-service-mobile/app-service-mobile-node-backend-how-to-use-server-sdk.md

Lines changed: 1 addition & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,7 @@ api.get.access = 'authenticated';
992992
module.exports = api;
993993
```
994994
995-
## <a name="Debugging"></a>Debugging, Easy Tables, and Easy APIs
995+
## <a name="Debugging"></a>Debugging
996996
997997
### <a name="howto-diagnostic-logs"></a>Debug, diagnose, and troubleshoot Mobile Apps
998998
@@ -1007,55 +1007,6 @@ Node.js applications have access to a wide range of diagnostic log tools. Intern
10071007
Node.js SDK uses [Winston] for diagnostic logging. Logging is automatically enabled when you enable debug mode or set the `MS_DebugMode` app setting to true in the [Azure portal]. Generated logs appear in the diagnostic
10081008
logs in the [Azure portal].
10091009
1010-
### <a name="in-portal-editing"></a><a name="work-easy-tables"></a>Work with Easy Tables in the Azure portal
1011-
1012-
You can use Easy Tables to create and work with tables right in the portal. You can upload dataset to Easy Tables
1013-
in CSV format. Note that you cannot use property names (in your CSV dataset) that conflict with system property names
1014-
of the Mobile Apps back end. The system property names are:
1015-
* createdAt
1016-
* updatedAt
1017-
* deleted
1018-
* version
1019-
1020-
You can even edit table operations by using App Service Editor. When you select **Easy tables** in your back-end site
1021-
settings, you can add, modify, or delete a table. You can also see data in the table.
1022-
1023-
![Work with Easy Tables](./media/app-service-mobile-node-backend-how-to-use-server-sdk/mobile-apps-easy-tables.png)
1024-
1025-
The following commands are available on the command bar for a table:
1026-
1027-
* **Change permissions**: Modify the permission for read, insert, update, and delete operations on the table.
1028-
Options are to allow anonymous access, to require authentication, or to disable all access to the operation.
1029-
* **Edit script**: The script file for the table is opened in App Service Editor.
1030-
* **Manage schema**: Add or delete columns, or change the table index.
1031-
* **Clear table**: Truncate an existing table by deleting all data rows but leaving the schema unchanged.
1032-
* **Delete rows**: Delete individual rows of data.
1033-
* **View streaming logs**: Connect to the streaming log service for your site.
1034-
1035-
### <a name="work-easy-apis"></a>Work with Easy APIs in the Azure portal
1036-
1037-
You can use Easy APIs to create and work with custom APIs right in the portal. You can edit API
1038-
scripts by using App Service Editor.
1039-
1040-
When you select **Easy APIs** in your back-end site settings, you can add, modify, or delete a custom API
1041-
endpoint.
1042-
1043-
![Work with Easy APIs](./media/app-service-mobile-node-backend-how-to-use-server-sdk/mobile-apps-easy-apis.png)
1044-
1045-
In the portal, you can change the access permissions for an HTTP action, edit the API script file in
1046-
App Service Editor, or view the streaming logs.
1047-
1048-
### <a name="online-editor"></a>Edit code in App Service Editor
1049-
1050-
By using the Azure portal, you can edit your Node.js back-end script files in App Service Editor without having to
1051-
download the project to your local computer. To edit script files in the online editor:
1052-
1053-
1. In pane for your Mobile Apps back end, select **All settings** > either **Easy tables** or **Easy APIs**. Select a
1054-
table or API, and then select **Edit script**. The script file opens in App Service Editor.
1055-
1056-
![App Service Editor](./media/app-service-mobile-node-backend-how-to-use-server-sdk/mobile-apps-visual-studio-editor.png)
1057-
1. Make your changes to the code file in the online editor. Changes are saved automatically as you type.
1058-
10591010
<!-- Images -->
10601011
[0]: ./media/app-service-mobile-node-backend-how-to-use-server-sdk/npm-init.png
10611012
[1]: ./media/app-service-mobile-node-backend-how-to-use-server-sdk/vs2015-new-project.png

articles/app-service-mobile/app-service-mobile-windows-store-dotnet-get-started-push.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Use the procedure below that matches your backend project type&mdash;either [.NE
114114
4. Republish the server project.
115115

116116
### <a name="nodejs"></a>Node.js backend project
117-
1. If you haven't already done so, [download the quickstart project](app-service-mobile-node-backend-how-to-use-server-sdk.md#download-quickstart) or else use the [online editor in the Azure portal](app-service-mobile-node-backend-how-to-use-server-sdk.md#online-editor).
117+
1. Set up your backend project.
118118
2. Replace the existing code in the todoitem.js file with the following:
119119

120120
```javascript

includes/app-service-mobile-dotnet-backend-configure-push-apns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ ms.date: 08/23/2018
6161

6262
**Node.js backend**:
6363

64-
1. If you haven't already done so, [download the quickstart project](../articles/app-service-mobile/app-service-mobile-node-backend-how-to-use-server-sdk.md#download-quickstart) or else use the [online editor in the Azure portal](../articles/app-service-mobile/app-service-mobile-node-backend-how-to-use-server-sdk.md#online-editor).
64+
1. Set up your backend project.
6565

6666
2. Replace the todoitem.js table script with the following code:
6767

includes/app-service-mobile-dotnet-backend-configure-push-google.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Use the procedure that matches your back-end project type&mdash;either [.NET bac
6363

6464
### <a name="nodejs"></a>Node.js back-end project
6565

66-
1. If you haven't already done so, [download the quickstart project](../articles/app-service-mobile/app-service-mobile-node-backend-how-to-use-server-sdk.md#download-quickstart), or else use the [online editor in the Azure portal](../articles/app-service-mobile/app-service-mobile-node-backend-how-to-use-server-sdk.md#online-editor).
66+
1. Set up your backend project.
6767
2. Replace the existing code in the todoitem.js file with the following:
6868

6969
```javascript

includes/app-service-mobile-update-server-project-for-push-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Choose one of the following procedures that matches your back-end project type&m
6464

6565
### <a name="nodejs"></a>Node.js back-end project
6666

67-
1. If you haven't already done so, [download the quickstart back-end project](../articles/app-service-mobile/app-service-mobile-node-backend-how-to-use-server-sdk.md#download-quickstart), or else use the [online editor in the Azure portal](../articles/app-service-mobile/app-service-mobile-node-backend-how-to-use-server-sdk.md#online-editor).
67+
1. Set up your backend project.
6868
2. Replace the existing code in todoitem.js with the following code:
6969

7070
```javascript

0 commit comments

Comments
 (0)