Show / Hide Table of Contents

Class ObjectStorageSourceDetails

Object Storage Source Details.

Inheritance
object
SourceDetails
ObjectStorageSourceDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatalabelingservicedataplaneService.Models
Assembly: OCI.DotNetSDK.Datalabelingservicedataplane.dll
Syntax
public class ObjectStorageSourceDetails : SourceDetails

Properties

Length

Declaration
[JsonProperty(PropertyName = "length")]
public decimal? Length { get; set; }
Property Value
Type Description
decimal?

The length from the offset into the file containing the content.

Offset

Declaration
[JsonProperty(PropertyName = "offset")]
public decimal? Offset { get; set; }
Property Value
Type Description
decimal?

The offset into the file containing the content.

Path

Declaration
[Required(ErrorMessage = "Path is required.")]
[JsonProperty(PropertyName = "path")]
public string Path { get; set; }
Property Value
Type Description
string

The full path of the file this record belongs to.

Remarks

Required

RelativePath

Declaration
[Required(ErrorMessage = "RelativePath is required.")]
[JsonProperty(PropertyName = "relativePath")]
public string RelativePath { get; set; }
Property Value
Type Description
string

The path relative to the prefix specified in the dataset source details (file name).

Remarks

Required

In this article
Back to top