pub struct DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer {
pub enabled: Option<bool>,
pub endpoint: Option<DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServerEndpoint>,
pub port: Option<i32>,
pub register_api_service: Option<bool>,
pub use_datadog_metrics: Option<bool>,
pub wpa_controller: Option<bool>,
}Expand description
ExternalMetricsServer configuration.
Fields§
§enabled: Option<bool>Enabled enables the External Metrics Server. Default: false
endpoint: Option<DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServerEndpoint>Override the API endpoint for the External Metrics Server. URL Default: “https://app.datadoghq.com".
port: Option<i32>Port specifies the metricsProvider External Metrics Server service port. Default: 8443
register_api_service: Option<bool>RegisterAPIService registers the External Metrics endpoint as an APIService Default: true
use_datadog_metrics: Option<bool>UseDatadogMetrics enables usage of the DatadogMetrics CRD (allowing one to scale on arbitrary Datadog metric queries). Default: true
wpa_controller: Option<bool>WPAController enables the informer and controller of the Watermark Pod Autoscaler. NOTE: The Watermark Pod Autoscaler controller needs to be installed. See also: https://github.com/DataDog/watermarkpodautoscaler. Default: false
Trait Implementations§
Source§impl Clone for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
impl Clone for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
Source§fn clone(
&self,
) -> DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
fn clone( &self, ) -> DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
impl Default for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
Source§fn default() -> DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
fn default() -> DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
impl<'de> Deserialize<'de> for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
impl PartialEq for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
Source§fn eq(
&self,
other: &DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer,
) -> bool
fn eq( &self, other: &DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
Auto Trait Implementations§
impl Freeze for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
impl RefUnwindSafe for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
impl Send for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
impl Sync for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
impl Unpin for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
impl UnsafeUnpin for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
impl UnwindSafe for DatadogAgentStatusRemoteConfigConfigurationFeaturesExternalMetricsServer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more