@@ -133,25 +133,20 @@ class AwsProcessor : public core::ProcessorImpl { // NOLINT(cppcoreguidelines-s
133133 .withValidator(core::StandardPropertyValidators::NON_BLANK_VALIDATOR)
134134 .supportsExpressionLanguage(true )
135135 .build();
136- EXTENSIONAPI static constexpr auto ProxyType = core::PropertyDefinitionBuilder<magic_enum::enum_count<minifi::controllers::ProxyType>()>::createProperty(" Proxy Type" )
137- .withDescription(" Proxy type" )
138- .withDefaultValue(magic_enum::enum_name(minifi::controllers::ProxyType::HTTP))
139- .withAllowedValues(magic_enum::enum_names<minifi::controllers::ProxyType>())
140- .build();
141136 EXTENSIONAPI static constexpr auto ProxyHost = core::PropertyDefinitionBuilder<>::createProperty(" Proxy Host" )
142- .withDescription(" Proxy host name or IP" )
137+ .withDescription(" Proxy host name or IP. Use https:// prefix for HTTPS proxy. DEPRECATED, please use Proxy Configuration Service instead. " )
143138 .supportsExpressionLanguage(true )
144139 .build();
145140 EXTENSIONAPI static constexpr auto ProxyPort = core::PropertyDefinitionBuilder<>::createProperty(" Proxy Port" )
146- .withDescription(" The port number of the proxy host" )
141+ .withDescription(" The port number of the proxy host. DEPRECATED, please use Proxy Configuration Service instead. " )
147142 .supportsExpressionLanguage(true )
148143 .build();
149144 EXTENSIONAPI static constexpr auto ProxyUsername = core::PropertyDefinitionBuilder<>::createProperty(" Proxy Username" )
150- .withDescription(" Username to set when authenticating against proxy" )
145+ .withDescription(" Username to set when authenticating against proxy. DEPRECATED, please use Proxy Configuration Service instead. " )
151146 .supportsExpressionLanguage(true )
152147 .build();
153148 EXTENSIONAPI static constexpr auto ProxyPassword = core::PropertyDefinitionBuilder<>::createProperty(" Proxy Password" )
154- .withDescription(" Password to set when authenticating against proxy" )
149+ .withDescription(" Password to set when authenticating against proxy. DEPRECATED, please use Proxy Configuration Service instead. " )
155150 .supportsExpressionLanguage(true )
156151 .isSensitive(true )
157152 .build();
@@ -174,7 +169,6 @@ class AwsProcessor : public core::ProcessorImpl { // NOLINT(cppcoreguidelines-s
174169 Region,
175170 CommunicationsTimeout,
176171 EndpointOverrideURL,
177- ProxyType,
178172 ProxyHost,
179173 ProxyPort,
180174 ProxyUsername,
0 commit comments