Show / Hide Table of Contents

Class UpdateApplianceExportJobDetails

Inheritance
object
UpdateApplianceExportJobDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DtsService.Models
Assembly: OCI.DotNetSDK.Dts.dll
Syntax
public class UpdateApplianceExportJobDetails

Properties

BucketName

Declaration
[JsonProperty(PropertyName = "bucketName")]
public string BucketName { get; set; }
Property Value
Type Description
string

CustomerShippingAddress

Declaration
[JsonProperty(PropertyName = "customerShippingAddress")]
public ShippingAddress CustomerShippingAddress { get; set; }
Property Value
Type Description
ShippingAddress

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

ExpectedReturnDate

Declaration
[JsonProperty(PropertyName = "expectedReturnDate")]
public DateTime? ExpectedReturnDate { get; set; }
Property Value
Type Description
DateTime?

Expected return date from customer for the device, time portion should be zero.

FirstObject

Declaration
[JsonProperty(PropertyName = "firstObject")]
public string FirstObject { get; set; }
Property Value
Type Description
string

First object in the list of objects that are exported in this job.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

LastObject

Declaration
[JsonProperty(PropertyName = "lastObject")]
public string LastObject { get; set; }
Property Value
Type Description
string

Last object in the list of objects that are exported in this job.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateApplianceExportJobDetails.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
UpdateApplianceExportJobDetails.LifecycleStateEnum?

LifecycleStateDetails

Declaration
[JsonProperty(PropertyName = "lifecycleStateDetails")]
public string LifecycleStateDetails { get; set; }
Property Value
Type Description
string

A property that can contain details on the lifecycle.

ManifestFile

Declaration
[JsonProperty(PropertyName = "manifestFile")]
public string ManifestFile { get; set; }
Property Value
Type Description
string

Manifest File associated with this export job.

ManifestMd5

Declaration
[JsonProperty(PropertyName = "manifestMd5")]
public string ManifestMd5 { get; set; }
Property Value
Type Description
string

md5 digest of the manifest file.

NextObject

Declaration
[JsonProperty(PropertyName = "nextObject")]
public string NextObject { get; set; }
Property Value
Type Description
string

First object from which the next potential export job could start.

NumberOfObjects

Declaration
[JsonProperty(PropertyName = "numberOfObjects")]
public string NumberOfObjects { get; set; }
Property Value
Type Description
string

Total number of objects that are exported in this job.

PickupWindowEndTime

Declaration
[JsonProperty(PropertyName = "pickupWindowEndTime")]
public DateTime? PickupWindowEndTime { get; set; }
Property Value
Type Description
DateTime?

End time for the window to pickup the device from customer.

PickupWindowStartTime

Declaration
[JsonProperty(PropertyName = "pickupWindowStartTime")]
public DateTime? PickupWindowStartTime { get; set; }
Property Value
Type Description
DateTime?

Start time for the window to pickup the device from customer.

Prefix

Declaration
[JsonProperty(PropertyName = "prefix")]
public string Prefix { get; set; }
Property Value
Type Description
string

List of objects with names matching this prefix would be part of this export job.

RangeEnd

Declaration
[JsonProperty(PropertyName = "rangeEnd")]
public string RangeEnd { get; set; }
Property Value
Type Description
string

Object names returned by a list query must be strictly less than this parameter.

RangeStart

Declaration
[JsonProperty(PropertyName = "rangeStart")]
public string RangeStart { get; set; }
Property Value
Type Description
string

Object names returned by a list query must be greater or equal to this parameter.

TotalSizeInBytes

Declaration
[JsonProperty(PropertyName = "totalSizeInBytes")]
public string TotalSizeInBytes { get; set; }
Property Value
Type Description
string

Total size of objects in Bytes that are exported in this job.

In this article
Back to top