<PackageReference Include="Relativity.Server.Testing.Framework.SDK" Version="5000.1.0" />

RelativityInstanceConfiguration

Represents the Relativity instance configuration.
public string AdminPassword { get; set; }

Gets or sets the password associated with AdminUsername.

public string AdminUsername { get; set; }

Gets or sets the Realtivity admin (does not need to be an actual system admin) username that is used for API communication.

public string RapDirectory { get; set; }

Gets or sets the directory to use for RAP installation.

public string RelativityHostAddress { get; set; }

Gets or sets the Relativity host address. The fully-qualified host (hostname or hostname + port) of the machine hosting Relativity.

public string RestServicesHostAddress { get; set; }

Gets or sets the REST services host address. e.g. reg-a.r1.kcura.com If the value is not set, returns RelativityHostAddress.

public string ResultsLocation { get; set; }

Gets or sets the location to save logs and screenshots to./>. Default is "Results".

public string RsapiServicesHostAddress { get; set; }

Gets or sets the RSAPI services host address. e.g. reg-a-services.r1.kcura.com If the value is not set, returns RelativityHostAddress.

public string ServerBindingType { get; set; }

Gets or sets the type of the server binding. Is a protocol/schema used to connect with Relativity, e.g. HTTP or HTTPS.

public string SqlPassword { get; set; }

Gets or sets the password associated with SqlUsername.

public string SqlServer { get; set; }

Gets or sets the locator for the instance of the SQL server to be used. e.g. RelativityInstanceName/EDDSINSTANCE001.

public string SqlUsername { get; set; }

Gets or sets the SQL username.

public string WebApiHostAddress { get; set; }

Gets or sets the Web API host address. e.g. reg-a.r1.kcura.com If the value is not set, returns RelativityHostAddress.

Merges the default configuration settings into this instance. Each property of this instance having null will be set with the corresponding value of defaultConfiguration object.