Show / Hide Table of Contents

Class ExportOpensearchClusterBackupDetails

Information about the cluster backup to export.

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

Properties

CompartmentId

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

The OCID of the compartment where the Object Storage resources for the cluster backup are located.

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. Example: {"foo-namespace": {"bar-key": "value"}}

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

ObjectStorageBucketName

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

The name of the Object Storage bucket for the cluster backup export operation.

Remarks

Required

ObjectStorageNamespace

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

The Object Storage namespace for the cluster backup export operation.

Remarks

Required

ObjectStoragePrefix

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

The prefix within the Object Storage bucket for the cluster backup export operation.

Prefix

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

The prefix within object storage bucket for the cluster backup export operation.

Remarks

Required

RepositoryName

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

The name of the repository containing the snapshots for the cluster backup export operation.

Remarks

Required

SnapshotName

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

The name of the snapshot for the cluster backup export operation.

Remarks

Required

In this article
Back to top