Show / Hide Table of Contents

Class ObjectLocation

A location in Object Storage that is uniquely identified by namespace name, bucket name and object name.

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

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 name.

Remarks

Required

ObjectNames

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

Object Storage object names.

Remarks

Required

In this article
Back to top