Values_0.ModelDeployConfigSourceSpecifies how to generate the endpoint name for an automatic one-click Autopilot model deployment.
type nonrec t = {autoGenerateEndpointName : AutoGenerateEndpointName.t option;Set to True to automatically generate an endpoint name for a one-click Autopilot model deployment; set to False otherwise. The default value is False. If you set AutoGenerateEndpointName to True, do not specify the EndpointName; otherwise a 400 error is thrown.
*)endpointName : EndpointName.t option;Specifies the endpoint name to use for a one-click Autopilot model deployment if the endpoint name is not generated automatically. Specify the EndpointName if and only if you set AutoGenerateEndpointName to False; otherwise a 400 error is thrown.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of AutoGenerateEndpointName.t
| `String of EndpointName.t ])
list ]