Values.CreateTrafficPolicyVersionRequestSourceA complex type that contains information about the traffic policy that you want to create a new version for.
type nonrec t = {id : TrafficPolicyId.t;The ID of the traffic policy for which you want to create a new version.
*)document : TrafficPolicyDocument.t;The definition of this version of the traffic policy, in JSON format. You specified the JSON in the CreateTrafficPolicyVersion request. For more information about the JSON format, see CreateTrafficPolicy.
*)comment : TrafficPolicyComment.t option;The comment that you specified in the CreateTrafficPolicyVersion request, if any.
*)}val make :
?comment:??? ->
id:TrafficPolicyId.t ->
document:TrafficPolicyDocument.t ->
unit ->
t