Interface IAzureRepositorySettings
Snapshot repository settings for IAzureRepository
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface IAzureRepositorySettings : IRepositorySettings
Properties
| Edit this page View SourceBasePath
The path within the container on which to store the snapshot data.
Declaration
[DataMember(Name = "base_path")]
string BasePath { get; set; }
Property Value
Type | Description |
---|---|
string |
ChunkSize
Big files can be broken down into chunks during the snapshot process, if needed. The chunk size can be specified in bytes or by using size value notation, i.e. 1g, 10m, 5k. Defaults to 64m (64m max)
Declaration
[DataMember(Name = "chunk_size")]
string ChunkSize { get; set; }
Property Value
Type | Description |
---|---|
string |
Compress
When set to true metadata files are stored in compressed format. This setting doesn't
affect index files that are already compressed by default. Defaults to false
.
Declaration
[DataMember(Name = "compress")]
bool? Compress { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Container
Tha name of the container
Declaration
[DataMember(Name = "container")]
string Container { get; set; }
Property Value
Type | Description |
---|---|
string |