File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,8 @@ message FetchConfigRequest {
114
114
message FetchModeAll {
115
115
// Use this option to somehow transform main config
116
116
// Currently used to automatically derive detached StorageSection from MainConfig
117
- // or vice versa
117
+ // or vice versa, and to add some internally-managed sections into config for
118
+ // explicit user control
118
119
oneof config_transform {
119
120
// Optionally may be set to explicitly tell "do not transform anything"
120
121
google.protobuf.Empty none = 1 ;
@@ -130,6 +131,13 @@ message FetchConfigRequest {
130
131
// (MainConfig*, StorageConfig) -> (MainConfig)
131
132
// MainConfig with asterisk means MainConfig with excluded storage-related sections
132
133
google.protobuf.Empty attach_storage_config_section = 3 ;
134
+
135
+ // Fetch will return MainConfig with added blob_storage_config and domains_config sections in order to
136
+ // downgrade to configuration v1.
137
+ google.protobuf.Empty add_blob_storage_and_domains_config = 4 ;
138
+
139
+ // Fetch will return MainConfig/StorageConfig with added blob_storage_config and explicit_* sections
140
+ google.protobuf.Empty add_explicit_sections = 5 ;
133
141
}
134
142
}
135
143
You can’t perform that action at this time.
0 commit comments