Class VmwareBinaryDownloadInfo
The VMware binary download.
Inherited Members
Namespace: Oci.OcvpService.Models
Assembly: OCI.DotNetSDK.Ocvp.dll
Syntax
public class VmwareBinaryDownloadInfo
Properties
FileName
Declaration
[Required(ErrorMessage = "FileName is required.")]
[JsonProperty(PropertyName = "fileName")]
public string FileName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The name of the VMware binary file. |
Remarks
Required
TimeExpires
Declaration
[Required(ErrorMessage = "TimeExpires is required.")]
[JsonProperty(PropertyName = "timeExpires")]
public DateTime? TimeExpires { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime? | The expiration date for the URL, in the format defined by RFC3339.
After this date the URL will no longer be valid.
|
Remarks
Required
Url
Declaration
[Required(ErrorMessage = "Url is required.")]
[JsonProperty(PropertyName = "url")]
public string Url { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The URL to download the VMware binary. |
Remarks
Required