Skip to content

Commit 42ad066

Browse files
authored
(DOCSP-23249): Product naming (mongodb#2121)
* Clean up product naming * Fix titles * Comment
1 parent bc4a685 commit 42ad066

File tree

85 files changed

+139
-139
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+139
-139
lines changed

source/help.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Get Help
1515
Overview
1616
--------
1717

18-
MongoDB provides various resources for getting help with App Services.
18+
MongoDB provides various resources for getting help with Atlas App Services.
1919

2020
Professional Support
2121
--------------------

source/introduction.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ easy to share data across users and platforms.
8989
Use Atlas App Services
9090
----------------------
9191

92-
The Realm SDKs integrate with Atlas App Services to easily and securely work
92+
The Realm SDKs integrate with App Services to easily and securely work
9393
with data from your app:
9494

9595
- Query MongoDB Atlas directly from the Realm SDKs using built-in
9696
MongoDB interfaces. You can also configure the :ref:`Atlas Data API <data-api>`
9797
to query MongoDB using an HTTP client in your app.
98-
- :ref:`Atlas App Services Users and Authentication <users-and-authentication>`
98+
- :ref:`App Services Users and Authentication <users-and-authentication>`
9999
provide built-in user management. Integrate with a
100100
:ref:`JWT authentication service <custom-jwt-authentication>` or directly with
101101
:ref:`third-party authentication providers <auth-providers>`,
@@ -150,5 +150,5 @@ Summary
150150
Realm Database synchronizes data in a background thread,
151151
abstracting away network usage so you don't have to worry about
152152
latency or dropped connections.
153-
- The Realm SDKs integrate with Atlas App Services to easily and securely work
153+
- The Realm SDKs integrate with App Services to easily and securely work
154154
with your data in Atlas.

source/migrate.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Overview
1515
If you have an existing app built with the Stitch SDKs, you should migrate your
1616
app to use the new Realm SDKs. While much of the logic and flow of information
1717
hasn't changed, there are a few important changes in the way your app connects to
18-
App Services.
18+
Atlas App Services.
1919

2020
Updating Your Existing Application
2121
----------------------------------

source/realm-legacy.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Realm (Legacy)
55
==============
66

7-
App Services uses Realm Database version 10 and above. The
7+
Atlas App Services uses Realm Database version 10 and above. The
88
documentation for earlier versions of Realm Database can be found
99
on at `Realm documentation (legacy)
1010
<https://www.mongodb.com/docs/realm-legacy/docs/>`_.

source/sdk.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ and platforms. Each SDK is language-idiomatic and includes:
2222

2323
- The core database APIs for creating and working with on-device databases.
2424

25-
- The APIs you need for connecting to the App Services backend so you can
25+
- The APIs you need for connecting to the Atlas App Services backend so you can
2626
make use of server-side features like :ref:`Sync <sync>`,
2727
:ref:`Authentication <users-and-authentication>`, :ref:`Functions <functions>`,
2828
:ref:`Triggers <trigger-types>`, and more.

source/sdk/dotnet.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The Realm .NET SDK enables client applications written in C# for the .NET,
3232
`UWP <https://docs.microsoft.com/en-us/windows/uwp/get-started/>`__, `Xamarin
3333
<https://dotnet.microsoft.com/apps/xamarin>`__, and `Unity
3434
<https://unity.com/>`_ platforms to access data stored in local realms and
35-
interact with App Services services like Functions, MongoDB Data Access, and
35+
interact with Atlas App Services services like Functions, MongoDB Data Access, and
3636
authentication.
3737

3838
.. _dotnet_supported-platforms:

source/sdk/dotnet/examples/flexible-sync.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ You can:
6464
- Remove individual subscriptions or all subscriptions of a type
6565

6666
When the data matches the subscription, and the authenticated user has the
67-
appropriate permissions, App Services syncs the backend data with the client app.
67+
appropriate permissions, Atlas App Services syncs the backend data with the client app.
6868

6969
You can specify a string name for your subscription. If you do not give your
7070
subscription a name, the name is set to null.

source/sdk/dotnet/examples/open-a-realm.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Synced Realms
5454
To open a synced realm, you must have an authenticated
5555
:dotnet-sdk:`User <reference/Realms.Sync.User.html>` object. To
5656
obtain an initial ``User`` instance, you need to authenticate against the
57-
App Services backend, which requires the device to be online
57+
Atlas App Services backend, which requires the device to be online
5858
the first time a user logs in. Once initial authentication has occurred, you can
5959
:ref:`retrieve an existing user <dotnet-retrieve-current-user>` while offline.
6060

source/sdk/dotnet/examples/users/create-and-delete-users.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _dotnet-create-and-delete-users:
22

3-
===================================
3+
==================================
44
Create and Delete Users - .NET SDK
5-
===================================
5+
==================================
66

77
.. default-domain:: mongodb
88

@@ -22,7 +22,7 @@ email/password authentication, Atlas App Services automatically creates a
2222
:ref:`user object <user-objects>` the first time a user authenticates.
2323
When you use email/password authentication, you must first :ref:`register
2424
<dotnet-email-password-register-new-user>` and :ref:`confirm
25-
<dotnet-email-password-confirm-user>` a user before Atlas App Services
25+
<dotnet-email-password-confirm-user>` a user before App Services
2626
creates the user object.
2727

2828
.. _dotnet-delete-user:

source/sdk/dotnet/examples/users/manage-user-api-keys.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Manage User API Keys - .NET SDK
1414
:class: singlecol
1515

1616
Application users can generate user API keys with the .NET SDK. You
17-
can allow devices or services to communicate with App Services
17+
can allow devices or services to communicate with Atlas App Services
1818
on behalf of a user by associating a unique user API key with each
1919
device or service.
2020

source/sdk/dotnet/examples/users/multi-user-applications.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The following states describe an on-device user at any given time:
4444

4545
- **Active**: a single authenticated user that is currently using the
4646
app on a given device. The SDK associates this user with outgoing
47-
requests and App Services evaluates data access permissions and runs
47+
requests and Atlas App Services evaluates data access permissions and runs
4848
functions in this user's context. See :ref:`active user <active-user>` for
4949
more information.
5050

source/sdk/dotnet/examples/users/user-metadata.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _dotnet-user-metadata:
22

3-
=========================
3+
========================
44
User Metadata - .NET SDK
5-
=========================
5+
========================
66

77
.. default-domain:: mongodb
88

@@ -34,7 +34,7 @@ User metadata options vary depending on which provider you're using and
3434

3535
.. warning:: User Metadata May Be Stale
3636

37-
App Services fetches the most recent version of user metadata when a user
37+
Atlas App Services fetches the most recent version of user metadata when a user
3838
logs in. If the user changes their email address or profile photo with a
3939
login provider, for example, those changes do not update in user metadata
4040
until the user logs in again. Because we cache credentials and enable you

source/sdk/dotnet/examples/work-with-users.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _dotnet-work-with-users:
22

3-
===========================
3+
==========================
44
Work with Users - .NET SDK
5-
===========================
5+
==========================
66

77
.. default-domain:: mongodb
88

@@ -20,7 +20,7 @@ Work with Users - .NET SDK
2020
Overview
2121
--------
2222

23-
When you use App Services to back your client app, you get access to a
23+
When you use Atlas App Services to back your client app, you get access to a
2424
:ref:`user object <user-objects>`. You can use the .NET SDK to:
2525

2626
- Create and delete users
@@ -78,7 +78,7 @@ realm or call a function upon subsequent app opens.
7878
User Sessions
7979
~~~~~~~~~~~~~
8080

81-
Atlas App Services manages sessions with access tokens and refresh tokens.
81+
App Services manages sessions with access tokens and refresh tokens.
8282
Client SDKs supply the logic to manage tokens, and provide them with requests.
8383

8484
.. seealso::

source/sdk/dotnet/fundamentals/application-services.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Application Services - .NET SDK
1717
Overview
1818
--------
1919

20-
Realm provides SDKs that help you connect your client apps to the App Services
20+
Realm provides SDKs that help you connect your client apps to the Atlas App Services
2121
backend. The SDK provides the functionality needed to
2222
authenticate users with any of the built-in :ref:`authentication providers <authentication-providers>`,
2323
call backend :ref:`functions <functions>`, and directly access a linked

source/sdk/dotnet/fundamentals/write-transactions.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ When you are done with your transaction, Realm either
4040

4141
- When Realm **commits** a transaction, Realm writes
4242
all changes to disk. For synced realms, the SDK queues the change
43-
for synchronization with App Services.
43+
for synchronization with Atlas App Services.
4444
- When Realm **cancels** a write transaction or an operation in
4545
the transaction causes an error, all changes are discarded
4646
(or "rolled back").

source/sdk/dotnet/quick-start-with-sync.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ statement:
4747
Initialize the App
4848
------------------
4949

50-
To use App Services features such as authentication and sync, you must
50+
To use Atlas App Services features such as authentication and sync, you must
5151
access your App using your App ID. You can find your App ID in the
5252
App Services UI. With that, you can initialize the realm app, as shown in the following
5353
code:

source/sdk/dotnet/unity-tutorial.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ Part 1: Set up the Game
282282
* - RealmScripts/AuthenticationManager.cs
283283
- Interacts with the TextField's of AuthenticationScreen.uxml to
284284
implement user login. In part 2, you'll add :ref:`user authentication
285-
<dotnet-login-email-password>` with the App Services
285+
<dotnet-login-email-password>` with the Atlas App Services
286286
:ref:`Email/Password <email-password-authentication>` provider.
287287

288288
* - RealmScripts/RealmController.cs

source/sdk/flutter.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Flutter SDK (Beta)
1010
Install Realm for Flutter </sdk/flutter/install.txt>
1111
Quick Start </sdk/flutter/quick-start.txt>
1212
Realm Database </sdk/flutter/realm-database.txt>
13-
App Services </sdk/flutter/app-services.txt>
13+
Atlas App Services </sdk/flutter/app-services.txt>
1414
User Management </sdk/flutter/users.txt>
1515
Sync Device Data <sdk/flutter/sync.txt>
1616
API Reference <https://pub.dev/documentation/realm/latest/>
@@ -37,13 +37,13 @@ are specific configuration considerations:
3737

3838
- The beta version of the SDK does not yet have certain Realm database features.
3939
- The SDK doesn't have built-in functionality to interact with all of
40-
Atlas App Services. Learn more about how to :ref:`use the SDK with currently supported App Services
40+
App Services. Learn more about how to :ref:`use the SDK with currently supported App Services
4141
<flutter-application-services>`.
4242

4343
Get Started
4444
-----------
4545

46-
To start using the Atlas App Services Flutter SDK
46+
To start using the Realm Flutter SDK
4747
in your Flutter application, see :ref:`Install Realm for Flutter
4848
<flutter-install>` to add the Flutter SDK
4949
dependency and then check out the :ref:`Quick Start

source/sdk/flutter/app-services.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ backend using the Flutter SDK. Backend functionality includes:
2828
The Realm App Client
2929
--------------------
3030

31-
To connect to your Atlas App Services backend, start with an
31+
To connect to your App Services backend, start with an
3232
:flutter-sdk:`App <realm/App-class.html>` object.
3333
This object provides all other functionality related to
3434
the backend. Initialize an App with the Realm app ID, which you can

source/sdk/flutter/app-services/connect-to-app.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ backend. It provides access to the :ref:`authentication
1717
Before You Begin
1818
----------------
1919

20-
#. :ref:`Create an Atlas App Services app <create-a-realm-app>`
20+
#. :ref:`Create an App Services app <create-a-realm-app>`
2121

2222
.. _flutter-access-the-app-client:
2323

@@ -29,7 +29,7 @@ Access the App Client
2929
object with your App's App ID as the argument.
3030
#. Create an :flutter-sdk:`App <realm/App-class.html>`
3131
with the ``AppConfiguration`` you just created. You use this
32-
``App`` instance to access Atlas App Services features throughout your client application.
32+
``App`` instance to access App Services features throughout your client application.
3333

3434
.. literalinclude:: /examples/generated/flutter/app_services_test.snippet.access-app-client.dart
3535
:language: dart
@@ -56,4 +56,4 @@ You can add optional arguments to the :flutter-sdk:`AppConfiguration <realm/AppC
5656
.. note::
5757

5858
For most use cases, you only need your application's App ID to connect
59-
to Atlas App Services. The other settings demonstrated here are optional.
59+
to App Services. The other settings demonstrated here are optional.

source/sdk/flutter/realm-database.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ a migration function.
7676
Sync
7777
~~~~
7878

79-
Device Sync adds network synchronization between a App Services backend and
79+
Device Sync adds network synchronization between a Atlas App Services backend and
8080
client devices on top of all of the functionality of Realm Database.
8181
When you use Realm Database with Sync, realms exist on device
8282
just like when you only use Realm Database. However, changes to

source/sdk/flutter/sync.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Enable Flexible Sync on the Backend
6262
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6363

6464
Before you can start syncing data from your client application using the SDK,
65-
you must enable Flexible Sync in the Atlas App Services backend.
65+
you must enable Flexible Sync in the App Services backend.
6666

6767
To begin, refer to the :ref:`backend documentation on enabling Device Sync <enable-realm-sync>`.
6868

source/sdk/flutter/users/authenticate.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ used to instantiate ``Credentials`` objects for that authentication provider.
2121
Before You Begin
2222
----------------
2323

24-
#. :ref:`Create an Atlas App Services app <create-a-realm-app>`.
24+
#. :ref:`Create an App Services app <create-a-realm-app>`.
2525
#. Enable and configure one or more App Services :ref:`authentication providers <authentication-providers>`.
2626

2727
.. _flutter-register:

source/sdk/flutter/users/custom-user-data.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ in the backend. To learn more, see :ref:`Enable Custom User Data <custom-user-da
2525
from the SDK as well.
2626

2727
You can create, update, or delete custom user data using one of the other
28-
Realm SDKs, with App Services functions, or by directly querying Atlas.
28+
Realm SDKs, with Atlas Functions, or by directly querying Atlas.
2929

3030
Before You Begin
3131
----------------

source/sdk/flutter/users/email-password-users.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ Email/Password Users - Flutter SDK
1010
:depth: 2
1111
:class: singlecol
1212

13-
With App Services's email/password authentication provider, you can register a new
13+
With Atlas App Services's email/password authentication provider, you can register a new
1414
account, confirm an email address, and reset a user's password from client code.
1515

1616
Before You Begin
1717
----------------
1818

1919

20-
#. :ref:`Create an Atlas App Services app <create-a-realm-app>`.
20+
#. :ref:`Create an App Services app <create-a-realm-app>`.
2121
#. Before you begin writing client code, you should understand the different email/password
2222
authentication flows that App Services provides, and configure the backend implementation
2323
for your application. App Services has a variety of ways to confirm email/password
@@ -74,7 +74,7 @@ function when the user registers.
7474
Send a Confirmation Email
7575
~~~~~~~~~~~~~~~~~~~~~~~~~
7676

77-
You only need to send a confirmation email if you :ref:`configure Atlas App Services to handle
77+
You only need to send a confirmation email if you :ref:`configure App Services to handle
7878
user confirmation with an email <auth-send-a-confirmation-email>`.
7979

8080
To confirm a newly-created user, pass a confirmation ``token`` and

source/sdk/java/advanced-guides/custom-user-data.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ method on the ``User`` object of a logged in user:
5454

5555
.. warning:: Custom Data May Be Stale
5656

57-
App Services does not dynamically update the value of
57+
Atlas App Services does not dynamically update the value of
5858
:java-sdk:`User.customData() <io/realm/mongodb/User.html#getCustomData-->`
5959
immediately when underlying data changes. Instead, App Services
6060
fetches the most recent version of custom user data whenever a user

source/sdk/java/advanced-guides/multi-user-applications.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The following states describe an on-device user at any given time:
4343

4444
- **Active**: a single authenticated user that is currently using the
4545
app on a given device. The SDK associates this user with outgoing
46-
requests and App Services evaluates data access permissions and runs
46+
requests and Atlas App Services evaluates data access permissions and runs
4747
functions in this user's context. See :ref:`active user <active-user>` for
4848
more information.
4949

source/sdk/java/data-types/realmany.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Realm object fields that can contain any of several
2020
underlying types. You can store multiple ``RealmAny`` instances in
2121
``RealmList``, ``RealmDictionary``, or ``RealmSet`` fields. To change
2222
the value of a ``RealmAny`` field, assign a new ``RealmAny`` instance
23-
with a different underlying value. In App Services backend
23+
with a different underlying value. In Atlas App Services backend
2424
:ref:`object schemas <object-schema>`, the ``RealmAny``
2525
data type is called **mixed**. ``RealmAny`` fields are indexable, but
2626
cannot be used as primary keys.

source/sdk/java/examples/authenticate-users.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ users in your Android application:
335335
#. Use the :java-sdk:`app.loginAsync()
336336
<io/realm/mongodb/App.html#loginAsync-io.realm.mongodb.Credentials-io.realm.mongodb.App.Callback->`
337337
or :java-sdk:`app.login() <io/realm/mongodb/App.html#login-io.realm.mongodb.Credentials->`
338-
methods to authenticate with the App Services backend using the token.
338+
methods to authenticate with the Atlas App Services backend using the token.
339339

340340
The following code implements this flow, starting with a method call to
341341
``loginWithGoogle()``:
@@ -396,7 +396,7 @@ to ``app.login()`` or ``app.loginAsync()``.
396396
Offline Login
397397
-------------
398398

399-
Atlas App Services manages sessions with access tokens and refresh tokens. Client
399+
App Services manages sessions with access tokens and refresh tokens. Client
400400
SDKs supply the logic to manage tokens, and provide them with requests.
401401

402402
The SDK stores these tokens in

source/sdk/java/fundamentals/application-services.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Application Services - Java SDK
1616
Overview
1717
--------
1818

19-
Realm provides SDKs that help you connect your client apps to the App Services
19+
Realm provides SDKs that help you connect your client apps to the Atlas App Services
2020
backend. The SDK provides the functionality needed to
2121
authenticate users with any of the built-in :ref:`authentication providers <authentication-providers>`,
2222
call backend :ref:`functions <functions>`, and directly access a linked
@@ -33,7 +33,7 @@ App Services. Initialize the ``App`` object with the App ID, which you can
3333
.. seealso::
3434

3535
To learn how to initialize the App client, see
36-
:ref:`Connect to an Atlas App Services backend <java-init-appclient>`.
36+
:ref:`Connect to an App Services backend <java-init-appclient>`.
3737

3838
Authentication & User Management
3939
--------------------------------

0 commit comments

Comments
 (0)