Module Values.UpdateComponentConfigurationRequestSource

Updates the monitoring configurations for the component. The configuration input parameter is an escaped JSON of the configuration and should match the schema of what is returned by DescribeComponentConfigurationRecommendation.

Sourcetype nonrec t = {
  1. resourceGroupName : ResourceGroupName.t;
    (*

    The name of the resource group.

    *)
  2. componentName : ComponentName.t;
    (*

    The name of the component.

    *)
  3. monitor : Monitor.t option;
    (*

    Indicates whether the application component is monitored.

    *)
  4. tier : Tier.t option;
    (*

    The tier of the application component.

    *)
  5. componentConfiguration : ComponentConfiguration.t option;
    (*

    The configuration settings of the component. The value is the escaped JSON of the configuration. For more information about the JSON format, see Working with JSON. You can send a request to DescribeComponentConfigurationRecommendation to see the recommended configuration for a component. For the complete format of the component configuration file, see Component Configuration.

    *)
  6. autoConfigEnabled : AutoConfigEnabled.t option;
    (*

    Automatically configures the component by applying the recommended configurations.

    *)
}
Sourceval context_ : string
Sourceval make : ?monitor:??? -> ?tier:??? -> ?componentConfiguration:??? -> ?autoConfigEnabled:??? -> resourceGroupName:ResourceGroupName.t -> componentName:ComponentName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Monitor.t | `Enum of string | `String of ResourceGroupName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t