diff options
author | Nikita Sokolov <faucct@tracto.ai> | 2025-02-06 16:25:27 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2025-02-06 16:46:11 +0300 |
commit | ebc0d7e9f1351fcae5429be96e3a643e265c58b7 (patch) | |
tree | 5d4ced9f953cb239f4ed2e44975e07ed40160ad8 /yt/cpp/mapreduce/interface | |
parent | a1eb3ce71dfef622da3d201cf071c79b76734d0d (diff) | |
download | ydb-ebc0d7e9f1351fcae5429be96e3a643e265c58b7.tar.gz |
operation suspend reason
No description
---
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1046
Co-authored-by: ignat <ignat@yandex-team.com>
commit_hash:9f0ae549cebc6e2e3bfdb510c88afa1aa2bdec55
Diffstat (limited to 'yt/cpp/mapreduce/interface')
-rw-r--r-- | yt/cpp/mapreduce/interface/client_method_options.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/interface/client_method_options.h b/yt/cpp/mapreduce/interface/client_method_options.h index d457bf5f43..6beed2ffdc 100644 --- a/yt/cpp/mapreduce/interface/client_method_options.h +++ b/yt/cpp/mapreduce/interface/client_method_options.h @@ -382,6 +382,11 @@ struct TSuspendOperationOptions /// /// By default running jobs are not aborted. FLUENT_FIELD_OPTION(bool, AbortRunningJobs); + + /// + /// @brief Something to show in the alert. + /// + FLUENT_FIELD_OPTION(std::optional<TString>, Reason); }; /// |