Show / Hide Table of Contents

Class VmwareBinaryDownloadInfo

The VMware binary download.

Inheritance
object
VmwareBinaryDownloadInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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.
Example: 2016-08-25T21:10:29.600Z

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

In this article
Back to top