sapling/configerator/structs/scm/mononoke/tunables/tunables.thrift
Evgenii Kazakov e05104c8c2 mononoke/tunables: add by_repo tunables
Summary: Added new bool tunables type, depending on repos.

Reviewed By: ikostia

Differential Revision: D26025163

fbshipit-source-id: 5c2fa846b3c115bea683be249e92d495d28c038c
2021-01-27 01:50:05 -08:00

27 lines
1.1 KiB
Thrift

// @generated SignedSource<<1b2088495dca7daf2623141cd829f120>>
// DO NOT EDIT THIS FILE MANUALLY!
// This file is a mechanical copy of the version in the configerator repo. To
// modify it, edit the copy in the configerator repo instead and copy it over by
// running the following in your fbcode directory:
//
// configerator-thrift-updater scm/mononoke/tunables/tunables.thrift
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
namespace py configerator.mononoke.tunables
struct Tunables {
1: map<string, bool> (rust.type = "HashMap") killswitches,
2: map<string, i64> (rust.type = "HashMap") ints,
3: map<string, string> (rust.type = "HashMap") strings,
4: optional map<string, map<string, bool> (rust.type = "HashMap")> (rust.type = "HashMap") killswitches_by_repo,
5: optional map<string, map<string, i64> (rust.type = "HashMap")> (rust.type = "HashMap") ints_by_repo,
6: optional map<string, map<string, string> (rust.type = "HashMap")> (rust.type = "HashMap") strings_by_repo,
}