Module Values.DeploymentPoliciesSource

Contains information about policies that define how a deployment updates components and handles failure.

Sourcetype nonrec t = {
  1. failureHandlingPolicy : DeploymentFailureHandlingPolicy.t option;
    (*

    The failure handling policy for the configuration deployment. This policy defines what to do if the deployment fails. Default: ROLLBACK

    *)
  2. componentUpdatePolicy : DeploymentComponentUpdatePolicy.t option;
    (*

    The component update policy for the configuration deployment. This policy defines when it's safe to deploy the configuration to devices.

    *)
  3. configurationValidationPolicy : DeploymentConfigurationValidationPolicy.t option;
    (*

    The configuration validation policy for the configuration deployment. This policy defines how long each component has to validate its configure updates.

    *)
}
Sourceval make : ?failureHandlingPolicy:??? -> ?componentUpdatePolicy:??? -> ?configurationValidationPolicy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `Integer of OptionalInteger.t ]) list ]) 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