Show / Hide Table of Contents

Class ImportOciCacheFromObjectStorageDetails

Details for importing OCI Cache data from Object Storage RDB file(s) during cluster creation.

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

Properties

BucketName

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

The 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

The Object Storage namespace name.

Remarks

Required

Objects

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

The list of objects to import from the specified bucket.

Remarks

Required

In this article
Back to top