aboutsummaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/interface/cypress.h
diff options
context:
space:
mode:
authornadya73 <nadya73@yandex-team.com>2023-09-06 19:42:18 +0300
committernadya73 <nadya73@yandex-team.com>2023-09-06 20:02:49 +0300
commit5dff1fa32117ff242e380e16314bae6fd67651f9 (patch)
treea73a67e08b2f6e7d5cd86aac63b032292eb98254 /yt/cpp/mapreduce/interface/cypress.h
parent51bf017cf9f9a61f1970cf462a9e400a3c71f151 (diff)
downloadydb-5dff1fa32117ff242e380e16314bae6fd67651f9.tar.gz
[yt/cpp/mapreduce] Fix documentation links
Diffstat (limited to 'yt/cpp/mapreduce/interface/cypress.h')
-rw-r--r--yt/cpp/mapreduce/interface/cypress.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/yt/cpp/mapreduce/interface/cypress.h b/yt/cpp/mapreduce/interface/cypress.h
index e05316ebc6..00deaa08ea 100644
--- a/yt/cpp/mapreduce/interface/cypress.h
+++ b/yt/cpp/mapreduce/interface/cypress.h
@@ -3,7 +3,7 @@
///
/// @file yt/cpp/mapreduce/interface/cypress.h
///
-/// Header containing interface to execute [Cypress](https://yt.yandex-team.ru/docs/description/common/cypress.html)-related commands.
+/// Header containing interface to execute [Cypress](https://ytsaurus.tech/docs/en/user-guide/storage/cypress.html)-related commands.
#include "fwd.h"
@@ -17,7 +17,7 @@ namespace NYT {
////////////////////////////////////////////////////////////////////////////////
-/// Client interface to execute [Cypress](https://yt.yandex-team.ru/docs/description/common/cypress.html)-related commands.
+/// Client interface to execute [Cypress](https://ytsaurus.tech/docs/en/user-guide/storage/cypress.html)-related commands.
class ICypressClient
{
public:
@@ -36,7 +36,7 @@ public:
///
/// @note The node itself must not exist unless @ref NYT::TCreateOptions::IgnoreExisting or @ref NYT::TCreateOptions::Force are `true`.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#create)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#create)
virtual TNodeId Create(
const TYPath& path,
ENodeType type,
@@ -62,7 +62,7 @@ public:
///
/// @brief Remove Cypress node.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#remove)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#remove)
virtual void Remove(
const TYPath& path,
const TRemoveOptions& options = TRemoveOptions()) = 0;
@@ -70,7 +70,7 @@ public:
///
/// @brief Check if Cypress node exists.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#exists)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#exists)
virtual bool Exists(
const TYPath& path,
const TExistsOptions& options = TExistsOptions()) = 0;
@@ -78,7 +78,7 @@ public:
///
/// @brief Get Cypress node contents.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#get)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#get)
virtual TNode Get(
const TYPath& path,
const TGetOptions& options = TGetOptions()) = 0;
@@ -86,7 +86,7 @@ public:
///
/// @brief Set Cypress node contents.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#set)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#set)
virtual void Set(
const TYPath& path,
const TNode& value,
@@ -100,7 +100,7 @@ public:
/// @param attributes Map with attributes
/// @param options Optional parameters.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#multiset_attributes)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#multiset_attributes)
virtual void MultisetAttributes(
const TYPath& path,
const TNode::TMapType& attributes,
@@ -114,7 +114,7 @@ public:
///
/// @return List of keys with attributes (if they were required in @ref NYT::TListOptions::AttributeFilter).
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#list)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#list)
virtual TNode::TListType List(
const TYPath& path,
const TListOptions& options = TListOptions()) = 0;
@@ -122,7 +122,7 @@ public:
///
/// @brief Copy Cypress node.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#copy)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#copy)
virtual TNodeId Copy(
const TYPath& sourcePath,
const TYPath& destinationPath,
@@ -131,7 +131,7 @@ public:
///
/// @brief Move Cypress node (equivalent to copy-then-remove).
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#move)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#move)
virtual TNodeId Move(
const TYPath& sourcePath,
const TYPath& destinationPath,
@@ -140,7 +140,7 @@ public:
///
/// @brief Create link to Cypress node.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#link)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#link)
virtual TNodeId Link(
const TYPath& targetPath,
const TYPath& linkPath,
@@ -149,7 +149,7 @@ public:
///
/// @brief Concatenate several tables into one.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#concatenate)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#concatenate)
virtual void Concatenate(
const TVector<TRichYPath>& sourcePaths,
const TRichYPath& destinationPath,
@@ -158,7 +158,7 @@ public:
///
/// @brief Concatenate several tables into one.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#concatenate)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#concatenate)
virtual void Concatenate(
const TVector<TYPath>& sourcePaths,
const TYPath& destinationPath,
@@ -167,7 +167,7 @@ public:
///
/// @brief Canonize YPath, moving all the complex YPath features to attributes.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#parse-ypath)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#parse_ypath)
virtual TRichYPath CanonizeYPath(const TRichYPath& path) = 0;
///
@@ -175,7 +175,7 @@ public:
///
/// @note Paths must contain column selectors.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#get-table-columnar-statistics)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#get_table_columnar_statistics)
virtual TVector<TTableColumnarStatistics> GetTableColumnarStatistics(
const TVector<TRichYPath>& paths,
const TGetTableColumnarStatisticsOptions& options = {}) = 0;
@@ -197,7 +197,7 @@ public:
/// @param cachePath Path to the file cache.
/// @param options Optional parameters.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#get-file-from-cache)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#get_file_from_cache)
virtual TMaybe<TYPath> GetFileFromCache(
const TString& md5Signature,
const TYPath& cachePath,
@@ -213,7 +213,7 @@ public:
///
/// @note The file in `filePath` must have been written with @ref NYT::TFileWriterOptions::ComputeMD5 set to `true`.
///
- /// @see [YT doc](https://yt.yandex-team.ru/docs/api/commands.html#put-file-to-cache)
+ /// @see [YT doc](https://ytsaurus.tech/docs/en/api/commands.html#put_file_to_cache)
virtual TYPath PutFileToCache(
const TYPath& filePath,
const TString& md5Signature,