Values.ConditionSourceContains an array of triplets made up of a condition type (such as StringEquals), a key, and a value. Used to filter resources using their tags and assign them to a backup plan. Case sensitive.
type nonrec t = {conditionType : ConditionType.t;An operation applied to a key-value pair used to assign resources to your backup plan. Condition only supports StringEquals. For more flexible assignment options, including StringLike and the ability to exclude resources from your backup plan, use Conditions (with an "s" on the end) for your BackupSelection .
*)conditionKey : ConditionKey.t;The key in a key-value pair. For example, in the tag Department: Accounting, Department is the key.
*)conditionValue : ConditionValue.t;The value in a key-value pair. For example, in the tag Department: Accounting, Accounting is the value.
*)}val make :
conditionType:ConditionType.t ->
conditionKey:ConditionKey.t ->
conditionValue:ConditionValue.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of ConditionKey.t ]) list ]