Settings_Hosts_Software_Drafts_ImportSpec
The Drafts.ImportSpec structure defines the information used to import the desired software specification.
{
"source_type": "string",
"location": "string",
"file_id": "string",
"software_spec": "string"
}
The Drafts.SourceType enumerated type defines possible values of sources to import software specification.
PULL : Content is pulled from the URL location. The URL scheme of the value in {@link #pullLocation) can be http, https or file.
PUSH : Content was previously uploaded using the file upload enpoint present on vCenter appliance. This endpoint is present at https://VCENTERFQDN:9087/vum-fileupload URL.
JSON_STRING : The string representing the content of the software specfication.
LATEST_RECOMMENDATION : Content is from recommended image specification based on latest base image version. Recommendations can be generated using {@link: com.vmware.esx.settings.hosts.software.Recommendations#generate}.
CURRENT_SERIES_RECOMMENDATION : Content is from recommended image specification based on latest base image patch or update of the current series. For example, a host's current desired base image is 8.0. Recommendation engine will look into any recommendable image specification with 8.0 series base images available at depot manager and try to recommend the highest version within 8.0 series if possible. Let's say in this example, depot manager has 8.0 patch a and 8.0 update 1 base images. Recommendation engine would first validate all possible images based on 8.0 update 1. If it finds a valid one, it will store the recommended content with that series. This enum value will point to that stored recommended image content. Recommendations can be generated using {@link: com.vmware.esx.settings.hosts.software.Recommendations#generate}.
Location of the software specification file to be imported. This field is optional and it is only relevant when the value of Drafts.ImportSpec.source-type is PULL.
File identifier returned by the file upload endpoint after file is uploaded. This field is optional and it is only relevant when the value of Drafts.ImportSpec.source-type is PUSH.
The JSON string representing the desired software specification. This field is optional and it is only relevant when the value of Drafts.ImportSpec.source-type is JSON_STRING.