Show / Hide Table of Contents

Class ObjectListDataset

Data source details for object storage

Inheritance
object
LocationDetails
ObjectListDataset
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AilanguageService.Models
Assembly: OCI.DotNetSDK.Ailanguage.dll
Syntax
public class ObjectListDataset : LocationDetails

Properties

BucketName

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

Object storage bucket name

Remarks

Required

NamespaceName

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

Object storage namespace

Remarks

Required

ObjectNames

Declaration
[Required(ErrorMessage = "ObjectNames is required.")]
[JsonProperty(PropertyName = "objectNames")]
public List<string> ObjectNames { get; set; }
Property Value
Type Description
List<string>

Array of files which need to be processed in the bucket

Remarks

Required

In this article
Back to top