Show / Hide Table of Contents

Class BenchmarkDetails

Benchmark test configuration detail.

Inheritance
object
BenchmarkDetails
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 BenchmarkDetails

Properties

ControlClusterId

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

Control Cluster Id Information

Remarks

Required

PerfTestLength

Declaration
[Required(ErrorMessage = "PerfTestLength is required.")]
[JsonProperty(PropertyName = "perfTestLength")]
[JsonConverter(typeof(StringEnumConverter))]
public BenchmarkDetails.PerfTestLengthEnum? PerfTestLength { get; set; }
Property Value
Type Description
BenchmarkDetails.PerfTestLengthEnum?

Execution Length of Perf Test (default set to STANDARD)

Remarks

Required

Test1ClusterId

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

Required Test Cluster Id needed to run perf test

Test2ClusterId

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

Optional Test Cluster Id needed to run perf test

In this article
Back to top