diff --git a/README.rst b/README.rst index 69387e3929..c44cfbe8b7 100644 --- a/README.rst +++ b/README.rst @@ -4,6 +4,17 @@ MongoDB Realm Documentation This repository contains documentation for MongoDB Realm. +> [!WARNING] +> As of September 2024, Atlas Device SDKs are deprecated. Atlas Device SDKs +> will reach end-of-life and be removed on September 30, 2025. +> +> These services will reach end-of-life and be removed on September 30, 2025. +> +> With the previously-announced GraphQL and Static Hosting deprecations, all of +> the documentation in this repository is also deprecated. The documentation will +> be updated on a best-effort basis until September 30, 2025. After that date, +> the documentation will no longer be maintained. + Contribute ---------- diff --git a/snooty.toml b/snooty.toml index e6939c0f89..625037b3de 100644 --- a/snooty.toml +++ b/snooty.toml @@ -98,7 +98,7 @@ sync-short = "Device Sync" # Realm Rebrand announcement for .local London [[banners]] targets = ["*"] -variant = "info" +variant = "warning" value = """\ - Realm is now Atlas Device SDK – `Learn More `__ \ + Atlas Device SDKs are deprecated. Refer to the :ref:`deprecation page ` for details. \ """ diff --git a/source/deprecation.txt b/source/deprecation.txt new file mode 100644 index 0000000000..95948b323b --- /dev/null +++ b/source/deprecation.txt @@ -0,0 +1,38 @@ +.. meta:: + :robots: noindex, nosnippet + +.. _device-sdks-deprecation: + +============================= +Atlas Device SDKs Deprecation +============================= + +.. contents:: On this page + :local: + :backlinks: none + :depth: 2 + :class: singlecol + +As of September 2024, Atlas Device SDKs are deprecated. Atlas Device SDKs will +reach end-of-life and be removed on **September 30, 2025**. + +The Atlas Device SDKs are made up of two parts: the on-device database and +Atlas Device Sync. The on-device database will continue to exist as an open +source project. + +Atlas Device Sync is deprecated. This means that apps built using Sync need to +move to an alternative solution or remove Sync before September 30, 2025. Refer +to the :ref:`App Services deprecation page ` for more +information. + +Device SDKs Community Branches +------------------------------ + +The Device SDKs will have community branches that remove Device Sync code from +their codebases. Learn more in the SDKs' README files: + +- `Flutter `__ +- `Kotlin `__ +- `.NET `__ +- `JavaScript `__ +- `Swift `__ diff --git a/source/example-projects.txt b/source/example-projects.txt index 6869fd9e06..1ee844d914 100644 --- a/source/example-projects.txt +++ b/source/example-projects.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _realm-examples: ================================= diff --git a/source/help.txt b/source/help.txt index 9f43fb0478..7535c6eb9b 100644 --- a/source/help.txt +++ b/source/help.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _getting-help: ======== diff --git a/source/index.txt b/source/index.txt index 13946d6d7b..982f862d4e 100644 --- a/source/index.txt +++ b/source/index.txt @@ -2,6 +2,10 @@ :hidefeedback: header :noprevnext: +.. meta:: + :robots: noindex, nosnippet + + ==================================== Welcome to the Atlas Device SDK Docs ==================================== @@ -13,7 +17,7 @@ Welcome to the Atlas Device SDK Docs :titlesonly: :hidden: - Introduction + Device SDKs Deprecation C++ SDK Flutter SDK Java SDK @@ -23,7 +27,6 @@ Welcome to the Atlas Device SDK Docs React Native SDK Swift SDK Web SDK - Atlas App Services Realm Studio Realm Query Language Example Projects @@ -38,8 +41,6 @@ Welcome to the Atlas Device SDK Docs .. button:: Get started with a tutorial :uri: https://mongodb.com/docs/atlas/app-services/get-started/ - :doc:`Read the 5-Minute Introduction ` - .. image:: /images/hero.png :alt: Atlas Device SDK landing page hero image :class: hero-img @@ -144,5 +145,3 @@ SDK is language-idiomatic and includes: :icon-alt: C++ SDK icon Build applications in C++. Access data stored in realms and sync data with Atlas. - -For legacy (pre-v10) Realm Documentation, see https://www.mongodb.com/docs/realm-legacy/docs/. diff --git a/source/introduction.txt b/source/introduction.txt deleted file mode 100644 index a0e37470ed..0000000000 --- a/source/introduction.txt +++ /dev/null @@ -1,292 +0,0 @@ -.. _intro-realm-database: - -================================ -Introduction to Atlas Device SDK -================================ - -.. meta:: - :description: Atlas Device SDK is an offline-first mobile object database that offers secure cloud synchronization, MongoDB Atlas access, and serverless JavaScript functions. - :keywords: atlas, atlas app services - -.. contents:: On this page - :local: - :backlinks: none - :depth: 2 - :class: singlecol - -Atlas Device SDK is a collection of tools to accelerate app development -on a broad range of devices: - -- A built-in Sync client that can synchronize your data between devices and - with a MongoDB Atlas backend. -- An offline-first object database to persist data on device. -- The ability to call Atlas Functions to do work in the cloud. -- A client to query MongoDB data sources directly from your app. - -You can use the SDK's object store, Realm, to read, write, and -react to changes in your data on device. Add Device Sync, Atlas Functions, -or the MongoDB Atlas client to take advantage of MongoDB Atlas features -and access data sources from your app. - -Mobile and Edge Development Challenges --------------------------------------- - -Mobile and edge developers face a number of unique challenges: - -- Handle the unpredictable environment of mobile and edge devices. Connections - can be lost, devices can shut down at any time, and clients often update - long after release. -- Maintain common data schemas and APIs between clients, backend APIs, and databases. -- Stay aware of security vulnerabilities across all components in an ecosystem. -- Consistently serialize objects between networks, database storage, and application memory. -- Program in the languages and frameworks for one or more operating systems. - -All of these challenges present different obstacles. You can solve each in isolation -with a wide variety of libraries and frameworks. Selecting the best solution for each -problem with the right tradeoffs is a challenge mobile and edge developers -know all too well. - -The combination of multiple environments creates more challenges. For instance, -you can use a Java library on your Android client to serialize objects, -but that library won't work on iOS. And this doesn't take into account -consistency across backend services. - -The SDKs solve many common mobile and edge programming headaches: - -- **Device storage**: The SDKs run right on client devices. Access objects - using the native query language for each platform. Storing, accessing, and updating - your data is simple and lightweight. -- **Network reliability**: The SDKs are offline-first. You - always read from and write to the persistence layer on the device, not - over the network. When Device Sync is enabled, the SDK synchronizes - data with App Services over the network in a background thread. - The sync protocol resolves conflicts - consistently on each client and in the - linked Atlas cluster. -- **Reactive UI**: Live objects always reflect - the latest data stored in the database. You can - subscribe to changes, letting you keep your UI consistently up to date. - -Sync Data with MongoDB Atlas ----------------------------- - -Client applications generate a lot of data. Whether it's uploaded -reviews and ratings, posts and comments on a blog, or inventory -in a kitchen, you need to store that data somewhere. - -The SDKs use Atlas Device Sync to synchronize app data between clients and -MongoDB Atlas. Atlas Device Sync handles network access and conflict resolution -in a background thread of your application, so your application logic stays -the same regardless of network conditions. - -Once your client data is in Atlas, you can leverage the full -Atlas developer data platform. -Perform aggregations and other complex workloads with the full capabilities -of MongoDB. Or connect your Atlas instance to `Charts -`_ to visualize -your data in real time. Storing your data in Atlas makes it -easy to share data across users and platforms. - -Use Atlas App Services ----------------------- - -The SDKs integrate with App Services to easily and securely work -with data from your app: - -- Query MongoDB Atlas directly from the SDKs using built-in - MongoDB interfaces. You can also configure the :ref:`Atlas Data API ` - to query MongoDB using an HTTP client in your app. -- :ref:`App Services Users and Authentication ` - provide built-in user management. Integrate with a - :ref:`JWT authentication service ` or directly with - :ref:`third-party authentication providers `, - like :ref:`Facebook `, :ref:`Google `, - and :ref:`Apple `. -- :ref:`Atlas Triggers ` automatically execute an Atlas Function - at a scheduled time or when an event occurs, - such as a change to a MongoDB database in Atlas or a user logs in. -- :ref:`App Services Rules ` control who accesses what data. -- :ref:`App Services Values and Secrets ` - define global variables and private credentials once and - use them across your entire App. - -Atlas Device SDK versus MongoDB Drivers ---------------------------------------- - -Use the SDKs instead of MongoDB Drivers if you want: - -- A cross-platform object store optimized for mobile and edge devices - that can sync data automatically with MongoDB Atlas. -- Built-in conflict resolution when syncing data across users and devices. -- The ability to access data on a device regardless of network connectivity. -- Reactive UIs driven by your data. -- Built-in user management and authentication for client devices. -- Support for complex user permissions and sync logic to determine what data - clients can read and write. -- Optimization for heavy insert-only workloads from mobile or edge devices. -- The ability to execute Atlas Functions from the client. - -Use MongoDB Drivers instead of the SDKs if: - -- You host MongoDB on your own infrastructure. The SDKs are either device-only - or work with MongoDB Atlas. -- You want to directly work with documents instead of objects, or you have - your own mapping layer. The SDKs store data as objects on the device, - and Device Sync maps them to MongoDB documents when it syncs with Atlas. -- You already have a stack like MERN or MEAN and don't need the functionality - provided by the SDKs. - -The SDKs Wrap Realm Database ----------------------------- - -The persistence layer that the SDKs use on the device is Realm. The SDKs -wrap the Realm Core C++ database, and provide language-idiomatic APIs -to work with files on the filesystem and perform read and write operations. - -Realm is a reactive, object-oriented, cross-platform, -mobile database: - -- **Reactive**: query the current state of data - and subscribe to state changes like the result of a query, or even - changes to a single object. - -- **Object-oriented**: organizes data as objects, rather than rows, - documents, or columns. - -- **Cross-platform**: use the same database on iOS, Android, - Linux, macOS, or Windows. Just define a schema for each SDK you use. - -- **Mobile**: designed for the low-power, battery-sensitive, real-time - environment of a mobile device. - -Realm is a cross-platform and mobile-optimized alternative to other -mobile databases such as `SQLite `__, -:apple:`Core Data `, and :android:`Room -`. - -Realm vs Other Databases -~~~~~~~~~~~~~~~~~~~~~~~~ - -The Realm data model is similar to both relational and -document databases but has distinct differences from both. Realm stores -objects in files on the device, and an app may use multiple realm files -to organize data and enforce access controls. - -A realm is not a single, application-wide database. - Applications based on other database systems generally store all of their - data in a single database. Apps often split data across multiple - realms to organize data more efficiently and to enforce access controls. - -A realm is not a relational table. - Normalized tables in relational databases only store one type of - information, such as street addresses or items in a store inventory. A - realm can contain any number of object types that are relevant to a - given domain. - -A realm is not a collection of schemaless documents. - Document databases don't necessarily enforce a strict schema for the data in - each collection. While similar to documents in form, every Realm object - conforms to a schema for a specific object type in the realm. An object - cannot contain a property that is not described by its schema. - -Live Queries -~~~~~~~~~~~~ - -You can read back the data that you have stored in Realm by finding, -filtering, and sorting objects. You can optionally section these -results by a key path, making it easier to populate sectioned tables. - -Live Object -~~~~~~~~~~~ - -All Realm objects are **live objects**, which means they -automatically update whenever they're modified. Realm emits a -notification event whenever any property changes. - -You can use live objects to work with object-oriented data natively -without an :wikipedia:`ORM ` tool. Live -objects are direct proxies to the underlying stored data, which means -that a live object doesn't directly contain data. Instead, a live object -always references the most up-to-date data on disk and :wikipedia:`lazy -loads ` property values when you access them from a -collection. This means that a realm can contain many objects but only pay -the performance cost for data that the application is actually using. - -Valid write operations on a live object automatically persist to the -realm and propagate to any other synced clients. You do not need to -call an update method, modify the realm, or otherwise "push" -updates. - -Native Database Engine -~~~~~~~~~~~~~~~~~~~~~~ - -Realm is an entire database written from -scratch in C++, instead of building on top of an underlying database -engine like SQLite. Realm's underlying storage layer uses -:wikipedia:`B+ trees ` to organize objects. As a result, -Realm controls optimizations from the storage level all -the way up to the access level. - -Realm stores data in **realms**: collections of -heterogeneous realm objects. You can think of each realm as a -database. Each object in a realm is equivalent to a row -in a SQL database table or a MongoDB document. Unlike SQL, realms do -not separate different object types into individual tables. - -Realm stores objects as groups of property values. We call -this column-based storage. This means that queries or writes for -individual objects can be slower than row-based storage equivalents when -unindexed, but querying a single field across multiple objects or -fetching multiple objects can be much faster due to spatial locality and -in-CPU vector operations. - -Realm uses a :wikipedia:`zero-copy ` design to -make queries faster than an ORM, and often faster than raw SQLite. - -Copy-on-Write: The Secret Sauce of Data Versioning -`````````````````````````````````````````````````` - -Realm uses a technique called **copy-on-write**, which -copies data to a new location on disk for every write operation instead -of overwriting older data on disk. Once the new copy of data is fully -written, the database updates existing references to that data. Older -data is only garbage collected when it is no longer referenced or -actively in use by a client application. - -Because of copy-on-write, older copies of data remain valid, since all -of the references in those copies still point to other valid data. -Realm leverages this fact to offer multiple versions of -data simultaneously to different threads in client applications. Most -applications tie data refreshes to the repaint cycle of the looper -thread that controls the UI, since data only needs to refresh as often -as the UI does. Longer-running procedures on background threads, -such as large write operations, can work with a single version of data -for a longer period of time before committing their changes. - -Memory Mapping -`````````````` - -Writes use :wikipedia:`memory mapping ` to avoid -copying data back and forth from memory to storage. Accessors and -mutators read and write to disk via memory mapping. As a result, object -data is never stored on the stack or heap of your app. By default, data -is memory-mapped as read-only to prevent accidental writes. - -Realm uses operating system level paging, trusting each -operating system to implement memory mapping and persistence better than -a single library could on its own. - -Compaction -`````````` - -Realm automatically reuses free space that is no longer -needed after database writes. However, realm files never shrink -automatically, even if the amount of data stored in your realm -decreases significantly. Compact your realm to optimize storage -space and decrease file size if possible. - -You should compact your realms occasionally to keep them at an -optimal size. You can do this manually, or by configuring your -realms to compact on launch. However, Realm -reclaims unused space for future writes, so compaction is only an -optimization to conserve space on-device. diff --git a/source/migrate.txt b/source/migrate.txt index b96aaab453..17db8dcc32 100644 --- a/source/migrate.txt +++ b/source/migrate.txt @@ -1,5 +1,8 @@ :orphan: +.. meta:: + :robots: noindex, nosnippet + ===================================== Migrate Your App from Stitch to Realm ===================================== diff --git a/source/realm-query-language.txt b/source/realm-query-language.txt index 8e09f1eb3f..89b2935a73 100644 --- a/source/realm-query-language.txt +++ b/source/realm-query-language.txt @@ -1,6 +1,9 @@ .. _realm-query-language: .. _rql: +.. meta:: + :robots: noindex, nosnippet + ==================== Realm Query Language ==================== diff --git a/source/sdk.txt b/source/sdk.txt index 33a7b1089d..d4627b3abe 100644 --- a/source/sdk.txt +++ b/source/sdk.txt @@ -1,5 +1,8 @@ :orphan: +.. meta:: + :robots: noindex, nosnippet + .. _realm-sdks: ================= @@ -92,5 +95,3 @@ and platforms. Each SDK is language-idiomatic and includes: :icon-alt: C++ SDK icon Build applications in C++. Access data stored in realms and sync data with Atlas. - -For legacy (pre-v10) Realm Documentation, see https://www.mongodb.com/docs/realm-legacy/docs/. diff --git a/source/sdk/cpp.txt b/source/sdk/cpp.txt index 88f7f38114..946fb1b8ff 100644 --- a/source/sdk/cpp.txt +++ b/source/sdk/cpp.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :template: product-landing :hidefeedback: header :noprevnext: @@ -15,8 +18,6 @@ Atlas Device SDK for C++ .. toctree:: :titlesonly: - Install - Quick Start Model Data Realm Files CRUD diff --git a/source/sdk/cpp/app-services/call-a-function.txt b/source/sdk/cpp/app-services/call-a-function.txt index ce7089a02d..f4fc724ef7 100644 --- a/source/sdk/cpp/app-services/call-a-function.txt +++ b/source/sdk/cpp/app-services/call-a-function.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-call-a-function: ========================= diff --git a/source/sdk/cpp/app-services/connect-to-app.txt b/source/sdk/cpp/app-services/connect-to-app.txt index 4f2af77395..ac80e48231 100644 --- a/source/sdk/cpp/app-services/connect-to-app.txt +++ b/source/sdk/cpp/app-services/connect-to-app.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-connect-to-backend: ================================= diff --git a/source/sdk/cpp/application-services.txt b/source/sdk/cpp/application-services.txt index 411427a52d..6ee43ebe56 100644 --- a/source/sdk/cpp/application-services.txt +++ b/source/sdk/cpp/application-services.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-application-services: ============================== diff --git a/source/sdk/cpp/crud.txt b/source/sdk/cpp/crud.txt index d47b988222..3abc54176c 100644 --- a/source/sdk/cpp/crud.txt +++ b/source/sdk/cpp/crud.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ============== CRUD - C++ SDK ============== diff --git a/source/sdk/cpp/crud/create.txt b/source/sdk/cpp/crud/create.txt index c5a89e0f65..e06733828a 100644 --- a/source/sdk/cpp/crud/create.txt +++ b/source/sdk/cpp/crud/create.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-crud-create: ======================= diff --git a/source/sdk/cpp/crud/delete.txt b/source/sdk/cpp/crud/delete.txt index 06efadf98e..2952a7bed8 100644 --- a/source/sdk/cpp/crud/delete.txt +++ b/source/sdk/cpp/crud/delete.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-crud-delete: ======================= diff --git a/source/sdk/cpp/crud/filter-data.txt b/source/sdk/cpp/crud/filter-data.txt index 1d1108c9e2..b72abd77aa 100644 --- a/source/sdk/cpp/crud/filter-data.txt +++ b/source/sdk/cpp/crud/filter-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-client-query-engine: .. _cpp-filter-data: diff --git a/source/sdk/cpp/crud/read.txt b/source/sdk/cpp/crud/read.txt index ecb23233c9..f2b9e2800d 100644 --- a/source/sdk/cpp/crud/read.txt +++ b/source/sdk/cpp/crud/read.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-crud-read: .. _cpp-read-from-realm: .. _cpp-realm-database-reads: diff --git a/source/sdk/cpp/crud/threading.txt b/source/sdk/cpp/crud/threading.txt index df855f3ef5..78edb7492e 100644 --- a/source/sdk/cpp/crud/threading.txt +++ b/source/sdk/cpp/crud/threading.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-client-threading: =================== diff --git a/source/sdk/cpp/crud/update.txt b/source/sdk/cpp/crud/update.txt index 055a319c95..d81d1fe6a1 100644 --- a/source/sdk/cpp/crud/update.txt +++ b/source/sdk/cpp/crud/update.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-crud-update: .. _cpp-update-realm-objects: diff --git a/source/sdk/cpp/facets.toml b/source/sdk/cpp/facets.toml index 544875c037..f0a4f4744b 100644 --- a/source/sdk/cpp/facets.toml +++ b/source/sdk/cpp/facets.toml @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + [[facets]] category = "programming_language" value = "cpp" diff --git a/source/sdk/cpp/install.txt b/source/sdk/cpp/install.txt index 8ebf45970e..7aa5794ea4 100644 --- a/source/sdk/cpp/install.txt +++ b/source/sdk/cpp/install.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-install: =================== diff --git a/source/sdk/cpp/logging.txt b/source/sdk/cpp/logging.txt index 9187046858..38a621be89 100644 --- a/source/sdk/cpp/logging.txt +++ b/source/sdk/cpp/logging.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-logging: ================= diff --git a/source/sdk/cpp/manage-users.txt b/source/sdk/cpp/manage-users.txt index b2ff6bdc97..e27ac83f14 100644 --- a/source/sdk/cpp/manage-users.txt +++ b/source/sdk/cpp/manage-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-manage-users: ====================== diff --git a/source/sdk/cpp/model-data.txt b/source/sdk/cpp/model-data.txt index 62f3ac3b40..407b1b4863 100644 --- a/source/sdk/cpp/model-data.txt +++ b/source/sdk/cpp/model-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ==================== Model Data - C++ SDK ==================== diff --git a/source/sdk/cpp/model-data/object-models.txt b/source/sdk/cpp/model-data/object-models.txt index d392b1453d..33efb86197 100644 --- a/source/sdk/cpp/model-data/object-models.txt +++ b/source/sdk/cpp/model-data/object-models.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-object-models: ======================= diff --git a/source/sdk/cpp/model-data/relationships.txt b/source/sdk/cpp/model-data/relationships.txt index f63f3bcfaf..552664f6cc 100644 --- a/source/sdk/cpp/model-data/relationships.txt +++ b/source/sdk/cpp/model-data/relationships.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-relationships: ======================= diff --git a/source/sdk/cpp/model-data/supported-types.txt b/source/sdk/cpp/model-data/supported-types.txt index defce4bcb6..fa3aab36fa 100644 --- a/source/sdk/cpp/model-data/supported-types.txt +++ b/source/sdk/cpp/model-data/supported-types.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-supported-property-types: ========================= diff --git a/source/sdk/cpp/quick-start.txt b/source/sdk/cpp/quick-start.txt index 89e283aea3..cdc335b835 100644 --- a/source/sdk/cpp/quick-start.txt +++ b/source/sdk/cpp/quick-start.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-client-quick-start: .. _cpp-client-quick-start-with-sync: diff --git a/source/sdk/cpp/react-to-changes.txt b/source/sdk/cpp/react-to-changes.txt index d3cc611b08..06a37ccc20 100644 --- a/source/sdk/cpp/react-to-changes.txt +++ b/source/sdk/cpp/react-to-changes.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-react-to-changes: .. _cpp-live-object: diff --git a/source/sdk/cpp/realm-files.txt b/source/sdk/cpp/realm-files.txt index 54953a7404..4587b7ccf8 100644 --- a/source/sdk/cpp/realm-files.txt +++ b/source/sdk/cpp/realm-files.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-realms: =============================== diff --git a/source/sdk/cpp/realm-files/compact-realm.txt b/source/sdk/cpp/realm-files/compact-realm.txt index f09929928c..0a3cefb1da 100644 --- a/source/sdk/cpp/realm-files/compact-realm.txt +++ b/source/sdk/cpp/realm-files/compact-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-compact-realm: ================================ diff --git a/source/sdk/cpp/realm-files/configure-and-open-a-realm.txt b/source/sdk/cpp/realm-files/configure-and-open-a-realm.txt index 2a9f746262..9c55cd0b97 100644 --- a/source/sdk/cpp/realm-files/configure-and-open-a-realm.txt +++ b/source/sdk/cpp/realm-files/configure-and-open-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-configure-and-open-a-realm: .. _cpp-realms: diff --git a/source/sdk/cpp/realm-files/encrypt-a-realm.txt b/source/sdk/cpp/realm-files/encrypt-a-realm.txt index ba6f509d92..6f76698a11 100644 --- a/source/sdk/cpp/realm-files/encrypt-a-realm.txt +++ b/source/sdk/cpp/realm-files/encrypt-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-encrypt-a-realm: ========================= diff --git a/source/sdk/cpp/sync.txt b/source/sdk/cpp/sync.txt index d63a0d3112..60152e3bc3 100644 --- a/source/sdk/cpp/sync.txt +++ b/source/sdk/cpp/sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-sync: .. _cpp-realm-sync: diff --git a/source/sdk/cpp/sync/handle-sync-errors.txt b/source/sdk/cpp/sync/handle-sync-errors.txt index 22a1730747..84d9751eea 100644 --- a/source/sdk/cpp/sync/handle-sync-errors.txt +++ b/source/sdk/cpp/sync/handle-sync-errors.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-handle-sync-errors: ============================ diff --git a/source/sdk/cpp/sync/log-level.txt b/source/sdk/cpp/sync/log-level.txt index 75a2da7a3f..fc58686812 100644 --- a/source/sdk/cpp/sync/log-level.txt +++ b/source/sdk/cpp/sync/log-level.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-set-the-sync-log-level: ======================================= diff --git a/source/sdk/cpp/sync/manage-sync-session.txt b/source/sdk/cpp/sync/manage-sync-session.txt index a4dd5444f6..0f8503fc69 100644 --- a/source/sdk/cpp/sync/manage-sync-session.txt +++ b/source/sdk/cpp/sync/manage-sync-session.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-manage-sync-session: =============================== diff --git a/source/sdk/cpp/sync/stream-data-to-atlas.txt b/source/sdk/cpp/sync/stream-data-to-atlas.txt index 0788cd2f6c..b74ea489fd 100644 --- a/source/sdk/cpp/sync/stream-data-to-atlas.txt +++ b/source/sdk/cpp/sync/stream-data-to-atlas.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-stream-data-to-atlas: ============================== diff --git a/source/sdk/cpp/sync/sync-subscriptions.txt b/source/sdk/cpp/sync/sync-subscriptions.txt index 9055f7c510..85a01e4c81 100644 --- a/source/sdk/cpp/sync/sync-subscriptions.txt +++ b/source/sdk/cpp/sync/sync-subscriptions.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-manage-flexible-sync-subscriptions: .. _cpp-flexible-sync: diff --git a/source/sdk/cpp/sync/write-to-synced-realm.txt b/source/sdk/cpp/sync/write-to-synced-realm.txt index 529538c988..53837b7137 100644 --- a/source/sdk/cpp/sync/write-to-synced-realm.txt +++ b/source/sdk/cpp/sync/write-to-synced-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-write-synced-realm: ====================================== diff --git a/source/sdk/cpp/telemetry.txt b/source/sdk/cpp/telemetry.txt index 2c195a03ba..e996e0c440 100644 --- a/source/sdk/cpp/telemetry.txt +++ b/source/sdk/cpp/telemetry.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _telemetry-cpp: =================== diff --git a/source/sdk/cpp/users/authenticate-users.txt b/source/sdk/cpp/users/authenticate-users.txt index a3a0bb67eb..f233bd8832 100644 --- a/source/sdk/cpp/users/authenticate-users.txt +++ b/source/sdk/cpp/users/authenticate-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-authenticate-users: ============================ diff --git a/source/sdk/cpp/users/custom-user-data.txt b/source/sdk/cpp/users/custom-user-data.txt index 7662db5354..36766fd36a 100644 --- a/source/sdk/cpp/users/custom-user-data.txt +++ b/source/sdk/cpp/users/custom-user-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-custom-user-data: ========================== diff --git a/source/sdk/cpp/users/manage-email-password-users.txt b/source/sdk/cpp/users/manage-email-password-users.txt index 3fb09bfcf1..42575a169a 100644 --- a/source/sdk/cpp/users/manage-email-password-users.txt +++ b/source/sdk/cpp/users/manage-email-password-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _cpp-manage-users: ======================================= diff --git a/source/sdk/dotnet.txt b/source/sdk/dotnet.txt index 1886c72c58..82692dfb6a 100644 --- a/source/sdk/dotnet.txt +++ b/source/sdk/dotnet.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :template: product-landing :hidefeedback: header :noprevnext: @@ -15,8 +18,6 @@ Atlas Device SDK for .NET .. toctree:: :titlesonly: - Install - Quick Start Quick Start for Unity Realm Files Model Data diff --git a/source/sdk/dotnet/app-services/call-a-function.txt b/source/sdk/dotnet/app-services/call-a-function.txt index 3916be2939..8c657084f2 100644 --- a/source/sdk/dotnet/app-services/call-a-function.txt +++ b/source/sdk/dotnet/app-services/call-a-function.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-call-a-function: ========================== diff --git a/source/sdk/dotnet/app-services/connect-to-app-services-backend.txt b/source/sdk/dotnet/app-services/connect-to-app-services-backend.txt index 49609596b3..46003b0c83 100644 --- a/source/sdk/dotnet/app-services/connect-to-app-services-backend.txt +++ b/source/sdk/dotnet/app-services/connect-to-app-services-backend.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-init-appclient: .. _connect-to-mongodb-realm-backend-app: diff --git a/source/sdk/dotnet/app-services/manage-user-api-keys.txt b/source/sdk/dotnet/app-services/manage-user-api-keys.txt index c0bb7076de..c8032cd089 100644 --- a/source/sdk/dotnet/app-services/manage-user-api-keys.txt +++ b/source/sdk/dotnet/app-services/manage-user-api-keys.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-manage-user-api-keys: .. _dotnet-create-manage-api-keys: diff --git a/source/sdk/dotnet/app-services/mongodb-remote-access.txt b/source/sdk/dotnet/app-services/mongodb-remote-access.txt index 22aab75e7b..19af74c75f 100644 --- a/source/sdk/dotnet/app-services/mongodb-remote-access.txt +++ b/source/sdk/dotnet/app-services/mongodb-remote-access.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-mongodb-data-access: ======================== diff --git a/source/sdk/dotnet/application-services.txt b/source/sdk/dotnet/application-services.txt index fb32cfd792..89c94f4f03 100644 --- a/source/sdk/dotnet/application-services.txt +++ b/source/sdk/dotnet/application-services.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-mongodb-realm-cloud: .. _dotnet-application-services: diff --git a/source/sdk/dotnet/async-console.txt b/source/sdk/dotnet/async-console.txt index e70f710970..affefcba71 100644 --- a/source/sdk/dotnet/async-console.txt +++ b/source/sdk/dotnet/async-console.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-async-console: ===================================== diff --git a/source/sdk/dotnet/compatibility.txt b/source/sdk/dotnet/compatibility.txt index b02dc26fdc..5de8f0753b 100644 --- a/source/sdk/dotnet/compatibility.txt +++ b/source/sdk/dotnet/compatibility.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-compatibility: .. _dotnet_supported-platforms: diff --git a/source/sdk/dotnet/crud.txt b/source/sdk/dotnet/crud.txt index 9ed7095ca5..3b6ffd4fe0 100644 --- a/source/sdk/dotnet/crud.txt +++ b/source/sdk/dotnet/crud.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-crud: ================ diff --git a/source/sdk/dotnet/crud/create.txt b/source/sdk/dotnet/crud/create.txt index 6fd155e019..6719d30aff 100644 --- a/source/sdk/dotnet/crud/create.txt +++ b/source/sdk/dotnet/crud/create.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-write-operations: .. _dotnet-realm-database-writes: diff --git a/source/sdk/dotnet/crud/delete.txt b/source/sdk/dotnet/crud/delete.txt index 171e92c999..589b6fc420 100644 --- a/source/sdk/dotnet/crud/delete.txt +++ b/source/sdk/dotnet/crud/delete.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-delete-data: ============================ diff --git a/source/sdk/dotnet/crud/filter.txt b/source/sdk/dotnet/crud/filter.txt index a0a244fdcc..84d19e277d 100644 --- a/source/sdk/dotnet/crud/filter.txt +++ b/source/sdk/dotnet/crud/filter.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-filter-data: .. _dotnet-filter-queries-based-on-object-properties: .. _dotnet-filter-results: diff --git a/source/sdk/dotnet/crud/read.txt b/source/sdk/dotnet/crud/read.txt index 6873c2f758..393795dd0e 100644 --- a/source/sdk/dotnet/crud/read.txt +++ b/source/sdk/dotnet/crud/read.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-read-and-write-data: .. _dotnet-realm-database-reads: diff --git a/source/sdk/dotnet/crud/threading.txt b/source/sdk/dotnet/crud/threading.txt index 4ae2973d2c..b7904badbd 100644 --- a/source/sdk/dotnet/crud/threading.txt +++ b/source/sdk/dotnet/crud/threading.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-threading: .. _dotnet-client-threading: diff --git a/source/sdk/dotnet/crud/update.txt b/source/sdk/dotnet/crud/update.txt index c3e2c2f33b..dd40d46d39 100644 --- a/source/sdk/dotnet/crud/update.txt +++ b/source/sdk/dotnet/crud/update.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-update-data: ============================ diff --git a/source/sdk/dotnet/crud/write-transactions.txt b/source/sdk/dotnet/crud/write-transactions.txt index 538d47bc8b..a0463c3c3a 100644 --- a/source/sdk/dotnet/crud/write-transactions.txt +++ b/source/sdk/dotnet/crud/write-transactions.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-write-transactions: .. _dotnet-transactions: diff --git a/source/sdk/dotnet/facets.toml b/source/sdk/dotnet/facets.toml index 743a34749c..a9e457115f 100644 --- a/source/sdk/dotnet/facets.toml +++ b/source/sdk/dotnet/facets.toml @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + [[facets]] category = "programming_language" value = "csharp" diff --git a/source/sdk/dotnet/install.txt b/source/sdk/dotnet/install.txt index 3c88b6b57e..875a3b7b24 100644 --- a/source/sdk/dotnet/install.txt +++ b/source/sdk/dotnet/install.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-install: ==================== diff --git a/source/sdk/dotnet/logging.txt b/source/sdk/dotnet/logging.txt index 198c68c1b6..b010b0c57c 100644 --- a/source/sdk/dotnet/logging.txt +++ b/source/sdk/dotnet/logging.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-logging: diff --git a/source/sdk/dotnet/manage-users/authenticate.txt b/source/sdk/dotnet/manage-users/authenticate.txt index 185b4a2848..e5f69a844a 100644 --- a/source/sdk/dotnet/manage-users/authenticate.txt +++ b/source/sdk/dotnet/manage-users/authenticate.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-authenticate: ============================= diff --git a/source/sdk/dotnet/manage-users/create-and-delete-users.txt b/source/sdk/dotnet/manage-users/create-and-delete-users.txt index 91f2bf1ad8..db0cc58a8d 100644 --- a/source/sdk/dotnet/manage-users/create-and-delete-users.txt +++ b/source/sdk/dotnet/manage-users/create-and-delete-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-create-and-delete-users: ================================== diff --git a/source/sdk/dotnet/manage-users/custom-user-data.txt b/source/sdk/dotnet/manage-users/custom-user-data.txt index 851a28bb91..02ca0032c0 100644 --- a/source/sdk/dotnet/manage-users/custom-user-data.txt +++ b/source/sdk/dotnet/manage-users/custom-user-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-custom-user-data: .. _dotnet-access-custom-user-data: diff --git a/source/sdk/dotnet/manage-users/link-user-identities.txt b/source/sdk/dotnet/manage-users/link-user-identities.txt index 61ca9198cb..47ccd0af5b 100644 --- a/source/sdk/dotnet/manage-users/link-user-identities.txt +++ b/source/sdk/dotnet/manage-users/link-user-identities.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-link-user-identities: =============================== diff --git a/source/sdk/dotnet/manage-users/manage-email-password-users.txt b/source/sdk/dotnet/manage-users/manage-email-password-users.txt index 5dc7138079..a8ace406d0 100644 --- a/source/sdk/dotnet/manage-users/manage-email-password-users.txt +++ b/source/sdk/dotnet/manage-users/manage-email-password-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-manage-email-password-users: ====================================== diff --git a/source/sdk/dotnet/manage-users/multi-user-applications.txt b/source/sdk/dotnet/manage-users/multi-user-applications.txt index f7c8154846..ca9b978d67 100644 --- a/source/sdk/dotnet/manage-users/multi-user-applications.txt +++ b/source/sdk/dotnet/manage-users/multi-user-applications.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-multi-user-applications: .. _dotnet-multi-user: diff --git a/source/sdk/dotnet/manage-users/user-metadata.txt b/source/sdk/dotnet/manage-users/user-metadata.txt index 153e7ea563..f93f177cf6 100644 --- a/source/sdk/dotnet/manage-users/user-metadata.txt +++ b/source/sdk/dotnet/manage-users/user-metadata.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-user-metadata: ======================== diff --git a/source/sdk/dotnet/model-data.txt b/source/sdk/dotnet/model-data.txt index 50235d138e..381a20fef3 100644 --- a/source/sdk/dotnet/model-data.txt +++ b/source/sdk/dotnet/model-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ====================== Model Data - .NET SDK ====================== diff --git a/source/sdk/dotnet/model-data/change-an-object-model.txt b/source/sdk/dotnet/model-data/change-an-object-model.txt index 87bd9ea4f4..cee3590657 100644 --- a/source/sdk/dotnet/model-data/change-an-object-model.txt +++ b/source/sdk/dotnet/model-data/change-an-object-model.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-schema-versions-and-migrations: .. _dotnet-change-model: .. _dotnet-local-migrations: diff --git a/source/sdk/dotnet/model-data/data-binding.txt b/source/sdk/dotnet/model-data/data-binding.txt index 3d97a407f7..58cf43843f 100644 --- a/source/sdk/dotnet/model-data/data-binding.txt +++ b/source/sdk/dotnet/model-data/data-binding.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-data-binding: ======================= diff --git a/source/sdk/dotnet/model-data/data-types.txt b/source/sdk/dotnet/model-data/data-types.txt index b25ecbf492..8e4a4a7e1f 100644 --- a/source/sdk/dotnet/model-data/data-types.txt +++ b/source/sdk/dotnet/model-data/data-types.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-data-types: =========================== diff --git a/source/sdk/dotnet/model-data/data-types/collections.txt b/source/sdk/dotnet/model-data/data-types/collections.txt index 9afce6391e..a88cce0a5d 100644 --- a/source/sdk/dotnet/model-data/data-types/collections.txt +++ b/source/sdk/dotnet/model-data/data-types/collections.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-client-collections: ============================== diff --git a/source/sdk/dotnet/model-data/data-types/dictionaries.txt b/source/sdk/dotnet/model-data/data-types/dictionaries.txt index d2c3ef8033..077d6a6c00 100644 --- a/source/sdk/dotnet/model-data/data-types/dictionaries.txt +++ b/source/sdk/dotnet/model-data/data-types/dictionaries.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-client-dictionaries: ======================= diff --git a/source/sdk/dotnet/model-data/data-types/embedded-objects.txt b/source/sdk/dotnet/model-data/data-types/embedded-objects.txt index c3340b7b62..05a5566889 100644 --- a/source/sdk/dotnet/model-data/data-types/embedded-objects.txt +++ b/source/sdk/dotnet/model-data/data-types/embedded-objects.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-embedded-objects: =========================== diff --git a/source/sdk/dotnet/model-data/data-types/field-types.txt b/source/sdk/dotnet/model-data/data-types/field-types.txt index 0cb06ebf7e..f9bb302635 100644 --- a/source/sdk/dotnet/model-data/data-types/field-types.txt +++ b/source/sdk/dotnet/model-data/data-types/field-types.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-field-types: .. _dotnet-supported-data-types: diff --git a/source/sdk/dotnet/model-data/data-types/geospatials.txt b/source/sdk/dotnet/model-data/data-types/geospatials.txt index a783336c5f..2107394aed 100644 --- a/source/sdk/dotnet/model-data/data-types/geospatials.txt +++ b/source/sdk/dotnet/model-data/data-types/geospatials.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-geospatial: ================================ diff --git a/source/sdk/dotnet/model-data/data-types/lists.txt b/source/sdk/dotnet/model-data/data-types/lists.txt index 6a4136bf69..7cea59e622 100644 --- a/source/sdk/dotnet/model-data/data-types/lists.txt +++ b/source/sdk/dotnet/model-data/data-types/lists.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-client-lists: .. _dotnet-property-lists: diff --git a/source/sdk/dotnet/model-data/data-types/realm-integer.txt b/source/sdk/dotnet/model-data/data-types/realm-integer.txt index 668aa0e20b..3890f58db8 100644 --- a/source/sdk/dotnet/model-data/data-types/realm-integer.txt +++ b/source/sdk/dotnet/model-data/data-types/realm-integer.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _realminteger: ======================= diff --git a/source/sdk/dotnet/model-data/data-types/realm-value.txt b/source/sdk/dotnet/model-data/data-types/realm-value.txt index 088f47502e..67e8751cba 100644 --- a/source/sdk/dotnet/model-data/data-types/realm-value.txt +++ b/source/sdk/dotnet/model-data/data-types/realm-value.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _realmvalue: ===================== diff --git a/source/sdk/dotnet/model-data/data-types/sets.txt b/source/sdk/dotnet/model-data/data-types/sets.txt index 8c57e92c62..a75c2f8bb7 100644 --- a/source/sdk/dotnet/model-data/data-types/sets.txt +++ b/source/sdk/dotnet/model-data/data-types/sets.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-client-sets: =============== diff --git a/source/sdk/dotnet/model-data/define-object-model.txt b/source/sdk/dotnet/model-data/define-object-model.txt index 8d77381e8a..865f7d93e9 100644 --- a/source/sdk/dotnet/model-data/define-object-model.txt +++ b/source/sdk/dotnet/model-data/define-object-model.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-define-a-realm-object-schema: ======================== diff --git a/source/sdk/dotnet/model-data/manual-schema.txt b/source/sdk/dotnet/model-data/manual-schema.txt index eff6edf277..a289f7e1da 100644 --- a/source/sdk/dotnet/model-data/manual-schema.txt +++ b/source/sdk/dotnet/model-data/manual-schema.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-manual-schema: =================================== diff --git a/source/sdk/dotnet/model-data/object-models-and-schemas.txt b/source/sdk/dotnet/model-data/object-models-and-schemas.txt index cb3390a1a5..5d84844967 100644 --- a/source/sdk/dotnet/model-data/object-models-and-schemas.txt +++ b/source/sdk/dotnet/model-data/object-models-and-schemas.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-object-models-and-schemas: .. _dotnet-realm-objects: .. _dotnet-objects: diff --git a/source/sdk/dotnet/model-data/relationships.txt b/source/sdk/dotnet/model-data/relationships.txt index cf4873cde0..62f57f44a9 100644 --- a/source/sdk/dotnet/model-data/relationships.txt +++ b/source/sdk/dotnet/model-data/relationships.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-client-relationships: ======================== diff --git a/source/sdk/dotnet/quick-start.txt b/source/sdk/dotnet/quick-start.txt index 196ba95a3b..a87b89829f 100644 --- a/source/sdk/dotnet/quick-start.txt +++ b/source/sdk/dotnet/quick-start.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-client-quick-start: ====================== diff --git a/source/sdk/dotnet/react-to-changes.txt b/source/sdk/dotnet/react-to-changes.txt index bacb979025..734a944727 100644 --- a/source/sdk/dotnet/react-to-changes.txt +++ b/source/sdk/dotnet/react-to-changes.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-react-to-changes: .. _dotnet-client-notifications: .. _dotnet-live-object: diff --git a/source/sdk/dotnet/realm-files.txt b/source/sdk/dotnet/realm-files.txt index b4f1f4bd8d..e475cb780d 100644 --- a/source/sdk/dotnet/realm-files.txt +++ b/source/sdk/dotnet/realm-files.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ================================= Work with Realm Files - .NET SDK ================================= diff --git a/source/sdk/dotnet/realm-files/bundle-a-realm.txt b/source/sdk/dotnet/realm-files/bundle-a-realm.txt index 00f1f340d3..bb005b87a5 100644 --- a/source/sdk/dotnet/realm-files/bundle-a-realm.txt +++ b/source/sdk/dotnet/realm-files/bundle-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-bundle-a-realm: ============================= diff --git a/source/sdk/dotnet/realm-files/compact-realm.txt b/source/sdk/dotnet/realm-files/compact-realm.txt index 224a24fba5..00e06f3a67 100644 --- a/source/sdk/dotnet/realm-files/compact-realm.txt +++ b/source/sdk/dotnet/realm-files/compact-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-compact-realm: ================================= diff --git a/source/sdk/dotnet/realm-files/delete-a-realm.txt b/source/sdk/dotnet/realm-files/delete-a-realm.txt index fd4a2a2583..3d1c5f87e3 100644 --- a/source/sdk/dotnet/realm-files/delete-a-realm.txt +++ b/source/sdk/dotnet/realm-files/delete-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-delete-a-realm: ========================= diff --git a/source/sdk/dotnet/realm-files/encrypt-a-realm.txt b/source/sdk/dotnet/realm-files/encrypt-a-realm.txt index bf23d657a8..b79dbdbbf7 100644 --- a/source/sdk/dotnet/realm-files/encrypt-a-realm.txt +++ b/source/sdk/dotnet/realm-files/encrypt-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-encrypt-a-realm: .. _dotnet-realm-encryption: diff --git a/source/sdk/dotnet/realm-files/realms.txt b/source/sdk/dotnet/realm-files/realms.txt index a8258ec0b6..b370df9052 100644 --- a/source/sdk/dotnet/realm-files/realms.txt +++ b/source/sdk/dotnet/realm-files/realms.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-configure-and-open-a-realm: .. _dotnet-realms: diff --git a/source/sdk/dotnet/sync.txt b/source/sdk/dotnet/sync.txt index 68b85f483b..cf5de1a5ef 100644 --- a/source/sdk/dotnet/sync.txt +++ b/source/sdk/dotnet/sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-sync: .. _dotnet-realm-sync: diff --git a/source/sdk/dotnet/sync/add-sync-to-app.txt b/source/sdk/dotnet/sync/add-sync-to-app.txt index c6d26ecc21..e619646612 100644 --- a/source/sdk/dotnet/sync/add-sync-to-app.txt +++ b/source/sdk/dotnet/sync/add-sync-to-app.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-add-sync-to-app: .. _dotnet-sync-changes-between-devices: diff --git a/source/sdk/dotnet/sync/asymmetric-sync.txt b/source/sdk/dotnet/sync/asymmetric-sync.txt index a72b170224..08bf6626fb 100644 --- a/source/sdk/dotnet/sync/asymmetric-sync.txt +++ b/source/sdk/dotnet/sync/asymmetric-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-data-ingest: ===================================== diff --git a/source/sdk/dotnet/sync/client-reset.txt b/source/sdk/dotnet/sync/client-reset.txt index f84d2e5171..eae81a5dfb 100644 --- a/source/sdk/dotnet/sync/client-reset.txt +++ b/source/sdk/dotnet/sync/client-reset.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-client-resets: .. _dotnet-reset-a-client-realm-file: diff --git a/source/sdk/dotnet/sync/configure-and-open-a-synced-realm.txt b/source/sdk/dotnet/sync/configure-and-open-a-synced-realm.txt index 1fd02cad1a..0b9e42ce42 100644 --- a/source/sdk/dotnet/sync/configure-and-open-a-synced-realm.txt +++ b/source/sdk/dotnet/sync/configure-and-open-a-synced-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-configure-and-open-a-synced-realm: ========================================== diff --git a/source/sdk/dotnet/sync/flexible-sync.txt b/source/sdk/dotnet/sync/flexible-sync.txt index 3694cd9106..ecb4c4e8df 100644 --- a/source/sdk/dotnet/sync/flexible-sync.txt +++ b/source/sdk/dotnet/sync/flexible-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-flexible-sync: ============================================ diff --git a/source/sdk/dotnet/sync/handle-sync-errors.txt b/source/sdk/dotnet/sync/handle-sync-errors.txt index 4040179845..eba78d1019 100644 --- a/source/sdk/dotnet/sync/handle-sync-errors.txt +++ b/source/sdk/dotnet/sync/handle-sync-errors.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-handle-sync-errors: ========================================== diff --git a/source/sdk/dotnet/sync/partition-based-sync.txt b/source/sdk/dotnet/sync/partition-based-sync.txt index 3fa5ffeabc..b82f510a2f 100644 --- a/source/sdk/dotnet/sync/partition-based-sync.txt +++ b/source/sdk/dotnet/sync/partition-based-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-partition-based-sync: =============================== diff --git a/source/sdk/dotnet/sync/sync-progress.txt b/source/sdk/dotnet/sync/sync-progress.txt index c54861bf35..cdd00afa60 100644 --- a/source/sdk/dotnet/sync/sync-progress.txt +++ b/source/sdk/dotnet/sync/sync-progress.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-check-upload-download-progress: .. _dotnet-check-sync-progress: diff --git a/source/sdk/dotnet/sync/sync-session.txt b/source/sdk/dotnet/sync/sync-session.txt index 5218dcfcd2..b22e286fcc 100644 --- a/source/sdk/dotnet/sync/sync-session.txt +++ b/source/sdk/dotnet/sync/sync-session.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-suspend-resume-sync: .. _dotnet-pause-or-resume-a-sync-session: diff --git a/source/sdk/dotnet/sync/write-to-synced-realm.txt b/source/sdk/dotnet/sync/write-to-synced-realm.txt index 8ffe4581f9..90e929be59 100644 --- a/source/sdk/dotnet/sync/write-to-synced-realm.txt +++ b/source/sdk/dotnet/sync/write-to-synced-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-write-synced-realm: ================================== diff --git a/source/sdk/dotnet/telemetry.txt b/source/sdk/dotnet/telemetry.txt index 04121fe782..fc3287bf4f 100644 --- a/source/sdk/dotnet/telemetry.txt +++ b/source/sdk/dotnet/telemetry.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _telemetry-dotnet: ==================== diff --git a/source/sdk/dotnet/troubleshooting.txt b/source/sdk/dotnet/troubleshooting.txt index 5a35d0013b..5f0ed77b44 100644 --- a/source/sdk/dotnet/troubleshooting.txt +++ b/source/sdk/dotnet/troubleshooting.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-troubleshooting: ========================== diff --git a/source/sdk/dotnet/unity.txt b/source/sdk/dotnet/unity.txt index 3c3f2ed48e..55a756236d 100644 --- a/source/sdk/dotnet/unity.txt +++ b/source/sdk/dotnet/unity.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-unity: ================================ diff --git a/source/sdk/dotnet/work-with-users.txt b/source/sdk/dotnet/work-with-users.txt index e942fc08c6..81a33f65c7 100644 --- a/source/sdk/dotnet/work-with-users.txt +++ b/source/sdk/dotnet/work-with-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _dotnet-work-with-users: ========================== diff --git a/source/sdk/flutter.txt b/source/sdk/flutter.txt index 293baa5daa..1adc356746 100644 --- a/source/sdk/flutter.txt +++ b/source/sdk/flutter.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :template: product-landing :hidefeedback: header :noprevnext: @@ -17,8 +20,6 @@ Atlas Device SDK for Flutter .. toctree:: :titlesonly: - Install - Quick Start Realm Database Atlas App Services Manage Users diff --git a/source/sdk/flutter/app-services.txt b/source/sdk/flutter/app-services.txt index c2d56ee84f..123deb2b1a 100644 --- a/source/sdk/flutter/app-services.txt +++ b/source/sdk/flutter/app-services.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-mongodb-realm-cloud: .. _flutter-application-services: diff --git a/source/sdk/flutter/app-services/call-function.txt b/source/sdk/flutter/app-services/call-function.txt index 46dcb0e5b6..ff5fdcb2b8 100644 --- a/source/sdk/flutter/app-services/call-function.txt +++ b/source/sdk/flutter/app-services/call-function.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-call-function: ====================== diff --git a/source/sdk/flutter/app-services/connect-to-app.txt b/source/sdk/flutter/app-services/connect-to-app.txt index 73440c38aa..a744e181ec 100644 --- a/source/sdk/flutter/app-services/connect-to-app.txt +++ b/source/sdk/flutter/app-services/connect-to-app.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-connect-to-backend: ===================================== diff --git a/source/sdk/flutter/app-services/graphql-api.txt b/source/sdk/flutter/app-services/graphql-api.txt index 7475ef1cc6..d282ca5c25 100644 --- a/source/sdk/flutter/app-services/graphql-api.txt +++ b/source/sdk/flutter/app-services/graphql-api.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-graphql-api: ================= diff --git a/source/sdk/flutter/crud.txt b/source/sdk/flutter/crud.txt index 957c7f8dff..317ec43857 100644 --- a/source/sdk/flutter/crud.txt +++ b/source/sdk/flutter/crud.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ================== CRUD - Flutter SDK ================== diff --git a/source/sdk/flutter/crud/create.txt b/source/sdk/flutter/crud/create.txt index dd321fd5a8..e76afe8c69 100644 --- a/source/sdk/flutter/crud/create.txt +++ b/source/sdk/flutter/crud/create.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-crud-create: .. _flutter-read-write-data: diff --git a/source/sdk/flutter/crud/delete.txt b/source/sdk/flutter/crud/delete.txt index c7fffa01ca..4d0a6840b1 100644 --- a/source/sdk/flutter/crud/delete.txt +++ b/source/sdk/flutter/crud/delete.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-crud-delete: =========================== diff --git a/source/sdk/flutter/crud/read.txt b/source/sdk/flutter/crud/read.txt index 400f6d2569..23d1d3cb08 100644 --- a/source/sdk/flutter/crud/read.txt +++ b/source/sdk/flutter/crud/read.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-crud-read: .. _flutter-read-data: .. _flutter-read-operations: diff --git a/source/sdk/flutter/crud/update.txt b/source/sdk/flutter/crud/update.txt index a9c9c61340..ef5cf65f53 100644 --- a/source/sdk/flutter/crud/update.txt +++ b/source/sdk/flutter/crud/update.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-crud-update: .. _flutter-update-objects: diff --git a/source/sdk/flutter/facets.toml b/source/sdk/flutter/facets.toml index 539fd63ca7..2916ce2456 100644 --- a/source/sdk/flutter/facets.toml +++ b/source/sdk/flutter/facets.toml @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + [[facets]] category = "programming_language" value = "dart" diff --git a/source/sdk/flutter/install.txt b/source/sdk/flutter/install.txt index 2c49adb3e4..9728c20102 100644 --- a/source/sdk/flutter/install.txt +++ b/source/sdk/flutter/install.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-install: ======================= diff --git a/source/sdk/flutter/logging.txt b/source/sdk/flutter/logging.txt index a5c451b288..e22cad9991 100644 --- a/source/sdk/flutter/logging.txt +++ b/source/sdk/flutter/logging.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-logging: ===================== diff --git a/source/sdk/flutter/quick-start.txt b/source/sdk/flutter/quick-start.txt index 00f577aff7..69f588b5a4 100644 --- a/source/sdk/flutter/quick-start.txt +++ b/source/sdk/flutter/quick-start.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-quick-start: .. _flutter-quick-start-local: diff --git a/source/sdk/flutter/realm-database.txt b/source/sdk/flutter/realm-database.txt index 47e818fdf4..ae75b49ac7 100644 --- a/source/sdk/flutter/realm-database.txt +++ b/source/sdk/flutter/realm-database.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-realm-database: .. _flutter-realm-database-overview: diff --git a/source/sdk/flutter/realm-database/configure-and-open.txt b/source/sdk/flutter/realm-database/configure-and-open.txt index 2da3778123..099def0464 100644 --- a/source/sdk/flutter/realm-database/configure-and-open.txt +++ b/source/sdk/flutter/realm-database/configure-and-open.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-open-close-realm: ====================================== diff --git a/source/sdk/flutter/realm-database/freeze.txt b/source/sdk/flutter/realm-database/freeze.txt index b99887d109..49021bc46b 100644 --- a/source/sdk/flutter/realm-database/freeze.txt +++ b/source/sdk/flutter/realm-database/freeze.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-freeze: ========================= diff --git a/source/sdk/flutter/realm-database/model-data.txt b/source/sdk/flutter/realm-database/model-data.txt index 2951efa106..61b1548c66 100644 --- a/source/sdk/flutter/realm-database/model-data.txt +++ b/source/sdk/flutter/realm-database/model-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-model-data: ======================== diff --git a/source/sdk/flutter/realm-database/model-data/data-types.txt b/source/sdk/flutter/realm-database/model-data/data-types.txt index 45540860f9..bdbecd2e5e 100644 --- a/source/sdk/flutter/realm-database/model-data/data-types.txt +++ b/source/sdk/flutter/realm-database/model-data/data-types.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-data-types: ======================== diff --git a/source/sdk/flutter/realm-database/model-data/define-realm-object-schema.txt b/source/sdk/flutter/realm-database/model-data/define-realm-object-schema.txt index 44c38e1b85..f8c1cca4c7 100644 --- a/source/sdk/flutter/realm-database/model-data/define-realm-object-schema.txt +++ b/source/sdk/flutter/realm-database/model-data/define-realm-object-schema.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-define-realm-object-schema: ========================================== diff --git a/source/sdk/flutter/realm-database/model-data/geospatial.txt b/source/sdk/flutter/realm-database/model-data/geospatial.txt index f114a038f3..f680646e24 100644 --- a/source/sdk/flutter/realm-database/model-data/geospatial.txt +++ b/source/sdk/flutter/realm-database/model-data/geospatial.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-data-types-geospatial: ======================== diff --git a/source/sdk/flutter/realm-database/model-data/property-annotations.txt b/source/sdk/flutter/realm-database/model-data/property-annotations.txt index 101ad04837..6ee621b16f 100644 --- a/source/sdk/flutter/realm-database/model-data/property-annotations.txt +++ b/source/sdk/flutter/realm-database/model-data/property-annotations.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-property-annotations: ================================== diff --git a/source/sdk/flutter/realm-database/model-data/relationships.txt b/source/sdk/flutter/realm-database/model-data/relationships.txt index c94b10dfb6..66d73dac02 100644 --- a/source/sdk/flutter/realm-database/model-data/relationships.txt +++ b/source/sdk/flutter/realm-database/model-data/relationships.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-client-relationships: =========================== diff --git a/source/sdk/flutter/realm-database/model-data/update-realm-object-schema.txt b/source/sdk/flutter/realm-database/model-data/update-realm-object-schema.txt index 56cf951558..c982bc5caa 100644 --- a/source/sdk/flutter/realm-database/model-data/update-realm-object-schema.txt +++ b/source/sdk/flutter/realm-database/model-data/update-realm-object-schema.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-update-realm-object-schema: .. _flutter-update-schema: diff --git a/source/sdk/flutter/realm-database/react-to-changes.txt b/source/sdk/flutter/realm-database/react-to-changes.txt index 0a5373631c..d84f46726e 100644 --- a/source/sdk/flutter/realm-database/react-to-changes.txt +++ b/source/sdk/flutter/realm-database/react-to-changes.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-react-to-changes: .. _flutter-live-object: diff --git a/source/sdk/flutter/realm-database/realm-files.txt b/source/sdk/flutter/realm-database/realm-files.txt index 7471a2d576..7759a07549 100644 --- a/source/sdk/flutter/realm-database/realm-files.txt +++ b/source/sdk/flutter/realm-database/realm-files.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-realm-files: ========================= diff --git a/source/sdk/flutter/realm-database/realm-files/bundle.txt b/source/sdk/flutter/realm-database/realm-files/bundle.txt index d184267af4..9c974c3abe 100644 --- a/source/sdk/flutter/realm-database/realm-files/bundle.txt +++ b/source/sdk/flutter/realm-database/realm-files/bundle.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-bundle: ============================ diff --git a/source/sdk/flutter/realm-database/realm-files/compact.txt b/source/sdk/flutter/realm-database/realm-files/compact.txt index 20ec708a75..1b4eb6daac 100644 --- a/source/sdk/flutter/realm-database/realm-files/compact.txt +++ b/source/sdk/flutter/realm-database/realm-files/compact.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-compact: ==================================== diff --git a/source/sdk/flutter/realm-database/realm-files/delete.txt b/source/sdk/flutter/realm-database/realm-files/delete.txt index 73e853d774..5c6ee6476c 100644 --- a/source/sdk/flutter/realm-database/realm-files/delete.txt +++ b/source/sdk/flutter/realm-database/realm-files/delete.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-delete-realm: ================================= diff --git a/source/sdk/flutter/realm-database/realm-files/encrypt.txt b/source/sdk/flutter/realm-database/realm-files/encrypt.txt index c0c7850e51..180eed5ace 100644 --- a/source/sdk/flutter/realm-database/realm-files/encrypt.txt +++ b/source/sdk/flutter/realm-database/realm-files/encrypt.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-encrypt: ============================= diff --git a/source/sdk/flutter/realm-database/serialization.txt b/source/sdk/flutter/realm-database/serialization.txt index 951d179855..07f71ebd5e 100644 --- a/source/sdk/flutter/realm-database/serialization.txt +++ b/source/sdk/flutter/realm-database/serialization.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-serialization: =========================== diff --git a/source/sdk/flutter/sync.txt b/source/sdk/flutter/sync.txt index 074ce39a40..1ddefa7063 100644 --- a/source/sdk/flutter/sync.txt +++ b/source/sdk/flutter/sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-sync: ========================= diff --git a/source/sdk/flutter/sync/add-sync-to-app.txt b/source/sdk/flutter/sync/add-sync-to-app.txt index 9dfc6d8dd1..6dac47cab1 100644 --- a/source/sdk/flutter/sync/add-sync-to-app.txt +++ b/source/sdk/flutter/sync/add-sync-to-app.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-add-sync-to-app: ======================================= diff --git a/source/sdk/flutter/sync/handle-sync-errors.txt b/source/sdk/flutter/sync/handle-sync-errors.txt index 3e1c734902..8b7b96c037 100644 --- a/source/sdk/flutter/sync/handle-sync-errors.txt +++ b/source/sdk/flutter/sync/handle-sync-errors.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-handle-sync-errors: ================================ diff --git a/source/sdk/flutter/sync/log-level.txt b/source/sdk/flutter/sync/log-level.txt index ce09e645ea..faf9171ff4 100644 --- a/source/sdk/flutter/sync/log-level.txt +++ b/source/sdk/flutter/sync/log-level.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-client-log-level: ====================================== diff --git a/source/sdk/flutter/sync/manage-sync-session.txt b/source/sdk/flutter/sync/manage-sync-session.txt index 7149130a3f..6b7f942488 100644 --- a/source/sdk/flutter/sync/manage-sync-session.txt +++ b/source/sdk/flutter/sync/manage-sync-session.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-manage-sync-session: =================================== diff --git a/source/sdk/flutter/sync/manage-sync-subscriptions.txt b/source/sdk/flutter/sync/manage-sync-subscriptions.txt index 1d208d95e7..cfc8877972 100644 --- a/source/sdk/flutter/sync/manage-sync-subscriptions.txt +++ b/source/sdk/flutter/sync/manage-sync-subscriptions.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-flexible-sync-manage-subscriptions: diff --git a/source/sdk/flutter/sync/open-synced-realm.txt b/source/sdk/flutter/sync/open-synced-realm.txt index 70dd075232..f672114bf3 100644 --- a/source/sdk/flutter/sync/open-synced-realm.txt +++ b/source/sdk/flutter/sync/open-synced-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-open-synced-realm: ================================= diff --git a/source/sdk/flutter/sync/stream-data-to-atlas.txt b/source/sdk/flutter/sync/stream-data-to-atlas.txt index 53f021ad09..c1bb228c6d 100644 --- a/source/sdk/flutter/sync/stream-data-to-atlas.txt +++ b/source/sdk/flutter/sync/stream-data-to-atlas.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-stream-data-to-atlas: ================================== diff --git a/source/sdk/flutter/sync/sync-multiple-processes.txt b/source/sdk/flutter/sync/sync-multiple-processes.txt index b44906a160..bfe58cee7a 100644 --- a/source/sdk/flutter/sync/sync-multiple-processes.txt +++ b/source/sdk/flutter/sync/sync-multiple-processes.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-sync-multiple-processes: ================================= diff --git a/source/sdk/flutter/sync/write-to-synced-realm.txt b/source/sdk/flutter/sync/write-to-synced-realm.txt index e40ce55eb1..831d234257 100644 --- a/source/sdk/flutter/sync/write-to-synced-realm.txt +++ b/source/sdk/flutter/sync/write-to-synced-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-write-synced-realm: ========================================== diff --git a/source/sdk/flutter/telemetry.txt b/source/sdk/flutter/telemetry.txt index 5c528a4d4c..d9e80ed010 100644 --- a/source/sdk/flutter/telemetry.txt +++ b/source/sdk/flutter/telemetry.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _telemetry-flutter: ======================= diff --git a/source/sdk/flutter/test-and-debug.txt b/source/sdk/flutter/test-and-debug.txt index e394080c00..45495846cb 100644 --- a/source/sdk/flutter/test-and-debug.txt +++ b/source/sdk/flutter/test-and-debug.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-test-and-debug: ========================== diff --git a/source/sdk/flutter/troubleshooting.txt b/source/sdk/flutter/troubleshooting.txt index 97c15779e0..947d81734f 100644 --- a/source/sdk/flutter/troubleshooting.txt +++ b/source/sdk/flutter/troubleshooting.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-troubleshooting: ============================= diff --git a/source/sdk/flutter/upgrade-to-v2.txt b/source/sdk/flutter/upgrade-to-v2.txt index 1a3da6b8dc..4efee5eff1 100644 --- a/source/sdk/flutter/upgrade-to-v2.txt +++ b/source/sdk/flutter/upgrade-to-v2.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-upgrade-v2: ============================= diff --git a/source/sdk/flutter/users.txt b/source/sdk/flutter/users.txt index d02b8c6968..a4a8607df9 100644 --- a/source/sdk/flutter/users.txt +++ b/source/sdk/flutter/users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-work-with-users: ============================= diff --git a/source/sdk/flutter/users/access-token.txt b/source/sdk/flutter/users/access-token.txt index a872aee03f..ba1566291a 100644 --- a/source/sdk/flutter/users/access-token.txt +++ b/source/sdk/flutter/users/access-token.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-access-token: ======================================= diff --git a/source/sdk/flutter/users/authenticate.txt b/source/sdk/flutter/users/authenticate.txt index cd1e20f8f2..d58556ed62 100644 --- a/source/sdk/flutter/users/authenticate.txt +++ b/source/sdk/flutter/users/authenticate.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-authenticate: ================================ diff --git a/source/sdk/flutter/users/custom-user-data.txt b/source/sdk/flutter/users/custom-user-data.txt index d217854089..b4d6b5f4cf 100644 --- a/source/sdk/flutter/users/custom-user-data.txt +++ b/source/sdk/flutter/users/custom-user-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-custom-user-data: ============================== diff --git a/source/sdk/flutter/users/delete-user.txt b/source/sdk/flutter/users/delete-user.txt index 6922a336b5..09607a89ed 100644 --- a/source/sdk/flutter/users/delete-user.txt +++ b/source/sdk/flutter/users/delete-user.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-delete-user: =========================== diff --git a/source/sdk/flutter/users/email-password-users.txt b/source/sdk/flutter/users/email-password-users.txt index f940b0537a..4299a9a462 100644 --- a/source/sdk/flutter/users/email-password-users.txt +++ b/source/sdk/flutter/users/email-password-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-manage-email-password-users: ================================== diff --git a/source/sdk/flutter/users/link-user-identities.txt b/source/sdk/flutter/users/link-user-identities.txt index 0479045e87..3ea7d9f241 100644 --- a/source/sdk/flutter/users/link-user-identities.txt +++ b/source/sdk/flutter/users/link-user-identities.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-link-user-identities: ================================== diff --git a/source/sdk/flutter/users/multiple-users.txt b/source/sdk/flutter/users/multiple-users.txt index 920049f38b..eff27aba4c 100644 --- a/source/sdk/flutter/users/multiple-users.txt +++ b/source/sdk/flutter/users/multiple-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-work-with-multiple-users: ====================================== diff --git a/source/sdk/flutter/users/user-metadata.txt b/source/sdk/flutter/users/user-metadata.txt index e0044d4aaf..bcdc503ba5 100644 --- a/source/sdk/flutter/users/user-metadata.txt +++ b/source/sdk/flutter/users/user-metadata.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _flutter-user-metadata: =========================== diff --git a/source/sdk/java.txt b/source/sdk/java.txt index 75c20fa1a5..63d4b1f021 100644 --- a/source/sdk/java.txt +++ b/source/sdk/java.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :template: product-landing :hidefeedback: header :noprevnext: @@ -18,8 +21,6 @@ Atlas Device SDK for Java .. toctree:: :titlesonly: - Install - Quick Starts Realm Files Model Data CRUD diff --git a/source/sdk/java/adapters.txt b/source/sdk/java/adapters.txt index 066cfc176e..a36b3e6145 100644 --- a/source/sdk/java/adapters.txt +++ b/source/sdk/java/adapters.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-adapters: ============================== diff --git a/source/sdk/java/api.txt b/source/sdk/java/api.txt index aa91621da5..a94fb6d0e2 100644 --- a/source/sdk/java/api.txt +++ b/source/sdk/java/api.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ============= API Reference ============= diff --git a/source/sdk/java/api/index.txt b/source/sdk/java/api/index.txt index f1b4db5f0d..26bb4f8656 100644 --- a/source/sdk/java/api/index.txt +++ b/source/sdk/java/api/index.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :orphan: .. contents:: On this page diff --git a/source/sdk/java/api/io.txt b/source/sdk/java/api/io.txt index 2747454236..8994ca9dee 100644 --- a/source/sdk/java/api/io.txt +++ b/source/sdk/java/api/io.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :orphan: .. contents:: On this page diff --git a/source/sdk/java/api/io/realm.txt b/source/sdk/java/api/io/realm.txt index 8bccff0842..a251299866 100644 --- a/source/sdk/java/api/io/realm.txt +++ b/source/sdk/java/api/io/realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/Case.txt b/source/sdk/java/api/io/realm/Case.txt index ef7ddc6182..f372cdd797 100644 --- a/source/sdk/java/api/io/realm/Case.txt +++ b/source/sdk/java/api/io/realm/Case.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/CollectionUtils.txt b/source/sdk/java/api/io/realm/CollectionUtils.txt index 55de7d30eb..1a41b4351b 100644 --- a/source/sdk/java/api/io/realm/CollectionUtils.txt +++ b/source/sdk/java/api/io/realm/CollectionUtils.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/CompactOnLaunchCallback.txt b/source/sdk/java/api/io/realm/CompactOnLaunchCallback.txt index db70789f26..f2083c621a 100644 --- a/source/sdk/java/api/io/realm/CompactOnLaunchCallback.txt +++ b/source/sdk/java/api/io/realm/CompactOnLaunchCallback.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/DefaultCompactOnLaunchCallback.txt b/source/sdk/java/api/io/realm/DefaultCompactOnLaunchCallback.txt index 41db45f038..8788c75082 100644 --- a/source/sdk/java/api/io/realm/DefaultCompactOnLaunchCallback.txt +++ b/source/sdk/java/api/io/realm/DefaultCompactOnLaunchCallback.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/DynamicRealm.txt b/source/sdk/java/api/io/realm/DynamicRealm.txt index d4230ae872..3cf327a712 100644 --- a/source/sdk/java/api/io/realm/DynamicRealm.txt +++ b/source/sdk/java/api/io/realm/DynamicRealm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/DynamicRealm/Callback.txt b/source/sdk/java/api/io/realm/DynamicRealm/Callback.txt index 7d772b920a..6751733623 100644 --- a/source/sdk/java/api/io/realm/DynamicRealm/Callback.txt +++ b/source/sdk/java/api/io/realm/DynamicRealm/Callback.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/DynamicRealm/Transaction.txt b/source/sdk/java/api/io/realm/DynamicRealm/Transaction.txt index c0cb2459ab..5f5a4d17bf 100644 --- a/source/sdk/java/api/io/realm/DynamicRealm/Transaction.txt +++ b/source/sdk/java/api/io/realm/DynamicRealm/Transaction.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/DynamicRealm/Transaction/Callback.txt b/source/sdk/java/api/io/realm/DynamicRealm/Transaction/Callback.txt index 114f1f50c6..8f6291ab5e 100644 --- a/source/sdk/java/api/io/realm/DynamicRealm/Transaction/Callback.txt +++ b/source/sdk/java/api/io/realm/DynamicRealm/Transaction/Callback.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/DynamicRealm/Transaction/OnError.txt b/source/sdk/java/api/io/realm/DynamicRealm/Transaction/OnError.txt index a924076447..0908b819bd 100644 --- a/source/sdk/java/api/io/realm/DynamicRealm/Transaction/OnError.txt +++ b/source/sdk/java/api/io/realm/DynamicRealm/Transaction/OnError.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/DynamicRealm/Transaction/OnSuccess.txt b/source/sdk/java/api/io/realm/DynamicRealm/Transaction/OnSuccess.txt index 6098d6fbbb..508094a9bc 100644 --- a/source/sdk/java/api/io/realm/DynamicRealm/Transaction/OnSuccess.txt +++ b/source/sdk/java/api/io/realm/DynamicRealm/Transaction/OnSuccess.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/DynamicRealmObject.txt b/source/sdk/java/api/io/realm/DynamicRealmObject.txt index 40f49b6d74..a342ba9e29 100644 --- a/source/sdk/java/api/io/realm/DynamicRealmObject.txt +++ b/source/sdk/java/api/io/realm/DynamicRealmObject.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/FieldAttribute.txt b/source/sdk/java/api/io/realm/FieldAttribute.txt index 8eadabd736..cef961192c 100644 --- a/source/sdk/java/api/io/realm/FieldAttribute.txt +++ b/source/sdk/java/api/io/realm/FieldAttribute.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/FrozenPendingRow.txt b/source/sdk/java/api/io/realm/FrozenPendingRow.txt index 8d3e1f28f3..cd76276785 100644 --- a/source/sdk/java/api/io/realm/FrozenPendingRow.txt +++ b/source/sdk/java/api/io/realm/FrozenPendingRow.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/ImportFlag.txt b/source/sdk/java/api/io/realm/ImportFlag.txt index 069222f6f8..31b73bd925 100644 --- a/source/sdk/java/api/io/realm/ImportFlag.txt +++ b/source/sdk/java/api/io/realm/ImportFlag.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/MapChangeListener.txt b/source/sdk/java/api/io/realm/MapChangeListener.txt index efa98b2959..a2c6f60c57 100644 --- a/source/sdk/java/api/io/realm/MapChangeListener.txt +++ b/source/sdk/java/api/io/realm/MapChangeListener.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/MapChangeSet.txt b/source/sdk/java/api/io/realm/MapChangeSet.txt index 25f7639d65..849eda657b 100644 --- a/source/sdk/java/api/io/realm/MapChangeSet.txt +++ b/source/sdk/java/api/io/realm/MapChangeSet.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/MutableRealmInteger.txt b/source/sdk/java/api/io/realm/MutableRealmInteger.txt index 8fe85c95cc..9cc2e91cd6 100644 --- a/source/sdk/java/api/io/realm/MutableRealmInteger.txt +++ b/source/sdk/java/api/io/realm/MutableRealmInteger.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/ObjectChangeSet.txt b/source/sdk/java/api/io/realm/ObjectChangeSet.txt index 41a37b8776..14e0ad823b 100644 --- a/source/sdk/java/api/io/realm/ObjectChangeSet.txt +++ b/source/sdk/java/api/io/realm/ObjectChangeSet.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/OrderedCollectionChangeSet.txt b/source/sdk/java/api/io/realm/OrderedCollectionChangeSet.txt index a591795ee7..69b2027270 100644 --- a/source/sdk/java/api/io/realm/OrderedCollectionChangeSet.txt +++ b/source/sdk/java/api/io/realm/OrderedCollectionChangeSet.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/OrderedCollectionChangeSet/Range.txt b/source/sdk/java/api/io/realm/OrderedCollectionChangeSet/Range.txt index 8366cfd7aa..0062a0de61 100644 --- a/source/sdk/java/api/io/realm/OrderedCollectionChangeSet/Range.txt +++ b/source/sdk/java/api/io/realm/OrderedCollectionChangeSet/Range.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/OrderedCollectionChangeSet/State.txt b/source/sdk/java/api/io/realm/OrderedCollectionChangeSet/State.txt index c0e7acfdfe..9452db3910 100644 --- a/source/sdk/java/api/io/realm/OrderedCollectionChangeSet/State.txt +++ b/source/sdk/java/api/io/realm/OrderedCollectionChangeSet/State.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/OrderedRealmCollection.txt b/source/sdk/java/api/io/realm/OrderedRealmCollection.txt index 47a9b70620..f8535fad28 100644 --- a/source/sdk/java/api/io/realm/OrderedRealmCollection.txt +++ b/source/sdk/java/api/io/realm/OrderedRealmCollection.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/OrderedRealmCollectionChangeListener.txt b/source/sdk/java/api/io/realm/OrderedRealmCollectionChangeListener.txt index d3d6a1740a..cd20c368fa 100644 --- a/source/sdk/java/api/io/realm/OrderedRealmCollectionChangeListener.txt +++ b/source/sdk/java/api/io/realm/OrderedRealmCollectionChangeListener.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/OrderedRealmCollectionSnapshot.txt b/source/sdk/java/api/io/realm/OrderedRealmCollectionSnapshot.txt index 78c96304ef..54e5494e61 100644 --- a/source/sdk/java/api/io/realm/OrderedRealmCollectionSnapshot.txt +++ b/source/sdk/java/api/io/realm/OrderedRealmCollectionSnapshot.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/ProxyState.txt b/source/sdk/java/api/io/realm/ProxyState.txt index ac05c97cfb..960afc9b4c 100644 --- a/source/sdk/java/api/io/realm/ProxyState.txt +++ b/source/sdk/java/api/io/realm/ProxyState.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/Realm.txt b/source/sdk/java/api/io/realm/Realm.txt index 77d2e92a68..aef7399019 100644 --- a/source/sdk/java/api/io/realm/Realm.txt +++ b/source/sdk/java/api/io/realm/Realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/Realm/Callback.txt b/source/sdk/java/api/io/realm/Realm/Callback.txt index c324ef21dd..36fa8082d6 100644 --- a/source/sdk/java/api/io/realm/Realm/Callback.txt +++ b/source/sdk/java/api/io/realm/Realm/Callback.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/Realm/Transaction.txt b/source/sdk/java/api/io/realm/Realm/Transaction.txt index 388751c75b..dc8ef4e3e8 100644 --- a/source/sdk/java/api/io/realm/Realm/Transaction.txt +++ b/source/sdk/java/api/io/realm/Realm/Transaction.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/Realm/Transaction/Callback.txt b/source/sdk/java/api/io/realm/Realm/Transaction/Callback.txt index da30f154cd..e94fe989ed 100644 --- a/source/sdk/java/api/io/realm/Realm/Transaction/Callback.txt +++ b/source/sdk/java/api/io/realm/Realm/Transaction/Callback.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/Realm/Transaction/OnError.txt b/source/sdk/java/api/io/realm/Realm/Transaction/OnError.txt index eb85864f27..d4d9f74de1 100644 --- a/source/sdk/java/api/io/realm/Realm/Transaction/OnError.txt +++ b/source/sdk/java/api/io/realm/Realm/Transaction/OnError.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/Realm/Transaction/OnSuccess.txt b/source/sdk/java/api/io/realm/Realm/Transaction/OnSuccess.txt index 8b43e6368a..8f6211f962 100644 --- a/source/sdk/java/api/io/realm/Realm/Transaction/OnSuccess.txt +++ b/source/sdk/java/api/io/realm/Realm/Transaction/OnSuccess.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmAny.txt b/source/sdk/java/api/io/realm/RealmAny.txt index 042a6630df..949ccba9c3 100644 --- a/source/sdk/java/api/io/realm/RealmAny.txt +++ b/source/sdk/java/api/io/realm/RealmAny.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmAny/Type.txt b/source/sdk/java/api/io/realm/RealmAny/Type.txt index 29c3ba197c..49de9562ba 100644 --- a/source/sdk/java/api/io/realm/RealmAny/Type.txt +++ b/source/sdk/java/api/io/realm/RealmAny/Type.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmAnyNativeFunctionsImpl.txt b/source/sdk/java/api/io/realm/RealmAnyNativeFunctionsImpl.txt index 8029b18716..4301db3b13 100644 --- a/source/sdk/java/api/io/realm/RealmAnyNativeFunctionsImpl.txt +++ b/source/sdk/java/api/io/realm/RealmAnyNativeFunctionsImpl.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmAnyOperator.txt b/source/sdk/java/api/io/realm/RealmAnyOperator.txt index 0cdb860ae0..648eddbdc2 100644 --- a/source/sdk/java/api/io/realm/RealmAnyOperator.txt +++ b/source/sdk/java/api/io/realm/RealmAnyOperator.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmAsyncTask.txt b/source/sdk/java/api/io/realm/RealmAsyncTask.txt index f63ff8fee1..2fab62cc46 100644 --- a/source/sdk/java/api/io/realm/RealmAsyncTask.txt +++ b/source/sdk/java/api/io/realm/RealmAsyncTask.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmChangeListener.txt b/source/sdk/java/api/io/realm/RealmChangeListener.txt index 5d87fcc65f..bcdf225121 100644 --- a/source/sdk/java/api/io/realm/RealmChangeListener.txt +++ b/source/sdk/java/api/io/realm/RealmChangeListener.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmCollection.txt b/source/sdk/java/api/io/realm/RealmCollection.txt index 1dd3c095d6..7885a5a71a 100644 --- a/source/sdk/java/api/io/realm/RealmCollection.txt +++ b/source/sdk/java/api/io/realm/RealmCollection.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmConfiguration.txt b/source/sdk/java/api/io/realm/RealmConfiguration.txt index c8d5ca2704..d66fd03182 100644 --- a/source/sdk/java/api/io/realm/RealmConfiguration.txt +++ b/source/sdk/java/api/io/realm/RealmConfiguration.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmConfiguration/Builder.txt b/source/sdk/java/api/io/realm/RealmConfiguration/Builder.txt index e7e73393f4..c17a6e27be 100644 --- a/source/sdk/java/api/io/realm/RealmConfiguration/Builder.txt +++ b/source/sdk/java/api/io/realm/RealmConfiguration/Builder.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmDictionary.txt b/source/sdk/java/api/io/realm/RealmDictionary.txt index 2a43693bad..385d18e36e 100644 --- a/source/sdk/java/api/io/realm/RealmDictionary.txt +++ b/source/sdk/java/api/io/realm/RealmDictionary.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmFieldType.txt b/source/sdk/java/api/io/realm/RealmFieldType.txt index cbed096210..bbe9d936f1 100644 --- a/source/sdk/java/api/io/realm/RealmFieldType.txt +++ b/source/sdk/java/api/io/realm/RealmFieldType.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmList.txt b/source/sdk/java/api/io/realm/RealmList.txt index 51db4a91c8..d02d122db7 100644 --- a/source/sdk/java/api/io/realm/RealmList.txt +++ b/source/sdk/java/api/io/realm/RealmList.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmMap.txt b/source/sdk/java/api/io/realm/RealmMap.txt index 6bf49f6b03..7f2c4eac37 100644 --- a/source/sdk/java/api/io/realm/RealmMap.txt +++ b/source/sdk/java/api/io/realm/RealmMap.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmMigration.txt b/source/sdk/java/api/io/realm/RealmMigration.txt index ef12a615d4..b96a4f08ee 100644 --- a/source/sdk/java/api/io/realm/RealmMigration.txt +++ b/source/sdk/java/api/io/realm/RealmMigration.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmModel.txt b/source/sdk/java/api/io/realm/RealmModel.txt index f5b201f1cc..756dc6aacf 100644 --- a/source/sdk/java/api/io/realm/RealmModel.txt +++ b/source/sdk/java/api/io/realm/RealmModel.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmObject.txt b/source/sdk/java/api/io/realm/RealmObject.txt index c688f0f520..1a883450a0 100644 --- a/source/sdk/java/api/io/realm/RealmObject.txt +++ b/source/sdk/java/api/io/realm/RealmObject.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmObjectChangeListener.txt b/source/sdk/java/api/io/realm/RealmObjectChangeListener.txt index 3d659b6ecc..e0f7a2f777 100644 --- a/source/sdk/java/api/io/realm/RealmObjectChangeListener.txt +++ b/source/sdk/java/api/io/realm/RealmObjectChangeListener.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmObjectSchema.txt b/source/sdk/java/api/io/realm/RealmObjectSchema.txt index 717d39df93..ba2c018a0e 100644 --- a/source/sdk/java/api/io/realm/RealmObjectSchema.txt +++ b/source/sdk/java/api/io/realm/RealmObjectSchema.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmObjectSchema/Function.txt b/source/sdk/java/api/io/realm/RealmObjectSchema/Function.txt index 8a868d0eea..4b99ee3689 100644 --- a/source/sdk/java/api/io/realm/RealmObjectSchema/Function.txt +++ b/source/sdk/java/api/io/realm/RealmObjectSchema/Function.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmQuery.txt b/source/sdk/java/api/io/realm/RealmQuery.txt index 48d8b80218..04878b0218 100644 --- a/source/sdk/java/api/io/realm/RealmQuery.txt +++ b/source/sdk/java/api/io/realm/RealmQuery.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmResults.txt b/source/sdk/java/api/io/realm/RealmResults.txt index 36c25ee5bc..9ca2e7e568 100644 --- a/source/sdk/java/api/io/realm/RealmResults.txt +++ b/source/sdk/java/api/io/realm/RealmResults.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmSchema.txt b/source/sdk/java/api/io/realm/RealmSchema.txt index 7b7e8b09f6..0526e125b2 100644 --- a/source/sdk/java/api/io/realm/RealmSchema.txt +++ b/source/sdk/java/api/io/realm/RealmSchema.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/RealmSet.txt b/source/sdk/java/api/io/realm/RealmSet.txt index 4575cab8f9..5fabec40a3 100644 --- a/source/sdk/java/api/io/realm/RealmSet.txt +++ b/source/sdk/java/api/io/realm/RealmSet.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/SetChangeListener.txt b/source/sdk/java/api/io/realm/SetChangeListener.txt index dde9ee19e7..0ffe569411 100644 --- a/source/sdk/java/api/io/realm/SetChangeListener.txt +++ b/source/sdk/java/api/io/realm/SetChangeListener.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/SetChangeSet.txt b/source/sdk/java/api/io/realm/SetChangeSet.txt index 8a295d6735..64e628ed99 100644 --- a/source/sdk/java/api/io/realm/SetChangeSet.txt +++ b/source/sdk/java/api/io/realm/SetChangeSet.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/Sort.txt b/source/sdk/java/api/io/realm/Sort.txt index 4a842679b5..23d458ab2d 100644 --- a/source/sdk/java/api/io/realm/Sort.txt +++ b/source/sdk/java/api/io/realm/Sort.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/annotations.txt b/source/sdk/java/api/io/realm/annotations.txt index 7926aeacf9..d2114172ae 100644 --- a/source/sdk/java/api/io/realm/annotations.txt +++ b/source/sdk/java/api/io/realm/annotations.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/annotations/Beta.txt b/source/sdk/java/api/io/realm/annotations/Beta.txt index 9671157537..53b885c23c 100644 --- a/source/sdk/java/api/io/realm/annotations/Beta.txt +++ b/source/sdk/java/api/io/realm/annotations/Beta.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/annotations/Ignore.txt b/source/sdk/java/api/io/realm/annotations/Ignore.txt index 41c9e42362..d6fef512ba 100644 --- a/source/sdk/java/api/io/realm/annotations/Ignore.txt +++ b/source/sdk/java/api/io/realm/annotations/Ignore.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/annotations/Index.txt b/source/sdk/java/api/io/realm/annotations/Index.txt index 05cc36e549..cecf3f79ca 100644 --- a/source/sdk/java/api/io/realm/annotations/Index.txt +++ b/source/sdk/java/api/io/realm/annotations/Index.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/annotations/LinkingObjects.txt b/source/sdk/java/api/io/realm/annotations/LinkingObjects.txt index 228c6c2bf2..4660f9a1d7 100644 --- a/source/sdk/java/api/io/realm/annotations/LinkingObjects.txt +++ b/source/sdk/java/api/io/realm/annotations/LinkingObjects.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/annotations/PrimaryKey.txt b/source/sdk/java/api/io/realm/annotations/PrimaryKey.txt index 1bb765ac8d..e51d2ab475 100644 --- a/source/sdk/java/api/io/realm/annotations/PrimaryKey.txt +++ b/source/sdk/java/api/io/realm/annotations/PrimaryKey.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/annotations/RealmClass.txt b/source/sdk/java/api/io/realm/annotations/RealmClass.txt index fe7f2ca283..d8a0f60109 100644 --- a/source/sdk/java/api/io/realm/annotations/RealmClass.txt +++ b/source/sdk/java/api/io/realm/annotations/RealmClass.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/annotations/RealmField.txt b/source/sdk/java/api/io/realm/annotations/RealmField.txt index 5d820c73a2..eb7652bc6b 100644 --- a/source/sdk/java/api/io/realm/annotations/RealmField.txt +++ b/source/sdk/java/api/io/realm/annotations/RealmField.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/annotations/RealmModule.txt b/source/sdk/java/api/io/realm/annotations/RealmModule.txt index 5afe5e39eb..4ce5b26f8b 100644 --- a/source/sdk/java/api/io/realm/annotations/RealmModule.txt +++ b/source/sdk/java/api/io/realm/annotations/RealmModule.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/annotations/RealmNamingPolicy.txt b/source/sdk/java/api/io/realm/annotations/RealmNamingPolicy.txt index 94937d9bfd..49118bb203 100644 --- a/source/sdk/java/api/io/realm/annotations/RealmNamingPolicy.txt +++ b/source/sdk/java/api/io/realm/annotations/RealmNamingPolicy.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/annotations/Required.txt b/source/sdk/java/api/io/realm/annotations/Required.txt index 09f4ca6490..f3d4f25306 100644 --- a/source/sdk/java/api/io/realm/annotations/Required.txt +++ b/source/sdk/java/api/io/realm/annotations/Required.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/coroutines.txt b/source/sdk/java/api/io/realm/coroutines.txt index 733e3ab173..d4691a616b 100644 --- a/source/sdk/java/api/io/realm/coroutines.txt +++ b/source/sdk/java/api/io/realm/coroutines.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/coroutines/FlowFactory.txt b/source/sdk/java/api/io/realm/coroutines/FlowFactory.txt index f381c8c8b2..4ea100ea7d 100644 --- a/source/sdk/java/api/io/realm/coroutines/FlowFactory.txt +++ b/source/sdk/java/api/io/realm/coroutines/FlowFactory.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/coroutines/RealmFlowFactory.txt b/source/sdk/java/api/io/realm/coroutines/RealmFlowFactory.txt index 3e03c12fd5..3681daf949 100644 --- a/source/sdk/java/api/io/realm/coroutines/RealmFlowFactory.txt +++ b/source/sdk/java/api/io/realm/coroutines/RealmFlowFactory.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/exceptions.txt b/source/sdk/java/api/io/realm/exceptions.txt index c887890fd0..0ab7dc3e97 100644 --- a/source/sdk/java/api/io/realm/exceptions.txt +++ b/source/sdk/java/api/io/realm/exceptions.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/exceptions/DownloadingRealmInterruptedException.txt b/source/sdk/java/api/io/realm/exceptions/DownloadingRealmInterruptedException.txt index 8326b8be82..99d1c82d50 100644 --- a/source/sdk/java/api/io/realm/exceptions/DownloadingRealmInterruptedException.txt +++ b/source/sdk/java/api/io/realm/exceptions/DownloadingRealmInterruptedException.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/exceptions/RealmError.txt b/source/sdk/java/api/io/realm/exceptions/RealmError.txt index 728f1c6b44..5b0c1fc13f 100644 --- a/source/sdk/java/api/io/realm/exceptions/RealmError.txt +++ b/source/sdk/java/api/io/realm/exceptions/RealmError.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/exceptions/RealmException.txt b/source/sdk/java/api/io/realm/exceptions/RealmException.txt index 6095088709..9dbb8eedf2 100644 --- a/source/sdk/java/api/io/realm/exceptions/RealmException.txt +++ b/source/sdk/java/api/io/realm/exceptions/RealmException.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/exceptions/RealmFileException.txt b/source/sdk/java/api/io/realm/exceptions/RealmFileException.txt index 0643959ca2..1e00343605 100644 --- a/source/sdk/java/api/io/realm/exceptions/RealmFileException.txt +++ b/source/sdk/java/api/io/realm/exceptions/RealmFileException.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/exceptions/RealmFileException/Kind.txt b/source/sdk/java/api/io/realm/exceptions/RealmFileException/Kind.txt index 6ae016ee0b..a7c6db31b7 100644 --- a/source/sdk/java/api/io/realm/exceptions/RealmFileException/Kind.txt +++ b/source/sdk/java/api/io/realm/exceptions/RealmFileException/Kind.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/exceptions/RealmMigrationNeededException.txt b/source/sdk/java/api/io/realm/exceptions/RealmMigrationNeededException.txt index c6c246261b..6f970bcf11 100644 --- a/source/sdk/java/api/io/realm/exceptions/RealmMigrationNeededException.txt +++ b/source/sdk/java/api/io/realm/exceptions/RealmMigrationNeededException.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/exceptions/RealmPrimaryKeyConstraintException.txt b/source/sdk/java/api/io/realm/exceptions/RealmPrimaryKeyConstraintException.txt index a0f423f0b5..77861d7e4c 100644 --- a/source/sdk/java/api/io/realm/exceptions/RealmPrimaryKeyConstraintException.txt +++ b/source/sdk/java/api/io/realm/exceptions/RealmPrimaryKeyConstraintException.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/gradle.txt b/source/sdk/java/api/io/realm/gradle.txt index 2e2f7ebf74..557b703e48 100644 --- a/source/sdk/java/api/io/realm/gradle.txt +++ b/source/sdk/java/api/io/realm/gradle.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :orphan: .. contents:: On this page diff --git a/source/sdk/java/api/io/realm/gradle/RealmPluginExtension.txt b/source/sdk/java/api/io/realm/gradle/RealmPluginExtension.txt index 13eed26fa7..64ec353c73 100644 --- a/source/sdk/java/api/io/realm/gradle/RealmPluginExtension.txt +++ b/source/sdk/java/api/io/realm/gradle/RealmPluginExtension.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :orphan: .. contents:: On this page diff --git a/source/sdk/java/api/io/realm/gradle/RealmPluginExtension/PropertyChangedListener.txt b/source/sdk/java/api/io/realm/gradle/RealmPluginExtension/PropertyChangedListener.txt index 3e20988d19..831e9cb9eb 100644 --- a/source/sdk/java/api/io/realm/gradle/RealmPluginExtension/PropertyChangedListener.txt +++ b/source/sdk/java/api/io/realm/gradle/RealmPluginExtension/PropertyChangedListener.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :orphan: .. contents:: On this page diff --git a/source/sdk/java/api/io/realm/log.txt b/source/sdk/java/api/io/realm/log.txt index d015ae12c9..615515bc3e 100644 --- a/source/sdk/java/api/io/realm/log.txt +++ b/source/sdk/java/api/io/realm/log.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/log/LogLevel.txt b/source/sdk/java/api/io/realm/log/LogLevel.txt index d85b1888e2..a53da42aa9 100644 --- a/source/sdk/java/api/io/realm/log/LogLevel.txt +++ b/source/sdk/java/api/io/realm/log/LogLevel.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/log/RealmLog.txt b/source/sdk/java/api/io/realm/log/RealmLog.txt index b597aff52f..f4d1f1f80f 100644 --- a/source/sdk/java/api/io/realm/log/RealmLog.txt +++ b/source/sdk/java/api/io/realm/log/RealmLog.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/log/RealmLogger.txt b/source/sdk/java/api/io/realm/log/RealmLogger.txt index 7a76d8da15..3c78aae4e5 100644 --- a/source/sdk/java/api/io/realm/log/RealmLogger.txt +++ b/source/sdk/java/api/io/realm/log/RealmLogger.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb.txt b/source/sdk/java/api/io/realm/mongodb.txt index a5615994ee..b73258da1a 100644 --- a/source/sdk/java/api/io/realm/mongodb.txt +++ b/source/sdk/java/api/io/realm/mongodb.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/App.txt b/source/sdk/java/api/io/realm/mongodb/App.txt index 58c1bafe2e..cc76c27cda 100644 --- a/source/sdk/java/api/io/realm/mongodb/App.txt +++ b/source/sdk/java/api/io/realm/mongodb/App.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/App/Callback.txt b/source/sdk/java/api/io/realm/mongodb/App/Callback.txt index 5731c6b60d..28853fc516 100644 --- a/source/sdk/java/api/io/realm/mongodb/App/Callback.txt +++ b/source/sdk/java/api/io/realm/mongodb/App/Callback.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/App/Result.txt b/source/sdk/java/api/io/realm/mongodb/App/Result.txt index d12a2228b6..641f0e2785 100644 --- a/source/sdk/java/api/io/realm/mongodb/App/Result.txt +++ b/source/sdk/java/api/io/realm/mongodb/App/Result.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/AppConfiguration.txt b/source/sdk/java/api/io/realm/mongodb/AppConfiguration.txt index 4fca216cdb..78dd602ea9 100644 --- a/source/sdk/java/api/io/realm/mongodb/AppConfiguration.txt +++ b/source/sdk/java/api/io/realm/mongodb/AppConfiguration.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/AppConfiguration/Builder.txt b/source/sdk/java/api/io/realm/mongodb/AppConfiguration/Builder.txt index 0ee82aabd2..e81e601e08 100644 --- a/source/sdk/java/api/io/realm/mongodb/AppConfiguration/Builder.txt +++ b/source/sdk/java/api/io/realm/mongodb/AppConfiguration/Builder.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/AppException.txt b/source/sdk/java/api/io/realm/mongodb/AppException.txt index 6ca811e5d8..d745508d79 100644 --- a/source/sdk/java/api/io/realm/mongodb/AppException.txt +++ b/source/sdk/java/api/io/realm/mongodb/AppException.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/AuthenticationListener.txt b/source/sdk/java/api/io/realm/mongodb/AuthenticationListener.txt index 82dc644d68..c169477c2e 100644 --- a/source/sdk/java/api/io/realm/mongodb/AuthenticationListener.txt +++ b/source/sdk/java/api/io/realm/mongodb/AuthenticationListener.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/Credentials.txt b/source/sdk/java/api/io/realm/mongodb/Credentials.txt index c10df78fab..a8fb4d5f8d 100644 --- a/source/sdk/java/api/io/realm/mongodb/Credentials.txt +++ b/source/sdk/java/api/io/realm/mongodb/Credentials.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/Credentials/Provider.txt b/source/sdk/java/api/io/realm/mongodb/Credentials/Provider.txt index 4ab94e049e..964b4cd064 100644 --- a/source/sdk/java/api/io/realm/mongodb/Credentials/Provider.txt +++ b/source/sdk/java/api/io/realm/mongodb/Credentials/Provider.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/ErrorCode.txt b/source/sdk/java/api/io/realm/mongodb/ErrorCode.txt index 4076d15441..41713e0a39 100644 --- a/source/sdk/java/api/io/realm/mongodb/ErrorCode.txt +++ b/source/sdk/java/api/io/realm/mongodb/ErrorCode.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/ErrorCode/Category.txt b/source/sdk/java/api/io/realm/mongodb/ErrorCode/Category.txt index c5c6253c28..8167610700 100644 --- a/source/sdk/java/api/io/realm/mongodb/ErrorCode/Category.txt +++ b/source/sdk/java/api/io/realm/mongodb/ErrorCode/Category.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/ErrorCode/Type.txt b/source/sdk/java/api/io/realm/mongodb/ErrorCode/Type.txt index 9dd9a197e5..19b0a5a80f 100644 --- a/source/sdk/java/api/io/realm/mongodb/ErrorCode/Type.txt +++ b/source/sdk/java/api/io/realm/mongodb/ErrorCode/Type.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/RealmEventStreamAsyncTask.txt b/source/sdk/java/api/io/realm/mongodb/RealmEventStreamAsyncTask.txt index 9c37fc2acb..43e4395064 100644 --- a/source/sdk/java/api/io/realm/mongodb/RealmEventStreamAsyncTask.txt +++ b/source/sdk/java/api/io/realm/mongodb/RealmEventStreamAsyncTask.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/RealmEventStreamTask.txt b/source/sdk/java/api/io/realm/mongodb/RealmEventStreamTask.txt index 250aa9a82a..862d2eb70f 100644 --- a/source/sdk/java/api/io/realm/mongodb/RealmEventStreamTask.txt +++ b/source/sdk/java/api/io/realm/mongodb/RealmEventStreamTask.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/RealmResultTask.txt b/source/sdk/java/api/io/realm/mongodb/RealmResultTask.txt index ef6d6daf61..6a9397f5c2 100644 --- a/source/sdk/java/api/io/realm/mongodb/RealmResultTask.txt +++ b/source/sdk/java/api/io/realm/mongodb/RealmResultTask.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/User.txt b/source/sdk/java/api/io/realm/mongodb/User.txt index ffe5c47fd6..a38ab27cf2 100644 --- a/source/sdk/java/api/io/realm/mongodb/User.txt +++ b/source/sdk/java/api/io/realm/mongodb/User.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/User/State.txt b/source/sdk/java/api/io/realm/mongodb/User/State.txt index f7d7c96d89..28e7cc1f2f 100644 --- a/source/sdk/java/api/io/realm/mongodb/User/State.txt +++ b/source/sdk/java/api/io/realm/mongodb/User/State.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/UserIdentity.txt b/source/sdk/java/api/io/realm/mongodb/UserIdentity.txt index 2df10d3faf..f4056abbbe 100644 --- a/source/sdk/java/api/io/realm/mongodb/UserIdentity.txt +++ b/source/sdk/java/api/io/realm/mongodb/UserIdentity.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/UserProfile.txt b/source/sdk/java/api/io/realm/mongodb/UserProfile.txt index 241e5ffd8c..9fe5c0f47a 100644 --- a/source/sdk/java/api/io/realm/mongodb/UserProfile.txt +++ b/source/sdk/java/api/io/realm/mongodb/UserProfile.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/auth.txt b/source/sdk/java/api/io/realm/mongodb/auth.txt index ab67f7ad42..8ad25877d0 100644 --- a/source/sdk/java/api/io/realm/mongodb/auth.txt +++ b/source/sdk/java/api/io/realm/mongodb/auth.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/auth/ApiKey.txt b/source/sdk/java/api/io/realm/mongodb/auth/ApiKey.txt index 85ad0f5f8b..c886db57ba 100644 --- a/source/sdk/java/api/io/realm/mongodb/auth/ApiKey.txt +++ b/source/sdk/java/api/io/realm/mongodb/auth/ApiKey.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/auth/ApiKeyAuth.txt b/source/sdk/java/api/io/realm/mongodb/auth/ApiKeyAuth.txt index c78a96b5e3..896e711a3a 100644 --- a/source/sdk/java/api/io/realm/mongodb/auth/ApiKeyAuth.txt +++ b/source/sdk/java/api/io/realm/mongodb/auth/ApiKeyAuth.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/auth/EmailPasswordAuth.txt b/source/sdk/java/api/io/realm/mongodb/auth/EmailPasswordAuth.txt index 451c4c1e08..99653f163c 100644 --- a/source/sdk/java/api/io/realm/mongodb/auth/EmailPasswordAuth.txt +++ b/source/sdk/java/api/io/realm/mongodb/auth/EmailPasswordAuth.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/auth/GoogleAuthType.txt b/source/sdk/java/api/io/realm/mongodb/auth/GoogleAuthType.txt index c2c6bc0d0d..685bc83141 100644 --- a/source/sdk/java/api/io/realm/mongodb/auth/GoogleAuthType.txt +++ b/source/sdk/java/api/io/realm/mongodb/auth/GoogleAuthType.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/functions.txt b/source/sdk/java/api/io/realm/mongodb/functions.txt index a735d2764d..1a2b2d9a6b 100644 --- a/source/sdk/java/api/io/realm/mongodb/functions.txt +++ b/source/sdk/java/api/io/realm/mongodb/functions.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/functions/Functions.txt b/source/sdk/java/api/io/realm/mongodb/functions/Functions.txt index f5d25626a7..bc800889e7 100644 --- a/source/sdk/java/api/io/realm/mongodb/functions/Functions.txt +++ b/source/sdk/java/api/io/realm/mongodb/functions/Functions.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/log/obfuscator.txt b/source/sdk/java/api/io/realm/mongodb/log/obfuscator.txt index a0ac792709..93880192f0 100644 --- a/source/sdk/java/api/io/realm/mongodb/log/obfuscator.txt +++ b/source/sdk/java/api/io/realm/mongodb/log/obfuscator.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/log/obfuscator/HttpLogObfuscator.txt b/source/sdk/java/api/io/realm/mongodb/log/obfuscator/HttpLogObfuscator.txt index e3ecf5f427..3d881cf185 100644 --- a/source/sdk/java/api/io/realm/mongodb/log/obfuscator/HttpLogObfuscator.txt +++ b/source/sdk/java/api/io/realm/mongodb/log/obfuscator/HttpLogObfuscator.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo.txt b/source/sdk/java/api/io/realm/mongodb/mongo.txt index 65912bca1a..433ec005f6 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/MongoClient.txt b/source/sdk/java/api/io/realm/mongodb/mongo/MongoClient.txt index 0c47efa7c8..da1711ffbb 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/MongoClient.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/MongoClient.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/MongoCollection.txt b/source/sdk/java/api/io/realm/mongodb/mongo/MongoCollection.txt index 51845b074f..47ab62b8b7 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/MongoCollection.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/MongoCollection.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/MongoDatabase.txt b/source/sdk/java/api/io/realm/mongodb/mongo/MongoDatabase.txt index 80d4b31894..7d3bb5421c 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/MongoDatabase.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/MongoDatabase.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/MongoNamespace.txt b/source/sdk/java/api/io/realm/mongodb/mongo/MongoNamespace.txt index 8a6f91ace1..037179844a 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/MongoNamespace.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/MongoNamespace.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/events.txt b/source/sdk/java/api/io/realm/mongodb/mongo/events.txt index 3e89a211d5..fc312470e3 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/events.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/events.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/events/BaseChangeEvent.txt b/source/sdk/java/api/io/realm/mongodb/mongo/events/BaseChangeEvent.txt index 7e7e12256f..ad37afc277 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/events/BaseChangeEvent.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/events/BaseChangeEvent.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/events/BaseChangeEvent/OperationType.txt b/source/sdk/java/api/io/realm/mongodb/mongo/events/BaseChangeEvent/OperationType.txt index 96f73a06b4..f09004912e 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/events/BaseChangeEvent/OperationType.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/events/BaseChangeEvent/OperationType.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/events/UpdateDescription.txt b/source/sdk/java/api/io/realm/mongodb/mongo/events/UpdateDescription.txt index bcc90a86d9..66486fc5ed 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/events/UpdateDescription.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/events/UpdateDescription.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/iterable.txt b/source/sdk/java/api/io/realm/mongodb/mongo/iterable.txt index 3c34aeac79..70a63ada63 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/iterable.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/iterable.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/iterable/AggregateIterable.txt b/source/sdk/java/api/io/realm/mongodb/mongo/iterable/AggregateIterable.txt index cfdd90d6be..25d132ec8e 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/iterable/AggregateIterable.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/iterable/AggregateIterable.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/iterable/FindIterable.txt b/source/sdk/java/api/io/realm/mongodb/mongo/iterable/FindIterable.txt index 12f64d5250..6a8b4240ce 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/iterable/FindIterable.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/iterable/FindIterable.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/iterable/MongoCursor.txt b/source/sdk/java/api/io/realm/mongodb/mongo/iterable/MongoCursor.txt index 08280c0b41..5c8c792d5b 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/iterable/MongoCursor.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/iterable/MongoCursor.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/iterable/MongoIterable.txt b/source/sdk/java/api/io/realm/mongodb/mongo/iterable/MongoIterable.txt index 19394569f3..f26abb2899 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/iterable/MongoIterable.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/iterable/MongoIterable.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/options.txt b/source/sdk/java/api/io/realm/mongodb/mongo/options.txt index ded6891150..c65a338bcf 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/options.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/options.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/options/CountOptions.txt b/source/sdk/java/api/io/realm/mongodb/mongo/options/CountOptions.txt index c633e4533b..ef1d3209ad 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/options/CountOptions.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/options/CountOptions.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/options/FindOneAndModifyOptions.txt b/source/sdk/java/api/io/realm/mongodb/mongo/options/FindOneAndModifyOptions.txt index 5e04338f5f..29c2633abb 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/options/FindOneAndModifyOptions.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/options/FindOneAndModifyOptions.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/options/FindOptions.txt b/source/sdk/java/api/io/realm/mongodb/mongo/options/FindOptions.txt index c26893825b..e809abfc7d 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/options/FindOptions.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/options/FindOptions.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/options/InsertManyResult.txt b/source/sdk/java/api/io/realm/mongodb/mongo/options/InsertManyResult.txt index 087be98e1e..6e1f915b73 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/options/InsertManyResult.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/options/InsertManyResult.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/options/UpdateOptions.txt b/source/sdk/java/api/io/realm/mongodb/mongo/options/UpdateOptions.txt index 08feb12d15..f97a564824 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/options/UpdateOptions.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/options/UpdateOptions.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/result.txt b/source/sdk/java/api/io/realm/mongodb/mongo/result.txt index f2c7632e04..15891ac17e 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/result.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/result.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/result/DeleteResult.txt b/source/sdk/java/api/io/realm/mongodb/mongo/result/DeleteResult.txt index c321f29df4..8191ea8b9b 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/result/DeleteResult.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/result/DeleteResult.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/result/InsertOneResult.txt b/source/sdk/java/api/io/realm/mongodb/mongo/result/InsertOneResult.txt index fa385a8713..2d765e13fc 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/result/InsertOneResult.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/result/InsertOneResult.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/mongo/result/UpdateResult.txt b/source/sdk/java/api/io/realm/mongodb/mongo/result/UpdateResult.txt index 7142e15de3..b627df595a 100644 --- a/source/sdk/java/api/io/realm/mongodb/mongo/result/UpdateResult.txt +++ b/source/sdk/java/api/io/realm/mongodb/mongo/result/UpdateResult.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/push.txt b/source/sdk/java/api/io/realm/mongodb/push.txt index b94c4263ac..e758b02d69 100644 --- a/source/sdk/java/api/io/realm/mongodb/push.txt +++ b/source/sdk/java/api/io/realm/mongodb/push.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/push/Push.txt b/source/sdk/java/api/io/realm/mongodb/push/Push.txt index ac7aefc7b8..94ef5ea831 100644 --- a/source/sdk/java/api/io/realm/mongodb/push/Push.txt +++ b/source/sdk/java/api/io/realm/mongodb/push/Push.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync.txt b/source/sdk/java/api/io/realm/mongodb/sync.txt index 745f020509..76203d5152 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/ClientResetRequiredError.txt b/source/sdk/java/api/io/realm/mongodb/sync/ClientResetRequiredError.txt index 5c33a0403c..0fbae5dc2f 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/ClientResetRequiredError.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/ClientResetRequiredError.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/ConnectionListener.txt b/source/sdk/java/api/io/realm/mongodb/sync/ConnectionListener.txt index 61b11b1fce..da166fb7a4 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/ConnectionListener.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/ConnectionListener.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/ConnectionState.txt b/source/sdk/java/api/io/realm/mongodb/sync/ConnectionState.txt index 4db226a9bf..241531f0ec 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/ConnectionState.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/ConnectionState.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/DiscardUnsyncedChangesStrategy.txt b/source/sdk/java/api/io/realm/mongodb/sync/DiscardUnsyncedChangesStrategy.txt index 3d90fb96d5..611cb85aaf 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/DiscardUnsyncedChangesStrategy.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/DiscardUnsyncedChangesStrategy.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/ManuallyRecoverUnsyncedChangesStrategy.txt b/source/sdk/java/api/io/realm/mongodb/sync/ManuallyRecoverUnsyncedChangesStrategy.txt index b3d007ca50..a70c14d6b8 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/ManuallyRecoverUnsyncedChangesStrategy.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/ManuallyRecoverUnsyncedChangesStrategy.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/MutableSubscriptionSet.txt b/source/sdk/java/api/io/realm/mongodb/sync/MutableSubscriptionSet.txt index f2fae54572..c941774a77 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/MutableSubscriptionSet.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/MutableSubscriptionSet.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/Progress.txt b/source/sdk/java/api/io/realm/mongodb/sync/Progress.txt index bb16bf5f3e..788696011c 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/Progress.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/Progress.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/ProgressListener.txt b/source/sdk/java/api/io/realm/mongodb/sync/ProgressListener.txt index fccd49e723..c73eecd782 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/ProgressListener.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/ProgressListener.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/ProgressMode.txt b/source/sdk/java/api/io/realm/mongodb/sync/ProgressMode.txt index 71a5c9ef99..c4c3e05137 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/ProgressMode.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/ProgressMode.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/Subscription.txt b/source/sdk/java/api/io/realm/mongodb/sync/Subscription.txt index ceeefa0e4d..754e11a2cd 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/Subscription.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/Subscription.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet.txt b/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet.txt index eb33655fc5..d356a5da92 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/State.txt b/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/State.txt index 89ebbf2e3a..531a782037 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/State.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/State.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/StateChangeCallback.txt b/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/StateChangeCallback.txt index 147ebbb9cf..5fd0fbbaad 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/StateChangeCallback.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/StateChangeCallback.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/UpdateAsyncCallback.txt b/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/UpdateAsyncCallback.txt index 3891f02a93..493c318d43 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/UpdateAsyncCallback.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/UpdateAsyncCallback.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/UpdateCallback.txt b/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/UpdateCallback.txt index ed35a96643..1bc534cff8 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/UpdateCallback.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SubscriptionSet/UpdateCallback.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/Sync.txt b/source/sdk/java/api/io/realm/mongodb/sync/Sync.txt index c955378c98..bf39f400f9 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/Sync.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/Sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/Sync/Debug.txt b/source/sdk/java/api/io/realm/mongodb/sync/Sync/Debug.txt index 347cd6a9b4..c9d62c557a 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/Sync/Debug.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/Sync/Debug.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SyncClientResetStrategy.txt b/source/sdk/java/api/io/realm/mongodb/sync/SyncClientResetStrategy.txt index 06a3044d47..0833c35929 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SyncClientResetStrategy.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SyncClientResetStrategy.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SyncConfiguration.txt b/source/sdk/java/api/io/realm/mongodb/sync/SyncConfiguration.txt index 33ad71a01b..5c593205b5 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SyncConfiguration.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SyncConfiguration.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SyncConfiguration/Builder.txt b/source/sdk/java/api/io/realm/mongodb/sync/SyncConfiguration/Builder.txt index 26d874fbb9..c48a0bf3aa 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SyncConfiguration/Builder.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SyncConfiguration/Builder.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SyncConfiguration/InitialFlexibleSyncSubscriptions.txt b/source/sdk/java/api/io/realm/mongodb/sync/SyncConfiguration/InitialFlexibleSyncSubscriptions.txt index 11aa52c3d6..498300e3e2 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SyncConfiguration/InitialFlexibleSyncSubscriptions.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SyncConfiguration/InitialFlexibleSyncSubscriptions.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SyncSession.txt b/source/sdk/java/api/io/realm/mongodb/sync/SyncSession.txt index b1df900f3d..44ace5361f 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SyncSession.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SyncSession.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SyncSession/ClientResetHandler.txt b/source/sdk/java/api/io/realm/mongodb/sync/SyncSession/ClientResetHandler.txt index b3ba88702b..b931c916fc 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SyncSession/ClientResetHandler.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SyncSession/ClientResetHandler.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SyncSession/ErrorHandler.txt b/source/sdk/java/api/io/realm/mongodb/sync/SyncSession/ErrorHandler.txt index 1e63e58062..7c9327c650 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SyncSession/ErrorHandler.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SyncSession/ErrorHandler.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/mongodb/sync/SyncSession/State.txt b/source/sdk/java/api/io/realm/mongodb/sync/SyncSession/State.txt index c8b08e14d7..1a06bd246b 100644 --- a/source/sdk/java/api/io/realm/mongodb/sync/SyncSession/State.txt +++ b/source/sdk/java/api/io/realm/mongodb/sync/SyncSession/State.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/rx.txt b/source/sdk/java/api/io/realm/rx.txt index fe17e536db..7e690598f3 100644 --- a/source/sdk/java/api/io/realm/rx.txt +++ b/source/sdk/java/api/io/realm/rx.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/rx/CollectionChange.txt b/source/sdk/java/api/io/realm/rx/CollectionChange.txt index 9be6d6b05a..e6dc26e2d1 100644 --- a/source/sdk/java/api/io/realm/rx/CollectionChange.txt +++ b/source/sdk/java/api/io/realm/rx/CollectionChange.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/rx/ObjectChange.txt b/source/sdk/java/api/io/realm/rx/ObjectChange.txt index 82dc98ad5f..cb0349eb87 100644 --- a/source/sdk/java/api/io/realm/rx/ObjectChange.txt +++ b/source/sdk/java/api/io/realm/rx/ObjectChange.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/rx/RealmObservableFactory.txt b/source/sdk/java/api/io/realm/rx/RealmObservableFactory.txt index e94c95bf79..f9475e91aa 100644 --- a/source/sdk/java/api/io/realm/rx/RealmObservableFactory.txt +++ b/source/sdk/java/api/io/realm/rx/RealmObservableFactory.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/api/io/realm/rx/RxObservableFactory.txt b/source/sdk/java/api/io/realm/rx/RxObservableFactory.txt index b436053494..f943db91ae 100644 --- a/source/sdk/java/api/io/realm/rx/RxObservableFactory.txt +++ b/source/sdk/java/api/io/realm/rx/RxObservableFactory.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. contents:: On this page :local: diff --git a/source/sdk/java/app-services.txt b/source/sdk/java/app-services.txt index 752f6d8a6d..eae9dda259 100644 --- a/source/sdk/java/app-services.txt +++ b/source/sdk/java/app-services.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + =============================== Application Services - Java SDK =============================== diff --git a/source/sdk/java/app-services/call-a-function.txt b/source/sdk/java/app-services/call-a-function.txt index b1c107b49c..d2b0fb1081 100644 --- a/source/sdk/java/app-services/call-a-function.txt +++ b/source/sdk/java/app-services/call-a-function.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-call-a-function: ========================== diff --git a/source/sdk/java/app-services/connect-to-app-services-backend.txt b/source/sdk/java/app-services/connect-to-app-services-backend.txt index bb9340e6a0..58a0cdf227 100644 --- a/source/sdk/java/app-services/connect-to-app-services-backend.txt +++ b/source/sdk/java/app-services/connect-to-app-services-backend.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-init-appclient: .. _java-connect-to-mongodb-realm-backend-app: diff --git a/source/sdk/java/app-services/mongodb-remote-access.txt b/source/sdk/java/app-services/mongodb-remote-access.txt index 22eaaa758e..c8e6dd84db 100644 --- a/source/sdk/java/app-services/mongodb-remote-access.txt +++ b/source/sdk/java/app-services/mongodb-remote-access.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-mongodb-data-access: ======================== diff --git a/source/sdk/java/async-api.txt b/source/sdk/java/async-api.txt index 06d08a84ea..fe4dea185a 100644 --- a/source/sdk/java/async-api.txt +++ b/source/sdk/java/async-api.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-async-api: =========================== diff --git a/source/sdk/java/crud.txt b/source/sdk/java/crud.txt index b35f7a1e54..5c1958e1fe 100644 --- a/source/sdk/java/crud.txt +++ b/source/sdk/java/crud.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-read-and-write-data: =============== diff --git a/source/sdk/java/crud/create.txt b/source/sdk/java/crud/create.txt index ed49561a50..97c15451fb 100644 --- a/source/sdk/java/crud/create.txt +++ b/source/sdk/java/crud/create.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-create-objects: ======================== diff --git a/source/sdk/java/crud/delete.txt b/source/sdk/java/crud/delete.txt index 95d8210340..e001241e5b 100644 --- a/source/sdk/java/crud/delete.txt +++ b/source/sdk/java/crud/delete.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ======================== CRUD - Delete - Java SDK ======================== diff --git a/source/sdk/java/crud/filter-data.txt b/source/sdk/java/crud/filter-data.txt index e1cda6b00f..dfd78f9670 100644 --- a/source/sdk/java/crud/filter-data.txt +++ b/source/sdk/java/crud/filter-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-filter-data: ====================== diff --git a/source/sdk/java/crud/read.txt b/source/sdk/java/crud/read.txt index 7bbecc1361..b0030fb0d9 100644 --- a/source/sdk/java/crud/read.txt +++ b/source/sdk/java/crud/read.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ====================== CRUD - Read - Java SDK ====================== diff --git a/source/sdk/java/crud/threading.txt b/source/sdk/java/crud/threading.txt index b64da0eaef..630d95ea35 100644 --- a/source/sdk/java/crud/threading.txt +++ b/source/sdk/java/crud/threading.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-threading: ==================== diff --git a/source/sdk/java/crud/update.txt b/source/sdk/java/crud/update.txt index 1df87a8bea..84615b6080 100644 --- a/source/sdk/java/crud/update.txt +++ b/source/sdk/java/crud/update.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-modify-an-object: .. _java-update: diff --git a/source/sdk/java/facets.toml b/source/sdk/java/facets.toml index 34809a2195..3e2912ea74 100644 --- a/source/sdk/java/facets.toml +++ b/source/sdk/java/facets.toml @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + [[facets]] category = "programming_language" value = "java" diff --git a/source/sdk/java/install.txt b/source/sdk/java/install.txt index a25a243114..0358f02b84 100644 --- a/source/sdk/java/install.txt +++ b/source/sdk/java/install.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-install: ======================== diff --git a/source/sdk/java/manage-users.txt b/source/sdk/java/manage-users.txt index 542ca017bd..7bf8245689 100644 --- a/source/sdk/java/manage-users.txt +++ b/source/sdk/java/manage-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ======================= Manage Users - Java SDK ======================= diff --git a/source/sdk/java/migrate/index.txt b/source/sdk/java/migrate/index.txt index d4646955b2..7961270947 100644 --- a/source/sdk/java/migrate/index.txt +++ b/source/sdk/java/migrate/index.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :noprevnext: :orphan: diff --git a/source/sdk/java/model-data.txt b/source/sdk/java/model-data.txt index f8607ae6c7..164f38ecee 100644 --- a/source/sdk/java/model-data.txt +++ b/source/sdk/java/model-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ===================== Model Data - Java SDK ===================== diff --git a/source/sdk/java/model-data/data-types.txt b/source/sdk/java/model-data/data-types.txt index 966eac2000..7b81694ab9 100644 --- a/source/sdk/java/model-data/data-types.txt +++ b/source/sdk/java/model-data/data-types.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-data-types: =========================== diff --git a/source/sdk/java/model-data/data-types/collections.txt b/source/sdk/java/model-data/data-types/collections.txt index 3c8a8a2ddc..d6d8ffe193 100644 --- a/source/sdk/java/model-data/data-types/collections.txt +++ b/source/sdk/java/model-data/data-types/collections.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-client-collections: ====================== diff --git a/source/sdk/java/model-data/data-types/counters.txt b/source/sdk/java/model-data/data-types/counters.txt index cbe2acab37..85c4e052e5 100644 --- a/source/sdk/java/model-data/data-types/counters.txt +++ b/source/sdk/java/model-data/data-types/counters.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-counters: =================== diff --git a/source/sdk/java/model-data/data-types/embedded-objects.txt b/source/sdk/java/model-data/data-types/embedded-objects.txt index 303d51d1d7..80564fcaa7 100644 --- a/source/sdk/java/model-data/data-types/embedded-objects.txt +++ b/source/sdk/java/model-data/data-types/embedded-objects.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-embedded-objects: =========================== diff --git a/source/sdk/java/model-data/data-types/enums.txt b/source/sdk/java/model-data/data-types/enums.txt index b5cdde47a1..fc18d413e2 100644 --- a/source/sdk/java/model-data/data-types/enums.txt +++ b/source/sdk/java/model-data/data-types/enums.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-enum: ======================= diff --git a/source/sdk/java/model-data/data-types/field-types.txt b/source/sdk/java/model-data/data-types/field-types.txt index 57fc071765..a74908a53b 100644 --- a/source/sdk/java/model-data/data-types/field-types.txt +++ b/source/sdk/java/model-data/data-types/field-types.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-field-types: .. _java-supported-data-types: diff --git a/source/sdk/java/model-data/data-types/realmany.txt b/source/sdk/java/model-data/data-types/realmany.txt index 7deefbce31..5d40684282 100644 --- a/source/sdk/java/model-data/data-types/realmany.txt +++ b/source/sdk/java/model-data/data-types/realmany.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-realmany: .. _java-mixed: diff --git a/source/sdk/java/model-data/data-types/realmdictionary.txt b/source/sdk/java/model-data/data-types/realmdictionary.txt index 0a923700a9..981ead9d15 100644 --- a/source/sdk/java/model-data/data-types/realmdictionary.txt +++ b/source/sdk/java/model-data/data-types/realmdictionary.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-realmdictionary: ========================== diff --git a/source/sdk/java/model-data/data-types/realmset.txt b/source/sdk/java/model-data/data-types/realmset.txt index c9009a0986..8f5ba5cf16 100644 --- a/source/sdk/java/model-data/data-types/realmset.txt +++ b/source/sdk/java/model-data/data-types/realmset.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-realmset: =================== diff --git a/source/sdk/java/model-data/define-a-realm-object-model.txt b/source/sdk/java/model-data/define-a-realm-object-model.txt index afb98babe5..a1e0a23bd8 100644 --- a/source/sdk/java/model-data/define-a-realm-object-model.txt +++ b/source/sdk/java/model-data/define-a-realm-object-model.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-define-a-realm-object-schema: .. _java-object-schema: diff --git a/source/sdk/java/model-data/modify-an-object-schema.txt b/source/sdk/java/model-data/modify-an-object-schema.txt index bcc458fd63..d9c0c98090 100644 --- a/source/sdk/java/model-data/modify-an-object-schema.txt +++ b/source/sdk/java/model-data/modify-an-object-schema.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-modify-an-object-schema: .. _java-local-migrations: .. _java-local-migration: diff --git a/source/sdk/java/model-data/relationships.txt b/source/sdk/java/model-data/relationships.txt index 89e7b4c1fe..9229ec67a0 100644 --- a/source/sdk/java/model-data/relationships.txt +++ b/source/sdk/java/model-data/relationships.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-client-relationships: ======================== diff --git a/source/sdk/java/quick-starts.txt b/source/sdk/java/quick-starts.txt index cb8b960dc1..c37c558e3f 100644 --- a/source/sdk/java/quick-starts.txt +++ b/source/sdk/java/quick-starts.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-quick-starts: ======================= diff --git a/source/sdk/java/quick-starts/livedata.txt b/source/sdk/java/quick-starts/livedata.txt index 1647189ab8..309054a01a 100644 --- a/source/sdk/java/quick-starts/livedata.txt +++ b/source/sdk/java/quick-starts/livedata.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-livedata-quick-start: ==================================== diff --git a/source/sdk/java/quick-starts/quick-start-local.txt b/source/sdk/java/quick-starts/quick-start-local.txt index 286dee5f7c..04ba8a3150 100644 --- a/source/sdk/java/quick-starts/quick-start-local.txt +++ b/source/sdk/java/quick-starts/quick-start-local.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-client-quick-start: .. _java-client-quick-start-local: diff --git a/source/sdk/java/quick-starts/quick-start-sync.txt b/source/sdk/java/quick-starts/quick-start-sync.txt index 5e9d0f5964..b58d24f7cc 100644 --- a/source/sdk/java/quick-starts/quick-start-sync.txt +++ b/source/sdk/java/quick-starts/quick-start-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-client-quick-start-sync: ================================ diff --git a/source/sdk/java/react-to-changes.txt b/source/sdk/java/react-to-changes.txt index 79c5f488af..cd464bba16 100644 --- a/source/sdk/java/react-to-changes.txt +++ b/source/sdk/java/react-to-changes.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-react-to-changes: .. _java-client-notifications: .. _java-live-queries: diff --git a/source/sdk/java/realm-files.txt b/source/sdk/java/realm-files.txt index 3792307495..044ed40229 100644 --- a/source/sdk/java/realm-files.txt +++ b/source/sdk/java/realm-files.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-realms: ================================ diff --git a/source/sdk/java/realm-files/bundle-a-realm.txt b/source/sdk/java/realm-files/bundle-a-realm.txt index 71fdcb3a45..67ef1b76bd 100644 --- a/source/sdk/java/realm-files/bundle-a-realm.txt +++ b/source/sdk/java/realm-files/bundle-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-bundle-a-realm: ============================== diff --git a/source/sdk/java/realm-files/encryption.txt b/source/sdk/java/realm-files/encryption.txt index dcf6949dcf..6c2e241c7d 100644 --- a/source/sdk/java/realm-files/encryption.txt +++ b/source/sdk/java/realm-files/encryption.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-encrypt-a-realm: ========================== diff --git a/source/sdk/java/realm-files/open-and-close-a-realm.txt b/source/sdk/java/realm-files/open-and-close-a-realm.txt index 99d9526855..73f7a8a6e8 100644 --- a/source/sdk/java/realm-files/open-and-close-a-realm.txt +++ b/source/sdk/java/realm-files/open-and-close-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-open-close-realm: .. _java-realm-types: diff --git a/source/sdk/java/sync.txt b/source/sdk/java/sync.txt index 625c552084..1c277b1c19 100644 --- a/source/sdk/java/sync.txt +++ b/source/sdk/java/sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-sync-changes-between-devices: .. _java-realm-sync: diff --git a/source/sdk/java/sync/background-sync.txt b/source/sdk/java/sync/background-sync.txt index abf49dd5dc..b982cdf6f0 100644 --- a/source/sdk/java/sync/background-sync.txt +++ b/source/sdk/java/sync/background-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-sync-a-realm-background: ========================================= diff --git a/source/sdk/java/sync/configure-and-open-a-synced-realm.txt b/source/sdk/java/sync/configure-and-open-a-synced-realm.txt index ddf3c80349..ac2be4e2e9 100644 --- a/source/sdk/java/sync/configure-and-open-a-synced-realm.txt +++ b/source/sdk/java/sync/configure-and-open-a-synced-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-open-a-synced-realm: =================================== diff --git a/source/sdk/java/sync/flexible-sync.txt b/source/sdk/java/sync/flexible-sync.txt index ac12c59704..c0e7434072 100644 --- a/source/sdk/java/sync/flexible-sync.txt +++ b/source/sdk/java/sync/flexible-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-flexible-sync: ============================================= diff --git a/source/sdk/java/sync/handle-sync-errors.txt b/source/sdk/java/sync/handle-sync-errors.txt index 7d80643009..250e5d531d 100644 --- a/source/sdk/java/sync/handle-sync-errors.txt +++ b/source/sdk/java/sync/handle-sync-errors.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-handle-sync-errors: ============================= diff --git a/source/sdk/java/sync/manual-client-reset-data-recovery.txt b/source/sdk/java/sync/manual-client-reset-data-recovery.txt index 28d30b905d..67f94360be 100644 --- a/source/sdk/java/sync/manual-client-reset-data-recovery.txt +++ b/source/sdk/java/sync/manual-client-reset-data-recovery.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-advanced-manual-client-reset-data-recovery: ============================================ diff --git a/source/sdk/java/sync/network-connection.txt b/source/sdk/java/sync/network-connection.txt index d59c382d83..6afa4aa6e9 100644 --- a/source/sdk/java/sync/network-connection.txt +++ b/source/sdk/java/sync/network-connection.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-check-network-connection: =============================================== diff --git a/source/sdk/java/sync/partition-based-sync.txt b/source/sdk/java/sync/partition-based-sync.txt index 99786c98db..aaf8b14c8f 100644 --- a/source/sdk/java/sync/partition-based-sync.txt +++ b/source/sdk/java/sync/partition-based-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-partition-based-sync: =============================== diff --git a/source/sdk/java/sync/pause-resume-sync.txt b/source/sdk/java/sync/pause-resume-sync.txt index 63fb68742e..68c2072d35 100644 --- a/source/sdk/java/sync/pause-resume-sync.txt +++ b/source/sdk/java/sync/pause-resume-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-pause-or-resume-a-sync-session: ========================================= diff --git a/source/sdk/java/sync/reset-a-client-realm.txt b/source/sdk/java/sync/reset-a-client-realm.txt index 8dba201088..3fd175817b 100644 --- a/source/sdk/java/sync/reset-a-client-realm.txt +++ b/source/sdk/java/sync/reset-a-client-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-client-resets: .. _java-reset-a-client-realm-file: diff --git a/source/sdk/java/sync/sync-progress.txt b/source/sdk/java/sync/sync-progress.txt index 7e57b8f3e4..1bbfcb158b 100644 --- a/source/sdk/java/sync/sync-progress.txt +++ b/source/sdk/java/sync/sync-progress.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-check-sync-progress: ============================================================== diff --git a/source/sdk/java/telemetry.txt b/source/sdk/java/telemetry.txt index 38dd1e0bb1..b6b9c385ec 100644 --- a/source/sdk/java/telemetry.txt +++ b/source/sdk/java/telemetry.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _telemetry-java: ==================== diff --git a/source/sdk/java/test-and-debug.txt b/source/sdk/java/test-and-debug.txt index ea9e0d00f5..e87185b344 100644 --- a/source/sdk/java/test-and-debug.txt +++ b/source/sdk/java/test-and-debug.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-test-and-debug: ========================== diff --git a/source/sdk/java/test-and-debug/debugging.txt b/source/sdk/java/test-and-debug/debugging.txt index 95e63f706a..db3eb67dd5 100644 --- a/source/sdk/java/test-and-debug/debugging.txt +++ b/source/sdk/java/test-and-debug/debugging.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-debugging: ==================== diff --git a/source/sdk/java/test-and-debug/log-realm-events.txt b/source/sdk/java/test-and-debug/log-realm-events.txt index fee3291df8..19a43a60cd 100644 --- a/source/sdk/java/test-and-debug/log-realm-events.txt +++ b/source/sdk/java/test-and-debug/log-realm-events.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-log-realm-events: =========================== diff --git a/source/sdk/java/test-and-debug/testing.txt b/source/sdk/java/test-and-debug/testing.txt index 3ddfffcf1d..a9e63b732a 100644 --- a/source/sdk/java/test-and-debug/testing.txt +++ b/source/sdk/java/test-and-debug/testing.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-testing: ================== diff --git a/source/sdk/java/test-and-debug/troubleshooting.txt b/source/sdk/java/test-and-debug/troubleshooting.txt index 7f847aff66..f84a938044 100644 --- a/source/sdk/java/test-and-debug/troubleshooting.txt +++ b/source/sdk/java/test-and-debug/troubleshooting.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-troubleshooting: ========================== diff --git a/source/sdk/java/troubleshooting.txt b/source/sdk/java/troubleshooting.txt index a9b7de0749..80309719b9 100644 --- a/source/sdk/java/troubleshooting.txt +++ b/source/sdk/java/troubleshooting.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-troubleshooting: ========================== diff --git a/source/sdk/java/users/authenticate-users.txt b/source/sdk/java/users/authenticate-users.txt index 9dbaa1c60f..1371d1ce92 100644 --- a/source/sdk/java/users/authenticate-users.txt +++ b/source/sdk/java/users/authenticate-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-authenticate-users: .. _java-authenticate: diff --git a/source/sdk/java/users/create-delete-users.txt b/source/sdk/java/users/create-delete-users.txt index bed9b2a309..8a459f1549 100644 --- a/source/sdk/java/users/create-delete-users.txt +++ b/source/sdk/java/users/create-delete-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-create-and-delete-users: ================================== diff --git a/source/sdk/java/users/custom-user-data.txt b/source/sdk/java/users/custom-user-data.txt index ba3a8c6906..50c4f91a29 100644 --- a/source/sdk/java/users/custom-user-data.txt +++ b/source/sdk/java/users/custom-user-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-custom-user-data: =========================== diff --git a/source/sdk/java/users/email-password-users.txt b/source/sdk/java/users/email-password-users.txt index 11b0750b63..40520803a7 100644 --- a/source/sdk/java/users/email-password-users.txt +++ b/source/sdk/java/users/email-password-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-manage-email-password-users: ====================================== diff --git a/source/sdk/java/users/link-user-identities.txt b/source/sdk/java/users/link-user-identities.txt index 31faa56b48..fdd1b87078 100644 --- a/source/sdk/java/users/link-user-identities.txt +++ b/source/sdk/java/users/link-user-identities.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-link-user-identities: =============================== diff --git a/source/sdk/java/users/manage-user-api-keys.txt b/source/sdk/java/users/manage-user-api-keys.txt index 0d269c1207..e0ba3a5c67 100644 --- a/source/sdk/java/users/manage-user-api-keys.txt +++ b/source/sdk/java/users/manage-user-api-keys.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-manage-user-api-keys: =============================== diff --git a/source/sdk/java/users/multi-user-applications.txt b/source/sdk/java/users/multi-user-applications.txt index 63f14b559d..83717e5ae0 100644 --- a/source/sdk/java/users/multi-user-applications.txt +++ b/source/sdk/java/users/multi-user-applications.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _java-multi-user-applications: ================================== diff --git a/source/sdk/kotlin.txt b/source/sdk/kotlin.txt index d9e8a26736..a44b2b3bf3 100644 --- a/source/sdk/kotlin.txt +++ b/source/sdk/kotlin.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :template: product-landing :hidefeedback: header :noprevnext: @@ -17,8 +20,6 @@ Atlas Device SDK for Kotlin .. toctree:: :titlesonly: - Install - Quick Start Realm Connect to Atlas Manage Users diff --git a/source/sdk/kotlin/app-services.txt b/source/sdk/kotlin/app-services.txt index dd9d9bc996..d4608153f2 100644 --- a/source/sdk/kotlin/app-services.txt +++ b/source/sdk/kotlin/app-services.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-app-services: .. _kotlin-mongodb-realm-cloud: .. _kotlin-application-services: diff --git a/source/sdk/kotlin/app-services/call-function.txt b/source/sdk/kotlin/app-services/call-function.txt index 52f83bd9de..b902e2e56a 100644 --- a/source/sdk/kotlin/app-services/call-function.txt +++ b/source/sdk/kotlin/app-services/call-function.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-call-function: =================================== diff --git a/source/sdk/kotlin/app-services/connect-to-app-services-backend.txt b/source/sdk/kotlin/app-services/connect-to-app-services-backend.txt index 95dafa069d..2534f1cb13 100644 --- a/source/sdk/kotlin/app-services/connect-to-app-services-backend.txt +++ b/source/sdk/kotlin/app-services/connect-to-app-services-backend.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-connect-to-backend: ========================================== diff --git a/source/sdk/kotlin/app-services/handle-app-errors.txt b/source/sdk/kotlin/app-services/handle-app-errors.txt index 67824c9824..40631f90ae 100644 --- a/source/sdk/kotlin/app-services/handle-app-errors.txt +++ b/source/sdk/kotlin/app-services/handle-app-errors.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-app-errors: ============================== diff --git a/source/sdk/kotlin/facets.toml b/source/sdk/kotlin/facets.toml index 80be44bbba..3e70efb265 100644 --- a/source/sdk/kotlin/facets.toml +++ b/source/sdk/kotlin/facets.toml @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + [[facets]] category = "programming_language" value = "kotlin" diff --git a/source/sdk/kotlin/install.txt b/source/sdk/kotlin/install.txt index 6107de26c3..4348c7a46c 100644 --- a/source/sdk/kotlin/install.txt +++ b/source/sdk/kotlin/install.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-install: ====================== diff --git a/source/sdk/kotlin/logging.txt b/source/sdk/kotlin/logging.txt index d3b505e761..e37438aeed 100644 --- a/source/sdk/kotlin/logging.txt +++ b/source/sdk/kotlin/logging.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-logging: .. _kotlin-set-custom-logger: diff --git a/source/sdk/kotlin/migrate-from-java-sdk-to-kotlin-sdk.txt b/source/sdk/kotlin/migrate-from-java-sdk-to-kotlin-sdk.txt index 9a0d60f0d3..37a3ed8b43 100644 --- a/source/sdk/kotlin/migrate-from-java-sdk-to-kotlin-sdk.txt +++ b/source/sdk/kotlin/migrate-from-java-sdk-to-kotlin-sdk.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-migrate-from-java-sdk-to-kotlin-sdk: =========================================== diff --git a/source/sdk/kotlin/quick-start.txt b/source/sdk/kotlin/quick-start.txt index 91e0560eae..b4d2ce697f 100644 --- a/source/sdk/kotlin/quick-start.txt +++ b/source/sdk/kotlin/quick-start.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-client-quick-start: .. _kotlin-client-quick-start-local: diff --git a/source/sdk/kotlin/realm-database.txt b/source/sdk/kotlin/realm-database.txt index 1d969238ea..5752b6893f 100644 --- a/source/sdk/kotlin/realm-database.txt +++ b/source/sdk/kotlin/realm-database.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ================== Realm - Kotlin SDK ================== diff --git a/source/sdk/kotlin/realm-database/crud.txt b/source/sdk/kotlin/realm-database/crud.txt index e2b40f054f..5571b7128f 100644 --- a/source/sdk/kotlin/realm-database/crud.txt +++ b/source/sdk/kotlin/realm-database/crud.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-read-write-data: ============================== diff --git a/source/sdk/kotlin/realm-database/crud/create.txt b/source/sdk/kotlin/realm-database/crud/create.txt index da651f85f4..0b3cfcb419 100644 --- a/source/sdk/kotlin/realm-database/crud/create.txt +++ b/source/sdk/kotlin/realm-database/crud/create.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-create-a-new-object: ================================= diff --git a/source/sdk/kotlin/realm-database/crud/delete.txt b/source/sdk/kotlin/realm-database/crud/delete.txt index 6924586a2a..d76125b2b9 100644 --- a/source/sdk/kotlin/realm-database/crud/delete.txt +++ b/source/sdk/kotlin/realm-database/crud/delete.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-delete-objects: ================================= diff --git a/source/sdk/kotlin/realm-database/crud/read.txt b/source/sdk/kotlin/realm-database/crud/read.txt index e2d4ed3a28..f0898524e5 100644 --- a/source/sdk/kotlin/realm-database/crud/read.txt +++ b/source/sdk/kotlin/realm-database/crud/read.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-read-objects: .. _kotlin-filter-data: diff --git a/source/sdk/kotlin/realm-database/crud/update.txt b/source/sdk/kotlin/realm-database/crud/update.txt index 41fb4ce980..fd6b15b414 100644 --- a/source/sdk/kotlin/realm-database/crud/update.txt +++ b/source/sdk/kotlin/realm-database/crud/update.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-update-objects: ================================= diff --git a/source/sdk/kotlin/realm-database/errors.txt b/source/sdk/kotlin/realm-database/errors.txt index 79ee351107..875b811ee5 100644 --- a/source/sdk/kotlin/realm-database/errors.txt +++ b/source/sdk/kotlin/realm-database/errors.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-errors: ================================ diff --git a/source/sdk/kotlin/realm-database/frozen-arch.txt b/source/sdk/kotlin/realm-database/frozen-arch.txt index 16afa1a299..1070dcc4b4 100644 --- a/source/sdk/kotlin/realm-database/frozen-arch.txt +++ b/source/sdk/kotlin/realm-database/frozen-arch.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-frozen-architecture: ================================ diff --git a/source/sdk/kotlin/realm-database/open-and-close-a-realm.txt b/source/sdk/kotlin/realm-database/open-and-close-a-realm.txt index 01a29700f3..746c48a007 100644 --- a/source/sdk/kotlin/realm-database/open-and-close-a-realm.txt +++ b/source/sdk/kotlin/realm-database/open-and-close-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-open-and-close-a-realm: ===================================== diff --git a/source/sdk/kotlin/realm-database/react-to-changes.txt b/source/sdk/kotlin/realm-database/react-to-changes.txt index a00b302c6f..b2904ebe54 100644 --- a/source/sdk/kotlin/realm-database/react-to-changes.txt +++ b/source/sdk/kotlin/realm-database/react-to-changes.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-react-to-changes: ============================= diff --git a/source/sdk/kotlin/realm-database/realm-files.txt b/source/sdk/kotlin/realm-database/realm-files.txt index c770da42eb..3fbc257f2f 100644 --- a/source/sdk/kotlin/realm-database/realm-files.txt +++ b/source/sdk/kotlin/realm-database/realm-files.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-manage-realm-files: =============================== diff --git a/source/sdk/kotlin/realm-database/realm-files/bundle-a-realm.txt b/source/sdk/kotlin/realm-database/realm-files/bundle-a-realm.txt index bad8619342..c633a70866 100644 --- a/source/sdk/kotlin/realm-database/realm-files/bundle-a-realm.txt +++ b/source/sdk/kotlin/realm-database/realm-files/bundle-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-bundle-a-realm: =========================== diff --git a/source/sdk/kotlin/realm-database/realm-files/compact-realm.txt b/source/sdk/kotlin/realm-database/realm-files/compact-realm.txt index 3bfe6ba79c..31e0a18803 100644 --- a/source/sdk/kotlin/realm-database/realm-files/compact-realm.txt +++ b/source/sdk/kotlin/realm-database/realm-files/compact-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-compact-realm: =================================== diff --git a/source/sdk/kotlin/realm-database/realm-files/delete-a-realm.txt b/source/sdk/kotlin/realm-database/realm-files/delete-a-realm.txt index a7d22e917c..25bc597b08 100644 --- a/source/sdk/kotlin/realm-database/realm-files/delete-a-realm.txt +++ b/source/sdk/kotlin/realm-database/realm-files/delete-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-delete-a-realm: =========================== diff --git a/source/sdk/kotlin/realm-database/realm-files/encrypt-a-realm.txt b/source/sdk/kotlin/realm-database/realm-files/encrypt-a-realm.txt index f0e9300c2e..47a23eed7c 100644 --- a/source/sdk/kotlin/realm-database/realm-files/encrypt-a-realm.txt +++ b/source/sdk/kotlin/realm-database/realm-files/encrypt-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-encrypt-a-realm: ============================ diff --git a/source/sdk/kotlin/realm-database/schemas.txt b/source/sdk/kotlin/realm-database/schemas.txt index 55ff1d08c2..c4ebefb73b 100644 --- a/source/sdk/kotlin/realm-database/schemas.txt +++ b/source/sdk/kotlin/realm-database/schemas.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ======================= Model Data - Kotlin SDK ======================= diff --git a/source/sdk/kotlin/realm-database/schemas/change-an-object-model.txt b/source/sdk/kotlin/realm-database/schemas/change-an-object-model.txt index ece22a5c6b..ed0add7afc 100644 --- a/source/sdk/kotlin/realm-database/schemas/change-an-object-model.txt +++ b/source/sdk/kotlin/realm-database/schemas/change-an-object-model.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-schema-versions-and-migrations: .. _kotlin-change-object-model: diff --git a/source/sdk/kotlin/realm-database/schemas/define-realm-object-model.txt b/source/sdk/kotlin/realm-database/schemas/define-realm-object-model.txt index f37b0a4367..e423bc5a1a 100644 --- a/source/sdk/kotlin/realm-database/schemas/define-realm-object-model.txt +++ b/source/sdk/kotlin/realm-database/schemas/define-realm-object-model.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-define-object-model: .. _kotlin-model-data: diff --git a/source/sdk/kotlin/realm-database/schemas/geospatials.txt b/source/sdk/kotlin/realm-database/schemas/geospatials.txt index 969bcf8564..839218ffb7 100644 --- a/source/sdk/kotlin/realm-database/schemas/geospatials.txt +++ b/source/sdk/kotlin/realm-database/schemas/geospatials.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-geospatial: ============================ diff --git a/source/sdk/kotlin/realm-database/schemas/model-data-device-sync.txt b/source/sdk/kotlin/realm-database/schemas/model-data-device-sync.txt index aef9fdae9d..7f02872834 100644 --- a/source/sdk/kotlin/realm-database/schemas/model-data-device-sync.txt +++ b/source/sdk/kotlin/realm-database/schemas/model-data-device-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-model-data-device-sync: ======================================== diff --git a/source/sdk/kotlin/realm-database/schemas/property-annotations.txt b/source/sdk/kotlin/realm-database/schemas/property-annotations.txt index a9818f737e..69a4713ce4 100644 --- a/source/sdk/kotlin/realm-database/schemas/property-annotations.txt +++ b/source/sdk/kotlin/realm-database/schemas/property-annotations.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-property-annotations: ================================= diff --git a/source/sdk/kotlin/realm-database/schemas/relationships.txt b/source/sdk/kotlin/realm-database/schemas/relationships.txt index 7ef433957a..7a2ef4dc43 100644 --- a/source/sdk/kotlin/realm-database/schemas/relationships.txt +++ b/source/sdk/kotlin/realm-database/schemas/relationships.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-relationships: .. _kotlin-reference-realm-object: diff --git a/source/sdk/kotlin/realm-database/schemas/supported-types.txt b/source/sdk/kotlin/realm-database/schemas/supported-types.txt index 72ac14e5cd..9449e05816 100644 --- a/source/sdk/kotlin/realm-database/schemas/supported-types.txt +++ b/source/sdk/kotlin/realm-database/schemas/supported-types.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-supported-types: .. _kotlin-additional-types: diff --git a/source/sdk/kotlin/realm-database/serialization.txt b/source/sdk/kotlin/realm-database/serialization.txt index 02b6771165..e4bdd7349b 100644 --- a/source/sdk/kotlin/realm-database/serialization.txt +++ b/source/sdk/kotlin/realm-database/serialization.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-serialization: ========================== diff --git a/source/sdk/kotlin/sync.txt b/source/sdk/kotlin/sync.txt index 41c84d6cc0..7eb53a61c3 100644 --- a/source/sdk/kotlin/sync.txt +++ b/source/sdk/kotlin/sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ======================== Device Sync - Kotlin SDK ======================== diff --git a/source/sdk/kotlin/sync/add-sync-to-app.txt b/source/sdk/kotlin/sync/add-sync-to-app.txt index 32b9df23b1..9355dea432 100644 --- a/source/sdk/kotlin/sync/add-sync-to-app.txt +++ b/source/sdk/kotlin/sync/add-sync-to-app.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-add-sync-to-app: .. _kotlin-sync: .. _kotlin-sync-overview: diff --git a/source/sdk/kotlin/sync/background-sync.txt b/source/sdk/kotlin/sync/background-sync.txt index 30535dec3d..9f5563ceda 100644 --- a/source/sdk/kotlin/sync/background-sync.txt +++ b/source/sdk/kotlin/sync/background-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-background-sync: ======================================== diff --git a/source/sdk/kotlin/sync/handle-sync-errors.txt b/source/sdk/kotlin/sync/handle-sync-errors.txt index c902232467..6e3a9b8a31 100644 --- a/source/sdk/kotlin/sync/handle-sync-errors.txt +++ b/source/sdk/kotlin/sync/handle-sync-errors.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-handle-sync-errors: =============================== diff --git a/source/sdk/kotlin/sync/log-level.txt b/source/sdk/kotlin/sync/log-level.txt index 0a1f004bd0..0c401df57f 100644 --- a/source/sdk/kotlin/sync/log-level.txt +++ b/source/sdk/kotlin/sync/log-level.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-client-log-level: ===================================== diff --git a/source/sdk/kotlin/sync/manage-sync-session.txt b/source/sdk/kotlin/sync/manage-sync-session.txt index c5af0e4ec5..68089b55e6 100644 --- a/source/sdk/kotlin/sync/manage-sync-session.txt +++ b/source/sdk/kotlin/sync/manage-sync-session.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-manage-sync-session: ================================== diff --git a/source/sdk/kotlin/sync/open-a-synced-realm.txt b/source/sdk/kotlin/sync/open-a-synced-realm.txt index 36aaae5a7d..7726e193c6 100644 --- a/source/sdk/kotlin/sync/open-a-synced-realm.txt +++ b/source/sdk/kotlin/sync/open-a-synced-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-open-a-synced-realm: ============================================ diff --git a/source/sdk/kotlin/sync/partition-based-sync.txt b/source/sdk/kotlin/sync/partition-based-sync.txt index 0b90c11bd9..da24b67cca 100644 --- a/source/sdk/kotlin/sync/partition-based-sync.txt +++ b/source/sdk/kotlin/sync/partition-based-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-partition-based-sync: ================================= diff --git a/source/sdk/kotlin/sync/stream-data-to-atlas.txt b/source/sdk/kotlin/sync/stream-data-to-atlas.txt index f788c18c8a..dbe0b4a719 100644 --- a/source/sdk/kotlin/sync/stream-data-to-atlas.txt +++ b/source/sdk/kotlin/sync/stream-data-to-atlas.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-stream-data-to-atlas: ================================= diff --git a/source/sdk/kotlin/sync/subscribe.txt b/source/sdk/kotlin/sync/subscribe.txt index df2b2ea716..f662a68d86 100644 --- a/source/sdk/kotlin/sync/subscribe.txt +++ b/source/sdk/kotlin/sync/subscribe.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-subscriptions: ====================================== diff --git a/source/sdk/kotlin/sync/write-to-synced-realm.txt b/source/sdk/kotlin/sync/write-to-synced-realm.txt index 30248ba5d0..b98d4a64f7 100644 --- a/source/sdk/kotlin/sync/write-to-synced-realm.txt +++ b/source/sdk/kotlin/sync/write-to-synced-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-write-synced-realm: ========================================= diff --git a/source/sdk/kotlin/telemetry.txt b/source/sdk/kotlin/telemetry.txt index b47ba391a6..e12fc7abcd 100644 --- a/source/sdk/kotlin/telemetry.txt +++ b/source/sdk/kotlin/telemetry.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _telemetry-kotlin: ====================== diff --git a/source/sdk/kotlin/troubleshooting.txt b/source/sdk/kotlin/troubleshooting.txt index e7a9519020..84bc2a25bd 100644 --- a/source/sdk/kotlin/troubleshooting.txt +++ b/source/sdk/kotlin/troubleshooting.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-troubleshooting: ============================ diff --git a/source/sdk/kotlin/users.txt b/source/sdk/kotlin/users.txt index 2186304447..5df39f2a21 100644 --- a/source/sdk/kotlin/users.txt +++ b/source/sdk/kotlin/users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ============================= Manage Users - Kotlin SDK ============================= diff --git a/source/sdk/kotlin/users/authenticate-users.txt b/source/sdk/kotlin/users/authenticate-users.txt index 4837e92f4f..4c81bc0027 100644 --- a/source/sdk/kotlin/users/authenticate-users.txt +++ b/source/sdk/kotlin/users/authenticate-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-authenticate: .. _kotlin-authenticate-users: .. _kotlin-create-users: diff --git a/source/sdk/kotlin/users/custom-user-data.txt b/source/sdk/kotlin/users/custom-user-data.txt index c240caae1f..92fe76225d 100644 --- a/source/sdk/kotlin/users/custom-user-data.txt +++ b/source/sdk/kotlin/users/custom-user-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-custom-user-data: ==================================== diff --git a/source/sdk/kotlin/users/delete-users.txt b/source/sdk/kotlin/users/delete-users.txt index 439a6a69be..fcf583b190 100644 --- a/source/sdk/kotlin/users/delete-users.txt +++ b/source/sdk/kotlin/users/delete-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-delete-users: .. _kotlin-creating-and-deleting-users: diff --git a/source/sdk/kotlin/users/link-credentials.txt b/source/sdk/kotlin/users/link-credentials.txt index 52bc54ba0d..66a33a8751 100644 --- a/source/sdk/kotlin/users/link-credentials.txt +++ b/source/sdk/kotlin/users/link-credentials.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-link-user-identities: ================================= diff --git a/source/sdk/kotlin/users/manage-email-password-users.txt b/source/sdk/kotlin/users/manage-email-password-users.txt index e592f97955..3a5af59d39 100644 --- a/source/sdk/kotlin/users/manage-email-password-users.txt +++ b/source/sdk/kotlin/users/manage-email-password-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-manage-email-password-users: .. _kotlin-register-users: diff --git a/source/sdk/kotlin/users/manage-user-api-keys.txt b/source/sdk/kotlin/users/manage-user-api-keys.txt index a9d33310d9..bfbb4ad2bb 100644 --- a/source/sdk/kotlin/users/manage-user-api-keys.txt +++ b/source/sdk/kotlin/users/manage-user-api-keys.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-manage-user-api-keys: ================================= diff --git a/source/sdk/kotlin/users/multi-user-applications.txt b/source/sdk/kotlin/users/multi-user-applications.txt index 1112eb6888..95e6d822f6 100644 --- a/source/sdk/kotlin/users/multi-user-applications.txt +++ b/source/sdk/kotlin/users/multi-user-applications.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-multi-user-applications: =========================================== diff --git a/source/sdk/kotlin/users/user-metadata.txt b/source/sdk/kotlin/users/user-metadata.txt index 91d8e49d32..ada9cfe551 100644 --- a/source/sdk/kotlin/users/user-metadata.txt +++ b/source/sdk/kotlin/users/user-metadata.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _kotlin-user-metadata: ================================= diff --git a/source/sdk/node.txt b/source/sdk/node.txt index 9c98452b21..1cd9c9e8f4 100644 --- a/source/sdk/node.txt +++ b/source/sdk/node.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :template: product-landing :hidefeedback: header :noprevnext: @@ -16,8 +19,6 @@ Atlas Device SDK for Node.js :titlesonly: :hidden: - Install - Quick Start Realm Files Model Data CRUD diff --git a/source/sdk/node/app-services.txt b/source/sdk/node/app-services.txt index b7c2d13aeb..b6bf7c08f9 100644 --- a/source/sdk/node/app-services.txt +++ b/source/sdk/node/app-services.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ================================== Application Services - Node.js SDK ================================== diff --git a/source/sdk/node/app-services/call-a-function.txt b/source/sdk/node/app-services/call-a-function.txt index 74555f6606..266b54d430 100644 --- a/source/sdk/node/app-services/call-a-function.txt +++ b/source/sdk/node/app-services/call-a-function.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-call-a-function: ============================= diff --git a/source/sdk/node/app-services/connect-to-app-services-backend.txt b/source/sdk/node/app-services/connect-to-app-services-backend.txt index e4937a2a26..08adb68f4f 100644 --- a/source/sdk/node/app-services/connect-to-app-services-backend.txt +++ b/source/sdk/node/app-services/connect-to-app-services-backend.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-connect-to-mongodb-realm-backend-app: ====================================================== diff --git a/source/sdk/node/app-services/query-mongodb.txt b/source/sdk/node/app-services/query-mongodb.txt index 718efecc9f..a500309803 100644 --- a/source/sdk/node/app-services/query-mongodb.txt +++ b/source/sdk/node/app-services/query-mongodb.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-access-a-linked-mongodb-cluster: .. _node-mongodb-data-access: .. _node-mongodb-remote-access: diff --git a/source/sdk/node/crud.txt b/source/sdk/node/crud.txt index f1eb141ed6..ec484de03c 100644 --- a/source/sdk/node/crud.txt +++ b/source/sdk/node/crud.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-write-operations: .. _node-realm-database-writes: .. _node-write-transactions: diff --git a/source/sdk/node/crud/create.txt b/source/sdk/node/crud/create.txt index aa09b90b92..5ba09bfab8 100644 --- a/source/sdk/node/crud/create.txt +++ b/source/sdk/node/crud/create.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-create-objects: =========================== diff --git a/source/sdk/node/crud/delete.txt b/source/sdk/node/crud/delete.txt index 4cbc8a9dc9..f793562af7 100644 --- a/source/sdk/node/crud/delete.txt +++ b/source/sdk/node/crud/delete.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-delete-operations: =========================== diff --git a/source/sdk/node/crud/query-data.txt b/source/sdk/node/crud/query-data.txt index f7769970ee..71ca6b1a1c 100644 --- a/source/sdk/node/crud/query-data.txt +++ b/source/sdk/node/crud/query-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-client-query-engine: .. _node-query-data: .. _node-live-queries: diff --git a/source/sdk/node/crud/read.txt b/source/sdk/node/crud/read.txt index 67d7db227e..1b145bad68 100644 --- a/source/sdk/node/crud/read.txt +++ b/source/sdk/node/crud/read.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-read-operations: .. _node-realm-database-reads: diff --git a/source/sdk/node/crud/update.txt b/source/sdk/node/crud/update.txt index e8f1286e38..dfbdbfc005 100644 --- a/source/sdk/node/crud/update.txt +++ b/source/sdk/node/crud/update.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-update-operations: =========================== diff --git a/source/sdk/node/facets.toml b/source/sdk/node/facets.toml index 476669d037..c614bc1748 100644 --- a/source/sdk/node/facets.toml +++ b/source/sdk/node/facets.toml @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + [[facets]] category = "programming_language" value = "javascript/typescript" diff --git a/source/sdk/node/install.txt b/source/sdk/node/install.txt index 0b09ef281d..39f457cfc4 100644 --- a/source/sdk/node/install.txt +++ b/source/sdk/node/install.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-install: ======================= diff --git a/source/sdk/node/integrations.txt b/source/sdk/node/integrations.txt index 9b6016d4a8..8e82e703cf 100644 --- a/source/sdk/node/integrations.txt +++ b/source/sdk/node/integrations.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :orphan: ================================ diff --git a/source/sdk/node/integrations/electron-cra.txt b/source/sdk/node/integrations/electron-cra.txt index 28de9b1568..012e7ccfab 100644 --- a/source/sdk/node/integrations/electron-cra.txt +++ b/source/sdk/node/integrations/electron-cra.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :orphan: .. _node-electron-cra-client-quick-start: diff --git a/source/sdk/node/integrations/electron.txt b/source/sdk/node/integrations/electron.txt index 2c00aa83f8..3023ae15fe 100644 --- a/source/sdk/node/integrations/electron.txt +++ b/source/sdk/node/integrations/electron.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :orphan: .. _node-electron-client-quick-start: diff --git a/source/sdk/node/logging.txt b/source/sdk/node/logging.txt index 01c7b2a502..9b5f999419 100644 --- a/source/sdk/node/logging.txt +++ b/source/sdk/node/logging.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-logging: ===================== diff --git a/source/sdk/node/manage-users.txt b/source/sdk/node/manage-users.txt index b3aa52fd76..1f0e2bf9a4 100644 --- a/source/sdk/node/manage-users.txt +++ b/source/sdk/node/manage-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ========================== Manage Users - Node.js SDK ========================== diff --git a/source/sdk/node/migrate/index.txt b/source/sdk/node/migrate/index.txt index cc7c11958f..ec9522c8eb 100644 --- a/source/sdk/node/migrate/index.txt +++ b/source/sdk/node/migrate/index.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :noprevnext: :orphan: diff --git a/source/sdk/node/model-data.txt b/source/sdk/node/model-data.txt index 83f2d96d29..93a0c0c2f4 100644 --- a/source/sdk/node/model-data.txt +++ b/source/sdk/node/model-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ======================== Model Data - Node.js SDK ======================== diff --git a/source/sdk/node/model-data/data-types.txt b/source/sdk/node/model-data/data-types.txt index 856edc27be..5736d3247f 100644 --- a/source/sdk/node/model-data/data-types.txt +++ b/source/sdk/node/model-data/data-types.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-data-types: ============================== diff --git a/source/sdk/node/model-data/data-types/collections.txt b/source/sdk/node/model-data/data-types/collections.txt index 4b71557931..6fa127a469 100644 --- a/source/sdk/node/model-data/data-types/collections.txt +++ b/source/sdk/node/model-data/data-types/collections.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-data-types-collections: ========================= diff --git a/source/sdk/node/model-data/data-types/counters.txt b/source/sdk/node/model-data/data-types/counters.txt index 511f7edefa..171297d57d 100644 --- a/source/sdk/node/model-data/data-types/counters.txt +++ b/source/sdk/node/model-data/data-types/counters.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-data-types-counters: .. _javascript-sdk-data-types-counters: diff --git a/source/sdk/node/model-data/data-types/dictionaries.txt b/source/sdk/node/model-data/data-types/dictionaries.txt index ce36d14380..492ead10cf 100644 --- a/source/sdk/node/model-data/data-types/dictionaries.txt +++ b/source/sdk/node/model-data/data-types/dictionaries.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-data-types-dictionaries: ========================== diff --git a/source/sdk/node/model-data/data-types/embedded-objects.txt b/source/sdk/node/model-data/data-types/embedded-objects.txt index 661a2f2480..97e6531775 100644 --- a/source/sdk/node/model-data/data-types/embedded-objects.txt +++ b/source/sdk/node/model-data/data-types/embedded-objects.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-data-types-embedded-objects: ============================== diff --git a/source/sdk/node/model-data/data-types/field-types.txt b/source/sdk/node/model-data/data-types/field-types.txt index 77b9d04fb5..d60f8a24d4 100644 --- a/source/sdk/node/model-data/data-types/field-types.txt +++ b/source/sdk/node/model-data/data-types/field-types.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-data-types-field-types: ========================= diff --git a/source/sdk/node/model-data/data-types/geospatial.txt b/source/sdk/node/model-data/data-types/geospatial.txt index 9835d660b5..0b12b0d412 100644 --- a/source/sdk/node/model-data/data-types/geospatial.txt +++ b/source/sdk/node/model-data/data-types/geospatial.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-data-types-geospatial: ======================== diff --git a/source/sdk/node/model-data/data-types/mixed.txt b/source/sdk/node/model-data/data-types/mixed.txt index cac603c76a..d713af5715 100644 --- a/source/sdk/node/model-data/data-types/mixed.txt +++ b/source/sdk/node/model-data/data-types/mixed.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-data-types-mixed: =================== diff --git a/source/sdk/node/model-data/data-types/sets.txt b/source/sdk/node/model-data/data-types/sets.txt index c26885c826..02120d379b 100644 --- a/source/sdk/node/model-data/data-types/sets.txt +++ b/source/sdk/node/model-data/data-types/sets.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-data-types-sets: ================== diff --git a/source/sdk/node/model-data/data-types/uuid.txt b/source/sdk/node/model-data/data-types/uuid.txt index cbf6506d4c..7179bf780c 100644 --- a/source/sdk/node/model-data/data-types/uuid.txt +++ b/source/sdk/node/model-data/data-types/uuid.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-data-types-uuid: ================== diff --git a/source/sdk/node/model-data/define-a-realm-object-model.txt b/source/sdk/node/model-data/define-a-realm-object-model.txt index 4936374476..551da285d3 100644 --- a/source/sdk/node/model-data/define-a-realm-object-model.txt +++ b/source/sdk/node/model-data/define-a-realm-object-model.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-define-a-realm-object-schema: ========================================= diff --git a/source/sdk/node/model-data/modify-an-object-schema.txt b/source/sdk/node/model-data/modify-an-object-schema.txt index 47accf2b6d..edbb113d72 100644 --- a/source/sdk/node/model-data/modify-an-object-schema.txt +++ b/source/sdk/node/model-data/modify-an-object-schema.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-modify-an-object-schema: .. _node-schema-versions-and-migrations: diff --git a/source/sdk/node/model-data/relationships-and-embedded-objects.txt b/source/sdk/node/model-data/relationships-and-embedded-objects.txt index 0c41baabef..fe67c3b9db 100644 --- a/source/sdk/node/model-data/relationships-and-embedded-objects.txt +++ b/source/sdk/node/model-data/relationships-and-embedded-objects.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-relationships-and-embedded-objects: ============================================== diff --git a/source/sdk/node/quick-start.txt b/source/sdk/node/quick-start.txt index 89eaf5959e..02ab45fc23 100644 --- a/source/sdk/node/quick-start.txt +++ b/source/sdk/node/quick-start.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-client-quick-start-local: .. _node-client-quick-start: diff --git a/source/sdk/node/react-to-changes.txt b/source/sdk/node/react-to-changes.txt index 40e2e541dc..b30b3994d7 100644 --- a/source/sdk/node/react-to-changes.txt +++ b/source/sdk/node/react-to-changes.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-react-to-changes: .. _node-change-notifications: diff --git a/source/sdk/node/realm-files.txt b/source/sdk/node/realm-files.txt index 26f7403481..18f0e40fea 100644 --- a/source/sdk/node/realm-files.txt +++ b/source/sdk/node/realm-files.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + =================================== Work with Realm Files - Node.js SDK =================================== diff --git a/source/sdk/node/realm-files/bundle.txt b/source/sdk/node/realm-files/bundle.txt index 246feb9528..b726f6abac 100644 --- a/source/sdk/node/realm-files/bundle.txt +++ b/source/sdk/node/realm-files/bundle.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-bundle-a-realm: ============================== diff --git a/source/sdk/node/realm-files/compact-realm.txt b/source/sdk/node/realm-files/compact-realm.txt index 878cad9694..6917e6c947 100644 --- a/source/sdk/node/realm-files/compact-realm.txt +++ b/source/sdk/node/realm-files/compact-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-compact-a-realm: ===================================== diff --git a/source/sdk/node/realm-files/encrypt.txt b/source/sdk/node/realm-files/encrypt.txt index af3e38b37f..e4fa52be81 100644 --- a/source/sdk/node/realm-files/encrypt.txt +++ b/source/sdk/node/realm-files/encrypt.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-encrypt-a-realm: ============================= diff --git a/source/sdk/node/realm-files/open-and-close-a-realm.txt b/source/sdk/node/realm-files/open-and-close-a-realm.txt index c9be36570d..884c378366 100644 --- a/source/sdk/node/realm-files/open-and-close-a-realm.txt +++ b/source/sdk/node/realm-files/open-and-close-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-open-close-realm: ================================================ diff --git a/source/sdk/node/sync.txt b/source/sdk/node/sync.txt index ddbccbfd36..998635b169 100644 --- a/source/sdk/node/sync.txt +++ b/source/sdk/node/sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ======================================= Sync Data Between Devices - Node.js SDK ======================================= diff --git a/source/sdk/node/sync/client-reset-data-recovery.txt b/source/sdk/node/sync/client-reset-data-recovery.txt index 6df72b2f44..712a38df84 100644 --- a/source/sdk/node/sync/client-reset-data-recovery.txt +++ b/source/sdk/node/sync/client-reset-data-recovery.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-advanced-manual-client-reset-data-recovery: =============================================== diff --git a/source/sdk/node/sync/configure-and-open-a-synced-realm.txt b/source/sdk/node/sync/configure-and-open-a-synced-realm.txt index 3133345845..a86e677d6b 100644 --- a/source/sdk/node/sync/configure-and-open-a-synced-realm.txt +++ b/source/sdk/node/sync/configure-and-open-a-synced-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-open-a-synced-realm: .. _node-sync-changes-between-devices: diff --git a/source/sdk/node/sync/flexible-sync.txt b/source/sdk/node/sync/flexible-sync.txt index b0e223a4d8..3ee0235d5b 100644 --- a/source/sdk/node/sync/flexible-sync.txt +++ b/source/sdk/node/sync/flexible-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-flexible-sync: ======================================= diff --git a/source/sdk/node/sync/handle-sync-errors.txt b/source/sdk/node/sync/handle-sync-errors.txt index a92137ca8e..2b97249b83 100644 --- a/source/sdk/node/sync/handle-sync-errors.txt +++ b/source/sdk/node/sync/handle-sync-errors.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-handle-sync-errors: .. _node-client-resets: diff --git a/source/sdk/node/sync/log-level.txt b/source/sdk/node/sync/log-level.txt index e0ad9c9604..c2f45ba5a9 100644 --- a/source/sdk/node/sync/log-level.txt +++ b/source/sdk/node/sync/log-level.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-client-log-level: ====================================== diff --git a/source/sdk/node/sync/manage-sync-session.txt b/source/sdk/node/sync/manage-sync-session.txt index aa2bd68cc0..1f586e24d5 100644 --- a/source/sdk/node/sync/manage-sync-session.txt +++ b/source/sdk/node/sync/manage-sync-session.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-manage-sync-session: ============================================ diff --git a/source/sdk/node/sync/partition-based-sync.txt b/source/sdk/node/sync/partition-based-sync.txt index d2780526c4..710ce27ea6 100644 --- a/source/sdk/node/sync/partition-based-sync.txt +++ b/source/sdk/node/sync/partition-based-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-partition-based-sync: ================================== diff --git a/source/sdk/node/sync/stream-data-to-atlas.txt b/source/sdk/node/sync/stream-data-to-atlas.txt index d72417534b..8f748da9dc 100644 --- a/source/sdk/node/sync/stream-data-to-atlas.txt +++ b/source/sdk/node/sync/stream-data-to-atlas.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-stream-data-to-atlas: ================================== diff --git a/source/sdk/node/telemetry.txt b/source/sdk/node/telemetry.txt index 497a2e8a6b..d2d528c270 100644 --- a/source/sdk/node/telemetry.txt +++ b/source/sdk/node/telemetry.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _telemetry-node: ======================= diff --git a/source/sdk/node/users/access-custom-user-data.txt b/source/sdk/node/users/access-custom-user-data.txt index b4c7209fb4..0d525facf4 100644 --- a/source/sdk/node/users/access-custom-user-data.txt +++ b/source/sdk/node/users/access-custom-user-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-access-custom-user-data: ===================================== diff --git a/source/sdk/node/users/authenticate-users.txt b/source/sdk/node/users/authenticate-users.txt index 28ecef3a23..d50d026f98 100644 --- a/source/sdk/node/users/authenticate-users.txt +++ b/source/sdk/node/users/authenticate-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-authenticate-users: ================================ diff --git a/source/sdk/node/users/create-delete-users.txt b/source/sdk/node/users/create-delete-users.txt index bc654ea894..501e1a8037 100644 --- a/source/sdk/node/users/create-delete-users.txt +++ b/source/sdk/node/users/create-delete-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-create-and-delete-users: ================================== diff --git a/source/sdk/node/users/link-identities.txt b/source/sdk/node/users/link-identities.txt index 732c7e0199..59af782da1 100644 --- a/source/sdk/node/users/link-identities.txt +++ b/source/sdk/node/users/link-identities.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-link-user-identities: ================================== diff --git a/source/sdk/node/users/manage-email-password-users.txt b/source/sdk/node/users/manage-email-password-users.txt index 1d4ffe6cc0..15945321fe 100644 --- a/source/sdk/node/users/manage-email-password-users.txt +++ b/source/sdk/node/users/manage-email-password-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-manage-email-password-users: ========================================= diff --git a/source/sdk/node/users/manage-user-api-keys.txt b/source/sdk/node/users/manage-user-api-keys.txt index 0fd1056940..3c2cf47225 100644 --- a/source/sdk/node/users/manage-user-api-keys.txt +++ b/source/sdk/node/users/manage-user-api-keys.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-manage-user-api-keys: .. _node-create-manage-api-keys: diff --git a/source/sdk/node/users/multi-user-applications.txt b/source/sdk/node/users/multi-user-applications.txt index 8daf921fb4..0b974937de 100644 --- a/source/sdk/node/users/multi-user-applications.txt +++ b/source/sdk/node/users/multi-user-applications.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-multi-user-applications: ===================================== diff --git a/source/sdk/node/users/user-metadata.txt b/source/sdk/node/users/user-metadata.txt index 4d08e9a0f9..fbca5a6e3c 100644 --- a/source/sdk/node/users/user-metadata.txt +++ b/source/sdk/node/users/user-metadata.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _node-user-metadata: =========================== diff --git a/source/sdk/react-native.txt b/source/sdk/react-native.txt index 646d0fce79..b6bdff9445 100644 --- a/source/sdk/react-native.txt +++ b/source/sdk/react-native.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :template: product-landing :hidefeedback: header :noprevnext: @@ -21,9 +24,6 @@ Atlas Device SDK for React Native :titlesonly: :hidden: - Install - Quick Start - Bootstrap with Expo Realm Files Model Data CRUD diff --git a/source/sdk/react-native/api-reference.txt b/source/sdk/react-native/api-reference.txt index fda31a8532..be31267dc0 100644 --- a/source/sdk/react-native/api-reference.txt +++ b/source/sdk/react-native/api-reference.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ================================ API Reference - React Native SDK ================================ diff --git a/source/sdk/react-native/api-reference/app-provider.txt b/source/sdk/react-native/api-reference/app-provider.txt index 7fc1dbadb0..78972dbc3f 100644 --- a/source/sdk/react-native/api-reference/app-provider.txt +++ b/source/sdk/react-native/api-reference/app-provider.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-app-provider: ========================== diff --git a/source/sdk/react-native/api-reference/realm-provider.txt b/source/sdk/react-native/api-reference/realm-provider.txt index 57573b3e3e..ed9418754b 100644 --- a/source/sdk/react-native/api-reference/realm-provider.txt +++ b/source/sdk/react-native/api-reference/realm-provider.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-realm-provider: .. _react-native-use-realm-react: diff --git a/source/sdk/react-native/api-reference/user-provider.txt b/source/sdk/react-native/api-reference/user-provider.txt index 10670ef5a8..8c8a169da8 100644 --- a/source/sdk/react-native/api-reference/user-provider.txt +++ b/source/sdk/react-native/api-reference/user-provider.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-user-provider: =========================== diff --git a/source/sdk/react-native/app-services.txt b/source/sdk/react-native/app-services.txt index e562f5a371..fc41525636 100644 --- a/source/sdk/react-native/app-services.txt +++ b/source/sdk/react-native/app-services.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-mongodb-realm-cloud: .. _react-native-application-services: diff --git a/source/sdk/react-native/app-services/call-a-function.txt b/source/sdk/react-native/app-services/call-a-function.txt index fc3a29de39..8f53445dfe 100644 --- a/source/sdk/react-native/app-services/call-a-function.txt +++ b/source/sdk/react-native/app-services/call-a-function.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-call-a-function: ================================== diff --git a/source/sdk/react-native/app-services/connect-to-app-services-app.txt b/source/sdk/react-native/app-services/connect-to-app-services-app.txt index a8782989f3..47c621c401 100644 --- a/source/sdk/react-native/app-services/connect-to-app-services-app.txt +++ b/source/sdk/react-native/app-services/connect-to-app-services-app.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-connect-to-mongodb-realm-backend-app: ======================================================= diff --git a/source/sdk/react-native/app-services/query-mongodb.txt b/source/sdk/react-native/app-services/query-mongodb.txt index 5d3d57070d..c3b7e4a524 100644 --- a/source/sdk/react-native/app-services/query-mongodb.txt +++ b/source/sdk/react-native/app-services/query-mongodb.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-access-a-linked-mongodb-cluster: .. _react-native-mongodb-data-access: .. _react-native-mongodb-remote-access: diff --git a/source/sdk/react-native/bootstrap-with-expo.txt b/source/sdk/react-native/bootstrap-with-expo.txt index f287d835fc..0650476b6f 100644 --- a/source/sdk/react-native/bootstrap-with-expo.txt +++ b/source/sdk/react-native/bootstrap-with-expo.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-client-bootstrap-with-expo: ====================================== diff --git a/source/sdk/react-native/crud.txt b/source/sdk/react-native/crud.txt index 431f972947..063965444e 100644 --- a/source/sdk/react-native/crud.txt +++ b/source/sdk/react-native/crud.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-realm-database-writes: .. _react-native-write-transactions: diff --git a/source/sdk/react-native/crud/create.txt b/source/sdk/react-native/crud/create.txt index 0f31656cf8..2c832bc45b 100644 --- a/source/sdk/react-native/crud/create.txt +++ b/source/sdk/react-native/crud/create.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-create-objects: .. _react-native-create-a-new-object: diff --git a/source/sdk/react-native/crud/delete.txt b/source/sdk/react-native/crud/delete.txt index b865dc4349..1c999abbb5 100644 --- a/source/sdk/react-native/crud/delete.txt +++ b/source/sdk/react-native/crud/delete.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-delete-objects: ================================ diff --git a/source/sdk/react-native/crud/query-data.txt b/source/sdk/react-native/crud/query-data.txt index 7bed79aaa4..4175036ae1 100644 --- a/source/sdk/react-native/crud/query-data.txt +++ b/source/sdk/react-native/crud/query-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-client-query-engine: .. _react-native-query-data: .. _react-native-live-queries: diff --git a/source/sdk/react-native/crud/read.txt b/source/sdk/react-native/crud/read.txt index 7588cef45f..67be932523 100644 --- a/source/sdk/react-native/crud/read.txt +++ b/source/sdk/react-native/crud/read.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-read-objects: .. _react-native-realm-database-reads: .. _react-native-live-objects: diff --git a/source/sdk/react-native/crud/update.txt b/source/sdk/react-native/crud/update.txt index 03fd662307..b62087d188 100644 --- a/source/sdk/react-native/crud/update.txt +++ b/source/sdk/react-native/crud/update.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-update-objects: ================================ diff --git a/source/sdk/react-native/facets.toml b/source/sdk/react-native/facets.toml index c22b4b9627..9877b0a260 100644 --- a/source/sdk/react-native/facets.toml +++ b/source/sdk/react-native/facets.toml @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + [[facets]] category = "programming_language" value = "javascript/typescript" diff --git a/source/sdk/react-native/install.txt b/source/sdk/react-native/install.txt index 94075670a0..a3709fa47c 100644 --- a/source/sdk/react-native/install.txt +++ b/source/sdk/react-native/install.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-install: ============================ diff --git a/source/sdk/react-native/integrations.txt b/source/sdk/react-native/integrations.txt index 8bde33954c..3c2e6b78cb 100644 --- a/source/sdk/react-native/integrations.txt +++ b/source/sdk/react-native/integrations.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ===================================== Realm Integrations - React Native SDK ===================================== diff --git a/source/sdk/react-native/integrations/mac-catalyst.txt b/source/sdk/react-native/integrations/mac-catalyst.txt index 7d12e5f628..63a474f435 100644 --- a/source/sdk/react-native/integrations/mac-catalyst.txt +++ b/source/sdk/react-native/integrations/mac-catalyst.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-mac-catalyst: ======================== diff --git a/source/sdk/react-native/logging.txt b/source/sdk/react-native/logging.txt index e8ed39c951..9636b757f0 100644 --- a/source/sdk/react-native/logging.txt +++ b/source/sdk/react-native/logging.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-logging: ========================== diff --git a/source/sdk/react-native/manage-users.txt b/source/sdk/react-native/manage-users.txt index ffcf42db75..3879bb31e8 100644 --- a/source/sdk/react-native/manage-users.txt +++ b/source/sdk/react-native/manage-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + =============================== Manage Users - React Native SDK =============================== diff --git a/source/sdk/react-native/manage-users/authenticate-users.txt b/source/sdk/react-native/manage-users/authenticate-users.txt index b70c464284..aca4fd797a 100644 --- a/source/sdk/react-native/manage-users/authenticate-users.txt +++ b/source/sdk/react-native/manage-users/authenticate-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-authenticate-users: ===================================== diff --git a/source/sdk/react-native/manage-users/create-and-delete-users.txt b/source/sdk/react-native/manage-users/create-and-delete-users.txt index 28571eb2b1..865bc9ceb5 100644 --- a/source/sdk/react-native/manage-users/create-and-delete-users.txt +++ b/source/sdk/react-native/manage-users/create-and-delete-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-create-and-delete-users: ========================================== diff --git a/source/sdk/react-native/manage-users/custom-user-data.txt b/source/sdk/react-native/manage-users/custom-user-data.txt index 680b4a59f4..13bd807f37 100644 --- a/source/sdk/react-native/manage-users/custom-user-data.txt +++ b/source/sdk/react-native/manage-users/custom-user-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-access-custom-user-data: =================================== diff --git a/source/sdk/react-native/manage-users/link-user-identities.txt b/source/sdk/react-native/manage-users/link-user-identities.txt index 05d98bee95..44f103608b 100644 --- a/source/sdk/react-native/manage-users/link-user-identities.txt +++ b/source/sdk/react-native/manage-users/link-user-identities.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-link-user-identities: ======================================= diff --git a/source/sdk/react-native/manage-users/manage-email-password-users.txt b/source/sdk/react-native/manage-users/manage-email-password-users.txt index f09febf1f3..acc7942982 100644 --- a/source/sdk/react-native/manage-users/manage-email-password-users.txt +++ b/source/sdk/react-native/manage-users/manage-email-password-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-manage-email-password-users: ============================================== diff --git a/source/sdk/react-native/manage-users/manage-user-api-keys.txt b/source/sdk/react-native/manage-users/manage-user-api-keys.txt index cfdf45c805..2238c7d3c2 100644 --- a/source/sdk/react-native/manage-users/manage-user-api-keys.txt +++ b/source/sdk/react-native/manage-users/manage-user-api-keys.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-manage-user-api-keys: .. _react-native-create-manage-api-keys: diff --git a/source/sdk/react-native/manage-users/multi-user-applications.txt b/source/sdk/react-native/manage-users/multi-user-applications.txt index 326b84b635..4124e6f2a4 100644 --- a/source/sdk/react-native/manage-users/multi-user-applications.txt +++ b/source/sdk/react-native/manage-users/multi-user-applications.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-multi-user-applications: ========================================== diff --git a/source/sdk/react-native/migrate/index.txt b/source/sdk/react-native/migrate/index.txt index ad94727baa..a91be35dad 100644 --- a/source/sdk/react-native/migrate/index.txt +++ b/source/sdk/react-native/migrate/index.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :noprevnext: :orphan: diff --git a/source/sdk/react-native/model-data.txt b/source/sdk/react-native/model-data.txt index 5c4d302d0a..ae67c3faf3 100644 --- a/source/sdk/react-native/model-data.txt +++ b/source/sdk/react-native/model-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-model-data: .. _react-native-schemas-overview: diff --git a/source/sdk/react-native/model-data/change-an-object-model.txt b/source/sdk/react-native/model-data/change-an-object-model.txt index e0cf9b1ca3..d171797524 100644 --- a/source/sdk/react-native/model-data/change-an-object-model.txt +++ b/source/sdk/react-native/model-data/change-an-object-model.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-schema-versions-and-migrations: ========================================= diff --git a/source/sdk/react-native/model-data/data-types.txt b/source/sdk/react-native/model-data/data-types.txt index 8965b79932..dd466a51b5 100644 --- a/source/sdk/react-native/model-data/data-types.txt +++ b/source/sdk/react-native/model-data/data-types.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + =================================== Realm Data Types - React Native SDK =================================== diff --git a/source/sdk/react-native/model-data/data-types/collections.txt b/source/sdk/react-native/model-data/data-types/collections.txt index 7c38b14cb7..d102d0d215 100644 --- a/source/sdk/react-native/model-data/data-types/collections.txt +++ b/source/sdk/react-native/model-data/data-types/collections.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-data-types-collections: ============================== diff --git a/source/sdk/react-native/model-data/data-types/dictionaries.txt b/source/sdk/react-native/model-data/data-types/dictionaries.txt index 7f7bbfc718..df4d908e72 100644 --- a/source/sdk/react-native/model-data/data-types/dictionaries.txt +++ b/source/sdk/react-native/model-data/data-types/dictionaries.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-data-types-dictionaries: =============================== diff --git a/source/sdk/react-native/model-data/data-types/embedded-objects.txt b/source/sdk/react-native/model-data/data-types/embedded-objects.txt index eb0f826ab6..0d83d08ca0 100644 --- a/source/sdk/react-native/model-data/data-types/embedded-objects.txt +++ b/source/sdk/react-native/model-data/data-types/embedded-objects.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-data-types-embedded-objects: .. _react-native-define-an-embedded-object-property: diff --git a/source/sdk/react-native/model-data/data-types/geospatial.txt b/source/sdk/react-native/model-data/data-types/geospatial.txt index d4d4ba479a..c37246cd4e 100644 --- a/source/sdk/react-native/model-data/data-types/geospatial.txt +++ b/source/sdk/react-native/model-data/data-types/geospatial.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-data-types-geospatial: ============================= diff --git a/source/sdk/react-native/model-data/data-types/mixed.txt b/source/sdk/react-native/model-data/data-types/mixed.txt index 8a07c225b1..d8640c07aa 100644 --- a/source/sdk/react-native/model-data/data-types/mixed.txt +++ b/source/sdk/react-native/model-data/data-types/mixed.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-nativedata-types-mixed: ======================== diff --git a/source/sdk/react-native/model-data/data-types/property-types.txt b/source/sdk/react-native/model-data/data-types/property-types.txt index 427069ea5d..26ab75f74c 100644 --- a/source/sdk/react-native/model-data/data-types/property-types.txt +++ b/source/sdk/react-native/model-data/data-types/property-types.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-nativedata-types-field-types: .. _react-native-supported-property-types: .. _react-native-data-types: diff --git a/source/sdk/react-native/model-data/data-types/sets.txt b/source/sdk/react-native/model-data/data-types/sets.txt index 9c8d7cd8bd..8d02e2ef5f 100644 --- a/source/sdk/react-native/model-data/data-types/sets.txt +++ b/source/sdk/react-native/model-data/data-types/sets.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-data-types-sets: ======================= diff --git a/source/sdk/react-native/model-data/data-types/uuid.txt b/source/sdk/react-native/model-data/data-types/uuid.txt index f067926e5d..4dd7c0a95c 100644 --- a/source/sdk/react-native/model-data/data-types/uuid.txt +++ b/source/sdk/react-native/model-data/data-types/uuid.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-data-types-uuid: ======================= diff --git a/source/sdk/react-native/model-data/define-a-realm-object-model.txt b/source/sdk/react-native/model-data/define-a-realm-object-model.txt index c7ec2c6e84..951c333241 100644 --- a/source/sdk/react-native/model-data/define-a-realm-object-model.txt +++ b/source/sdk/react-native/model-data/define-a-realm-object-model.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-define-a-realm-object-schema: .. _react-native-define-a-realm-object-model: diff --git a/source/sdk/react-native/model-data/relationships-and-embedded-objects.txt b/source/sdk/react-native/model-data/relationships-and-embedded-objects.txt index 98afca3aef..38909c690c 100644 --- a/source/sdk/react-native/model-data/relationships-and-embedded-objects.txt +++ b/source/sdk/react-native/model-data/relationships-and-embedded-objects.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-relationships: =================================================== diff --git a/source/sdk/react-native/quick-start.txt b/source/sdk/react-native/quick-start.txt index c7a11b2f69..510de74683 100644 --- a/source/sdk/react-native/quick-start.txt +++ b/source/sdk/react-native/quick-start.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-client-quick-start-local: .. _react-native-client-quick-start: diff --git a/source/sdk/react-native/react-to-changes.txt b/source/sdk/react-native/react-to-changes.txt index cf62c1fc5a..e59fb78605 100644 --- a/source/sdk/react-native/react-to-changes.txt +++ b/source/sdk/react-native/react-to-changes.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-react-to-changes: .. _react-native-change-notifications: diff --git a/source/sdk/react-native/realm-files.txt b/source/sdk/react-native/realm-files.txt index b78a74401c..e01e2fb919 100644 --- a/source/sdk/react-native/realm-files.txt +++ b/source/sdk/react-native/realm-files.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ======================================== Work with Realm Files - React Native SDK ======================================== diff --git a/source/sdk/react-native/realm-files/bundle.txt b/source/sdk/react-native/realm-files/bundle.txt index 67a1db3ae8..4bcb300775 100644 --- a/source/sdk/react-native/realm-files/bundle.txt +++ b/source/sdk/react-native/realm-files/bundle.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-bundle-a-realm: ====================================== diff --git a/source/sdk/react-native/realm-files/compact-realm.txt b/source/sdk/react-native/realm-files/compact-realm.txt index 292344eb61..48f0ce5d80 100644 --- a/source/sdk/react-native/realm-files/compact-realm.txt +++ b/source/sdk/react-native/realm-files/compact-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _rn-compact-a-realm: ========================================= diff --git a/source/sdk/react-native/realm-files/configure-a-realm.txt b/source/sdk/react-native/realm-files/configure-a-realm.txt index d47533d205..d7a2e7493d 100644 --- a/source/sdk/react-native/realm-files/configure-a-realm.txt +++ b/source/sdk/react-native/realm-files/configure-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-configure-realm: ==================================== diff --git a/source/sdk/react-native/realm-files/encrypt.txt b/source/sdk/react-native/realm-files/encrypt.txt index aaaa57807f..3e1eacb56b 100644 --- a/source/sdk/react-native/realm-files/encrypt.txt +++ b/source/sdk/react-native/realm-files/encrypt.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-encrypt-a-realm: ================================== diff --git a/source/sdk/react-native/sync-data.txt b/source/sdk/react-native/sync-data.txt index 5a21d02b7b..14e8e92909 100644 --- a/source/sdk/react-native/sync-data.txt +++ b/source/sdk/react-native/sync-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-realm-sync: ============================================ diff --git a/source/sdk/react-native/sync-data/client-reset-data-recovery.txt b/source/sdk/react-native/sync-data/client-reset-data-recovery.txt index cbafb7d159..d14bd6921d 100644 --- a/source/sdk/react-native/sync-data/client-reset-data-recovery.txt +++ b/source/sdk/react-native/sync-data/client-reset-data-recovery.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-advanced-manual-client-reset-data-recovery: ==================================================== diff --git a/source/sdk/react-native/sync-data/configure-a-synced-realm.txt b/source/sdk/react-native/sync-data/configure-a-synced-realm.txt index 66881fe150..658d7ec569 100644 --- a/source/sdk/react-native/sync-data/configure-a-synced-realm.txt +++ b/source/sdk/react-native/sync-data/configure-a-synced-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-open-a-synced-realm: .. _react-native-realms: .. _react-native-synced-realm: diff --git a/source/sdk/react-native/sync-data/flexible-sync.txt b/source/sdk/react-native/sync-data/flexible-sync.txt index f5ddac04c9..b8b75698e4 100644 --- a/source/sdk/react-native/sync-data/flexible-sync.txt +++ b/source/sdk/react-native/sync-data/flexible-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-flexible-sync: ============================================ diff --git a/source/sdk/react-native/sync-data/handle-sync-errors.txt b/source/sdk/react-native/sync-data/handle-sync-errors.txt index 5573c78a53..9141918e98 100644 --- a/source/sdk/react-native/sync-data/handle-sync-errors.txt +++ b/source/sdk/react-native/sync-data/handle-sync-errors.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-handle-sync-errors: ===================================== diff --git a/source/sdk/react-native/sync-data/log-level.txt b/source/sdk/react-native/sync-data/log-level.txt index f095c428d0..bf934bb845 100644 --- a/source/sdk/react-native/sync-data/log-level.txt +++ b/source/sdk/react-native/sync-data/log-level.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-set-the-client-log-level: .. _react-native-client-log-level: diff --git a/source/sdk/react-native/sync-data/manage-sync-session.txt b/source/sdk/react-native/sync-data/manage-sync-session.txt index 3aee4e99ad..0f73bc004d 100644 --- a/source/sdk/react-native/sync-data/manage-sync-session.txt +++ b/source/sdk/react-native/sync-data/manage-sync-session.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-manage-sync-session: ======================================== diff --git a/source/sdk/react-native/sync-data/partition-based-sync.txt b/source/sdk/react-native/sync-data/partition-based-sync.txt index f458414e17..12dea587ee 100644 --- a/source/sdk/react-native/sync-data/partition-based-sync.txt +++ b/source/sdk/react-native/sync-data/partition-based-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-partition-realms: ======================================= diff --git a/source/sdk/react-native/sync-data/stream-data-to-atlas.txt b/source/sdk/react-native/sync-data/stream-data-to-atlas.txt index 7889f18c06..4f34e25afa 100644 --- a/source/sdk/react-native/sync-data/stream-data-to-atlas.txt +++ b/source/sdk/react-native/sync-data/stream-data-to-atlas.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-stream-data-to-atlas: ======================================= diff --git a/source/sdk/react-native/telemetry.txt b/source/sdk/react-native/telemetry.txt index 0b7fa51315..e4f1dfb262 100644 --- a/source/sdk/react-native/telemetry.txt +++ b/source/sdk/react-native/telemetry.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _telemetry-react-native: ============================ diff --git a/source/sdk/react-native/test-and-debug.txt b/source/sdk/react-native/test-and-debug.txt index 9411e90d5a..c26d35523f 100644 --- a/source/sdk/react-native/test-and-debug.txt +++ b/source/sdk/react-native/test-and-debug.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ======================================= Test & Debug - React Native SDK ======================================= diff --git a/source/sdk/react-native/test-and-debug/testing.txt b/source/sdk/react-native/test-and-debug/testing.txt index 66ab65751c..48945de5ec 100644 --- a/source/sdk/react-native/test-and-debug/testing.txt +++ b/source/sdk/react-native/test-and-debug/testing.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-test-and-debug: .. _react-native-test: diff --git a/source/sdk/react-native/test-and-debug/troubleshooting.txt b/source/sdk/react-native/test-and-debug/troubleshooting.txt index 18d66754cf..5359eb2f8b 100644 --- a/source/sdk/react-native/test-and-debug/troubleshooting.txt +++ b/source/sdk/react-native/test-and-debug/troubleshooting.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _react-native-troubleshooting: ================================== diff --git a/source/sdk/swift.txt b/source/sdk/swift.txt index 377eac8b35..a6f32decfe 100644 --- a/source/sdk/swift.txt +++ b/source/sdk/swift.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + :template: product-landing :hidefeedback: header :noprevnext: @@ -20,8 +23,6 @@ Atlas Device SDK for Swift .. toctree:: :titlesonly: - Install - Quick Start Realm Files Model Data CRUD diff --git a/source/sdk/swift/api-reference.txt b/source/sdk/swift/api-reference.txt index 7ff0a5a6a8..062077fdd4 100644 --- a/source/sdk/swift/api-reference.txt +++ b/source/sdk/swift/api-reference.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ========================= API Reference - Swift SDK ========================= diff --git a/source/sdk/swift/app-services/call-a-function.txt b/source/sdk/swift/app-services/call-a-function.txt index 9bb6414da7..40bcdfd958 100644 --- a/source/sdk/swift/app-services/call-a-function.txt +++ b/source/sdk/swift/app-services/call-a-function.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-call-a-function: =========================== diff --git a/source/sdk/swift/app-services/connect-to-app-services-backend.txt b/source/sdk/swift/app-services/connect-to-app-services-backend.txt index 019fb8ac7b..93e1115523 100644 --- a/source/sdk/swift/app-services/connect-to-app-services-backend.txt +++ b/source/sdk/swift/app-services/connect-to-app-services-backend.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-init-appclient: .. _ios-connect-to-a-mongodb-realm-backend-app: diff --git a/source/sdk/swift/app-services/mongodb-remote-access.txt b/source/sdk/swift/app-services/mongodb-remote-access.txt index 5204cbd743..e30ac9aa62 100644 --- a/source/sdk/swift/app-services/mongodb-remote-access.txt +++ b/source/sdk/swift/app-services/mongodb-remote-access.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-mongodb-remote-access: .. _ios-mongodb-data-access: diff --git a/source/sdk/swift/application-services.txt b/source/sdk/swift/application-services.txt index bcee1775d8..94536078db 100644 --- a/source/sdk/swift/application-services.txt +++ b/source/sdk/swift/application-services.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-mongodb-realm-cloud: .. _ios-application-services: diff --git a/source/sdk/swift/crud.txt b/source/sdk/swift/crud.txt index 3cd4a67d31..e777adfd88 100644 --- a/source/sdk/swift/crud.txt +++ b/source/sdk/swift/crud.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-read-and-write-data: .. _ios-write-operations: diff --git a/source/sdk/swift/crud/create.txt b/source/sdk/swift/crud/create.txt index 7e07064d0b..fc1f94767b 100644 --- a/source/sdk/swift/crud/create.txt +++ b/source/sdk/swift/crud/create.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-crud-create: ========================= diff --git a/source/sdk/swift/crud/delete.txt b/source/sdk/swift/crud/delete.txt index c9e0df4a95..000b7f0fca 100644 --- a/source/sdk/swift/crud/delete.txt +++ b/source/sdk/swift/crud/delete.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-crud-delete: .. _ios-delete-an-object: diff --git a/source/sdk/swift/crud/filter-data.txt b/source/sdk/swift/crud/filter-data.txt index af5ecb7eb5..f12af0baee 100644 --- a/source/sdk/swift/crud/filter-data.txt +++ b/source/sdk/swift/crud/filter-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-client-query-engine: .. _ios-filter-data: diff --git a/source/sdk/swift/crud/read.txt b/source/sdk/swift/crud/read.txt index 13b6bd088f..357fa8ff50 100644 --- a/source/sdk/swift/crud/read.txt +++ b/source/sdk/swift/crud/read.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-crud-read: .. _ios-realm-database-reads: .. _ios-live-queries: diff --git a/source/sdk/swift/crud/threading.txt b/source/sdk/swift/crud/threading.txt index f91c1bcef2..6bfa51581c 100644 --- a/source/sdk/swift/crud/threading.txt +++ b/source/sdk/swift/crud/threading.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-client-threading: ===================== diff --git a/source/sdk/swift/crud/update.txt b/source/sdk/swift/crud/update.txt index 63d180d4bf..9601921626 100644 --- a/source/sdk/swift/crud/update.txt +++ b/source/sdk/swift/crud/update.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-crud-update: .. _ios-modify-an-object: diff --git a/source/sdk/swift/facets.toml b/source/sdk/swift/facets.toml index 0dcec4d423..79ffd351d1 100644 --- a/source/sdk/swift/facets.toml +++ b/source/sdk/swift/facets.toml @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + [[facets]] category = "programming_language" value = "objective-c" diff --git a/source/sdk/swift/install.txt b/source/sdk/swift/install.txt index b8bebef44e..d9102aebe6 100644 --- a/source/sdk/swift/install.txt +++ b/source/sdk/swift/install.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-install: ================================================= diff --git a/source/sdk/swift/logging.txt b/source/sdk/swift/logging.txt index 1963a784c0..5a066275e3 100644 --- a/source/sdk/swift/logging.txt +++ b/source/sdk/swift/logging.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-logging: .. _swift-set-custom-logger: diff --git a/source/sdk/swift/model-data.txt b/source/sdk/swift/model-data.txt index 85d43f435f..fbad16f198 100644 --- a/source/sdk/swift/model-data.txt +++ b/source/sdk/swift/model-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ====================== Model Data - Swift SDK ====================== diff --git a/source/sdk/swift/model-data/change-an-object-model.txt b/source/sdk/swift/model-data/change-an-object-model.txt index 408875fba8..c574584c2a 100644 --- a/source/sdk/swift/model-data/change-an-object-model.txt +++ b/source/sdk/swift/model-data/change-an-object-model.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-modify-an-object-schema: ================================== diff --git a/source/sdk/swift/model-data/model-data-device-sync.txt b/source/sdk/swift/model-data/model-data-device-sync.txt index a13ae8f662..b751276c62 100644 --- a/source/sdk/swift/model-data/model-data-device-sync.txt +++ b/source/sdk/swift/model-data/model-data-device-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-model-data-device-sync: ======================================= diff --git a/source/sdk/swift/model-data/object-models.txt b/source/sdk/swift/model-data/object-models.txt index e279cd1e2d..20c809eafe 100644 --- a/source/sdk/swift/model-data/object-models.txt +++ b/source/sdk/swift/model-data/object-models.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-object-models: .. _ios-define-a-realm-object-schema: diff --git a/source/sdk/swift/model-data/relationships.txt b/source/sdk/swift/model-data/relationships.txt index a5011a72a1..9f3d47ed44 100644 --- a/source/sdk/swift/model-data/relationships.txt +++ b/source/sdk/swift/model-data/relationships.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-model-relationships: =============================== diff --git a/source/sdk/swift/model-data/supported-types.txt b/source/sdk/swift/model-data/supported-types.txt index bfdb7c2fcb..06e62aca28 100644 --- a/source/sdk/swift/model-data/supported-types.txt +++ b/source/sdk/swift/model-data/supported-types.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-supported-types: =========================== diff --git a/source/sdk/swift/quick-start.txt b/source/sdk/swift/quick-start.txt index b24ed555e0..e8c7cfe4df 100644 --- a/source/sdk/swift/quick-start.txt +++ b/source/sdk/swift/quick-start.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-client-quick-start: .. _ios-client-quick-start-with-sync: diff --git a/source/sdk/swift/react-to-changes.txt b/source/sdk/swift/react-to-changes.txt index ff6ac307b8..6c03689bda 100644 --- a/source/sdk/swift/react-to-changes.txt +++ b/source/sdk/swift/react-to-changes.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-react-to-changes: .. _ios-live-object: diff --git a/source/sdk/swift/realm-files.txt b/source/sdk/swift/realm-files.txt index 06da8f8a24..df201ea9b1 100644 --- a/source/sdk/swift/realm-files.txt +++ b/source/sdk/swift/realm-files.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-realms: ================================= diff --git a/source/sdk/swift/realm-files/bundle-a-realm.txt b/source/sdk/swift/realm-files/bundle-a-realm.txt index 3c91181735..b1259cbea1 100644 --- a/source/sdk/swift/realm-files/bundle-a-realm.txt +++ b/source/sdk/swift/realm-files/bundle-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-bundle-a-realm: =============================== diff --git a/source/sdk/swift/realm-files/compacting.txt b/source/sdk/swift/realm-files/compacting.txt index 8a8e935b90..988d1cf9c5 100644 --- a/source/sdk/swift/realm-files/compacting.txt +++ b/source/sdk/swift/realm-files/compacting.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-client-compact-a-realm: ================================== diff --git a/source/sdk/swift/realm-files/configure-and-open-a-realm.txt b/source/sdk/swift/realm-files/configure-and-open-a-realm.txt index a428f6e058..2949f60828 100644 --- a/source/sdk/swift/realm-files/configure-and-open-a-realm.txt +++ b/source/sdk/swift/realm-files/configure-and-open-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-configure-and-open-a-realm: ==================================== diff --git a/source/sdk/swift/realm-files/delete-a-realm.txt b/source/sdk/swift/realm-files/delete-a-realm.txt index 1ad3560330..faca547a0e 100644 --- a/source/sdk/swift/realm-files/delete-a-realm.txt +++ b/source/sdk/swift/realm-files/delete-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-delete-a-realm: .. _ios-delete-a-client-realm-file: diff --git a/source/sdk/swift/realm-files/encrypt-a-realm.txt b/source/sdk/swift/realm-files/encrypt-a-realm.txt index 3b0d474296..ea7095d296 100644 --- a/source/sdk/swift/realm-files/encrypt-a-realm.txt +++ b/source/sdk/swift/realm-files/encrypt-a-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-encrypt-a-realm: =========================== diff --git a/source/sdk/swift/realm-files/tvos.txt b/source/sdk/swift/realm-files/tvos.txt index 1ff9fd13b1..25b739a139 100644 --- a/source/sdk/swift/realm-files/tvos.txt +++ b/source/sdk/swift/realm-files/tvos.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-tvos: ============== diff --git a/source/sdk/swift/swift-concurrency.txt b/source/sdk/swift/swift-concurrency.txt index 986b38cd8c..694d97dbaa 100644 --- a/source/sdk/swift/swift-concurrency.txt +++ b/source/sdk/swift/swift-concurrency.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-concurrency: ============================= diff --git a/source/sdk/swift/swiftui-tutorial.txt b/source/sdk/swift/swiftui-tutorial.txt index 4e5059c2ec..fa65623d1a 100644 --- a/source/sdk/swift/swiftui-tutorial.txt +++ b/source/sdk/swift/swiftui-tutorial.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-swiftui-combine-quick-start: .. _ios-swiftui-quick-start: diff --git a/source/sdk/swift/swiftui.txt b/source/sdk/swift/swiftui.txt index f18e803d9a..90dc650e45 100644 --- a/source/sdk/swift/swiftui.txt +++ b/source/sdk/swift/swiftui.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-swiftui-examples: ==================== diff --git a/source/sdk/swift/swiftui/background-sync.txt b/source/sdk/swift/swiftui/background-sync.txt index fdc9312327..25071e4f5c 100644 --- a/source/sdk/swift/swiftui/background-sync.txt +++ b/source/sdk/swift/swiftui/background-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swiftui-background-sync: ==================================================== diff --git a/source/sdk/swift/swiftui/configure-and-open-realm.txt b/source/sdk/swift/swiftui/configure-and-open-realm.txt index e0e0aa4ebe..e4edf2cea3 100644 --- a/source/sdk/swift/swiftui/configure-and-open-realm.txt +++ b/source/sdk/swift/swiftui/configure-and-open-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-open-realm-swiftui: ==================================== diff --git a/source/sdk/swift/swiftui/filter-data.txt b/source/sdk/swift/swiftui/filter-data.txt index 1443b96dcc..8a4e4017da 100644 --- a/source/sdk/swift/swiftui/filter-data.txt +++ b/source/sdk/swift/swiftui/filter-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ===================== Filter Data - SwiftUI ===================== diff --git a/source/sdk/swift/swiftui/handle-sync-errors.txt b/source/sdk/swift/swiftui/handle-sync-errors.txt index 7a6707dffd..2716dee312 100644 --- a/source/sdk/swift/swiftui/handle-sync-errors.txt +++ b/source/sdk/swift/swiftui/handle-sync-errors.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swiftui-handle-sync-errors: =========================================== diff --git a/source/sdk/swift/swiftui/model-data.txt b/source/sdk/swift/swiftui/model-data.txt index d2e17e46e1..a00e706a45 100644 --- a/source/sdk/swift/swiftui/model-data.txt +++ b/source/sdk/swift/swiftui/model-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + =================== Model Data- SwiftUI =================== diff --git a/source/sdk/swift/swiftui/model-data/change-an-object-model.txt b/source/sdk/swift/swiftui/model-data/change-an-object-model.txt index dde6825164..a9bb4ebbe6 100644 --- a/source/sdk/swift/swiftui/model-data/change-an-object-model.txt +++ b/source/sdk/swift/swiftui/model-data/change-an-object-model.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swiftui-realm-migrations: ================================ diff --git a/source/sdk/swift/swiftui/model-data/define-a-realm-object-model.txt b/source/sdk/swift/swiftui/model-data/define-a-realm-object-model.txt index 708e40df5f..4ce1e8c297 100644 --- a/source/sdk/swift/swiftui/model-data/define-a-realm-object-model.txt +++ b/source/sdk/swift/swiftui/model-data/define-a-realm-object-model.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swiftui-object-models: .. _swiftui-define-a-realm-object-schema: diff --git a/source/sdk/swift/swiftui/pass-realm-data-between-views.txt b/source/sdk/swift/swiftui/pass-realm-data-between-views.txt index 97bbc5e115..5e6dfb553f 100644 --- a/source/sdk/swift/swiftui/pass-realm-data-between-views.txt +++ b/source/sdk/swift/swiftui/pass-realm-data-between-views.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swiftui-pass-data-between-views: ===================================== diff --git a/source/sdk/swift/swiftui/react-to-changes.txt b/source/sdk/swift/swiftui/react-to-changes.txt index 0b9a8fcc18..8d70571887 100644 --- a/source/sdk/swift/swiftui/react-to-changes.txt +++ b/source/sdk/swift/swiftui/react-to-changes.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ========================== React to Changes - SwiftUI ========================== diff --git a/source/sdk/swift/swiftui/swiftui-previews.txt b/source/sdk/swift/swiftui/swiftui-previews.txt index 26ab6a08c4..37a6780334 100644 --- a/source/sdk/swift/swiftui/swiftui-previews.txt +++ b/source/sdk/swift/swiftui/swiftui-previews.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swiftui-previews: =============================== diff --git a/source/sdk/swift/swiftui/write.txt b/source/sdk/swift/swiftui/write.txt index 329aa2aaee..aacac5e775 100644 --- a/source/sdk/swift/swiftui/write.txt +++ b/source/sdk/swift/swiftui/write.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + ==================== Write Data - SwiftUI ==================== diff --git a/source/sdk/swift/sync.txt b/source/sdk/swift/sync.txt index f931d26d58..4e5b595c2f 100644 --- a/source/sdk/swift/sync.txt +++ b/source/sdk/swift/sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-realm-sync: ===================================== diff --git a/source/sdk/swift/sync/add-sync-to-app.txt b/source/sdk/swift/sync/add-sync-to-app.txt index b60aa9ff99..dacd8d331d 100644 --- a/source/sdk/swift/sync/add-sync-to-app.txt +++ b/source/sdk/swift/sync/add-sync-to-app.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-add-sync-to-app: .. _ios-sync-changes-between-devices: diff --git a/source/sdk/swift/sync/background-sync.txt b/source/sdk/swift/sync/background-sync.txt index 77373b2aef..bf8bbdb30a 100644 --- a/source/sdk/swift/sync/background-sync.txt +++ b/source/sdk/swift/sync/background-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-background-sync: .. _ios-sync-changes-in-the-background: diff --git a/source/sdk/swift/sync/configure-and-open-a-synced-realm.txt b/source/sdk/swift/sync/configure-and-open-a-synced-realm.txt index a317738113..f5c7cf3e99 100644 --- a/source/sdk/swift/sync/configure-and-open-a-synced-realm.txt +++ b/source/sdk/swift/sync/configure-and-open-a-synced-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-configure-and-open-a-synced-realm: =========================================== diff --git a/source/sdk/swift/sync/event-library.txt b/source/sdk/swift/sync/event-library.txt index 6e9b6648c6..28a8507a22 100644 --- a/source/sdk/swift/sync/event-library.txt +++ b/source/sdk/swift/sync/event-library.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-event-library: ========================= diff --git a/source/sdk/swift/sync/flexible-sync.txt b/source/sdk/swift/sync/flexible-sync.txt index 6dc2c54b91..a2f28f0443 100644 --- a/source/sdk/swift/sync/flexible-sync.txt +++ b/source/sdk/swift/sync/flexible-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-manage-flexible-sync-subscriptions: .. _ios-flexible-sync: diff --git a/source/sdk/swift/sync/handle-sync-errors.txt b/source/sdk/swift/sync/handle-sync-errors.txt index 18823f7501..a0a6039de8 100644 --- a/source/sdk/swift/sync/handle-sync-errors.txt +++ b/source/sdk/swift/sync/handle-sync-errors.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-handle-sync-errors: .. _ios-handle-sync-errors: diff --git a/source/sdk/swift/sync/log-level.txt b/source/sdk/swift/sync/log-level.txt index 9582e70733..c0bc70c7b8 100644 --- a/source/sdk/swift/sync/log-level.txt +++ b/source/sdk/swift/sync/log-level.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-set-client-log-level: .. _ios-set-the-client-log-level: .. _swift-sync-log-level: diff --git a/source/sdk/swift/sync/partition-based-sync.txt b/source/sdk/swift/sync/partition-based-sync.txt index 047f696867..78ffb0535e 100644 --- a/source/sdk/swift/sync/partition-based-sync.txt +++ b/source/sdk/swift/sync/partition-based-sync.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-partition-based-sync: ================================ diff --git a/source/sdk/swift/sync/stream-data-to-atlas.txt b/source/sdk/swift/sync/stream-data-to-atlas.txt index bf144504ec..2ac4d8cecb 100644 --- a/source/sdk/swift/sync/stream-data-to-atlas.txt +++ b/source/sdk/swift/sync/stream-data-to-atlas.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-stream-data-to-atlas: ================================ diff --git a/source/sdk/swift/sync/sync-session.txt b/source/sdk/swift/sync/sync-session.txt index db2a7ec81d..d554f67c2d 100644 --- a/source/sdk/swift/sync/sync-session.txt +++ b/source/sdk/swift/sync/sync-session.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-suspend-resume-sync: .. _ios-suspend-or-resume-a-sync-session: diff --git a/source/sdk/swift/sync/write-to-synced-realm.txt b/source/sdk/swift/sync/write-to-synced-realm.txt index 5adb045b44..276797473f 100644 --- a/source/sdk/swift/sync/write-to-synced-realm.txt +++ b/source/sdk/swift/sync/write-to-synced-realm.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-write-synced-realm: ======================================== diff --git a/source/sdk/swift/telemetry.txt b/source/sdk/swift/telemetry.txt index f6143748ea..fde5ec88e6 100644 --- a/source/sdk/swift/telemetry.txt +++ b/source/sdk/swift/telemetry.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _telemetry-swift: ===================== diff --git a/source/sdk/swift/test-and-debug.txt b/source/sdk/swift/test-and-debug.txt index 18f581b179..2f19730656 100644 --- a/source/sdk/swift/test-and-debug.txt +++ b/source/sdk/swift/test-and-debug.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-test-and-debug: ========================== diff --git a/source/sdk/swift/use-realm-with-actors.txt b/source/sdk/swift/use-realm-with-actors.txt index 456bd027a3..2360e67199 100644 --- a/source/sdk/swift/use-realm-with-actors.txt +++ b/source/sdk/swift/use-realm-with-actors.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-actor-isolated-realm: .. _swift-use-realm-with-actors: diff --git a/source/sdk/swift/users/authenticate-users.txt b/source/sdk/swift/users/authenticate-users.txt index 3fb130de8e..8bf5331608 100644 --- a/source/sdk/swift/users/authenticate-users.txt +++ b/source/sdk/swift/users/authenticate-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-authenticate-users: ============================== diff --git a/source/sdk/swift/users/create-and-delete-users.txt b/source/sdk/swift/users/create-and-delete-users.txt index 4f2b5c6ad4..5fd760cb36 100644 --- a/source/sdk/swift/users/create-and-delete-users.txt +++ b/source/sdk/swift/users/create-and-delete-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-create-and-delete-users: =================================== diff --git a/source/sdk/swift/users/custom-user-data.txt b/source/sdk/swift/users/custom-user-data.txt index 3808058b99..cbb08a6e6a 100644 --- a/source/sdk/swift/users/custom-user-data.txt +++ b/source/sdk/swift/users/custom-user-data.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-custom-user-data: ============================ diff --git a/source/sdk/swift/users/link-user-identities.txt b/source/sdk/swift/users/link-user-identities.txt index fe00fe961a..37a2bcd405 100644 --- a/source/sdk/swift/users/link-user-identities.txt +++ b/source/sdk/swift/users/link-user-identities.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-link-user-identities: ================================ diff --git a/source/sdk/swift/users/manage-email-password-users.txt b/source/sdk/swift/users/manage-email-password-users.txt index 6aeeaf1e03..a8b05bdddb 100644 --- a/source/sdk/swift/users/manage-email-password-users.txt +++ b/source/sdk/swift/users/manage-email-password-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-manage-email-password-users: ======================================= diff --git a/source/sdk/swift/users/manage-user-api-keys.txt b/source/sdk/swift/users/manage-user-api-keys.txt index b0d904864f..5f27d04e5a 100644 --- a/source/sdk/swift/users/manage-user-api-keys.txt +++ b/source/sdk/swift/users/manage-user-api-keys.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-manage-user-api-keys: ================================ diff --git a/source/sdk/swift/users/multi-user-applications.txt b/source/sdk/swift/users/multi-user-applications.txt index 251fe92618..db5504951b 100644 --- a/source/sdk/swift/users/multi-user-applications.txt +++ b/source/sdk/swift/users/multi-user-applications.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-multi-user-applications: =================================== diff --git a/source/sdk/swift/users/user-metadata.txt b/source/sdk/swift/users/user-metadata.txt index 95c8f351a8..c70e7129b5 100644 --- a/source/sdk/swift/users/user-metadata.txt +++ b/source/sdk/swift/users/user-metadata.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-user-metadata: ========================= diff --git a/source/sdk/swift/work-with-users.txt b/source/sdk/swift/work-with-users.txt index 0446a4f5af..88b2d6e5c2 100644 --- a/source/sdk/swift/work-with-users.txt +++ b/source/sdk/swift/work-with-users.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _ios-work-with-users: .. _swift-manage-users: diff --git a/source/sdk/swift/xcode-playgrounds.txt b/source/sdk/swift/xcode-playgrounds.txt index 9079669f77..38754443d4 100644 --- a/source/sdk/swift/xcode-playgrounds.txt +++ b/source/sdk/swift/xcode-playgrounds.txt @@ -1,3 +1,6 @@ +.. meta:: + :robots: noindex, nosnippet + .. _swift-xcode-playgrounds: ============================== diff --git a/source/studio.txt b/source/studio.txt index 260409a8bc..15b143b0e9 100644 --- a/source/studio.txt +++ b/source/studio.txt @@ -1,5 +1,8 @@ .. _realm-studio: +.. meta:: + :robots: noindex, nosnippet + ============ Realm Studio ============ @@ -8,7 +11,6 @@ Realm Studio :titlesonly: :hidden: - Install Realm Studio View Data with Device Sync Open a Realm File Explore a Realm File diff --git a/source/web.txt b/source/web.txt index 16a635523b..2a3f116daa 100644 --- a/source/web.txt +++ b/source/web.txt @@ -2,6 +2,9 @@ :hidefeedback: header :noprevnext: +.. meta:: + :robots: noindex, nosnippet + .. _web-intro: ============================ @@ -14,10 +17,6 @@ Atlas Device SDK for the Web .. toctree:: :titlesonly: - Install - Quick Start - Quick Start with React - Atlas Device Sync (Preview) Atlas App Services User Management Query MongoDB @@ -25,7 +24,6 @@ Atlas Device SDK for the Web Next.js Integration Guide SDK Telemetry API Reference - Upgrade from Stitch to Realm Release Notes .. banner::