Show / Hide Table of Contents

Class CreateObjectStorageLinkDetails

The details to create a Object Storage link.

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

Properties

AvailabilityDomain

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

The availability domain that the Lustre file system is in. May be unset as a blank or NULL value.
Example: Uocm:PHX-AD-1

Remarks

Required

CompartmentId

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

The OCID of the compartment that contains the Object Storage link.

Remarks

Required

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

A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.
Example: My Object Storage Link

FileSystemPath

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

The path in the Lustre file system used for this Object Storage link.
Example: myFileSystem/mount/myDirectory

Remarks

Required

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"}

IsOverwrite

Declaration
[Required(ErrorMessage = "IsOverwrite is required.")]
[JsonProperty(PropertyName = "isOverwrite")]
public bool? IsOverwrite { get; set; }
Property Value
Type Description
bool?

The flag is an identifier to tell whether the job run has overwrite enabled. If isOverwrite is false, the file to be imported or exported will be skipped if it already exists. If isOverwrite is true, the file to be imported or exported will be overwritten if it already exists.

Remarks

Required

LustreFileSystemId

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

The OCID of the associated Lustre file system.

Remarks

Required

ObjectStoragePrefix

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

The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports.
Example: objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix

Remarks

Required

In this article
Back to top